@charset "UTF-8";
/* 
_function.scss ファイル
それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換 
*/
body {
  color: #565956;
  font-family: "Noto Sans JP", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.64px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.inner {
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 900px) {
  .inner {
    padding-left: 0;
    padding-right: 0;
    max-width: 850px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    max-width: 1180px;
  }
}

.c-button-square {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(87deg, #698 2.32%, #689 96.4%);
  padding: 22px 64px 23px 24px;
  width: clamp(296px, 82.9333333333vw, 311px);
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .c-button-square {
    padding: 23px 63px 23px 24px;
    width: 233px;
  }
}
.c-button-square::after {
  content: "";
  position: absolute;
  background-image: url(../img/icon-arrow.svg);
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 63px;
}
@media screen and (min-width: 768px) {
  .c-button-square::after {
    right: 25px;
  }
}
.c-button-square:hover {
  opacity: 0.56;
}

.c-button-circle {
  color: #ffffff;
  font-weight: 700;
  padding: 20px 99.25px 20px 56px;
  text-align: center;
  border-radius: 99999px;
  background: var(--Green, #609484);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .c-button-circle {
    font-size: 16px;
  }
}
.c-button-circle::after {
  content: "";
  position: absolute;
  background-image: url(../img/icon-arrow-triangle.svg);
  background-size: cover;
  width: 11.25px;
  height: 14.999px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
}
.c-button-circle:hover {
  opacity: 0.56;
}

.title {
  text-align: center;
  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;
}

.title-ja {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: 150%;
}

.title-bar {
  width: 160px;
  height: 1px;
  background: #565956;
  margin: 0 auto;
}

.title-en {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.96px;
  line-height: 150%;
}

.js-fadeUp {
  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;
}
.js-fadeUp.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.hide {
  display: none;
}

/* オーバーレイのスタイル */
.overlay {
  background-color: rgba(86, 89, 86, 0.56);
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.6s, visibility 0.6s;
  transition: opacity 0.6s, visibility 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 50; /* メニューよりも下にする */
}

.overlay.active {
  opacity: 0.8;
  visibility: visible;
}

.header {
  background-color: #ffffff;
  padding: 12px 16px 11px 16px;
  position: fixed;
  width: 100%;
  height: 47.8px;
  top: 0;
  left: 0;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 14px 40px 12px 40px;
    height: 69.5px;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    padding: 12px 130px 12px 130px;
  }
}

.header-nav {
  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;
}

.header-item-logo {
  margin-top: -8px;
  width: 52px;
  height: 21px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header-item-logo {
    margin-top: 0;
    width: 113px;
    height: 45.5px;
  }
}
.header-item-logo:hover {
  opacity: 0.6;
}

.header-list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 16.25rem;
    gap: 2.0625rem;
  }
}
@media screen and (min-width: 1400px) {
  .header-list {
    margin-left: 28.75rem;
  }
}

.header-list-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .header-list-sp {
    display: none;
  }
}

.header-item-main {
  padding-right: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .header-item-main {
    padding-right: 24px;
    font-size: 16px;
  }
}
.header-item-main::after {
  content: "";
  position: absolute;
  background-image: url(../img/icon-arrow-b.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.header-item-main:hover {
  color: #b1b6af;
}
.header-item-main:hover::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  top: 15px;
  background-image: url(../img/icon-arrow-g.svg);
}

.header-item-main-sp {
  padding-right: 20px;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .header-item-main-sp {
    padding-right: 24px;
    font-size: 16px;
  }
}
.header-item-main-sp::after {
  content: "";
  position: absolute;
  background-image: url(../img/icon-arrow-b.svg);
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.btn {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn1-sp,
.btn2-sp {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.btn1-sp.is-checked .header-item-main-sp,
.btn2-sp.is-checked .header-item-main-sp {
  color: #b1b6af;
}
.btn1-sp.is-checked .header-item-main-sp::after,
.btn2-sp.is-checked .header-item-main-sp::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  top: 13px;
  background-image: url(../img/icon-arrow-g.svg);
}
@media screen and (min-width: 768px) {
  .btn1-sp.is-checked .header-item-main-sp::after,
  .btn2-sp.is-checked .header-item-main-sp::after {
    top: 15px;
  }
}

.megaMenu-list {
  position: absolute;
  z-index: 60;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  height: auto;
  margin: auto;
  top: 56px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 343px;
}
@media screen and (min-width: 768px) {
  .megaMenu-list {
    top: 80px;
    padding: 27px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .megaMenu-list {
    top: 86px;
    width: 980px;
    padding: 27px 40px;
  }
}
@media screen and (min-width: 1400px) {
  .megaMenu-list {
    width: 1180px;
  }
}

.megaMenu-list-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media screen and (min-width: 1200px) {
  .megaMenu-list-wrapper {
    grid-template-columns: repeat(5, 1fr);
    gap: 48px 22px;
  }
}

.megaMenu-title {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .megaMenu-title {
    font-size: 20px;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
  }
}

.megaMenu-item {
  color: #565956;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  padding-bottom: 3px;
  border-bottom: 2px solid #f2f4f1;
  -webkit-transition: border-bottom 0.3s;
  transition: border-bottom 0.3s;
}
@media screen and (min-width: 768px) {
  .megaMenu-item {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.64px;
    padding-bottom: 6px;
  }
}
.megaMenu-item:hover {
  border-bottom: 2px solid #609484;
}

.header-item a {
  color: #565956;
  font-size: 14px;
  font-weight: 700;
  display: block;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .header-item a {
    font-size: 16px;
  }
}
.header-item a:hover {
  color: #b1b6af;
}

.header-item-button {
  padding: 6px 22px 5px 22px;
  border-radius: 99999px;
  border: 1px solid #565956;
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}
.header-item-button:hover {
  background: #565956;
  color: #ffffff;
}

.header-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: -2px;
}

.header-icon-login {
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header-icon-login {
    width: 32px;
    height: 32px;
  }
  .header-icon-login img {
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .header-icon-login {
    display: none;
  }
}
.header-icon-login:hover {
  opacity: 0.8;
}

.header-icon-cart {
  width: 24px;
  height: 24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .header-icon-cart {
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }
  .header-icon-cart img {
    width: 100%;
    height: 100%;
  }
}
.header-icon-cart:hover {
  opacity: 0.8;
}

main {
  margin-top: 47.8px;
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 69.5px;
  }
}

.fv {
  position: relative;
}

.fv__image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 600px) {
  .fv__image img {
    aspect-ratio: 375/742;
    width: 100%;
    height: 800px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .fv__image img {
    aspect-ratio: 1440/476;
    width: auto;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 900px) {
  .fv__image img {
    height: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__image img {
    width: 100%;
    height: auto;
  }
}

.fv__inner {
  position: absolute;
  top: 269px;
  left: 16px;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .fv__inner {
    top: 369px;
  }
}
@media screen and (min-width: 768px) {
  .fv__inner {
    top: auto;
    bottom: 80px;
  }
}
@media screen and (min-width: 900px) {
  .fv__inner {
    bottom: 59px;
    left: 130px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__inner {
    top: 150px;
    bottom: auto;
    left: 130px;
  }
}

.fv__inner p:not(:first-of-type) {
  margin-top: 8px;
  display: block;
}
@media screen and (min-width: 600px) {
  .fv__inner p:not(:first-of-type) {
    display: inline-block;
  }
}

.fv__title-main p {
  font-size: 28px;
  letter-spacing: 1.12px;
  padding: 5px 24px;
  font-weight: 700;
  background: #ffffff;
  display: inline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 600px) {
  .fv__title-main p {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-main p {
    font-size: 40px;
    letter-spacing: 1.6px;
  }
}

.fv__title-main-wrap p {
  margin-top: 15px;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
  padding: 13px 24px;
}
@media screen and (min-width: 600px) {
  .fv__title-main-wrap p {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-main-wrap p {
    margin-top: 18px;
    font-size: 40px;
    padding: 21px 24px;
  }
}
@media screen and (min-width: 600px) {
  .fv__title-main-wrap p:nth-of-type(1) {
    padding: 14px 4px 14px 24px;
  }
}
@media screen and (min-width: 768px) {
  .fv__title-main-wrap p:nth-of-type(1) {
    padding: 21px 4px 21px 24px;
  }
}
@media screen and (min-width: 600px) {
  .fv__title-main-wrap p:nth-of-type(2) {
    padding: 14px 24px 14px 0;
    margin-left: -6px;
  }
}
@media screen and (min-width: 768px) {
  .fv__title-main-wrap p:nth-of-type(2) {
    padding: 21px 24px 21px 0;
    margin-left: -6px;
  }
}

.fv__title-sub {
  margin-top: 25px;
  font-size: 16px;
  letter-spacing: 0.64px;
  background: #ffffff;
  padding: 8px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
}
@media screen and (min-width: 600px) {
  .fv__title-sub {
    margin-top: 16px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__title-sub {
    margin-top: 26px;
    font-size: 24px;
    letter-spacing: 0.96px;
    padding: 14px 24px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.about {
  background-color: #f2f4f1;
  padding-top: 55px;
  padding-bottom: 56px;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  .about {
    background: url(../img/bg-about.png) center center;
    background-color: #f2f4f1;
    background-repeat: no-repeat;
    background-size: auto 100%;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.about__inner {
  padding-top: 32px;
  padding-bottom: 32px;
  border-radius: 16px;
  background: #ffffff;
}
@media screen and (min-width: 600px) {
  .about__inner {
    max-width: 600px;
  }
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 719px;
    padding: 62px 64px 55px 64px;
  }
}

@media screen and (min-width: 768px) {
  .about__title {
    position: relative;
  }
}

.about__title-tag {
  color: #ffffff;
  font-weight: 700;
  padding: 0px 16px;
  text-align: center;
  background: #565956;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about__title-tag {
    -webkit-transform: rotate(-29.317deg);
            transform: rotate(-29.317deg);
    position: absolute;
    left: 24.005px;
    top: -18.015px;
  }
}

.about__title-sub {
  margin-top: 8px;
  font-weight: 700;
  text-align: center;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .about__title-sub {
    margin-top: 0;
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.about__title-main {
  margin-top: 8px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.12px;
  text-align: center;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .about__title-main {
    margin-top: 14px;
  }
}

.about__contents {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .about__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.about__content {
  padding: 16px 12px 16px 13px;
  border-radius: 16px;
  background: #565956;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  max-width: 311px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .about__content {
    width: 191.6px;
  }
}

.about__bottom {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .about__bottom {
    margin-top: 62px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 37.15px;
  }
}

.about__step {
  padding: 18px 40px;
  margin: 0 auto;
  background: #f2f4f1;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about__step {
    margin-left: 30px;
    margin-right: 0;
  }
}
.about__step::after {
  content: "";
  position: absolute;
  background-image: url(../img/deco-step-fukidashi.svg);
  background-size: cover;
  width: 11px;
  height: 19px;
  bottom: -14px;
  left: 123px;
}
@media screen and (min-width: 768px) {
  .about__step::after {
    width: 18px;
    height: 29px;
    right: -16px;
    left: auto;
    bottom: 14px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.about__button {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about__button {
    margin-top: -5px;
    margin-left: 0;
    margin-right: 0;
  }
}

.realization {
  padding-top: 88px;
  padding-bottom: 88px;
}

.realization__cards {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .realization__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .realization__cards {
    gap: 86px;
  }
}

.realization__card {
  width: 168px;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .realization__card {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .realization__card {
    width: 120px;
  }
}
@media screen and (min-width: 900px) {
  .realization__card {
    width: 168px;
  }
}

.realization__card-top {
  color: #ffffff;
  background: #948260;
  padding: 4px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.8px;
  text-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .realization__card-top {
    font-size: 16px;
  }
}
@media screen and (min-width: 900px) {
  .realization__card-top {
    font-size: 20px;
  }
}

.realization__card-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .realization__card-text {
    font-size: 12px;
  }
}
@media screen and (min-width: 900px) {
  .realization__card-text {
    font-size: 16px;
  }
}

.infomation {
  padding-top: 18px;
  padding-bottom: 18px;
  background-image: url(../img/bg-toppa.png);
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 600px) {
  .infomation {
    height: 200px;
  }
}
@media screen and (min-width: 768px) {
  .infomation {
    height: auto;
    padding-top: 59px;
    padding-bottom: 52px;
  }
}

.infomation__inner {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 600px) {
  .infomation__inner {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 768px) {
  .infomation__inner {
    top: unset;
    left: unset;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.infomation__inner::before {
  content: "";
  position: absolute;
  background-image: url(../img/deco-leef-left.png);
  background-size: cover;
  width: 56px;
  height: 73.309px;
  top: 11px;
  right: calc(50% + 113px);
}
@media screen and (min-width: 768px) {
  .infomation__inner::before {
    width: 158px;
    height: 203px;
    top: -42px;
    right: calc(50% + 220px);
  }
}
.infomation__inner::after {
  content: "";
  position: absolute;
  background-image: url(../img/deco-leef-right.png);
  background-size: cover;
  width: 56px;
  height: 73.309px;
  top: 11px;
  left: calc(50% + 113px);
}
@media screen and (min-width: 768px) {
  .infomation__inner::after {
    width: 158px;
    height: 203px;
    top: -42px;
    left: calc(50% + 220px);
  }
}

.infomation__title-sub {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .infomation__title-sub {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .infomation__title-sub {
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.infomation__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.28px;
}
@media screen and (min-width: 768px) {
  .infomation__title {
    font-size: 54px;
  }
}
@media screen and (min-width: 900px) {
  .infomation__title {
    margin-top: 7px;
    font-size: 64px;
    letter-spacing: 2.56px;
  }
}

.voice {
  padding-top: 55px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .voice {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

.voice__inner {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .voice__inner {
    max-width: 600px;
  }
}
@media screen and (min-width: 900px) {
  .voice__inner {
    max-width: 850px;
  }
}
@media screen and (min-width: 1200px) {
  .voice__inner {
    max-width: 1180px;
  }
}

.voice__cards {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 900px) {
  .voice__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.voice__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.voice__card-img {
  position: relative;
}
.voice__card-img img {
  width: 100%;
}

.voice__card-img-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 16px;
  background: #609484;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.voice__card-bottom {
  padding: 24px 24px 23px 24px;
  background: #f2f4f1;
}
@media screen and (min-width: 900px) {
  .voice__card-bottom {
    padding: 24px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .voice__card-bottom {
    padding: 24px 48px;
  }
}

.voice__card-bottom2 {
  background: #ffffff;
}

.voice__card-title span {
  background: #948260;
  color: #ffffff;
  font-size: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 900px) {
  .voice__card-title span {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .voice__card-title span {
    font-size: 20px;
  }
}
.voice__card-title span + span {
  margin-top: 8px;
}

.voice__card-text {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .voice__card-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .voice__card-text {
    font-size: 16px;
  }
}

.voice__card-name {
  margin-top: 16px;
}
@media screen and (min-width: 900px) {
  .voice__card-name {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .voice__card-name {
    font-size: 16px;
    margin-top: 41px;
  }
}

.solution {
  background-image: url(../img/sp/bg-solution-sp.png);
  background-size: cover;
  padding-top: 56px;
  padding-bottom: 112px;
}
@media screen and (min-width: 768px) {
  .solution {
    background-image: url(../img/bg-solution.png);
    background-position-y: -10px;
    padding-top: 88px;
  }
}

.solution__title {
  gap: 15px;
}

.solution__contents {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .solution__contents {
    margin-top: 64px;
  }
}

.solution__content {
  padding: 28px 50px;
  border-radius: 32px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  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;
}
@media screen and (min-width: 768px) {
  .solution__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.solution__content-wrap {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .solution__content-wrap {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .solution__content-s {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 9px;
  }
}
@media screen and (min-width: 900px) {
  .solution__content-s {
    gap: 23px;
  }
}

.solution__content-icon {
  width: 32px;
  height: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.solution__content-text {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.8px;
}

.fukidashi {
  margin-top: -55.5px;
}
@media screen and (min-width: 1200px) {
  .fukidashi {
    margin-top: -15.5px;
  }
}

.fukidashi__inner {
  position: relative;
  padding: 0;
  width: 308px;
  max-width: 380px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .fukidashi__inner {
    width: 100%;
    max-width: 1115px;
  }
}
.fukidashi__inner::before {
  content: "";
  position: absolute;
  background-image: url(../img/sp/deco-fukidashi-sp.png);
  background-size: cover;
  width: 343px;
  height: 237px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .fukidashi__inner::before {
    background-image: url(../img/deco-fukidashi.png);
    width: 1180px;
    height: 121px;
    top: 8px;
  }
}

.fukidashi__text {
  padding: 30px 24px;
  background: #609484;
  text-align: center;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 1200px) {
  .fukidashi__text {
    padding: 30px 46px;
    font-size: 24px;
    letter-spacing: 0.96px;
  }
}

.realizationdetail {
  padding-top: 115px;
  padding-bottom: 56px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .realizationdetail {
    padding-top: 60px;
    padding-bottom: 110px;
  }
}
.realizationdetail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1982px;
  background: #f2f4f1;
  top: 761px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .realizationdetail::before {
    height: 1369px;
    top: 404px;
  }
}
.realizationdetail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1363px;
  background: #f2f4f1;
  bottom: 654px;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .realizationdetail::after {
    height: 1369px;
    bottom: 280px;
  }
}

.realizationdetail__title {
  gap: 15px;
}

.realizationdetail__wrapper {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 75.63px;
}
@media screen and (min-width: 768px) {
  .realizationdetail__wrapper {
    margin-top: 93px;
    gap: 163px;
  }
}

.realizationdetail__scene {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .realizationdetail__scene {
    gap: 48px;
    position: relative;
  }
}

.realizationdetail__scene-top {
  position: relative;
}
@media screen and (min-width: 600px) {
  .realizationdetail__scene-top {
    margin: 0 auto;
  }
}
.realizationdetail__scene-top span {
  position: absolute;
  top: -12.3px;
  left: 12px;
  font-family: "Jost", sans-serif;
  font-size: clamp(16px, 4.2666666667vw, 25px);
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .realizationdetail__scene-top span {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .realizationdetail__scene-top span {
    top: -12px;
    left: 39px;
    font-size: 40px;
    letter-spacing: 1.6px;
  }
}

.realizationdetail__scene-bottom {
  padding: 0px 16px 32px 16px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 600px) {
  .realizationdetail__scene-bottom {
    padding: 49px 64px 64px 64px;
    max-width: 688px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .realizationdetail__scene-bottom {
    padding: 69px 64px 64px 64px;
    max-width: 618px;
    margin: 0;
  }
}

@media screen and (min-width: 900px) {
  .realizationdetail__scene-bottom2 {
    margin-left: auto;
  }
}
@media screen and (min-width: 1200px) {
  .realizationdetail__scene-bottom2 {
    padding: 68px 64px 64px 64px;
    max-width: 587px;
  }
}

@media screen and (min-width: 768px) {
  .realizationdetail__scene-bottom-title {
    text-wrap: nowrap;
  }
}
.realizationdetail__scene-bottom-title span {
  color: #ffffff;
  background: #948260;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
}
.realizationdetail__scene-bottom-title span:nth-of-type(1) {
  padding: 4px 8px;
}
@media screen and (min-width: 768px) {
  .realizationdetail__scene-bottom-title span:nth-of-type(1) {
    display: inline;
    padding: 4px 0px 4px 8px;
  }
}
.realizationdetail__scene-bottom-title span:nth-of-type(2) {
  margin-top: 15px;
  display: block;
  line-height: 150%;
  letter-spacing: 0.2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px 4px 8px;
}
@media screen and (min-width: 1200px) {
  .realizationdetail__scene-bottom-title span:nth-of-type(2) {
    margin-top: 0;
    display: inline;
    padding-left: 2px;
    margin-left: -1px;
  }
}

@media screen and (min-width: 1200px) {
  .realizationdetail__scene2-bottom-title span:nth-of-type(2) {
    margin-top: 0;
    display: inline;
    padding-left: 3px;
    margin-left: -7px;
  }
}

.realizationdetail__scene-bottom-card {
  margin-top: 38px;
}
@media screen and (min-width: 768px) {
  .realizationdetail__scene-bottom-card {
    margin-top: 41px;
  }
}
.realizationdetail__scene-bottom-card:nth-of-type(2) {
  margin-top: 50px;
}

.card-title {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  position: relative;
}
.card-title span {
  position: absolute;
  width: calc(100% - 133px - 24px);
  height: 1px;
  background: #565956;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .card-title span {
    width: calc(100% - 133px - 24px - 30px);
    right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .scene2-card-title span {
    width: calc(100% - 133px - 24px);
    right: 0px;
  }
}

.card-title2 span {
  position: absolute;
  width: calc(100% - 202px - 24px);
  height: 1px;
  background: #565956;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .card-title2 span {
    width: calc(100% - 202px - 24px - 30px);
    right: 30px;
  }
}

.scene2-card-title2 span {
  width: calc(100% - 133px - 24px - 70px);
  right: 0px;
}
@media screen and (min-width: 768px) {
  .scene2-card-title2 span {
    width: calc(100% - 202px - 24px);
    right: 0;
  }
}

.card-text {
  margin-top: 21px;
}
@media screen and (min-width: 768px) {
  .card-text {
    margin-right: 30px;
  }
}

@media screen and (min-width: 768px) {
  .card-text2 {
    margin-right: 0;
  }
}

.card-img {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .card-img {
    margin-top: 30px;
    max-width: 450px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 900px) {
  .card-img {
    margin-top: 15px;
    max-width: 700px;
  }
}

@media screen and (min-width: 1200px) {
  .realizationdetail__scene-bottom-image {
    position: absolute;
    width: 283.46px;
    height: 365.871px;
    bottom: 673px;
    left: calc(50% - 20px);
  }
}

@media screen and (min-width: 1200px) {
  .realizationdetail__scene-bottom-image2 {
    position: absolute;
    width: 299.761px;
    height: 365.871px;
    bottom: 759px;
    left: calc(50% + 291px);
  }
}

@media screen and (min-width: 768px) {
  .realizationdetail__scene2-bottom-image {
    position: absolute;
    width: 283.46px;
    height: 365.871px;
    bottom: 673px;
    left: auto;
    right: calc(50% + 307px);
  }
}

@media screen and (min-width: 768px) {
  .realizationdetail__scene2-bottom-image2 {
    position: absolute;
    width: 299px;
    height: 365px;
    bottom: 758px;
    left: auto;
    right: calc(50% - 19px);
  }
}

.realizationdetail__scene-lineup {
  margin-top: 17px;
}
@media screen and (min-width: 768px) {
  .realizationdetail__scene-lineup {
    margin-top: -17px;
  }
}

.lineup-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 30px;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .lineup-title {
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .lineup-title {
    width: 747px;
  }
}
@media screen and (min-width: 1200px) {
  .lineup-title {
    width: 988px;
  }
}
.lineup-title::before {
  content: "";
  position: absolute;
  width: clamp(33.5px, 8.9333333333vw, 100px);
  height: 1px;
  background: #565956;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(50% + 138px);
}
@media screen and (min-width: 768px) {
  .lineup-title::before {
    width: 140px;
    left: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .lineup-title::before {
    width: 240px;
    left: -5px;
  }
}
.lineup-title::after {
  content: "";
  position: absolute;
  width: clamp(33.5px, 8.9333333333vw, 100px);
  height: 1px;
  background: #565956;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(50% + 138px);
}
@media screen and (min-width: 768px) {
  .lineup-title::after {
    width: 140px;
    right: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .lineup-title::after {
    width: 240px;
    right: 5px;
  }
}

.lineup-title-en {
  margin-top: 10px;
  color: #b1b6af;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lineup-title-en {
    margin-top: 11px;
  }
}

.lineup-cards {
  margin-top: 27px;
  padding-left: 21.5px;
  padding-right: 21.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .lineup-cards {
    max-width: 998px;
    margin-top: 26px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 19px;
    margin: 26px auto 0;
    padding: 0;
  }
}
@media screen and (min-width: 1200px) {
  .lineup-cards {
    gap: 49px;
  }
}

.lineup-card {
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 600px) {
  .lineup-card {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .lineup-card {
    width: 270px;
  }
}
@media screen and (min-width: 1200px) {
  .lineup-card {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.lineup-card:hover {
  opacity: 0.8;
}

.lineup-card__bottom {
  border-radius: 0 0 8px 8px;
  background: #f2f4f1;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  padding: 27px 92px 63px 24px;
}
@media screen and (min-width: 768px) {
  .lineup-card__bottom {
    padding: 27px 10px 33px 10px;
  }
}
@media screen and (min-width: 900px) {
  .lineup-card__bottom {
    padding: 27px 92px 63px 24px;
  }
}

.lineup-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-wrap: nowrap;
}
.lineup-card__text {
  margin-top: 13px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}

.features {
  padding-top: 56px;
  padding-bottom: 56px;
  background-image: url(../img/sp/bg-features-sp.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .features {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(../img/bg-features.png);
  }
}

.features__inner {
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 600px) {
  .features__inner {
    padding: 0;
    max-width: 594px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .features__inner {
    max-width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  .features__inner {
    max-width: 1180px;
  }
}

.features__title {
  gap: 15px;
}

.features__cards {
  margin-top: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 31px;
}
@media screen and (min-width: 768px) {
  .features__cards {
    gap: 29px;
  }
}

.features__card {
  padding: 32px 16px;
  border-radius: 16px;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (min-width: 600px) {
  .features__card {
    padding: 42px 36px;
  }
}
@media screen and (min-width: 1200px) {
  .features__card {
    padding: 33px 106px 34px 106px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 82px;
  }
}

@media screen and (min-width: 1200px) {
  .features__card-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .features__card-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: auto 0;
  }
}

.features__card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .features__card-bottom {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.features__card-bottom-tag {
  padding: 6px 16px;
  background: #948260;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .features__card-bottom-tag {
    margin-top: 3px;
    padding: 7px 16px;
  }
}

.features__card-bottom-title {
  margin-top: 17px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 150%;
}
.features__card-bottom-title::first-letter {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.96px;
  color: #948260;
}

.features__card-bottom-text {
  margin-top: 13px;
}

.how-to {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .how-to {
    padding-top: 85px;
    padding-bottom: 88px;
  }
}

@media screen and (min-width: 768px) {
  .how-to__inner {
    padding-left: 57px;
    padding-right: 57px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.how-to__cards {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  .how-to__cards {
    margin-top: 64px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__cards {
    gap: 36px;
  }
}

@media screen and (min-width: 600px) {
  .how-to__card {
    margin: 0 auto;
  }
}

.how-to__card-top {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -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) {
  .how-to__card-top {
    margin-top: 19px;
    gap: 14px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__card-top {
    margin-top: 29px;
    gap: 25px;
  }
}

.how-to__card-number {
  font-family: Inter;
  font-size: 24px;
  font-weight: 700;
  color: #609484;
  margin-top: -3px;
}
@media screen and (min-width: 768px) {
  .how-to__card-number {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-top: 0;
  }
}
@media screen and (min-width: 900px) {
  .how-to__card-number {
    font-size: 24px;
  }
}

.how-to__card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .how-to__card-title {
    font-size: 17px;
  }
}
@media screen and (min-width: 900px) {
  .how-to__card-title {
    font-size: 20px;
  }
}

.how-to__card-text {
  margin-top: 14px;
}
@media screen and (min-width: 600px) {
  .how-to__card-text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .how-to__card-text {
    margin-top: 17px;
    text-align: left;
  }
}

.qa {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .qa {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

.qa__boxes {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 27px;
}
@media screen and (min-width: 600px) {
  .qa__boxes {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .qa__boxes {
    max-width: 1200px;
    margin-top: 63px;
  }
}

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

.qa__boxes-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .qa__boxes-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  .qa-boxes__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    width: 590px;
  }
}

@media screen and (min-width: 768px) {
  .qa-boxes__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    width: 590px;
  }
}

.qa__box:hover {
  cursor: pointer;
}
.qa__box.js-open .qa-box__head-text::before {
  opacity: 0;
}

.qa-box__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0 23px 2px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #565956;
}
@media screen and (min-width: 768px) {
  .qa-box__head {
    padding: 0 0 23px 20px;
  }
}

.qa-box__head-icon {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #948260;
}
@media screen and (min-width: 768px) {
  .qa-box__head-icon {
    font-size: 18px;
  }
}

.qa-box__head-text {
  text-align: left;
  width: 100%;
  line-height: 150%; /* 24px */
  letter-spacing: 0.64px;
  padding-right: 48px;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.qa-box__head-text:hover {
  opacity: 0.7;
}
.qa-box__head-text::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 2px;
  height: 16px;
  background: #948260;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text::before {
    right: 33px;
  }
}
.qa-box__head-text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6px;
  width: 16px;
  height: 2px;
  background: #948260;
}
@media screen and (min-width: 768px) {
  .qa-box__head-text::after {
    right: 26px;
  }
}

.qa-box__body {
  display: none;
}

.qa-box__a {
  padding: 24px 16px 0 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .qa-box__a {
    padding: 32px 22px 0 24px;
  }
}

.qa-box__a-icon {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #948260;
}
@media screen and (min-width: 768px) {
  .qa-box__a-icon {
    font-size: 18px;
  }
}

.qa__button {
  margin-top: 36px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .qa__button {
    margin-top: 64px;
  }
}

.footer {
  padding-top: 35px;
  padding-bottom: 32px;
  background: #565956;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 59px;
  }
}

@media screen and (min-width: 600px) {
  .footer__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .footer__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media screen and (min-width: 600px) {
  .footer__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
  }
}
@media screen and (min-width: 768px) {
  .footer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 21px;
  }
}

.footer__nav-title {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding-bottom: 12px;
  position: relative;
}
.footer__nav-title span {
  position: absolute;
  display: block;
  width: 72.028px;
  height: 1px;
  background: #ffffff;
  bottom: 0;
  left: 0;
}

.footer__nav ul {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.footer__nav-item {
  word-break: auto-phrase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__nav-item:hover {
  opacity: 0.7;
}

.footer__sns {
  margin-top: 72px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.footer__sns-icon {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer__sns-icon:hover {
  opacity: 0.7;
}

.footer__text {
  margin-top: 72px;
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.48px;
  word-break: auto-phrase;
}
@media screen and (min-width: 768px) {
  .footer__text {
    margin-top: 72px;
    font-size: 11px;
    line-height: 150%;
    letter-spacing: 1.48px;
  }
}

.footer__copyright {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  letter-spacing: 0.4px;
}
.footer__copyright span {
  margin-left: 2px;
}

.u-hidden-pc {
  display: inline-block;
}
@media screen and (min-width: 1200px) {
  .u-hidden-pc {
    display: none;
  }
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 1200px) {
  .u-hidden-sp {
    display: inline-block;
  }
}