@import url("https://use.typekit.net/emj2bdj.css");

.din_font {
  font-family: "din-condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.din2014_font {
  font-family: "din-2014", sans-serif;
  font-weight: 400;
  font-style: normal;
}



html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif !important;
  margin: 0;
  padding: 0;
}

img,
svg {
  max-width: 100%;
  height: auto;
  width: auto;
  display: block;
}
svg:not(:root) {
  overflow: hidden;
}



/* header */
/* ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(0, 0, 0, 1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000; /* 충분히 높은 값으로 */
  backdrop-filter: blur(5px);
  font-size: 20px;
}
.hd_inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.hd_inner .logo {
  width: 132px;
  margin-left: 26px;
}
.hd_inner .hamburger {
  width: 68px;
  height: 32px;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  z-index: 9999;
}
.hd_inner .line {
  position: absolute;
  left: 50%;
  width: 48px;
  height: 1px;
  background-color: #8E8E8E;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}
.hd_inner .line.top {
  top: 12px;
}
.hd_inner .line.bottom {
  bottom: 12px;
}
.hd_inner .hamburger.active .line.top {
  top: 15.5px;
}
.hd_inner .hamburger.active .line.bottom {
  bottom: 15.5px;
}


/* new */
.hd_inner .contact_btn {
  width: 144px;
  margin: 0 1.5% 0 auto;
}
.hd_inner .header_contact {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.header_contact_rect {
  width: 100%;
  shape-rendering: crispEdges;
}
.header_contact_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  z-index: -1;
}
.header_contact_rect path {
  transition: fill 0.3s ease-in-out, stroke 0.3s ease-in-out;
}
.svg_border {
  stroke: rgba(255, 255, 255, 0.4);
  stroke: #707070;
  fill: transparent;
  vector-effect: non-scaling-stroke;
  stroke-width: 1;
}
.header_contact_rect path.hover_border {
  stroke: #fff;
  stroke-dasharray: 334;
  stroke-dashoffset: 334;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 0.84, 0.44, 1) 0.2s;
}


.hover_border {
  stroke: #fff;
  stroke-dasharray: 334;
  stroke-dashoffset: 334;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 0.84, 0.44, 1) 0.2s;
}
.header_contact_rect:hover .hover_border {
  stroke-dashoffset: 0;
}



@media only screen and (orientation: landscape) {
  .hd_inner .header_contact:hover .header_contact_rect path.hover_border {
    stroke-dashoffset: 0;
  }
}

/* nav */
nav.side-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: #FFFFFF;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease, height 0.4s ease;
  z-index: 1002;
}
nav.side-menu.active {
  height: calc(100% - 72px);
  transform: scaleY(1);
}
nav.side-menu > ul {
  list-style: none;
  max-width: 1000px;
  width: 100%;
  height: calc(100vh - 72px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 768px) {
  nav.side-menu {
    width: 100%;
  }
}
nav.side-menu > ul > li {
  width: 100%;
  position: relative;
  padding-left: 295px;
  padding-top: 18px;
  padding-bottom: 18px;
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
}
nav.side-menu li p {
  padding: 0;
  margin: 0;
  transform: translate3d(0, 100px, 0);
  transition: transform .5s linear;
}
nav.side-menu.active li p {
  transform: translate3d(0, 0, 0);
  transition: transform .5s cubic-bezier(0,.7,.3,1) .5s;
}
nav.side-menu li p a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 16px;
  color: #707070;
  letter-spacing: 0.1em;
  transition: color 0.3s, transform 0.3s;
  transform: translateX(0);
}
nav.side-menu a.hovered {
  color: #707070;
}
nav.side-menu a.dimmed {
  color: #DDDDDD;
}
nav.side-menu .menu-item.hover-active .side-link {
  color: #707070;
  transform: translateX(8px);
}
nav.side-menu > ul > li > p .toggle-btn {
  display: none;
}
nav.side-menu li ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
/* nav.side-menu .sub-menu {
  min-width: 300px;
  width: 40%;
  height: 100vh;
  height: calc(100vh - 72px);
  position: fixed;
  top: 0;
  left: 50%;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
nav.side-menu .sub-menu.open {
  opacity: 1;
  pointer-events: auto;
} */

nav.side-menu .scroll-wrapper {
  min-width: 300px;
  width: 40%;
  /* height: 100vh;
  height: calc(100vh - 72px);
  position: fixed;
  top: 0;
  left: 50%; */
  /* opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-direction: column; */

  position: fixed;
  top: 0;
  left: 50%;
  min-width: 300px;
  width: 40%;
  max-height: calc(100vh - 72px);
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
nav.side-menu li:hover > .scroll-wrapper {
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-height: 800px) {
  nav.side-menu .scroll-wrapper {
    /* background: #ddd; */
  }
  nav.side-menu .scroll-wrapper .sub-menu {
    padding: 50px 0;
    overflow-y: auto;
  }
}

nav.side-menu .sub-menu li {
  padding: 12px 16px;
  white-space: nowrap;
}
nav.side-menu .sub-menu li.mt_style {
  margin-top: 1em;
}
nav.side-menu .sub-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #707070;
}
@media (min-width: 768px) {
  nav.side-menu .sub-menu li a:hover {
    opacity: 0.7;
  }
  nav.side-menu li:hover > .scroll-wrapper {
    opacity: 1;
    pointer-events: auto;

  }
}
@media screen and (max-width: 768px) {
  .header {
    /* font-size: 20px; */
  }
  .hd_inner {
    max-width: 100%;
  }
  .hd_inner .logo {
    width: 31.6667vw;
    margin-left: 4.1667vw;
  }
  .hd_inner .hamburger {
    width: 13.3333vw;
    height: 8.8889vw;
    margin-left: 4.4444vw;
  }
  .hd_inner .line {
    width: 11.1111vw;
  }
  .hd_inner .line.top {
    top: 3.3333vw;
  }
  .hd_inner .line.bottom {
    bottom: 3.0556vw;
  }
  .hd_inner .hamburger.active .line.top {
    top: 4.1667vw;
  }
  .hd_inner .hamburger.active .line.bottom {
    bottom: 4.4444vw;
  }

  .hd_inner .contact_btn {
    width: 33.3333vw;
    height: 11.1111vw;
    margin: 0 4.4444vw 0 auto;
  }
  .hd_inner .header_contact {
    font-size: 3.3333vw;
    border-radius: 5.5556vw;
    border: 1px solid #707070;
  }
  .hd_inner .header_contact svg {
    display: none;
  }

  /* nav */
  nav.side-menu {
  }
  nav.side-menu.active {
    height: 100%;
    overflow-y: scroll;
  }
  nav.side-menu > ul {
    height: 100%;
    justify-content: flex-start;
    padding: 8.8889vw 0 13.8889vw;
    box-sizing: border-box;
  }
  nav.side-menu > ul > li {
    padding-left: 16.6667vw;
    padding-right: 14.4444vw;
    padding-top: 6.1111vw;
    padding-bottom: 6.1111vw;
    overflow: visible;
  }
  nav.side-menu > ul > li > p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
  }

  nav.side-menu li p a {
    font-size: 4.4444vw;
    line-height: 1;

  }
  nav.side-menu li p a,
  nav.side-menu li p .toggle-btn {
    transform: translate3d(0, 100px, 0);
    transition: transform .5s linear;
  }
  nav.side-menu.active li p a,
  nav.side-menu.active li p .toggle-btn {
    transform: translate3d(0, 0, 0);
    transition: transform .5s cubic-bezier(0,.7,.3,1) .5s;
  }

  nav.side-menu > ul > li > p .toggle-btn {
    display: block;
    position: relative;
    display: inline-block;
    width: 3.3333vw;
    height: 3.3333vw;
    cursor: pointer;
    margin-right: 2.2222vw;
  }
  nav.side-menu > ul > li > p .toggle-btn::before,
  nav.side-menu > ul > li > p .toggle-btn::after {
    content: "";
    position: absolute;
    background-color: #707070;
    transition: all 0.3s ease;
  }
  nav.side-menu > ul > li > p .toggle-btn::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
  }
  nav.side-menu > ul > li > p .toggle-btn::after {
    left: 49%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
  }
  nav.side-menu > ul > li > p .toggle-btn.active::after {
    transform: translateX(-50%) rotate(-90deg);
  }
  



  nav.side-menu .scroll-wrapper {
    display: none;
    min-width: 100%;
    width: 100%;
    max-height: 0;
    height: 0;
    position: relative;
    left: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
    margin-top: 9.7222vw;
    padding-left: 7.7778vw;
    padding-top: 3.3333vw;
    padding-bottom: 5.5556vw;
    box-sizing: border-box;
  }
  nav.side-menu .scroll-wrapper.open {
    display: block;
    height: auto;
    opacity: 1;
  }
  nav.side-menu .scroll-wrapper .sub-menu {
    padding: 0;
  }
  nav.side-menu .sub-menu li {
    padding: 3.3333vw 0;
  }
  nav.side-menu .sub-menu li a {
    letter-spacing: 0;
    font-size: 3.8889vw;
  }
}



.top .container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.top.designadvisor .container {
  height: auto;
}
@media screen and (max-width: 768px) {
  .top .container {
    height: auto;
    height: calc(100vh - 72px);
    overflow: visible;
  }
}

/* KV */
/* ============================================ */
.slide1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  /* height: 100vh; */
  height: calc(100vh - 72px);
  margin-top: 72px;
  /* background-color: #ddd;
  background-size: cover;
  background-position: center; */
  transform-origin: center center;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-direction: column;
  pointer-events: none; /* 클릭 방지 */
  z-index: 1; /* 낮은 우선순위로 */
}
.slide1-wrap {
  /* width: 59.8438%; */
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.slide1-inner {
  width: 76.6%;
  margin-left: 11.7%;
}
.slide1 .think-box {
  display: flex;
  position: relative;
}
/*  */
.kv-letter-wrap {
  display: flex;
  /* gap: 22px; */
}
.slide1 .letter {
  opacity: 0;
  /* transform: translateY(10px);
  animation: show-letter 0.3s forwards; */
}
.slide1 .letter:nth-child(1) {
  width: 46.46px;
  margin-right: 22px;
}
.slide1 .letter:nth-child(2) {
  width: 45.36px;
  margin-right: 30px;
}
.slide1 .letter:nth-child(3) {
  width: 14.02px;
  margin-right: 29px;
}
.slide1 .letter:nth-child(4) {
  width: 48.93px;
  margin-right: 29px;
}
.slide1 .letter:nth-child(5) {
  width: 52.37px;
  margin-right: 65px;
}
/* .slide1 .letter:nth-child(1) {
  animation-delay: 0s;
}
.slide1 .letter:nth-child(2) {
  animation-delay: 0.3s;
}
.slide1 .letter:nth-child(3) {
  animation-delay: 0.6s;
}
.slide1 .letter:nth-child(4) {
  animation-delay: 0.9s;
}
.slide1 .letter:nth-child(5) {
  animation-delay: 1.2s;
} */
.slide1 .design {
  opacity: 0;
  line-height: 0;
  /* animation: show-design 0.5s forwards;
  animation-delay: 1.7s; */
}
.slide1 .letter,
.slide1 .design {
  transform: translateY(10px);
}
.slide1 .kv-txt {
  /* width: 35.1563%; */
  /* margin-top: 9.4444%; */
  margin-top: 70px;
  opacity: 0;
  /* animation: show-design 0.5s forwards;
  animation-delay: 2.2s; */
}

@keyframes show-letter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes show-design {
  to {
    opacity: 1;
  }
}

.slide1 .scroll {
  position: fixed;
  bottom: 11.9444%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0rem;
  width: 12.8rem;
  border-bottom: 1px solid #EDEDED;
  padding-bottom: 0.5rem;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  pointer-events: none;
  z-index: 10;
  font-size: 12px;
}
.slide1 .scroll:after {
  content: "";
  background-color: #7E7E7E;
  height: 1px;
  bottom: -1px;
  left: 0rem;
  position: absolute;
  width: 1.6rem;
}
.scroll.animate:after {
  -webkit-animation: scroll 4s ease-out infinite;
  animation: scroll 4s ease-out infinite;
}

@keyframes scroll {
  0% {
    width: 1.6rem;
    left: -0.3rem;
  }

  20% {
    width: 6rem;
  }

  40% {
    width: 2.4rem;
    left: 11.2rem;
  }

  to {
    width: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .sp-slide1 {
    width: 100vw;
    overflow: hidden;
  }
  .slide1 {
    position: relative;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
  }
  .slide1-inner {
    /* width: 76.6%;
    margin-left: 11.7%; */
    /* width: 77.7778vw; */
    margin-left: 11.6667vw;
  }
  .slide1 .think-box {
    /* gap: 6.9444vw; */
    flex-direction: column;
  }
  .kv-letter-wrap {
    /* gap: 6.9444vw; */
    justify-content: center;
  }

  /* .slide1 .letter:nth-child(1) {
    width: auto;
    height: 22.5972vw;
    margin-right: 5.2778vw;
  }
  .slide1 .letter:nth-child(2) {
    width: auto;
    height: 22.5972vw;
    margin-right: 6.9444vw;
  }
  .slide1 .letter:nth-child(3) {
    width: auto;
    height: 22.5972vw;
    margin-right: 6.6667vw;
  }
  .slide1 .letter:nth-child(4) {
    width: auto;
    height: 22.5972vw;
    margin-right: 6.6667vw;
  }
  .slide1 .letter:nth-child(5) {
    width: auto;
    height: 22.5972vw;
    margin-right: 0;
  } */


  .slide1 .letter:nth-child(1) {
    width: 10.7278vw;
    margin-right: 5.2778vw;
  }
  .slide1 .letter:nth-child(2) {
    width: 10.4722vw;
    margin-right: 6.9444vw;
  }
  .slide1 .letter:nth-child(3) {
    width: 3.2361vw;
    margin-right: 6.6667vw;
  }
  .slide1 .letter:nth-child(4) {
    width: 11.2972vw;
    margin-right: 6.6667vw;
  }
  .slide1 .letter:nth-child(5) {
    width: 12.0917vw;
    margin-right: 0;
  }
  .slide1 .letter img {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* .slide1 .letter svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .slide1 .letter svg image {
    width: 100% !important;
    height: auto !important;
    image-rendering: auto;
  } */

  .slide1 .design {
    width: 73.6111vw;
    margin: 7.2222vw auto 0;
  }
  .slide1 .design img {
    display: block;
    width: 100%;
  }
  .slide1 .kv-txt {
    /* margin-top: 9.4444%; */
    width: 72.7778vw;
    margin: 11.3889vw auto 0;
  }

  .slide1 .scroll {
    display: none;
  }
}



/* Common Page */
/* ============================================ */
.slides-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  height: 100vh;
  transform: translateX(100vw);
  z-index: 10;
}
.slide {
  flex-shrink: 0;
  /* height: 100vh; */
  height: calc(100vh - 72px);
  margin-top: 72px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 3rem;
  color: #fff; */
}
.slide:not(.wide-300):not(.wide-125):not(.wide-200) {
  width: 100vw;
}

.wide-300 {
  /* width: 300vw; */
  width: 200vw;
}

.wide-125 {
  /* width: 125vw; */
  /* width: 100vw; */

  width: auto;
}

.wide-200 {
  /* width: 200vw; */
  /* width: 150vw; */
  /* width: 130vw; */
  /* width: 150vw; */
  width: auto;
}

.inner-box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  .slides-wrapper {
    display: block;
    position: static;
    transform: none !important;
    height: calc(100vh - 72px);
    width: 100% !important;
  }
  .slide {
    /* height: auto;
    margin-top: 0;
    display: block; */

    width: 100vw !important;
    height: auto;
    margin-top: 0;
  }
  .slide.slide2 {
    position: relative;
    z-index: 5;
    height: 100vh;
  }
  .slide.slide10 {
    height: auto;
    margin-top: 0;
    display: block;

    width: 100vw !important;
    height: auto;
    flex-direction: column;
  }
  .slide:not(.wide-300):not(.wide-125):not(.wide-200) {
    width: 100%;
  }
  .wide-300 {
    width: 100%;
  }
  .wide-125 {
    width: 100%;
  } 
  .wide-200 {
    width: 100%;
  }

  .inner-box {
    max-width: 100%;
    padding-top: 0;
  }
}



/* 動画 */
/* ============================================ */
.slide2 {
  background: #000;
  /* color: #8B8B8B; */
}

.video-wrapper {
  /* width: 100%;
  max-width: 740px; */
  max-width: 100%;
  height: 58.3333vh;
  aspect-ratio: 16 / 9;
  margin: 20px auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
@media (max-width:2200px) and (min-width:769px) {
  .video-wrapper {
    width: auto;
    max-width: 100%;
    height: 58.3333vh;
  }
}

@media screen and (max-width: 768px) {
  .slide.slide2 {
    height: auto;
    position: relative;
  }
  .video-wrapper {
    max-width: 100%;
    width: 100vw;
    height: auto;
    margin: 0 auto;
  }
}



/* Customer Story */
/* ============================================ */
.slide3 {
  background: #000;
  color: #8B8B8B;
  margin-left: -1px;
  flex-direction: column;
}
.slide3 .txt-box {
  /* width: 82.3611vh;
  margin: 0 auto; */
  /* margin-left: 368px;
  margin-left: 28.7500vw;
  margin-left: 51.1111vh;
  margin-right: auto; */
  /* padding-left: 6.9444vh; */
  /* margin: 0 auto; */
  height: calc(100vh - 72px);
  /* margin-top: 72px; */
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #000;
  width: 593px;
  margin-left: 228px;
}
.slide3 h2 {
  font-size: 70px;
  /* font-size: 5.4688vw;
  font-size: 9.7222vh; */
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0;
}
.slide3 h2.cs_tit {
  width: 423px;
}
.slide3 p {
  font-size: 20px;
  /* font-size: 1.5625vw;
  font-size: 2.7778vh; */
  letter-spacing: 0.2em;
  line-height: 2.05;
  margin-top: 37px;
  /* margin-top: 5.1389vh; */
}
.slide3 p.fade-up.visible {
  animation-delay: 0.5s;
}

.slide4,
.slide5,
.slide6 {
  position: relative;
  overflow: hidden;
}
.slide4::before,
.slide5::before,
.slide6::before {
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  position: absolute;
  transform-origin: center center;
  transform: scale(1.2);
  transition: transform 1.2s 0.8s ease;
}
.slide4::before {
  background-image: url('../img/top/mv_01.jpg');
  background-position: center top;
  background-size: cover;
}
.slide5::before {
  background-image: url('../img/top/mv_03.jpg');
  background-position: center 50%;
  background-size: cover;
}
.slide6::before {
  background-image: url('../img/top/mv_02.jpg');
  background-position: center 30%;
  background-size: cover;
}
.slide4.visible::before,
.slide5.visible::before,
.slide6.visible::before {
  transform: scale(1);
}
.slide4 .slide-inner,
.slide5 .slide-inner,
.slide6 .slide-inner {
  width: 100%;
  /* height: 100vh; */
  height: calc(100vh - 72px);
}
.customer-img {
  display: none;
}
.customer-box {
  position: relative;
  height: 100%;

  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
.text-wrapper {
  display: inline-block;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.customer-box .customer-txt01 {
  height: 40px;
  position: absolute;
  transform: translateY(-40px);
}
.customer-box01 .customer-txt01 {
  left: 17.8125%;
  top: 40.1235vh;
}
.customer-box02 .customer-txt01 {
  /* left: 90%;
  top: 65.2778vh; */
  left: 85%;
  /* bottom: 22.5vh; */
  /* bottom: 26vh; */
  top: 58.6111vh;
}
.customer-box03 .customer-txt01 {
  left: 5.3125%;
  top: 46.2963vh;
}

.customer-box .customer-txt02 {
  height: 64px;
  position: absolute;
  transform: translateY(0);
}
.customer-box01 .customer-txt02 {
  left: 24.3750%;
  top: 40.1235vh;
}
.customer-box02 .customer-txt02 {
  /* left: 45.1563%;
  top: 65.2778vh; */
  left: 40.1563%;
  /* bottom: 22.5vh; */
  top: 58.6111vh;
}
.customer-box03 .customer-txt02 {
  left: 10.5469%;
  top: 46.2963vh;
}

.customer-box .customer-txt03 {
  height: 56px;
  position: absolute;
  transform: translateY(64px);
}
.customer-box01 .customer-txt03 {
  left: 1.8750%;
  top: 40.1235vh;
}
.customer-box02 .customer-txt03 {
  /* left: 14.2188%;
  top: 65.2778vh; */
  left: 9.2188%;
  /* bottom: 22.5vh; */
  /* bottom: 23.6vh; */
  top: 58.6111vh;
}
.customer-box03 .customer-txt03 {
  left: 44.5313%;
  top: 46.2963vh;
} 

.customer-box .text {
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.customer-box .customer-txt01 .text {
  width: 121px;
  padding: 14px 8px 10px;
}
.customer-box .customer-txt02 .text {
  padding: 0 40px;
  font-size: 18px;
  font-weight: 600;
}
.customer-box .customer-txt03 .text {
  padding: 0 50px;
  font-size: 14px;
  color: #fff;
}
.customer-box .customer-txt01.visible .text {
  animation: fadeIn 1s ease forwards;
  animation-delay: .3s;
}
.customer-box .customer-txt02.visible .text {
  animation: fadeIn 1s ease forwards;
  animation-delay: .9s;
}
.customer-box .customer-txt03.visible .text {
  animation: fadeIn 1s ease forwards;
  animation-delay: 2.3s;
}


.customer-box .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 1;
}
.customer-box .customer-txt01 .mask,
.customer-box .customer-txt03 .mask {
  background: #000;
}
.customer-box .customer-txt02 .mask {
  background: #fff;
}
.customer-box .customer-txt01.visible .mask {
  animation: revealText 1s ease-out forwards;
  animation-delay: .3s;
}
.customer-box .customer-txt02.visible .mask {
  animation: revealText 1s ease-out forwards;
  animation-delay: .9s;
}
.customer-box .customer-txt03.visible .mask {
  animation: revealText 1s ease-out forwards;
  animation-delay: 2s;
}

@keyframes revealText {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.customer-box .circle-btn {
  position: absolute;
  width: 96px;
  height: 96px;
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.customer-box .circle-btn.visible {
  animation: fadeIn 1s ease forwards;
}
.customer-box01 .circle-btn {
  /* top: 50.4167%; */
  /* top: 48%;
  right: 23.0469%; */
  top: 40.1235vh;
  left: 50%;
  transform: translate(268px, -15px);
}
.customer-box02 .circle-btn {
  /* top: 40%; */
  /* right: 7.4219%; */
  right: 3%;
  /* top: 65.2778vh; */
  top: 58.6111vh;
  transform: translateY(-211px);
}
.customer-box03 .circle-btn {
  /* top: 38.7500%; */
  right: 14.2188%;
  top: 46.2963vh;
  transform: translateY(-90px);
}
.customer-box .circle-btn > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.customer-box .circle-btn:hover > a,
.customer-box .circle-btn > a:hover {
  transform: scale(1.25); 
}
/* .customer-box .circle-btn a:hover .animated-border {
  stroke-dashoffset: 0;
} */
.customer-box .circle-btn .btn-arrow {
  width: 52px;
  position: absolute;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slide3 {
    color: #A0A0A0;
    padding-top: 33.3333vw;
    padding-bottom: 34.7222vw;
    margin-left: 0;
    position: relative;
    z-index: 1;
  }
  .slide3 .txt-box {
    height: auto;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
  .slide3 h2 {
    font-size: 9.4444vw;
  }
  .slide3 h2.cs_tit {
    width: 57.2222vw;
    margin: 0 auto;
  }
  .slide3 p {
    font-size: 3.8889vw;
    line-height: 2.42;
    margin-top: 13.3333vw;
  }
  .slide3 p.fade-up.visible {
    animation-delay: 0;
  }

  .slide4,
  .slide5,
  .slide6 {
    overflow: visible;
    /* padding-top: 111.1111vw; */
    background: #000;
  }

  .slide4::before,
  .slide5::before,
  .slide6::before {
    display: none;
    content: "";
    width: 100%;
    height: 111.1111vw;
    transform: scale(1.2);
    transition: transform 1.2s 0.8s ease;
    top: 0;
  }
  .slide4 .slide-inner,
  .slide5 .slide-inner,
  .slide6 .slide-inner {
    height: 100%;
  }
  .customer-img {
    display: block;
    overflow: hidden;
  }
  .customer-img img {
    transform-origin: center center;
    transform: scale(1.2);
    transition: transform 1.2s 0.8s ease;
  }
  .slide4.visible .customer-img img,
  .slide5.visible .customer-img img,
  .slide6.visible .customer-img img {
    transform: scale(1);
  }
  
  .customer-box {
    padding-top: 17.7778vw;
    padding-bottom: 16.6667vw;
  }

  .customer-box .customer-txt01 {
    height: auto;
    position: relative;
    left: 0;
    top: 0;
  }
  .customer-box01 .customer-txt01 {
    transform: translate(0, 0);
  }
  .customer-box02 .customer-txt01 {
    transform: translate(0, 0);
  }
  .customer-box03 .customer-txt01 {
    transform: translate(0, 0);
  }

  .customer-box .customer-txt02 {
    height: auto;
    position: relative;
    left: 0;
    top: 0;
  }
  .customer-box01 .customer-txt02 {
    transform: translate(0, 0);
  }
  .customer-box02 .customer-txt02 {
    transform: translate(0, 0);
  }
  .customer-box03 .customer-txt02 {
    transform: translate(0, 0);
  }

  .customer-box .customer-txt03 {
    height: auto;
    position: relative;
    left: 0;
    top: 0;
  }
  .customer-box01 .customer-txt03 {
    transform: translate(0, 0);
  }
  .customer-box02 .customer-txt03 {
    transform: translate(0, 0);
  }
  .customer-box03 .customer-txt03 {
    transform: translate(0, 0);
  } 

  .customer-box .text {
    text-align: center;
  }
  .customer-box .customer-txt01 .text {
    padding: 0;
    font-size: 3.8889vw;
  }
  .customer-box .customer-txt02 .text {
    padding: 0;
    font-size: 5vw;
    font-weight: 500;
    line-height: 2.22;
    color: #fff;
    margin-top: 17.7778vw;
    margin-bottom: 16.6667vw;
  }
  .customer-box .customer-txt03 .text {
    padding: 0;
    font-size: 3.8889vw;
    font-weight: 500;
    line-height: 2.14;
  }
  .customer-box .customer-txt01.visible,
  .customer-box .customer-txt01.visible .text {
    animation-delay: 0s;
  }
  .customer-box .customer-txt02.visible,
  .customer-box .customer-txt02.visible .text {
    animation-delay: 0s;
  }
  .customer-box .customer-txt03.visible,
  .customer-box .customer-txt03.visible .text {
    animation-delay: 0s;
  }
  

  .customer-box .mask {
    display: none;
  }

  .customer-box .circle-btn {
    position: relative;
    width: 20vw;
    height: 20vw;
    margin: 13.3333vw auto 0;
  }
  .customer-box01 .circle-btn {
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  .customer-box02 .circle-btn {
    top: 0;
    right: 0;
    transform: translate(0, 0);
  }
  .customer-box03 .circle-btn {
    top: 0;
    right: 0;
    transform: translate(0, 0);
  }
  .customer-box .circle-btn a {
    background: rgba(0, 0, 0, 1);
    border: 1px solid #707070;
    transition: all 0.3s ease;
  }
  .customer-box .circle-btn .btn-arrow {
    width: 3.8889vw;
  }
}




/* THINK DESIGN */
/* ============================================ */
.slide7 {
  background-color: #EDEDED;
}
.slide7 .slide-inner {
  width: 100%;
  height: calc(100vh - 72px);
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.think-design-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.think-design-img {
  /* max-width: 456px; */
  /* width: 35.6250vw; */
  width: 480px;
  margin-left: 15px;
}
.think-design-txt {
  /* max-width: 470px; */
  /* width: 36.7188vw;
  margin-left: 7.0313vw; */
  width: 415px;
  margin-left: 90px;
}
.think-design-txt h3 {
  font-size: 20px;
  /* font-size: 1.5625vw; */
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #5F5F5F;
  margin-bottom: 2em;
}
.think-design-txt p {
  font-size: 14px;
  /* font-size: 1.0938vw; */
  font-weight: 600;
  line-height: 2.428;
  letter-spacing: 0.1em;
  color: #5F5F5F;
}
.think-design-txt p.fade-up.visible {
  animation-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .slide7 {
    padding-top: 25vw;
    padding-bottom: 22.2222vw;
  }
  .slide7 .slide-inner {
    height: 100%;
    margin-top: 0;
  }
  .think-design-box {
    flex-direction: column;
  }
  .think-design-img {
    width: 75.8333vw;
    margin: 0 auto 8.3333vw;
  }
  .think-design-txt {
    width: 63.8889vw;
    margin-left: 11.9444vw;
  }
  .think-design-txt h3 {
    font-size: 4.4444vw;
    line-height: 1.8125;
    margin-bottom: 11.1111vw;
  }
  .think-design-txt p {
    font-size: 3.8889vw;
    font-weight: 400;
    line-height: 2.0714;
  }
  .think-design-txt p.fade-up.visible {
    animation-delay: 0s;
  }
}



/* 制作実績 */
/* ============================================ */
.slide8 {
  background-color: #EDEDED;
  position: relative;
}
.slide8.wide-300 {
  width: auto;
}
.work-box {
  /* width: 3840px; */
  /* width: 4130px; */
  /* width: 3760px; */
  /* padding: 0 190px 0 75px; */
  padding: 0 190px 0 0;

  box-sizing: border-box;
  background-color: #EDEDED;
}
.work-box ul {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 16px 16px;
  padding: 0;
  margin: 0;
}
.work-box ul + ul {
  margin-top: 16px;
}

/* .item-box {
  position: relative;
} */


.item-box {
  position: relative;
  transition: transform 0.5s ease;
}
.item-box::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 0;
  width: 50px;
  height: 100%;
  pointer-events: auto;
}
.item-box:hover {
  transform: translateX(40px);
  z-index: 1;
}
.item-box a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.item-box .item-img {
  height: 160px;
}
.item-box.img-size01 .item-img {
  width: 240px;
}
.item-box.img-size02 .item-img {
  width: 260px;
}
.item-box.img-size03 .item-img {
  width: 280px;
}
.item-box .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px 20px;
  box-sizing: border-box;
  opacity: 0;
  transition: background-color 0.5s ease, opacity 0.5s ease, color 0.5s ease;
  text-align: left;
}
.item-box:hover .item-txt {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  opacity: 1;
}
.item-box:hover .item-txt p {
  font-size: 14px;
  line-height: 1.5;
}
.item-box:hover .item-txt p.article-corp {
  margin-bottom: 1em;
}


/* .floating_btn {
  position: fixed;
  bottom: 17vh;
  right: 2%;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating_btn .more {
  width: 176px;
  height: 40px;
  border-radius: 20px;
  background-color: #333333;
  margin-left: 7% ;
  margin-top: 16px;
  position: relative;
}
.floating_btn .more a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  transition: all 0.3s ease;
}
.floating_btn .more a:hover {
  opacity: 0.7;
}
.floating_btn .more img {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  width: 4px;
}

@media (min-height: 901px) and (max-height: 1025px) {
  .floating_btn {
    bottom: 10%;
  }
} */

/* @media screen and (max-height: 900px) {


  .item-box .item-img {
    height: 17.7778vh;
  }
  .item-box.img-size01 .item-img {
    width: 26.6667vh;
  }
  .item-box.img-size02 .item-img {
    width: 28.8889vh;
  }
  .item-box.img-size03 .item-img {
    width: 31.111vh;
  }

  .floating_btn {
    bottom: 5vh;
  }
  .floating_btn .more {
    width: 24.4444vh;
    height: 5.5556vh;
  }
  .floating_btn .more a {
    font-size: 1.9444vh;
  }


  .floating_btn .fade-up {
    transform: translateY(0px) !important;
  }

} */


/* @media (min-height: 681px) and (max-height: 750px) {
  .floating_btn {
    bottom: 1vh;
  }
  .floating_btn .fade-up {
    transform: translateY(0px) !important;
  }
} */

@media screen and (max-height: 680px) {
  /* .floating_btn {
    display: none;
  }
  .height680 {
    display: flex !important;
    align-items: flex-end;
  }
  .slide8 .more {
    width: 136px;
    height: 40px;
    border-radius: 20px;
    background-color: #333333;
    margin-left: 7%;
    margin-top: 16px;
    position: relative;
  }
  .slide8 .more a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
  }
  .slide8 .more a img {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    width: 4px;
  } */
}



/* @media (max-width:2200px) and (min-width:769px) {
  .slide8 .wide-300 {
    width: 150vw;
  }
  .work-box {
    width: 100%;
    transform: scale(0.6);
    padding: 0;
  }
} */

/* @media (max-width:1280px) and (min-width:769px) {
  .slide8 {
    background: orange;
    width: 200vw;
  }
  .work-box {
    width: auto;
  }
  .item-box .item-img {
    height: 7.2727vw;
  }
  .item-box.item-size01 .item-img {
    width: 10.9091vw;
  }
  .item-box.item-size03 .item-img {
    width: 38.8889vh;
  }
} */
@media screen and (max-width: 768px) {
  .slide8 {
    background-color: #FFFFFF;
    overflow-x: auto;
    /* padding: 4.4444vw 0 20vw; */
    padding: 8vw 0;
    box-sizing: border-box;
  }
  
  .slide8-scrollable {
    width: 100%;
    overflow-x: auto;
  }
  .slide8-scrollable.visible {
    transform: translateY(0px);
    animation: effect00 0s ease 0s 1 forwards;
  }
  .work-box {
    /* width: 3510px; */
    /* width: 1020vw; */
    padding: 0;
    height: auto;
    background-color: #FFFFFF;
  }
  .work-box ul {
    width: 100%;
    gap: 4.4444vw;
    padding-left: 4.4444vw;
    box-sizing: border-box;
  }
  .item-box:hover {
    transform: translateX(0px);
  }

  .item-box .item-img {
    height: 42.2222vw;
  }
  .item-box.img-size01 .item-img {
    width: 63.3333vw;
  }
  .item-box.img-size02 .item-img {
    width: 75vw;
  }
  .item-box.img-size03 .item-img {
    width: 82.2222vw;
  }

  .item-txt {
    display: none;
  }




  .slide8 .more {
    width: 48.8889vw;
    height: 11.1111vw;
    border-radius: 5.5556vw;
    background-color: #333333;
    position: absolute;
    bottom: 4.4444vw;
    left: auto;
    right: 4.4444vw;
    margin: 0;
    transform: translateY(0px) !important;
  }

  .floating_btn {
    display: none;
  }
  .slide8 .more.spOnly {
    display: block;
  }
  .slide8 .more a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.8889vw;
    line-height: 0.1em;
    color: #fff;
  }
  .slide8 .more a:hover {
    opacity: 1;
  }
  .slide8 .more img {
    position: absolute;
    top: 50%;
    right: 4.7222vw;
    transform: translateY(-50%);
    width: 1.1111vw;
  }
}



/* NEWS */
/* ============================================ */
.slide9 {
  background-color: #EDEDED;
  position: relative;
}

.slide9 .photoArea {
  position: absolute;
  /* left: 185px; */
  width: 1360px;
  height: 336px;
}
.photoArea figure {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.photoArea figure::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateX(100%);

  background-color: #000;

  /* background: url(../img/top/space_news.png) no-repeat;
  background-size: contain; */
}
.photoArea.visible figure::before {
  animation: slideInOut 1.5s ease forwards;
}
.photoArea figure img {
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease 0.5s, transform 0.8s ease 0.7s;
}

.blog-inner .photoArea.visible figure::before {
  animation: slideInOut 0.5s ease forwards;
}
.blog-inner .photoArea figure img {
  width: 100%;
  opacity: 0;
  transition: opacity 0.7s ease 0.5s, transform 0.8s ease 0.7s;
}

.photoArea.visible figure img {
  opacity: 1;
  transform: scale(1);
}
@keyframes slideInOut {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}



.news-inner {
  position: relative;
  /* margin-left: 192px; */
  margin-right: 35px;
  padding-left: 185px;
  padding-right: 312px;
  height: 336px;
}
/* .news-inner::before {
  content: "";
  display: block;
  width: 1360px;
  height: 336px;
  background: url('../img/top/news_bg.svg');
  position: absolute;
  top: 0;
  left: 0;
} */
.news-inner .main-tit {
  position: absolute;
  left: -48px;
  top: -72px;
  width: 107px;
}

.news-inner .main-tit.fade-up.visible {
  /* animation-delay: 1.3s; */
  animation-delay: 2.1s;
}


.news-inner ul {
  width: 100%;
  margin-top: -50px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 95px;
}
.news-inner ul li {
  width: 224px;
}
/* .news-inner ul li .img-box {
  width: 168px;
  margin-bottom: 40px;
} */

.news-inner ul li:nth-child(1) .fade-up {
  animation-delay: 2.3s;
}
.news-inner ul li:nth-child(2) .fade-up {
  animation-delay: 2.4s;
}
.news-inner ul li:nth-child(3) .fade-up {
  animation-delay: 2.5s;
}
.news-inner .more.fade-up {
  animation-delay: 2.6s;
}

.news-inner ul li .img-box {
  width: auto;
  height: 112px;
  margin-bottom: 40px;
  display: flex;
}
.news-inner ul li .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}







.news-inner ul li .txt {
  font-size: 14px;
  font-weight: 600;
}
.news-inner ul li .tit {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.85;
  margin-top: 20px;
}

.news-inner .more {
  /* margin: 20px 0 0 auto; */
  position: absolute;
  bottom: 26px;
  right: 196px;
}
.news-inner .more a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}
.news-inner .more img {
  display: block;
  width: 6px;
  margin-right: 8px;
}



/* .slide9 img {
  display: block;
  width: 85%;
  width: 1360px;
  width: auto;
  height: 46.6667vh;
  height: auto;
  margin-left: 0;
  height: 46.6667vh;
  aspect-ratio: 1360 / 336;
  object-fit: contain;
  z-index: 0;
} */

/* @media (max-width:2200px) and (min-width:769px) {
  .news-inner {
    width: 61.8182vw;
  }
  .news-inner .main-tit {
    position: absolute;
    left: -48px;
    top: -3.3182vw;
    width: 4.8636vw;
  }
  .news-inner ul {
    margin-top: -50px;
    padding-left: 8.4091vw;
    gap: 6.8182vw;
  }
  .news-inner ul li {
    width: 14vw;
  }
  .news-inner ul li .img-box {
    width: 7.6364vw;
    margin-bottom: 40px;
  }
  .news-inner ul li .txt {
    font-size: 0.7vw;
  }
  .news-inner ul li .tit {
    font-size: 0.8vw;
  }
} */



@media screen and (max-width: 768px) {
  .slide9 {
    padding-top: 22.2222vw;
    /* padding-bottom: 45vw; */
    padding-bottom: 10px;
  }
  .slide9 .photoArea {
    display: none;
  }
  .news-inner {
    width: 80vw;
    height: 100%;
    margin: 0 auto;
    padding-top: 20.2778vw;
    background: #fff;
    border-radius: 7px 7px 0 0;
    padding-left: 0;
    padding-right: 0;
    /* margin-bottom: 34.7222vw; */
    margin-bottom: 36vw;
  }
  .news-inner::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url('../img/top/news_bg_sp.png') no-repeat;
    background-position: 100% 100%;
    background-size: cover;
    position: absolute;
    top: auto;
    /* bottom: -37vw; */
    bottom: -39vw;
    left: 0;
  }
  .news-inner .main-tit {
    position: absolute;
    left: 34vw;
    top: -24vw;
    width: 11.9444vw;
  }
  .news-inner .main-tit img {
    transform: rotate(90deg);
  }
  .news-inner ul {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
    flex-direction: column;
    gap: 15.5556vw;
  }
  .news-inner ul li {
    width: 62.2222vw;
    margin: 0 auto;
  }
  /* .news-inner ul li .img-box {
    width: 46.6667vw;
    height: 31.1111vw;
    margin: 0 auto 8.8889vw;
  } */
  .news-inner ul li .img-box {
    /* width: 46.6667vw; */
    height: 31.1111vw;
    margin: 0 auto 8.8889vw;
    justify-content: center;
  }
  .news-inner ul li .img-box img {
    object-position: center;
  }
  .news-inner ul li .txt {
    font-size: 3.8889vw;
    font-weight: 500;
  }
  .news-inner ul li .tit {
    font-size: 3.8889vw;
    font-weight: 500;
    margin-top: 4.4444vw;
  }

  .news-inner .more {
    width: 100%;
    margin: 7.2222vw auto 0;
    text-align: center;
    position: initial;
  }
  .news-inner .more a {
    justify-content: center;
    font-size: 3.8889vw;
  }
  .news-inner .more img {
    width: 1.6667vw;
    margin-right: 2.2222vw;
  }

  .news-inner .main-tit.fade-up.visible {
    animation-delay: 0.3s;
  }
  .news-inner ul li:nth-child(1) .fade-up {
    animation-delay: 0.3s;
  }
  .news-inner ul li:nth-child(2) .fade-up {
    animation-delay: 0.3s;
  }
  .news-inner ul li:nth-child(3) .fade-up {
    animation-delay: 0.3s;
  }
  .news-inner .more.fade-up {
    animation-delay: 0.3s;
  }

}

/* blog */
/* ============================================ */
.slide10 {
  background-color: #EDEDED;
  position: relative;
  overflow: hidden;
}

.slide10 .blog-wrap {
  position: relative;
  height: 488px;
  margin-right: 185px;
}
.slide10 .blog-inner {
  position: relative;
  margin-left: 84px;
  padding-right: 285px;
  height: 488px;
}

.slide10 .photoArea {
  position: absolute;
  left: 80px;
  width: 1376px;
  height: 488px;
}


/* .slide10 .blog-inner::before {
  content: "";
  display: block;
  width: 1376px;
  height: 488px;
  background: url('../img/top/takiblog_bg.svg');
  position: absolute;
  top: 0;
  left: 0;
} */
.blog-inner .main-tit01 {
  position: absolute;
  left: -80px;
  top: 130px;
  width: 230px;
}
.blog-inner .main-tit02 {
  position: absolute;
  left: -3px;
  top: 210px;
  width: 290px;
}
.blog-inner .main-tit01.fade-up.visible {
  animation-delay: 2.1s;
}
.blog-inner .main-tit02.fade-up.visible {
  animation-delay: 2.3s;
}

.blog-wrap ul {
  width: 100%;
  padding-left: 385px;
  padding-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px 0;
}

.blog-inner ul li:nth-child(1) .fade-up {
  animation-delay: 2.5s;
}
.blog-inner ul li:nth-child(2) .fade-up {
  animation-delay: 2.6s;
}
.blog-inner ul li:nth-child(3) .fade-up {
  animation-delay: 2.7s;
}
.blog-inner .more.fade-up {
  animation-delay: 2.9s;
}


.blog-wrap ul li.blog-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.blog-wrap .blog-item .img-box {
  width: 168px;
  height: 88px;
  overflow: hidden;
}
.blog-wrap .blog-item .img-box a {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-wrap .blog-item .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-wrap .blog-item .txt-box {
  width: 456px;
}
.blog-wrap .blog-item .txt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
.blog-wrap .blog-item .txt .cat {
  padding-left: 1em;
}

.blog-wrap .blog-item .tit {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-top: 5px;
}
.blog-wrap .more {
  /* text-align: right;
  margin-top: 10px;
  margin: 0 0 0 auto; */
  position: absolute;
  bottom: 20px;
  right: 255px;
}
.blog-wrap .more a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
}
.blog-wrap .more img {
  display: block;
  width: 6px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .slide10 {
    overflow: visible;
  }

  .slide10 .blog-wrap {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding-top: 41.6667vw;
    padding-bottom: 41.6667vw;
  }
  .slide10 .blog-inner {
    width: 80vw;
    height: auto;
    margin: 0 auto;
    padding-right: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    z-index: 1;
  }
  .slide10 .blog-inner::before {
    content: "";
    display: block;
    width: 80vw;
    height: 50vw;
    background: #fff;
    position: absolute;
    left: 0;
    top: -26vw;
    transform: skewY(-27deg);
    border-radius: 10px;
  }
  .slide10 .blog-inner::after {
    content: "";
    display: block;
    width: 80vw;
    height: 50vw;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: -26vw;
    z-index: -1;
    transform: skewY(-27deg);
    border-radius: 10px;
  }

  .slide10 .photoArea {
    display: none;
  }

  .blog-inner .main-tit01 {
    left: 15.8333vw;
    top: -36vw;
    width: 30vw;
  }
  .blog-inner .main-tit02 {
    position: absolute;
    left: 25.8333vw;
    top: -25vw;
    width: 37.5vw;
  }
  .blog-wrap ul {
    width: 66.1111vw;
    margin: 0 auto;
    padding-top: 0;
    padding-left: 0;
    gap: 15.5556vw 0;
  }
  .blog-wrap ul li.blog-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 0;
  }
  .blog-wrap .blog-item .img-box {
    width: 46.6667vw;
    height: 24.4444vw;
  }
  .blog-wrap .blog-item .txt-box {
    width: 100%;
  }
  .blog-wrap .blog-item .txt {
    font-size: 3.8889vw;
    font-weight: 400;
    margin-top: 8.8889vw;
    margin-bottom: 4.4444vw;
  }
  .blog-wrap .blog-item .tit {
    font-size: 3.8889vw;
    font-weight: 400;
    line-height: 1.85;
    margin-top: 0;
  }
  .blog-wrap .more {
    width: 100%;
    margin: 7.2222vw auto 0;
    text-align: center;
    position: initial;
  }
  .blog-wrap .more a {
    justify-content: center;
    font-size: 3.8889vw;
  }
  .blog-wrap .more img {
    width: 1.6667vw;
    margin-right: 2.2222vw;
  }


  .blog-inner .main-tit01.fade-up.visible {
    animation-delay: 0.3s;
  }
  .blog-inner .main-tit02.fade-up.visible {
    animation-delay: 0.3s;
  }
  .blog-inner ul li:nth-child(1) .fade-up {
    animation-delay: 0.3s;
  }
  .blog-inner ul li:nth-child(2) .fade-up {
    animation-delay: 0.3s;
  }
  .blog-inner ul li:nth-child(3) .fade-up {
    animation-delay: 0.3s;
  }
  .blog-inner .more.fade-up {
    animation-delay: 0.3s;
  }
}




/* footer */
/* ============================================ */
.slide10 .footer {
  margin: 0 0 0 auto;
  position: relative;
}
.footer .footer-inner {
  width: 880px;
  height: 488px;
  margin: 0 0 0 auto;
  padding-left: 90px;
  box-sizing: border-box;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.footer .footer-inner::before {
  content: "";
  display: block;
  width: 315px;
  height: 100%;
  background: #000;
  position: absolute;
  z-index: -1;
  left: -140px;
  transform: skewX(-27deg);
  border-radius: 17px;
}

.footer .info-txt dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
}
.footer .info-txt dl dt {
  width: 184px;
  height: 56px;
  border: 1px solid #FFF;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  transition: all 0.5s ease;
}
.footer .info-txt dl dt:hover {
  opacity: 0.7;
}
.footer .info-txt dl dt a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.footer .info-txt dl dt a:hover {

}
.footer .info-txt dl dd b {
  display: block;
  font-size: 24px;
  letter-spacing: 0.05em;
}
.footer .info-txt dl dd p {
  font-size: 14px;
  margin-top: 8px;
}
.footer address {
  display: block;
  font-size: 16px;
  font-style: normal;
  letter-spacing: 0.05em;
  margin-top: 72px;
  margin-bottom: 24px;
}
.footer ul {
  display: flex;
  justify-content: flex-start;
  gap: 8px 32px;
}
.footer ul li a {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .slide10 .footer {
    width: 100%;
    margin: 33.6111vw auto 0;
    padding-bottom: 15.8333vw;
    background-color: #000;
  }
  .slide10 .footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 75vw;
    background: #000;
    position: absolute;
    left: 0;
    top: -27vw;
    transform: skewY(-27deg);
    border-radius: 0;
  }
  .footer .footer-inner {
    width: 56.9444vw;
    height: 100%;
    margin:  0 auto;
    padding-left: 0;
    padding-top: 11.1111vw;
  }
  .footer .footer-inner::before {
    display: none;
  }
  .footer .info-txt dl {
    align-items: flex-start;
    flex-direction: column;
    gap: 9.4444vw;
  }
  .footer .info-txt dl dt {
    width: 51.1111vw;
    height: 15.5556vw;
    align-items: center;
    font-size: 5vw;
    border-radius: 7.7778vw;
  }
  .footer .info-txt dl dd b {
    /* font-size: 6.6667vw; */
    font-size: 6vw;
  }
  .footer .info-txt dl dd p {
    font-size: 3.8889vw;
    margin-top: 6.6667vw;
  }
  .footer address {
    font-size: 4.4444vw;
    margin-top: 15.5556vw;
    margin-bottom: 6.6667vw;
  }
  .footer ul {
    flex-direction: column;
    gap: 4.4444vw;
  }
  .footer ul + ul {
    /* margin-top: 9.4444vw; */
    margin-top: 1em;
  }
}










/* effect */
/* ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  /* transition: opacity 1s ease, transform 1s ease; */
}

.fade-up.visible {
  /* opacity: 1;
  transform: translateY(0); */
  animation: effect00 1s ease 0s 1 forwards;
}
@keyframes effect00 {
  100% { opacity: 1; transform: translate( 0, 0);}
}


.fade-in {
  opacity: 0;
}

.fade-in.visible {
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}
@keyframes effect00 {
  100% { opacity: 1; transform: translate( 0, 0);}
}




/* pagination */
/* ============================================ */
.pagination {
  max-width: 1000px;
  width: 100%;
  position: fixed;
  bottom: 3.8889vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 99;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #BDBDBD;
  transition: background 0.3s;
  cursor: pointer;
}

.dot.active {
  background: #333333;
}
@media screen and (max-width: 768px) {
  .pagination {
    display: none;
  }
}