/* 全体設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: auto;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  position: relative;
  font-feature-settings: "palt";
  background-color: #fff;
  overflow-x: hidden;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul {
  display: block;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

.pc-none {
  display: none !important;
}

.hoverFade {
  transition: all .5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hoverFade:hover {
    opacity: 0.5;
  }
}



/* 個別設定 */

/************ ヘッダー ************/
header {
  position: relative;
}

.header-logo {
  position: fixed;
  top: 16px;
  left: -1px;
  background-color: #0a0a0a;
  z-index: -1;
  transition: all 0.8s ease;
}

.header-logo:hover {
  translate: -6px;
}

.header-logo img {
  display: block;
  width: 100px;
  padding: 18px 28px;
}

.btn_wrap {
  position: fixed;
  top: 32px;
  right: 158px;
  z-index: 997;
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
}

.btn-insta {
  width: 36px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
}

.btn-insta img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-insta:hover {
  opacity: 0.5;
}

.btn-contact {
  position: relative;
  display: block;
  padding: 1px;
  z-index: 999;
}

.btn-contact::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #3d6bdf, #ffd381);
  border-radius: 999px;
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-contact::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to left, #3d6bdf, #ffd381);
  border-radius: 999px;
  z-index: -2;
}

.btn-contact:hover::before {
  opacity: 0;
}

.btn-contact .inner {
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.6em 1.6em;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 20px;
  background-color: #0a0a0a;
  border-radius: 999px;
}

.btn-contact .inner img {
  display: block;
  width: 20px;
}

.hamburger {
  position: fixed;
  top: 48px;
  right: 48px;
  width: 72px;
  height: 16px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  z-index: 999;
  mix-blend-mode: difference;
  opacity: 0;
  visibility: hidden;
}

.hamburger .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: #141414;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  overflow: scroll;
}

.menu.active {
  opacity: 1;
  visibility: visible;
}

.menu .wrap {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.menu .wrap .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  overflow: scroll;
}

.menu .wrap .content .menu-logo {
  width: 96px;
}

.menu .wrap .content .menu-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.menu .wrap .content .menu-list_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 52px;
}

.menu .wrap .content .menu-list a {
  display: block;
  font-family: "Work Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .hamburger:hover .bar:nth-child(2) {
    width: 60%;
  }
}

.hamburger.active .bar {
  transition: all .5s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px);
}

.hamburger.active .bar:nth-child(2) {
  width: 0%;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px);
}

/************ メインビジュアル ************/
.mv {
  width: 100%;
  height: 100dvh;
  /* height: 100vh; */
  position: relative;
}

.mv .logo {
  position: absolute;
  top: 72px;
  left: 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.mv .logo .main {
  display: block;
  width: 218px;
}

.mv .logo .sub {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #fff;
}

.mv .copy {
  position: absolute;
  right: 72px;
  bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 14px;
  z-index: 2;
}

.mv .copy .jp-mask {
  clip-path: inset(0);
  display: flex;
  flex-direction: column;
  align-items: end;
}

.mv .copy .jp-mask .line {
  display: block;
  width: 0%;
  height: 1px;
  margin-top: 2px;
  background: linear-gradient(to right, #3d6bdf, #ffd381);
  opacity: 0;
  visibility: hidden;
}

.mv .copy .jp {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.14em;
  line-height: 1.6;
  color: #fff;
  font-weight: 400;
  font-size: 20px;
  text-align: end;
  transform: translateY(1.3em);
  padding: 4px;
  opacity: 0;
  visibility: hidden;
}

.mv .copy .en {
  display: inline-flex;
  flex-direction: column;
  align-items: end;
  font-family: "Work Sans", sans-serif;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  font-weight: 300;
  font-size: 62px;
}

.mv .copy .en .en-mask {
  clip-path: inset(0);
}

.mv .copy .en .text-top .line {
  text-align: end !important;
}

.mv .copy .en .text-top .char,
.mv .copy .en .text-bottom .char {
  display: block;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.mv .scroll-down {
  position: absolute;
  left: 24px;
  bottom: 0;
  display: flex;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.mv .scroll-down .line {
  position: relative;
  display: block;
  width: 1px;
  height: 160px;
}

.mv .scroll-down .line .inner {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  animation: scroll-down-animation 4.5s ease-in-out 0s infinite normal none;
}

@keyframes scroll-down-animation {
  0% {
    height: 0;
  }

  20% {
    height: 100%;
  }

  100% {
    height: 100%;
  }
}

.mv .scroll-down .text {
  writing-mode: vertical-lr;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-top: 4px;
  color: #fff;
}

.mv-bg {
  width: 100%;
  height: 100dvh;
  /* height: 100vh; */
  /* aspect-ratio: 100 / 70;
  clip-path: url(#mv-bg_path); */
  overflow: hidden;
  background-color: #141414;
  z-index: 0;
}

.mv-bg video,
.mv-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv-bg .mv-swiper {
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
}

.mv-bg .swiper-slide {
  overflow: hidden;
}

.mv-bg .swiper-slide .image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mv-bg .swiper-slide .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-slide-active .image-wrapper,
.swiper-slide-duplicate-active .image-wrapper,
.swiper-slide-prev .image-wrapper {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.svg-mask {
  width: 1;
  height: 1;
  position: absolute;
  top: -1px;
  left: -1px;
}

/************ セクションタイトル-横（共通） ************/
.title {
  display: inline-flex;
  align-items: start;
  gap: 26px;
}

.title .box {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.title .deco-line {
  display: block;
  width: 3px;
  height: 76px;
  transform: skewY(45deg);
}

.title .deco-line .inner {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #3d6bdf, #ffd381);
}

.title .box h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #282828;
  clip-path: inset(0);
}

.title .box h2 span .char {
  display: block;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.title .box p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-left: 4px;
  color: #282828;
  clip-path: inset(0);
}

.title .box p span .char {
  display: block;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

/************ セクションタイトル-縦（共通） ************/
.title-t {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.title-t .box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.title-t .deco-line {
  display: block;
  width: 76px;
  height: 3px;
  transform: skewX(-45deg);
}

.title-t .deco-line .inner {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #3d6bdf, #ffd381);
}

.title-t .box h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #282828;
  clip-path: inset(0);
}

.title-t .box h2 span .char {
  display: block;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}

.title-t .box p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-left: 4px;
  color: #282828;
  clip-path: inset(0);
}

.title-t .box p span .char {
  display: block;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}


/************ moreボタン（共通） ************/
.btn-more {
  width: 132px;
  height: 38px;
  display: flex;
  align-items: center;
}

.btn-more .circle_wrap {
  width: calc(38px + 38px / 2 - 5px);
  height: 100%;
}

.btn-more .circle_wrap .circle {
  display: block;
  width: 38px;
  height: 38px;
  border: solid #282828 1px;
  border-radius: 999px;
  position: relative;
  transition: all 0.5s ease;
}

.btn-more .circle_wrap .circle .line {
  display: block;
  background-color: #282828;
  width: 33px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.5s ease;
}

.btn-more .text_wrap {
  width: calc(100% - (38px + 38px / 2 - 5px));
  height: 22px;
  position: relative;
  overflow: hidden;
}

.btn-more .text_wrap .text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Work Sans", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.03em;
  text-align: center;
  transition: all .5s ease-in-out;
}

.btn-more .text_wrap .text.hidden {
  opacity: 0;
  transform: translateY(100%);
}


@media (hover: hover) and (pointer: fine) {
  section a:hover .text_wrap .text.hidden {
    opacity: 1;
    transform: translateY(0);
  }

  section a:hover .text_wrap .text.visible {
    opacity: 0;
    transform: translateY(-100%);
  }

  section a:hover .circle_wrap .circle .line {
    width: 0px;
  }

  section a:hover .circle_wrap .circle {
    transform-origin: center center;
    transform: scale(0.9);
  }
}

/************ ABOUTUS ************/
.about {
  width: 100%;
  position: relative;
  z-index: 1;
}

.about .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 90px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.about .wrap .container {
  max-width: 1260px;
  width: 100%;
  margin-top: 140px;
}

.about .wrap .container .content {
  display: flex;
  align-items: start;
  width: 100%;
  gap: 72px;
  margin-top: 56px;
}

.about .wrap .container .content .image {
  position: relative;
  width: calc(100% - 540px - 72px);
  aspect-ratio: 62 / 43;
}

.about .wrap .container .content .image .inner {
  display: block;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
}

.about .wrap .container .content .image .inner img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .wrap .container .content .image .back {
  display: block;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  filter: grayscale(1);
  opacity: 0.4;
  z-index: 1;
}

.about .wrap .container .content .image .back img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .wrap .container .content .text_box {
  width: 540px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  opacity: 1;
  visibility: visible;
}

.about .wrap .container .content .text_box .text-title {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about .wrap .container .content .text_box h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-align: justify;
}

.about .wrap .container .content .text_box h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-align: justify;
}

.about .wrap .container .content .text_box p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  line-height: 2;
  text-align: justify;
  margin-top: 28px;
}

.about .btn-more {
  margin-top: 64px;
}

/************ SERVICE ************/
.service {
  width: 100%;
  position: relative;
  z-index: 2;
}

.service .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 90px;
  margin: 0 auto;
  z-index: 5;
}

.service .wrap .container {
  max-width: 1260px;
  width: 100%;
  margin-top: 160px;
}

.service .wrap .container .item_wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 56px;
}

.service .wrap .container .item_wrap a {
  display: flex;
  width: 100%;
}

.service .wrap .container .item_wrap .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service .wrap .container .item_wrap .item .item-image {
  width: 100%;
  aspect-ratio: 20 / 13;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.service .wrap .container .item_wrap .item-image img {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

/* @media (hover: hover) and (pointer: fine) {
  .service .wrap .container .item_wrap .item:hover .item-image img {
    scale: 1.06;
    opacity: 0.5;
  }
} */

.service .wrap .container .item_wrap .item .item-text {
  width: 100%;
  margin-top: 20px;
}

.service .wrap .container .item_wrap .item .item-text>h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.service .wrap .container .item_wrap .item .item-text>p {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  margin-top: 8px;
}

.service .btn-more {
  margin-top: 16px;
  transform-origin: left;
  transform: scale(0.9);
}

/************ BRANDING ************/
.branding {
  width: 100%;
  margin-top: 120px;
}

.branding .wrap {
  display: flex;
  width: 100%;
}

.branding .wrap .image {
  position: relative;
  width: calc(100% - 740px);
  overflow: hidden;
}

.branding .wrap .image .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branding .wrap .image .back {
  width: 100%;
  height: 100%;
  position: absolute;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 1;
  filter: grayscale(1);
  opacity: 0.4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.branding .wrap .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branding .wrap .content {
  width: 740px;
  padding: 48px 100px;
}

.branding .wrap .content .title-brand {
  display: block;
  width: 440px;
}

.branding .wrap .content h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  margin-top: 16px;
}

.branding .wrap .content p {
  font-size: 14px;
  font-weight: 400;
  margin-top: 16px;
}

.branding .wrap .content .list {
  width: 100%;
  position: relative;
  padding: 4px;
  margin-top: 40px;
}

.branding .wrap .content .list .list-line {
  position: absolute;
  background-color: #282828;
  transform-origin: center;
  transform: scale(0.95);
}

.branding .wrap .content .list .list-line.top {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.branding .wrap .content .list .list-line.left {
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
}

.branding .wrap .content .list .list-line.right {
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
}

.branding .wrap .content .list .list-line.bottom {
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.branding .wrap .content .list ul {
  width: 100%;
  padding: 8px 32px;
  border: 1px solid #282828;
}

.branding .wrap .content .list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #c8c8c8;
  padding: 32px 24px;
}

.branding .wrap .content .list li h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
}

.branding .wrap .content .list li p {
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.branding .wrap .content .list li .number {
  position: absolute;
  bottom: 20px;
  height: 52px;
  z-index: -1;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
}

.branding .wrap .content .list li .number.one {
  right: 16px;
}

.branding .wrap .content .list li .number.two {
  right: 5px;
}

.branding .wrap .content .list li .number.three {
  right: 10px;
}

.branding .wrap .content .list li:last-child {
  border-bottom: none;
}

.branding .wrap .content .list .icon {
  display: block;
}

.branding .wrap .content .list .icon.hp {
  width: 72px;
}

.branding .btn-more {
  margin-top: 40px;
}

/* FEATURES */
.features {
  width: 100%;
  margin-top: 120px;
  position: relative;
}

.features .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 116px 60px 116px;
  margin: 0 auto;
  background-image: url(../images/feature-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #141414;

}

.features .wrap .container {
  max-width: 1260px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.features .wrap .container .title-t .box h2 {
  color: #ffffff;
}

.features .wrap .container .title-t .box p {
  color: #ffffff;
}

.features .wrap .container .problem-list {
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.features .wrap .container .feature-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding: 0.5em 2em;
}

.features .wrap .container .problem-list ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.features .wrap .container .problem-list ul li {
  width: 100%;
  padding: 4px;
  background-color: #fff;
}

.features .wrap .container .problem-list ul li .list-inner {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
  padding: 0.8em 1em;
  border-top: 1px solid #808080;
  border-bottom: 1px solid #808080;
}

.features .wrap .container .problem-list .arrow-grade {
  width: 260px;
  margin-top: 60px;
}

.features .wrap .container .support_wrap {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 52px;
}

.features .wrap .container .support_wrap .support-item_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 76px;
  gap: 60px;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image {
  width: 100%;
  height: 100px;
  position: relative;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image.icon-support img {
  height: 100%;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image.icon-growth img {
  height: 100%;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image.icon-pinpoint img {
  height: 100%;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image.icon-price img {
  height: 100%;
}


.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text .support-item-title_box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text .support-item-title_box .eng {
  font-family: "Cormorant", serif;
  color: #C5A975;
  font-size: 40px;
  line-height: 1;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text .support-item-title_box .main {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text p {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-top: 8px;
}

.features .btn-more {
  margin-top: 18px;
  transform-origin: left;
  transform: scale(0.9);
}

.features .btn-more .circle_wrap .circle {
  border: solid #ffffff 1px;
}

.features .btn-more .circle_wrap .circle .line {
  background-color: #ffffff;
}

.features .btn-more .text_wrap .text {
  color: #fff;
}

/************ CASES ************/
.cases {
  width: 100%;
  position: relative;
}

.cases .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 90px;
  margin: 0 auto;
  position: relative;
}

.cases .wrap .container {
  max-width: 1260px;
  width: 100%;
  margin-top: 160px;
}

.cases .wrap .container .item_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-top: 62px;
  gap: 30px;
}

.cases .wrap .container .item_wrap a {
  display: flex;
  transition: all .5s ease;
}

.cases .wrap .container .item_wrap .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border: 1px solid #141414;
}

@media (hover: hover) and (pointer: fine) {
  .cases .wrap .container .item_wrap a:hover .image img {
    transform: scale(1.04);
    opacity: 0.7;
  }

  .cases .wrap .container .item_wrap a:hover {
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px #141414;
  }
}

.cases .wrap .container .item_wrap .item .image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  overflow: hidden;
}

.cases .wrap .container .item_wrap .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
}

.cases .wrap .container .item_wrap .item .title {
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 24px 24px 0;
}

.cases .wrap .container .item_wrap .item .text_box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  padding: 0 24px 24px;
  margin-top: 14px;
}

.cases .wrap .container .item_wrap .item .text_box .sub {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.cases .wrap .container .item_wrap .item .text_box .sub .article_wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wrap .container .item_wrap .item .text_box .sub .article {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  display: flex;
  gap: 0.5em;
  white-space: nowrap;
}

.cases .item_wrap .btn-more {
  transform-origin: right bottom;
  transform: scale(0.7) translate(12px, 8px);
}

.cases .btn-more.btn-more-cases {
  width: 160px;
  margin-top: 62px;
}


/* case-item */
.cases .wrap .container .case-item_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-top: 62px;
  gap: 56px;
}

.cases .wrap .container .case-item {
  width: 100%;
}

.cases .wrap .container .case-item .image {
  width: 100%;
  aspect-ratio: 143 / 90;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cases .wrap .container .case-item .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases .wrap .container .case-item .text_box {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.cases .wrap .container .case-item .text_box .area {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1;
}

.cases .wrap .container .case-item .text_box .type {
  font-size: 15px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  margin-left: 0.5em;
  gap: 0.5rem;
}

.cases .wrap .container .case-item .text_box .type::before {
  display: block;
  content: "";
  width: 1px;
  height: 1rem;
  background-color: #0a0a0a;
}

.cases .wrap .container .case-item .text_box h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 0.5em;
}

.cases .wrap .container .case-item .text_box p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 0.5em;
  text-align: justify;
}



/************ CONTACT ************/
.contact {
  width: 100%;
  position: relative;
}

.contact .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 90px;
  margin: 0 auto;
  position: relative;
}

.contact .wrap .container {
  max-width: 1020px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
}

.contact .wrap .container .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 48px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 0 16px 4px #1414140f;
}

.contact .wrap .container .content p {
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  margin-top: 48px;
  padding: 0 32px;
}

.contact .wrap .container .content .button_wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 48px;
  padding: 0 32px;
}

.contact .wrap .container .content .button_wrap a {
  display: flex;
  width: 360px;
  border-radius: 13px;
  overflow: hidden;
  transition: all .5s ease;
}

@media (hover: hover) and (pointer: fine) {
  .contact .wrap .container .content .button_wrap a:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 8px 2px #1414140c;
  }

  .contact .wrap .container .content .button_wrap a:hover .button::before {
    opacity: 0;
  }
}

.contact .wrap .container .content .button_wrap .button {
  display: flex;
  width: 100%;
  padding: 1px;
  border-radius: 13px;
  position: relative;
  z-index: 2;
}

.contact .wrap .container .content .button_wrap .button::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #3d6bdf, #ffd381);
  z-index: -1;
  transition: all .8s ease;
}

.contact .wrap .container .content .button_wrap .button::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #3d6bdf, #ffd381);
  z-index: -2;
}

.contact .wrap .container .content .button_wrap .button .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
}

.contact .wrap .container .content .button_wrap .button .inner .title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
}

.contact .wrap .container .content .button_wrap .button.tel .inner .number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Work Sans", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #C8C8C8;
  padding: 0.4em;
}

.contact .wrap .container .content .button_wrap .button.tel .inner .number .icon-tel {
  display: block;
  width: 20px;
}

.contact .wrap .container .content .button_wrap .button.tel .inner .other {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

.contact .wrap .container .content .button_wrap .button.tel .inner .other .time {
  font-family: "Work Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.contact .wrap .container .content .button_wrap .button.tel .inner .other .slash {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
}

.contact .wrap .container .content .button_wrap .button.tel .inner .other .close {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.contact .wrap .container .content .button_wrap .button.mail .inner .icon-mail {
  display: block;
  width: 25px;
}

.contact .wrap .container .content .button_wrap .button.mail .inner .title {
  margin-top: 8px;
}

.contact .wrap .container .content .button_wrap .button.mail .inner .eng {
  font-family: "Work Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #C8C8C8;
}

.contact .wrap .container .content .button_wrap .button.mail .inner .arrow {
  display: block;
  width: 32px;
  margin-top: 16px;
}

/************ FOOTER ************/
footer .wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 60px;
  margin-top: 120px;
  background-color: #1e1e1e;
}

footer .wrap .container {
  max-width: 1260px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 84px 0;
}

footer .wrap .container .info_wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 168px;

}

footer .wrap .container .info_wrap .logo {
  display: block;
  width: 146px;
}

footer .wrap .container .info_wrap .info_box {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: 24px;
  gap: 12px;
  color: #fff;
  letter-spacing: 0.05em;
}

footer .wrap .container .info_wrap .info_box .name {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

footer .wrap .container .info_wrap .info_box .address {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

footer .wrap .container .copyright {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  margin-top: 20px;
}

footer .wrap .container .nav_wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
}

footer .wrap .container .nav_wrap .nav_box {
  display: flex;
  align-items: start;
  gap: 40px;
}

footer .wrap .container .nav_wrap .nav_box .nav-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .wrap .container .nav_wrap .nav_box .nav-item a {
  display: inline-block;
  line-height: 1;
}

footer .wrap .container .nav_wrap .nav_box .nav-item .nav-text-main {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #fff;
}

footer .wrap .container .nav_wrap .nav_box .nav-item .nav-text-main.small {
  font-size: 12px;
  font-weight: 300;
}

footer .wrap .container .nav_wrap .nav_box .nav-item .nav-text-list {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  padding: 8px 0 8px 16px;
  border-left: 1px solid #4E4E4E;
  gap: 12px;
}

footer .wrap .container .nav_wrap .nav_box .nav-item .nav-text-list .nav-text-sub a {
  display: flex;
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

footer .wrap .container .nav_wrap .nav_box .nav-item .nav-text-list .nav-text-sub a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-image: url(../images/nav-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}

footer .wrap .container .nav_wrap .banner_wrap {
  display: flex;
  gap: 16px;
  margin-top: 44px;
}

footer .wrap .container .nav_wrap .banner_wrap .banner {
  display: block;
  width: 340px;
}

footer .wrap .container .nav_wrap .banner_wrap .banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

footer .wrap .container .copyright-sp {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
  margin-top: 40px;
}

/* image-space */
.image-space {
  width: 100%;
  height: 360px;
  position: relative;
  clip-path: inset(0);
  margin-top: 140px;
}

.image-space img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: fixed;
}




/* TBレスポンシブ */
@media screen and (max-width:1259px) {

  .pc-none {
    display: block !important;
  }

  .about .wrap {
    padding: 0 60px;
  }

  .about .wrap .container .content {
    flex-direction: column;
  }

  .about .wrap .container .content .image {
    width: 100%;
  }

  .about .bottom_wrap {
    margin-top: 72px;
  }

  .service .wrap {
    padding: 0 60px;
  }

  .branding .wrap {
    flex-direction: column;
    margin-top: 80px;
  }

  .branding .wrap .image {
    width: calc(100% - 60px);
    height: 600px;
  }

  .branding .wrap .content {
    width: 100%;
    padding: 24px 60px;
    margin-top: 40px;
  }

  .features .wrap .container .support_wrap .support-item_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 76px;
    gap: 60px;
  }

  /* cases */
  .cases .wrap {
    padding: 0 60px;
  }

  .cases .bottom_wrap {
    margin-top: 4vw;
  }

  .cases .wrap .container .item_wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .cases .wrap .container .item_wrap .item .text_box .sub {
    flex-direction: column;
    align-items: start;
  }

  .cases .item_wrap .btn-more {
    transform-origin: left bottom;
    margin-top: 16px;
    transform: scale(0.7) translate(-4px, 0);
  }

  /* contact */
  .contact .wrap {
    padding: 0 60px;
    margin-top: 24px;
  }

  .contact .wrap .container .content .button_wrap {
    gap: 16px;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .number {
    font-size: 2.4vw;
    width: 100%;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .number .icon-tel {
    width: 1.6vw;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .other {
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .other .slash {
    display: none;
  }

  /************ FOOTER ************/
  footer .wrap {
    padding: 0 60px;
    margin-top: 120px;
  }

  footer .wrap .container {
    flex-direction: column;
    align-items: center;
    margin: 40px 0;
  }

  footer .wrap .container .info_wrap {
    align-items: center;
    margin-top: 40px;
  }

  footer .wrap .container .info_wrap .info_box {
    align-items: center;
  }

  footer .wrap .container .copyright {
    display: none;
  }

  footer .wrap .container .nav_wrap {
    align-items: center;
    margin-top: 56px;
  }

  footer .wrap .container .nav_wrap .nav_box {
    gap: 32px;
  }

  footer .wrap .container .nav_wrap .banner_wrap {
    display: flex;
    gap: 16px;
    margin-top: 40px;
  }

  footer .wrap .container .nav_wrap .banner_wrap .banner {
    width: 50%;
  }
}


/* SPレスポンシブ */
@media screen and (max-width:599px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }

  .header-logo {
    top: 10px;
  }

  .header-logo img {
    display: block;
    width: 92px;
    padding: 16px 24px;
  }

  .btn_wrap {
    top: 19px;
    right: 80px;
    gap: 16px;
  }

  .btn-insta {
    width: 32px;
  }


  .btn-contact .inner {
    font-size: 14px;
  }

  .btn-contact .inner img {
    width: 20px;
  }

  .btn-contact .inner .text {
    display: none;
  }

  .hamburger {
    width: 40px;
    height: 16px;
    top: 32px;
    right: 22px;
  }

  .mv .logo {
    top: 6vw;
    left: 6vw;
    gap: 3.6vw;
  }

  .mv .logo .main {
    width: 34vw;
  }

  .mv .logo .sub {
    font-size: 1.8vw;
  }

  .mv .copy {
    right: 7vw;
    bottom: 8vw;
    gap: 1.69vw;
  }

  .mv .copy .jp-mask .line {
    margin-top: 3px;
  }

  .mv .copy .jp {
    font-size: 16px;
  }

  .mv .copy .en {
    font-size: 8.4vw;
  }

  .mv .scroll-down {
    left: 16px;
    gap: 6px;
  }

  .mv .scroll-down .line {
    height: 140px;
  }

  .mv .scroll-down .text {
    font-size: 10px;
  }

  /* タイトル横 */
  .title {
    gap: 12px;
  }

  .title .deco-line {
    width: 2px;
    height: 40px;
  }

  .title .box {
    gap: 6px;
  }

  .title .box h2 {
    font-size: 40px;
  }

  .title .box p {
    font-size: 14px;
    margin-left: 0.27vw;
  }

  /* タイトル縦 */
  .title-t {
    gap: 12px;
  }

  .title-t .deco-line {
    width: 40px;
    height: 2px;
  }

  .title-t .box {
    gap: 6px;
  }

  .title-t .box h2 {
    font-size: 40px;
  }

  .title-t .box p {
    font-size: 14px;
    margin-left: 0.27vw;
  }

  /* about */
  .about .wrap {
    padding: 0 32px;
  }

  .about .wrap .container {
    margin-top: 96px;
  }

  .about .wrap .container .content {
    flex-direction: column;
    margin-top: 32px;
    gap: 26px;
  }

  .about .wrap .container .content .image {
    width: 100%;
  }

  .about .wrap .container .content .text_box {
    width: 100%;
  }

  .about .wrap .container .content .text_box .text-title {
    gap: 20px;
  }

  .about .wrap .container .content .text_box h3 {
    font-size: 22px;
  }

  .about .wrap .container .content .text_box h4 {
    font-size: 16px;
  }

  .about .wrap .container .content .text_box p {
    font-size: 14px;
    margin-top: 20px;
  }

  .about .bottom_wrap {
    margin-top: 52px;
  }

  /* moreボタン */

  .btn-more {
    width: 96px;
    height: 24px;
  }

  .about .btn-more {
    margin-top: 32px;
  }

  .btn-more .circle_wrap {
    width: calc(24px + 24px / 2 - 4px);
  }

  .btn-more .circle_wrap .circle {
    width: 24px;
    height: 24px;
  }

  .btn-more .circle_wrap .circle .line {
    width: 20px;
    height: 1px;
  }

  .btn-more .text_wrap {
    width: calc(100% - (24px + 24px / 2 - 4px));
    height: 18px;
  }

  .btn-more .text_wrap .text {
    font-size: 18px;
  }

  /* service */

  .service .wrap {
    padding: 0 32px;
  }

  .service .wrap .container {
    margin-top: 96px;
  }

  .service .wrap .container .item_wrap {
    width: 100%;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 40px;
  }

  .service .wrap .container .item_wrap .item {
    width: 100%;
  }

  .service .wrap .container .item_wrap .item .item-text>h3 {
    font-size: 20px;
  }

  .service .wrap .container .item_wrap .item .item-text>p {
    font-size: 14px;
  }

  /* branding */
  .branding {
    margin-top: 64px;
  }

  .branding .wrap {
    margin-top: 0;
  }

  .branding .wrap .image {
    width: 100%;
    height: 280px;
  }

  .branding .wrap .content {
    width: 100%;
    padding: 24px 32px;
    margin-top: 24px;
  }

  .branding .wrap .content .title-brand {
    width: 90%;
  }

  .branding .wrap .content h2 {
    font-size: 20px;
    margin-top: 16px;
  }

  .branding .wrap .content p {
    margin-top: 10px;
    text-align: justify;
  }

  .branding .wrap .content .list {
    margin-top: 32px;
  }

  .branding .wrap .content .list ul {
    padding: 8px 16px;
  }

  .branding .wrap .content .list li {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 32px 16px;
  }

  .branding .wrap .content .list li .brand-list-text_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .branding .wrap .content .list li h3 {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1;
  }

  .branding .wrap .content .list li p {
    width: 100%;
    text-align: justify;
    line-height: 1.8;
    font-size: 14px;
  }

  .branding .wrap .content .list li .number {
    height: 52px;
  }

  .branding .wrap .content .list li .number.one {
    right: 16px;
  }

  .branding .wrap .content .list li .number.two {
    right: 5px;
  }

  .branding .wrap .content .list li .number.three {
    right: 10px;
  }

  .branding .wrap .content .list li:last-child {
    border-bottom: none;
  }

  .branding .wrap .content .list .icon {
    display: block;
  }

  .branding .wrap .content .list .icon.hp {
    width: 72px;
  }

  .branding .wrap .content .list .icon.sign {
    width: 78px;
  }

  .branding .wrap .content .list .icon.brand-image {
    width: 73px;
  }

  .branding .btn-more {
    margin-top: 32px;
  }

  /* feature */
  .features {
    margin-top: 40px;
  }

  .features .wrap {
    padding: 64px 32px 64px;
  }

  .features .wrap .container .problem-list {
    margin-top: 28px;
  }

  .features .wrap .container .feature-title {
    width: 100%;
    font-size: 18px;
    padding: 0.5em;
  }

  .features .wrap .container .problem-list ul {
    margin-top: 24px;
  }

  .features .wrap .container .problem-list ul li .list-inner {
    font-size: 14px;
  }

  .features .wrap .container .problem-list .arrow-grade {
    width: 200px;
    margin-top: 32px;
  }


  /* support */

  .features .wrap .container .support_wrap {
    margin-top: 32px;
  }

  .features .wrap .container .support_wrap .support-item_wrap {
    margin-top: 40px;
    gap: 60px;

  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-image {
    height: 80px;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap {
    align-items: center;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text .support-item-title_box {
    align-items: center;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text {
    align-items: center;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text .support-item-title_box .eng {
    font-size: 32px;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text .support-item-title_box .main {
    font-size: 18px;
  }

  .features .wrap .container .support_wrap .support-item_wrap .support-item .support-item-text_wrap .support-item-text p {
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  .features .btn-more {
    transform: scale(1);
  }

  /* cases */
  .cases .wrap {
    padding: 0 32px;
  }

  .cases .wrap .container {
    margin-top: 96px;
  }

  .cases .wrap .container .item_wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 40px;
    gap: 24px;
  }

  .cases .wrap .container .item_wrap .item .title {
    font-size: 16px;
    padding: 18px 18px 0;
  }

  .cases .wrap .container .item_wrap .item .text_box {
    padding: 0 18px 18px;
    margin-top: 12px;
  }

  .cases .wrap .container .item_wrap .item .text_box .sub .article_wrap {
    gap: 6px;
  }

  .wrap .container .item_wrap .item .text_box .sub .article {
    font-size: 12px;
  }

  .cases .wrap .container .item_wrap .item .text_box .sub {
    flex-direction: column;
    align-items: start;
  }

  .cases .item_wrap .btn-more {
    margin-top: 16px;
  }

  .cases .btn-more.btn-more-cases {
    width: 120px;
    margin-top: 40px;
  }

  .cases .bottom_wrap {
    margin-top: 48px;
  }

  /* case-item */
  .cases .wrap .container .case-item_wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 32px;
    gap: 40px;
  }

  .cases .wrap .container .case-item .text_box {
    margin-top: 24px;
  }

  .cases .wrap .container .case-item .text_box .area {
    font-size: 14px;
  }

  .cases .wrap .container .case-item .text_box .type {
    font-size: 13px;
  }

  .cases .wrap .container .case-item .text_box h3 {
    font-size: 20px;
  }

  .cases .wrap .container .case-item .text_box p {
    font-size: 14px;
  }


  /* contact */
  .contact .wrap {
    padding: 0 32px;
    margin-top: 16px;
  }

  .contact .wrap .container {
    margin-top: 64px;
  }

  .contact .wrap .container .content {
    margin-top: 32px;
  }

  .contact .wrap .container .content p {
    font-size: 14px;
    margin-top: 32px;
  }

  .contact .wrap .container .content .button_wrap {
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
    margin-bottom: 32px;
    padding: 0 32px;
  }

  .contact .wrap .container .content .button_wrap a {
    width: 100%;
  }

  .contact .wrap .container .content .button_wrap .button .inner {
    padding: 24px;
  }

  .contact .wrap .container .content .button_wrap .button .inner .title {
    font-size: 14px;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .number {
    gap: 6px;
    font-size: 5.3vw;
    margin-top: 4px;
    white-space: nowrap;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .number .icon-tel {
    width: 3.2vw;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .other {
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .other .time {
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .other .slash {
    display: none;
  }

  .contact .wrap .container .content .button_wrap .button.tel .inner .other .close {
    font-size: 12px;
  }

  .contact .wrap .container .content .button_wrap .button.mail .inner .icon-mail {
    width: 22px;
  }

  .contact .wrap .container .content .button_wrap .button.mail .inner .title {
    margin-top: 8px;
  }

  .contact .wrap .container .content .button_wrap .button.mail .inner .eng {
    font-size: 12px;
    margin-top: 4px;
  }

  .contact .wrap .container .content .button_wrap .button.mail .inner .arrow {
    width: 28px;
    margin-top: 10px;
  }

  /************ FOOTER ************/
  footer .wrap {
    padding: 0 32px;
    margin-top: 64px;
  }

  footer .wrap .container .info_wrap {
    margin-top: 32px;
  }

  footer .wrap .container .info_wrap .logo {
    width: 116px;
  }

  footer .wrap .container .info_wrap .info_box {
    margin-top: 32px;
  }

  footer .wrap .container .info_wrap .info_box .name {
    font-size: 14px;
  }

  footer .wrap .container .info_wrap .info_box .address {
    line-height: 1.6;
    font-size: 12px;
    text-align: center;
  }

  footer .wrap .container .nav_wrap {
    align-items: center;
    margin-top: 56px;
  }

  footer .wrap .container .nav_wrap .nav_box {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    column-gap: 8px;
  }

  footer .wrap .container .nav_wrap .banner_wrap {
    flex-direction: column;
    margin-top: 56px;
  }

  footer .wrap .container .nav_wrap .banner_wrap .banner {
    width: 100%;
  }

  /* image-space */
  .image-space {
    height: 176px;
    margin-top: 96px;
  }

}