@charset "UTF-8";
.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

body {
  font-family: "Murecho", sans-serif;
  background-color: #F7F7F7;
}

body.is-drawer-open {
  overflow: hidden;
}

.header {
  position: absolute;
  right: 3%;
  top: 1%;
}
@media screen and (min-width: 768px) {
  .header {
    right: 2%;
    top: 5%;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .header__inner {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__nav {
  display: none;
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__link {
  position: relative;
  z-index: 55;
  padding: clamp(0px, 0.78125vw, 10px) clamp(0px, 2.34375vw, 30px) clamp(0px, 0.78125vw, 10px) clamp(0px, 3.515625vw, 45px);
  background-color: #333333;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
  font-size: clamp(0px, 1.015625vw, 13px);
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FCC800;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  z-index: -1;
}
.header__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.header__link::before {
  content: "";
  position: absolute;
  background-image: url(../img/icon-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(0px, 1.171875vw, 15px);
  height: clamp(0px, 1.015625vw, 13px);
  top: 33%;
  left: 15%;
}

.header__open {
  margin-top: 3px;
}
.drawer-button {
  z-index: 55;
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .drawer-button {
    width: clamp(0px, 5.46875vw, 70px);
    height: clamp(0px, 5.46875vw, 70px);
  }
}
.drawer-button.is-checked {
  background: #fff;
}

.drawer-icon {
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 55;
}
@media screen and (min-width: 768px) {
  .drawer-icon {
    width: 36px;
    height: 21px;
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 6px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
    top: 10px;
    -webkit-transform: translateX(-50%) rotate(30deg);
            transform: translateX(-50%) rotate(30deg);
  }
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 6px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
    top: 10px;
    -webkit-transform: translateX(-50%) rotate(-30deg);
            transform: translateX(-50%) rotate(-30deg);
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 1px;
  border-radius: 6px;
  background: #fff;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: clamp(0px, 2.8125vw, 36px);
  }
}
.drawer-icon__bar:nth-of-type(2) {
  top: 6px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(2) {
    top: 9px;
  }
}
.drawer-icon__bar:nth-of-type(3) {
  top: 12px;
}
@media screen and (min-width: 768px) {
  .drawer-icon__bar:nth-of-type(3) {
    top: 18px;
  }
}

.drawer-button.is-checked .drawer-icon__bar {
  background-color: #000;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #333;
  z-index: 50;
  padding-top: 60px;
  padding-right: 20px;
  padding-bottom: 40px;
  padding-left: 20px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .drawer-content-wrapper {
    width: 708px;
    margin: 0 auto;
  }
}

.drawer-content__menu {
  padding-top: 60px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .drawer-content__menu {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .drawer-content-logo {
    display: none;
  }
}
.drawer-content-logo img {
  width: 144px;
  height: 47px;
}

@media screen and (min-width: 768px) {
  .drawer__menu-wrapper {
    padding-top: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.drawer-content__top {
  display: none;
}
@media screen and (min-width: 768px) {
  .drawer-content__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

@media screen and (min-width: 768px) {
  .drawer-content__logo img {
    width: 258px;
    height: 84px;
  }
}

.drawer-content__address {
  color: #fff;
  padding-top: 20px;
  font-size: 14px;
}

.drawer-content__tel {
  color: #fff;
  font-size: 14px;
}

.drawer-content__sns {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.drawer-content__sns a img {
  width: 31px;
  height: 31px;
}

.drawer-section {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.drawer-section__title {
  padding-top: 25px;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.drawer-section__list {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.drawer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .drawer-sns {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .drawer-sns--type2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.drawer-sns-item {
  color: #fff;
  padding: 15px 25px 15px 25px;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.05em;
  width: 200px;
  height: 60px;
  margin: 0 auto;
  display: inline-block;
  overflow: hidden;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .drawer-sns-item {
    font-size: 13px;
    padding: 12px 20px 12px 20px;
    width: 150px;
    height: 45px;
    text-align: center;
  }
}
.drawer-sns-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #FCC800;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  z-index: -1;
}
.drawer-sns-item:hover {
  border: 1px solid #FCC800;
}
.drawer-sns-item:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.drawer-sns-item span {
  padding-right: 10px;
}
.drawer-sns-item span img {
  width: 18px;
  height: 15px;
}
@media screen and (min-width: 768px) {
  .drawer-sns-item span img {
    width: 15px;
    height: 12px;
  }
}

.drawer-cta {
  margin-top: 60px;
}

.drawer-cta__button {
  padding: 15px 55px 15px 25px;
  color: #fff;
  border-radius: 60px;
  font-size: 12px;
  border: 1px solid #fff;
  position: relative;
  display: inline-block;
  overflow: hidden;
  background-color: transparent;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.drawer-cta__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  z-index: 0;
}
.drawer-cta__button:hover {
  color: #808080;
}
.drawer-cta__button:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.drawer-cta__button:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.drawer-cta__button::before {
  position: absolute;
  content: "";
  background-image: url(../img/drawer-cta__button.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  top: 28%;
  right: 20px;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.drawer-cta__button-text {
  position: relative;
  z-index: 2;
}

.fv {
  position: relative;
}
.fv::before {
  content: "";
  position: absolute;
  background-image: url(../img/mv-deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 177px;
  height: 152px;
  bottom: 1%;
  right: 1%;
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .fv::before {
    width: clamp(0px, 21.796875vw, 279px);
    height: clamp(0px, 18.828125vw, 241px);
  }
}

.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 760px;
}
@media screen and (min-width: 768px) {
  .mv {
    width: 100%;
    height: 50.78125vw;
  }
}

.mv__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.mv__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  display: block;
  margin-bottom: -1px;
}

.mvMask {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 760px;
}
@media screen and (min-width: 768px) {
  .mvMask {
    width: 100%;
    height: 50.78125vw;
  }
}

.mvMask__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}

.mvMask__bg.is-show {
  opacity: 1;
}

.mvMask__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.mvText {
  position: absolute;
  z-index: 40;
  left: 4%;
  top: 5%;
}
@media screen and (min-width: 768px) {
  .mvText {
    left: 4%;
    top: 5%;
  }
}

.mv__logo img {
  width: 296px;
  height: 128px;
}
@media screen and (min-width: 768px) {
  .mv__logo img {
    width: clamp(0px, 41.640625vw, 533px);
    height: clamp(0px, 16.328125vw, 209px);
  }
}

.mvText__item {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .mvText__item {
    text-align: right;
  }
}
.mvText__item img {
  width: 238px;
  height: 113px;
}
@media screen and (min-width: 768px) {
  .mvText__item img {
    width: clamp(0px, 31.171875vw, 399px);
    height: clamp(0px, 6.09375vw, 78px);
  }
}

.sp-nav {
  background: #3a3a3a;
}
@media screen and (min-width: 768px) {
  .sp-nav {
    display: none;
  }
}

.sp-nav-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.sp-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 18px 8px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.sp-nav__item:last-child {
  border-right: none;
}

.sp-nav__icon {
  padding-right: 10px;
}
.sp-nav__icon img {
  width: 15px;
  height: 12px;
  display: block;
}

.concept__inner {
  padding: 70px 0px;
}

.concept__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(0px, 7.6923076923vw, 30px);
  width: clamp(0px, 100vw, 500px);
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .concept__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: clamp(0px, 67.03125vw, 858px);
  }
}

.concept__img {
  text-align: center;
}
.concept__img img {
  width: clamp(0px, 73.5897435897vw, 287px);
  height: clamp(0px, 55.1282051282vw, 215px);
}
@media screen and (min-width: 768px) {
  .concept__img img {
    width: clamp(0px, 34.0625vw, 436px);
    height: clamp(0px, 25.46875vw, 326px);
  }
}

.concept__text-1 {
  font-size: clamp(16px, 6.1538461538vw, 24px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .concept__text-1 {
    font-size: clamp(0px, 2.34375vw, 30px);
  }
}

.concept__text-2 {
  font-size: clamp(12px, 3.5897435897vw, 14px);
  padding-top: 10px;
  line-height: 2;
  font-weight: 300;
}

.cta {
  width: 100%;
  padding-top: clamp(120px, 33.3333333333vw, 427px);
  background-image: url(../img/cta-bg.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
@media screen and (min-width: 768px) {
  .cta {
    background-image: url(../img/cta-bg-pc.png);
    padding-top: 27.34375vw;
  }
}

.cta__inner {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .cta__inner {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .cta-pc {
    position: absolute;
    top: -22%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.cta__text {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: clamp(0px, 100vw, 500px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .cta__text {
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    padding: 0;
  }
}
.cta__text::before {
  position: absolute;
  content: "";
  background-image: url(../img/cta-deco.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(0px, 61.7948717949vw, 309px);
  height: clamp(0px, 35.3846153846vw, 177px);
  top: -119%;
  right: 1%;
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .cta__text::before {
    width: clamp(0px, 27.734375vw, 355px);
    height: clamp(0px, 15.9375vw, 204px);
    top: 20%;
    right: 2%;
  }
}

.cta__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.cta__brand img {
  width: clamp(0px, 67.4358974359vw, 337px);
  height: clamp(0px, 9.4871794872vw, 47px);
}
@media screen and (min-width: 768px) {
  .cta__brand img {
    width: clamp(0px, 28.28125vw, 362px);
    height: clamp(0px, 4.0625vw, 52px);
  }
}

.cta__brand-suffix {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .cta__brand-suffix {
    font-size: clamp(18px, 2.34375vw, 30px);
  }
}

.cta__lead {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .cta__lead {
    font-size: clamp(18px, 2.34375vw, 30px);
  }
}

.cta__catch {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .cta__catch {
    font-size: clamp(18px, 3.125vw, 40px);
  }
}

.cta__btn {
  display: inline-block;
  margin-top: 30px;
  font-size: 13px;
  padding: 15px 50px 15px 20px;
  background-color: #FCC800;
  border-radius: 60px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    font-size: clamp(14px, 1.40625vw, 18px);
  }
}
.cta__btn::before {
  position: absolute;
  content: "";
  background-image: url(../img/cta__btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 29px;
  height: 29px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4%;
}

.cta__img {
  padding-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cta__img {
    padding-top: clamp(0px, 15.625vw, 200px);
  }
}
.cta__img img {
  width: clamp(0px, 100vw, 500px);
}
@media screen and (min-width: 768px) {
  .cta__img img {
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    margin: 0 auto;
  }
}

.feature {
  background-color: #fff;
}

.feature__inner {
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  width: clamp(0px, 100vw, 500px);
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature__inner {
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    margin: 0 auto;
    padding-top: clamp(0px, 7.8125vw, 100px);
  }
}
.feature__inner::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/feature-deco.png);
  width: 132px;
  height: 112px;
  top: 6%;
  right: 2%;
}
@media screen and (min-width: 768px) {
  .feature__inner::before {
    display: none;
  }
}
.feature__inner::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../img/feature-deco-2.png);
  width: 249px;
  height: 185px;
  bottom: 1%;
  left: 2%;
}
@media screen and (min-width: 768px) {
  .feature__inner::after {
    width: clamp(0px, 28.125vw, 360px);
    height: clamp(0px, 20.859375vw, 267px);
    bottom: -6%;
    left: 2%;
  }
}

@media screen and (min-width: 768px) {
  .feature__title {
    width: clamp(0px, 47.5vw, 500px);
    position: relative;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .feature__title::before {
    position: absolute;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../img/feature-deco.png);
    width: clamp(0px, 14.765625vw, 189px);
    height: clamp(0px, 12.578125vw, 161px);
    top: 3%;
    right: 1%;
  }
}

.feature__title-en {
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 44px;
}
@media screen and (min-width: 768px) {
  .feature__title-en {
    font-size: clamp(28px, 4.21875vw, 54px);
  }
}

.feature__title-ja {
  font-size: 14px;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .feature__title-ja {
    font-size: clamp(14px, 1.25vw, 16px);
  }
}

.feature__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-top: 80px;
  padding-bottom: 250px;
}
@media screen and (min-width: 768px) {
  .feature__box {
    position: relative;
    display: block;
    padding-bottom: 0;
    padding-top: clamp(0px, 6.25vw, 80px);
    min-height: clamp(0px, 60.9375vw, 780px);
  }
}

@media screen and (min-width: 768px) {
  .feature__box-item {
    position: absolute;
  }
}
@media screen and (min-width: 768px) {
  .feature__box-item img {
    display: block;
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .feature__box-item:nth-child(1) {
    left: 0;
    top: clamp(0px, 9.375vw, 120px);
    width: clamp(0px, 32.8125vw, 420px);
  }
}
.feature__box-item {
  /* 右上（耐震等級） */
}
@media screen and (min-width: 768px) {
  .feature__box-item:nth-child(2) {
    right: 0;
    top: -10%;
    width: clamp(0px, 32.8125vw, 420px);
  }
}
.feature__box-item {
  /* 右下（自由設計） */
}
@media screen and (min-width: 768px) {
  .feature__box-item:nth-child(3) {
    right: 7%;
    top: clamp(0px, 32.8125vw, 420px);
    width: clamp(0px, 32.8125vw, 420px);
  }
}

.gallery {
  padding-top: 70px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .gallery {
    padding-top: clamp(0px, 15.625vw, 200px);
    padding-bottom: clamp(0px, 11.71875vw, 150px);
  }
}

@media screen and (min-width: 768px) {
  .gallery__inner {
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    margin: 0 auto;
  }
}

.info {
  background-color: #fff;
}

.info__inner {
  padding: 100px 15px 100px 15px;
  width: clamp(0px, 100vw, 500px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .info__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    gap: clamp(0px, 2.34375vw, 30px);
  }
}

@media screen and (min-width: 768px) {
  .info__visual img {
    width: clamp(0px, 40.078125vw, 513px);
    height: clamp(0px, 28.90625vw, 370px);
  }
}

.info__list {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .info__list {
    width: clamp(0px, 40.390625vw, 517px);
    padding-top: 0;
  }
}

.info__item {
  position: relative;
}

.info__text {
  padding: 30px 0;
  border-top: 1px solid #333;
}
@media screen and (min-width: 768px) {
  .info__text {
    padding: clamp(0px, 3.90625vw, 50px) 0;
  }
}

/* 最後だけ下線つける */
.info__item:last-child .info__text {
  border-bottom: 1px solid #333;
}

.info__title {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .info__title {
    font-size: clamp(20px, 2.5vw, 32px);
  }
}

.info__en {
  font-size: 16px;
  color: #FCC800;
  font-weight: 300;
  letter-spacing: 0.1em;
  font-family: "Zalando Sans Expanded", sans-serif;
}
@media screen and (min-width: 768px) {
  .info__en {
    font-size: clamp(16px, 1.875vw, 24px);
  }
}

.info__icon {
  position: absolute;
  right: 3%;
  top: 50%;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.info__icon img {
  width: 31px;
  height: 31px;
  display: block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .info__icon img {
    width: clamp(0px, 3.125vw, 40px);
    height: clamp(0px, 3.125vw, 40px);
  }
}

.info__item:hover .info__icon {
  -webkit-transform: translateY(-50%) translateX(10px);
          transform: translateY(-50%) translateX(10px);
}

.info__item:hover .info__icon img {
  -webkit-transform: translateX(6px) scale(1.1);
          transform: translateX(6px) scale(1.1);
}

.footer {
  background-color: #808080;
}

.footer__inner {
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  width: clamp(0px, 100vw, 500px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
    padding-top: 70px;
    padding-bottom: 100px;
    position: relative;
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
  }
}

@media screen and (min-width: 768px) {
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    margin: 0 auto;
    padding-right: clamp(0px, 3.125vw, 40px);
  }
}

.footer_top {
  color: #fff;
}

.footer_top-loogo img {
  width: 230px;
  height: 33px;
}
@media screen and (min-width: 768px) {
  .footer_top-loogo img {
    width: clamp(0px, 25vw, 320px);
    height: clamp(0px, 3.515625vw, 45px);
  }
}

.footer_top-text {
  padding-top: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

.footer_top-tel {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 300;
}

.footer_top-sns {
  padding-bottom: 10px;
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.footer_top-sns a img {
  width: 30px;
  height: 30px;
}

.footer-nav {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.footer-nav__list {
  list-style: none;
  padding-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 60px;
  max-width: 520px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer-nav__list {
    max-width: 400px;
    width: clamp(300px, 31.25vw, 400px);
    padding-top: 0;
    gap: clamp(0px, 0.78125vw, 10px) clamp(0px, 3.90625vw, 50px);
  }
}
.footer-nav__list a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.6;
  display: inline-block;
  font-weight: 300;
}

.footer-cta {
  padding-top: 40px;
  padding-bottom: 50px;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer-cta {
    padding-bottom: 0;
    padding-top: 40px;
  }
}

.footer__copyright {
  padding-bottom: 40px;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-family: "Zalando Sans Expanded", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    padding-bottom: 0;
    position: absolute;
    bottom: 17%;
    left: 0%;
  }
}

.form {
  background-color: #F7F7F7;
  padding-top: 200px;
}
@media screen and (min-width: 768px) {
  .form {
    padding-top: 250px;
  }
}

.form-top {
  position: absolute;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  z-index: 40;
}
@media screen and (min-width: 768px) {
  .form-top {
    padding-left: 50px;
  }
}

/* ロゴ */
.form__logo {
  margin-bottom: 30px;
}
.form__logo img {
  width: 136px;
}
@media screen and (min-width: 768px) {
  .form__logo img {
    width: 170px;
  }
}

/* パンくず */
.form__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* カプセル */
.breadcrumb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 25px;
  background: #fff;
  border-radius: 999px;
  font-style: 12px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/* リンク */
.breadcrumb__link {
  text-decoration: none;
  color: #333;
}

/* 今のページ */
.breadcrumb__current {
  color: #333;
}

/* スラッシュ */
.breadcrumb__sep {
  color: #999;
}

/* =========================
  Contact Form (SP + PC)
  白い角丸カード版（青枠なし）
========================= */
/* pのデフォ余白でズレやすいので整える */
.cf7,
.cf7 p {
  margin: 0;
}

.form__inner {
  padding: 0 15px;
  width: clamp(0px, 100vw, 500px);
  margin: 0 auto;
  padding: 0;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .form__inner {
    width: clamp(0px, 78.125vw, 1000px);
    max-width: 1000px;
    padding: 0;
  }
}

.form__title {
  text-align: center;
}

.form__title-en {
  font-size: 54px;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.form-title-ja {
  padding-top: 10px;
}

/* ✅ 外側カード（白背景＋角丸＋やわらか影） */
.form__content {
  background-color: #fff;
  margin-top: 50px;
  margin-bottom: 100px;
  border-radius: 28px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  /* SPは詰めめ、PCは余白多め */
  padding: 28px 15px 40px;
}
@media screen and (min-width: 768px) {
  .form__content {
    padding: 50px 80px 70px;
  }
}

.form__nav {
  text-align: center;
}
.form__nav img {
  width: clamp(0px, 83.5897435897vw, 418px);
  height: clamp(0px, 11.7948717949vw, 59px);
}
@media screen and (min-width: 768px) {
  .form__nav img {
    width: clamp(0px, 41.40625vw, 530px);
    height: clamp(0px, 4.21875vw, 54px);
  }
}

/* cf7の横幅：SPは100% / PCはあなたの値 */
.cf7 {
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .cf7 {
    width: clamp(0px, 58.28125vw, 746px);
    padding-top: 50px;
  }
}

/* 行の区切り（点線） */
.cf7__row {
  padding: 18px 0;
  border-bottom: 1px dotted #d9d9d9;
}
@media screen and (min-width: 768px) {
  .cf7__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 22px 0;
  }
}
@media screen and (min-width: 768px) {
  .cf7__row--type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: clamp(0px, 58.28125vw, 746px);
  }
}

/* 左：ラベル＋必須 */
.cf7__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .cf7__head {
    width: clamp(150px, 15.625vw, 200px);
  }
}
.cf7__head .cf7__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cf7__head .cf7__label {
    font-size: clamp(10px, 1.171875vw, 15px);
  }
}
.cf7__head .cf7__required {
  padding: 2px 5px;
  background-color: #FCC800;
  border-radius: 2px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  display: inline-block;
}

/* 右：入力 */
.cf7__body {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .cf7__body {
    margin-top: 0;
    width: clamp(0px, 35.703125vw, 457px);
  }
}
.cf7__body input,
.cf7__body textarea {
  background-color: #F2F1F2;
  border: none;
  width: 100%;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
}
.cf7__body textarea {
  min-height: 180px;
}
@media screen and (min-width: 768px) {
  .cf7__body textarea {
    min-height: 240px;
  }
}
.cf7__body {
  /* 2カラム（お名前・フリガナ） */
}
.cf7__body--cols2 p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cf7__body--cols2 .wpcf7-form-control-wrap {
  width: 50%;
}
.cf7__body--cols2 {
  /* SPは可変、PCだけ220pxに寄せる（あなたの値尊重） */
}
.cf7__body--cols2 .wpcf7-form-control-wrap input {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .cf7__body--cols2 .wpcf7-form-control-wrap input {
    width: clamp(0px, 17.1875vw, 220px);
  }
}

/* チェックボックス（お問い合わせ種別） */
.cf7__check .wpcf7-list-item {
  margin: 0 0 10px 0;
  display: block;
}
@media screen and (min-width: 768px) {
  .cf7__check .wpcf7-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 14px 32px;
  }
}
.cf7__check .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
}
.cf7__check .wpcf7-list-item input[type=checkbox] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  accent-color: #FCC800;
  background-color: #F2F1F2;
}
.cf7__check {
  /* PCは横並び＋折り返し（画像っぽく） */
}
@media screen and (min-width: 768px) {
  .cf7__check .wpcf7-list-item {
    display: block;
    margin: 0 0 12px 0;
  }
  .cf7__check .wpcf7-list-item:last-child {
    width: 100%;
    margin-right: 0;
  }
}

.wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .wpcf7-list-item-label {
    font-size: clamp(10px, 1.171875vw, 15px);
  }
}

/* 注意文 */
.cf7__note {
  margin-top: 22px;
  font-size: 12px;
  color: #333;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cf7__note {
    padding-top: 20px;
  }
}

/* 送信ボタン（黄色ピル＋右丸矢印） */
.cf7__submit {
  margin-top: 18px;
  text-align: center;
}
.cf7__submit p {
  display: inline-block;
  position: relative;
  width: 220px;
  margin: 0 auto;
}
.cf7__submit .cf7__btn {
  width: 220px;
  height: 52px;
  border-radius: 999px;
  background: #FCC800;
  border: none;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .cf7__submit .cf7__btn {
    width: 260px;
    height: 56px;
    font-size: 17px;
  }
}
.cf7__submit p::before {
  content: "";
  position: absolute;
  background-image: url(../img/cf7__btn.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
  top: 9%;
  right: 4%;
}
@media screen and (min-width: 768px) {
  .cf7__submit p::before {
    width: 40px;
    height: 40px;
    top: 10%;
    right: -15%;
  }
}

.form__thanks {
  text-align: center;
}

.thanks-text-1 {
  padding-top: 50px;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .thanks-text-1 {
    font-size: 40px;
  }
}

.thanks-text-2 {
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 14px;
  line-height: 2;
}

.form__thanks-link {
  position: relative;
  width: 135px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .form__thanks-link {
    width: 145px;
  }
}
.form__thanks-link::before {
  content: "";
  position: absolute;
  background-image: url(../img/drawer-cta__button.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  top: 14%;
  right: 0%;
}
@media screen and (min-width: 768px) {
  .form__thanks-link::before {
    width: 30px;
    height: 30px;
    top: 14%;
    right: 0%;
  }
}

.form__thanks-button {
  border-bottom: 1px solid #000;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  margin-right: 40px;
  padding-bottom: 10px;
  display: inline-block;
}

.company-wrapper {
  padding-top: 200px;
  position: relative;
  width: 100%;
  aspect-ratio: 390/844;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(../img/message-sp.png) top center/contain no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/message-sp.png) top center/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .company-wrapper {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url(../img/message.png) top center/contain no-repeat;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/message.png) top center/contain no-repeat;
    padding-top: 250px;
    aspect-ratio: 1280/800;
  }
}
.company-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--bg-dark, 0);
  pointer-events: none;
}

.company-bg {
  position: relative;
  z-index: 1;
}

.message__inner {
  color: #fff;
  text-align: center;
  line-height: 2;
}

.message__title-en {
  font-size: clamp(0px, 11.2820512821vw, 46.4px);
  font-family: "Zalando Sans Expanded", sans-serif;
}

.message__title-ja {
  font-size: 14px;
}

.message__text {
  line-height: 2.5;
  padding-top: 70px;
  padding-bottom: 100px;
  width: clamp(0px, 83.5897435897vw, 418px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .message__text {
    width: clamp(0px, 58.28125vw, 746px);
  }
}

.message__text-1 {
  font-size: 24px;
  font-weight: 600;
}

.message__text-2 {
  padding-top: 70px;
}

.company__inner {
  padding-bottom: 100px;
}

.company__card {
  background-color: #fff;
  border-radius: 20px;
  width: clamp(0px, 100vw, 500px);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company__card {
    max-width: 1000px;
    width: clamp(0px, 78.125vw, 1000px);
  }
}

.company__title {
  padding-top: 70px;
  text-align: center;
}

.company__title-en {
  font-size: 44px;
  font-family: "Zalando Sans Expanded", sans-serif;
}

.company__title-ja {
  font-size: 14px;
}

.company__table {
  padding-top: 70px;
  text-align: left;
  width: clamp(0px, 83.5897435897vw, 418px);
  padding-bottom: 70px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .company__table {
    width: clamp(0px, 58.28125vw, 746px);
  }
}

.company__row {
  padding-top: 10px;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-bottom: 20px;
}
.company__row::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 2px;
  /* 途中で色変わる */
  background: linear-gradient(to right, #e6c36a 0, #e6c36a 100px, #aaa 100px, #aaa 100%);
}

.company__head {
  line-height: 1.7;
  font-size: 16px;
  font-weight: 500;
}

.company__data {
  line-height: 1.7;
  font-size: 14px;
  padding-top: 10px;
}