@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 1025px) {
  html {
    scroll-padding-top: 0;
  }
}

body {
  font-size: 16px;
  color: #3d3d3d;
}

@media screen and (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

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

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

.inner {
  padding-inline: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .inner {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .inner {
    padding-inline: 30px;
  }
}

.section-title {
  text-align: center;
  -webkit-padding-after: 24px;
          padding-block-end: 24px;
}
@media screen and (min-width: 1025px) {
  .section-title {
    -webkit-padding-after: 80px;
            padding-block-end: 80px;
  }
}
.section-title.--white .section-title__en,
.section-title.--white .section-title__yu {
  color: #fff;
  position: relative;
  z-index: 3;
}

.section-title__en {
  font-family: "Rosarivo", cursive;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  font-size: 24px;
}
@media screen and (min-width: 1025px) {
  .section-title__en {
    font-size: 32px;
  }
}

.section-title__yu {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.is-line {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}

.--bold {
  font-weight: 700;
}

.header {
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 100;
  position: sticky;
  top: 0;
}
@media screen and (min-width: 1025px) {
  .header {
    display: none;
  }
}

.header__inner {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
  margin-right: 24px;
}

.header__logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__logo:hover {
  opacity: 0.6;
}
.header__logo img {
  width: 151px;
}

.drawer-icon {
  width: 25px;
  height: 18px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar {
  -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;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(1) {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  top: 8px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-last-of-type(3) {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  top: 8px;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 2px;
  border-radius: 6px;
  background: #111;
  -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;
}
.drawer-icon__bar:nth-last-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-last-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-last-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 100%;
  height: calc(100% - 60px);
  background: url(../img/first-view-bg.png) no-repeat center center/cover;
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 50;
  padding: 40px 8px 95px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

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

.drawer-content__link {
  display: block;
  color: #fff;
  font-family: "Rosarivo", cursive;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer-content__link:hover {
  opacity: 0.7;
}

.drawer-content__button {
  background: var(--Linear, linear-gradient(180deg, #ffc754 0%, #b67715 74%));
  padding: 8px 24px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.drawer-content__button:hover {
  opacity: 0.8;
}
.drawer-content__button a {
  color: var(--Ellipse-59, var(--White, #fff));
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.48px;
  text-transform: lowercase;
}

.drawer-content__store-information {
  color: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
  text-transform: uppercase;
  text-align: left;
}

.first-view {
  width: 100%;
  background: url(../img/first-view-bg.png) no-repeat center center/cover;
  text-align: center;
}

.first-view__inner {
  padding: 151px 10px;
}
@media screen and (min-width: 1025px) {
  .first-view__inner {
    padding-top: 165px;
    padding-bottom: 165px;
  }
}

.first-view__head-lead1 {
  display: block;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 27.662px;
  font-weight: 200;
  text-shadow: 0px 0px 5.532px #022317;
}
@media screen and (min-width: 1025px) {
  .first-view__head-lead1 {
    font-size: 40px;
    text-shadow: 0px 0px 8px #022317;
  }
}

.first-view-no {
  font-size: 24.204px;
  font-weight: inherit;
}
@media screen and (min-width: 1025px) {
  .first-view-no {
    font-size: 35px;
  }
}

.first-view-wo {
  font-size: 24.204px;
  font-weight: inherit;
}
@media screen and (min-width: 1025px) {
  .first-view-wo {
    font-size: 35px;
  }
}

.first-view-na {
  font-size: 24.204px;
  font-weight: inherit;
  letter-spacing: -7.261px;
}
@media screen and (min-width: 1025px) {
  .first-view-na {
    font-size: 35px;
    letter-spacing: -10.5px;
  }
}

.first-view-to {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -7.745px;
}
@media screen and (min-width: 1025px) {
  .first-view-to {
    font-size: 40px;
    letter-spacing: -11.2px;
  }
}

.first-view-re {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -1.66px;
}
@media screen and (min-width: 1025px) {
  .first-view-re {
    font-size: 40px;
    letter-spacing: -2.4px;
  }
}

.first-view-ni {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -2.766px;
}
@media screen and (min-width: 1025px) {
  .first-view-ni {
    font-size: 40px;
    letter-spacing: -4px;
  }
}

.first-view-pu {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -3.043px;
}
@media screen and (min-width: 1025px) {
  .first-view-pu {
    font-size: 40px;
    letter-spacing: -4.4px;
  }
}

.first-view-ra {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -5.809px;
}
@media screen and (min-width: 1025px) {
  .first-view-ra {
    font-size: 40px;
    letter-spacing: -8.4px;
  }
}

.first-view__head-lead1-pc {
  letter-spacing: -4.149px;
  display: inline-block;
}

.first-view-i {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -5.532px;
}
@media screen and (min-width: 1025px) {
  .first-view-i {
    font-size: 40px;
    letter-spacing: -8px;
  }
}

.first-view-be {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -2.213px;
}
@media screen and (min-width: 1025px) {
  .first-view-be {
    font-size: 40px;
    letter-spacing: -3.2px;
  }
}

.first-view-- {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -10.235px;
}
@media screen and (min-width: 1025px) {
  .first-view-- {
    font-size: 40px;
    letter-spacing: -14.8px;
  }
}

.first-view--- {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -6.086px;
}
@media screen and (min-width: 1025px) {
  .first-view--- {
    font-size: 40px;
    letter-spacing: -8.8px;
  }
}

.first-view-so {
  font-size: 27.662px;
  font-weight: inherit;
  letter-spacing: -4.979px;
}
@media screen and (min-width: 1025px) {
  .first-view-so {
    font-size: 40px;
    letter-spacing: -7.2px;
  }
}

.first-view-zi {
  font-size: 27.662px;
  font-weight: 200;
  letter-spacing: -4.149px;
}
@media screen and (min-width: 1025px) {
  .first-view-zi {
    font-size: 40px;
    letter-spacing: -6px;
  }
}

.first-view__head-lead2 {
  display: block;
  margin-top: 7px;
  background: linear-gradient(235deg, #fff9c7 43.03%, #f0de95 52.19%, #d2a730 62.64%, #fff 77.51%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Rosarivo", cursive;
  font-size: 23.661px;
  font-weight: 400;
  letter-spacing: 0.71px;
  text-shadow: 0px 2.366px 2.366px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .first-view__head-lead2 {
    margin-top: 10px;
    font-size: 40px;
    letter-spacing: 1.2px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
}

.first-view__logos {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 24px;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .first-view__logos {
    margin-top: 48px;
    gap: 16px;
  }
}

.first-view__logo img {
  width: 113px;
}
@media screen and (min-width: 1025px) {
  .first-view__logo img {
    width: 224px;
  }
}

.header-nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .header-nav {
    padding-block: 25px;
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .nav {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24.5px;
    cursor: pointer;
  }
}

.nav__link {
  font-family: "Rosarivo", cursive;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.nav__link:hover {
  opacity: 0.8;
}

.concept {
  padding-top: 40px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .concept {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.concept-head__en {
  padding-left: 6px;
}

.concept-head__yu {
  padding-left: 6px;
  letter-spacing: 0.5px;
}

.concept__body {
  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;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .concept__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: left;
  }
}

@media screen and (min-width: 1025px) {
  .concept__image {
    text-align: right;
    width: 50%;
  }
}
.concept__image img {
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .concept__image img {
    width: 711px;
    aspect-ratio: 711/393;
  }
}

.concept__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 1025px) {
  .concept__title {
    gap: 24px;
    width: 45%;
  }
}

.concept__lead1 {
  font-family: "Rosarivo", cursive;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .concept__lead1 {
    font-size: 32px;
  }
}

.concept__lead2 {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .concept__lead2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0.72px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.environment {
  background: #f9f9fa;
  position: relative;
  padding-top: 42px;
  padding-bottom: 32px;
}
@media screen and (min-width: 1025px) {
  .environment {
    padding-top: 72px;
    padding-bottom: 76px;
  }
}
.environment::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 50px;
  background: url(../img/environment-line-sp.png) no-repeat top left/contain;
}
@media screen and (min-width: 1025px) {
  .environment::before {
    background: url(../img/environment-line-pc.png) no-repeat top left/contain;
    max-height: 190px;
    top: 4px;
  }
}

.environment-head__yu {
  letter-spacing: 0.5px;
}

.environment__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-padding-start: 2px;
          padding-inline-start: 2px;
}
@media screen and (min-width: 1025px) {
  .environment__lead {
    margin-top: -25px;
  }
}

.environment__text {
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  letter-spacing: 0.39px;
  font-weight: 300;
  line-height: 1.8;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .environment__text {
    font-size: 24px;
    letter-spacing: 0.72px;
  }
}

.customer-first {
  padding-top: 40px;
  padding-bottom: 41px;
  position: relative;
  z-index: 2;
  background: url(../img/customer-first-bg-sp.png) no-repeat top center/cover;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .customer-first {
    background: url(../img/customer-first-bg.png) no-repeat center center/cover;
  }
}
@media screen and (min-width: 1025px) {
  .customer-first {
    background: url(../img/customer-first-bg.png) no-repeat center center/cover;
    padding-top: 102px;
    padding-bottom: 110px;
  }
}

.customer-first__block {
  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;
  gap: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .customer-first__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 5px;
  }
}
@media screen and (min-width: 1025px) {
  .customer-first__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

.customer-first__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.customer-first__items:nth-child(2) {
  padding-inline: 51.2px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .customer-first__items:nth-child(2) {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1025px) {
  .customer-first__items:nth-child(2) {
    padding-inline: 0;
  }
}
@media screen and (min-width: 1025px) {
  .customer-first__items {
    gap: 24px;
  }
}

.customer-first__item img {
  width: 113px;
}
@media screen and (min-width: 1025px) {
  .customer-first__item img {
    width: 232px;
  }
}

.flow {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .flow {
    padding-top: 102px;
    padding-bottom: 100px;
  }
}
.flow::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 162px;
  background: url(../img/flow-line-sp.png) no-repeat top left/contain;
}
@media screen and (min-width: 1025px) {
  .flow::before {
    background: url(../img/flow-line.png) no-repeat top left/contain;
  }
}

.flow__blocks {
  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;
  gap: 39px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .flow__blocks {
    max-width: 1000px;
  }
}

.flow__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
}
.flow-course-head {
  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: 1025px) {
  .flow-course-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
  }
}

.flow-course-head__item {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.flow-course-head__item.--gold {
  color: #fff;
  width: 100%;
  font-weight: 700;
  background: #877445;
  padding: 0 8px;
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 1025px) {
  .flow-course-head__item.--gold {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-bottom: 0;
  }
}
.flow-course-head__item:nth-last-child(1) {
  position: relative;
}
.flow-course-head__item:nth-last-child(1)::after {
  position: absolute;
  content: "";
  top: 50%;
  background: #3d3d3d;
  display: inline-block;
  width: 24px;
  height: 1px;
  right: -40px;
}

.flow-course-head__item-tax {
  font-size: 14px;
}

.flow-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 37px;
}
@media screen and (min-width: 1025px) {
  .flow-boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

.flow-box {
  width: 100%;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .flow-box {
    width: 232px;
  }
}
.flow-box + .flow-box .flow-box__image {
  position: relative;
}
.flow-box + .flow-box .flow-box__image::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 8px;
  background: url(../img/flow-arrow.png) no-repeat center center/contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: -28px;
  left: 50%;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transform: rotate(90deg) translateX(-50%);
          transform: rotate(90deg) translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .flow-box + .flow-box .flow-box__image::after {
    left: -14px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.flow-box__image img {
  width: 358px;
}
@media screen and (min-width: 1025px) {
  .flow-box__image img {
    width: 232px;
  }
}

.flow-box__head {
  margin-top: 8px;
  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-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .flow-box__head {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 16px;
    min-height: 72px;
  }
}

.flow-box__number {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.96px;
}

.flow-box__title {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.48px;
}

.flow-box__sub-title {
  display: inline-block;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.42px;
  margin-left: 12px;
}
@media screen and (min-width: 1025px) {
  .flow-box__sub-title {
    display: block;
    margin-left: 0;
  }
}

.flow-box__text {
  margin-top: 8px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1025px) {
  .flow-box__text {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.flow__button {
  text-align: center;
  margin-top: 38px;
  cursor: pointer;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media screen and (min-width: 1025px) {
  .flow__button {
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
  }
}
.flow__button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.flow__button a {
  background: var(--Linear, linear-gradient(180deg, #ffc754 0%, #b67715 74%));
  padding: 8px 70px 8px 57px;
  color: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.48px;
  text-transform: lowercase;
  display: inline-block;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .flow__button a {
    padding: 8px 28.5px 8px 15.5px;
  }
}
.flow__button a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 58px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/button-arrow.png) no-repeat center center/contain;
  width: 5px;
  height: 8px;
}
@media screen and (min-width: 1025px) {
  .flow__button a::after {
    right: 14px;
  }
}

.flow__button-inline-block {
  display: inline-block;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.service {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .service {
    padding-top: 68px;
    padding-bottom: 134px;
  }
}
.service::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url(../img/service-line-sp.png) no-repeat top left/cover;
  width: 100%;
  height: 100%;
  max-height: 120px;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .service::before {
    background: url(../img/service-line.png) no-repeat top left/contain;
    max-height: 161px;
  }
}
.service::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url(../img/service-bg-sp.png) no-repeat top center/cover;
  width: 100%;
  height: 100%;
  max-height: 118px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .service::after {
    background: url(../img/service-bg.png) no-repeat top left/contain;
    max-height: 100%;
  }
}

.service__boxes {
  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;
  gap: 24px;
  margin-top: 8px;
}
@media screen and (min-width: 1025px) {
  .service__boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
  }
}

.service-box {
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}
@media screen and (min-width: 1025px) {
  .service-box {
    max-width: 317px;
  }
}

.service-box__image img {
  width: 358px;
}
@media screen and (min-width: 1025px) {
  .service-box__image img {
    width: 317px;
    aspect-ratio: 317/214;
  }
}

.service-box__head {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}

.service-box__number {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.96px;
}

.service-box__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.48px;
}

.service-box__text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
  margin-top: 7px;
}
@media screen and (min-width: 1025px) {
  .service-box__text {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.trainer {
  margin-top: -9px;
  padding-top: 40px;
  background: #173332;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1025px) {
  .trainer {
    padding-top: 100px;
    padding-bottom: 50px;
    background: url(../img/trainer-img.png) no-repeat center center/cover;
  }
}
.trainer::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/trainer-bg1-sp.png) no-repeat top left/contain;
  z-index: 1;
  max-height: 240px;
}
@media screen and (min-width: 1025px) {
  .trainer::before {
    background: url(../img/trainer-bg1.png) no-repeat top left/contain;
    max-height: 100%;
  }
}
.trainer::after {
  position: absolute;
  content: "";
  top: 35px;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 296px;
  background: url(../img/trainer-bg2-sp.png) no-repeat top center/contain;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .trainer::after {
    display: none;
  }
}

@media screen and (min-width: 1025px) {
  .trainer__container {
    max-width: 1390px;
    margin-left: auto;
    margin-right: auto;
  }
}

.trainer__box {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: -5px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .trainer__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 864px;
    background: url(../img/trainer-bg-2.png) no-repeat center center/contain;
    padding-top: 0;
    padding-bottom: 32px;
    padding-right: 10px;
    padding-right: 10px;
    padding-left: 32px;
    margin-top: -184px;
    margin-left: 35px;
    margin-right: 35px;
  }
}

@media screen and (min-width: 1025px) {
  .trainer__box-item {
    margin-top: 141px;
  }
  .trainer__box-item:nth-child(1) {
    max-width: 444px;
  }
  .trainer__box-item:nth-child(2) {
    max-width: 414px;
  }
}

.trainer__name {
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-left: 14px;
}
@media screen and (min-width: 1025px) {
  .trainer__name {
    margin: 0;
    padding-left: 0;
  }
}

.trainer__name-en {
  font-family: "Rosarivo", cursive;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 11.2px;
  z-index: 2;
}

.trainer__name-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  z-index: 2;
}
@media screen and (min-width: 1025px) {
  .trainer__name-ja {
    font-size: 56px;
    margin-top: 8px;
  }
}

.trainer__license {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  line-height: 1.8;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .trainer__license {
    margin-top: 24px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.trainer__license-title {
  margin-bottom: 4px;
  font-size: 14px;
  letter-spacing: 0.42px;
  padding: 0px 8px;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}

.trainer__license-text {
  font-size: 16px;
  letter-spacing: 0.48px;
  background: #fff;
  padding: 0px 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
}

.trainer__career {
  margin-top: 32px;
  color: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .trainer__career {
    margin-top: 24px;
  }
}

.trainer__line-image {
  margin-top: -6px;
}
.trainer__line-image img {
  width: 255px;
}

.trainer__comment {
  color: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: -2px;
}
@media screen and (min-width: 1025px) {
  .trainer__comment {
    font-size: 14px;
    letter-spacing: 0.42px;
  }
}

.trainer__images {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1025px) {
  .trainer__images {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative;
    z-index: 3;
    margin-left: -36px;
    gap: 8px;
    padding-top: 4px;
  }
}

.trainer__image1 img {
  width: 147px;
}
@media screen and (min-width: 1025px) {
  .trainer__image1 img {
    width: 185px;
  }
}

.trainer__image2 img {
  width: 195px;
}
@media screen and (min-width: 1025px) {
  .trainer__image2 img {
    width: 245px;
  }
}

.price {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .price {
    padding-top: 101px;
    padding-bottom: 100px;
  }
}

.price__boxes {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 6px;
}
@media screen and (min-width: 1025px) {
  .price__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -40px;
    gap: 24px;
  }
}

.price-box {
  width: 100%;
  max-width: 488px;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.3) inset, -1px -1px 2px 0px rgba(222, 222, 222, 0.5) inset, -5px 5px 10px 0px rgba(222, 222, 222, 0.2), 5px -5px 10px 0px rgba(222, 222, 222, 0.2), -5px -5px 10px 0px rgba(255, 255, 255, 0.9), 5px 5px 13px 0px rgba(222, 222, 222, 0.9);
          box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.3) inset, -1px -1px 2px 0px rgba(222, 222, 222, 0.5) inset, -5px 5px 10px 0px rgba(222, 222, 222, 0.2), 5px -5px 10px 0px rgba(222, 222, 222, 0.2), -5px -5px 10px 0px rgba(255, 255, 255, 0.9), 5px 5px 13px 0px rgba(222, 222, 222, 0.9);
  margin-left: auto;
  margin-right: auto;
}
.price-box.--year .price-box__head {
  background: #877445;
}
.price-box.--year .price-box__head-label {
  border: 0.994px solid #fff;
  background: #877445;
  color: #fff;
  letter-spacing: 0.477px;
  padding: 0px 32px;
}
.price-box.--year .price-box__head-text {
  font-size: 23.852px;
  font-weight: 500;
  letter-spacing: 0.716px;
}
.price-box.--year .price-box__body {
  padding-top: 48px;
}
.price-box__head {
  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;
  padding: 16px 0px;
  background: var(--Linear, linear-gradient(180deg, #ffc754 0%, #b67715 74%));
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  text-transform: uppercase;
}

.price-box__head-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 24px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
}

.price-box__head-text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.72px;
}

.price-box__body {
  background: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  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: 43px;
  padding-bottom: 40px;
  max-width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .price-box__body {
    padding-top: 49px;
    max-width: 355px;
    gap: 28px;
    padding-bottom: 10px;
  }
}

.price-box__block {
  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;
}

.price-box__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.price-box__price {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .price-box__price {
    font-size: 40px;
  }
}

.price-box__price-small {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  position: relative;
}

.price-box__inline-block {
  display: inline-block;
}

.--info {
  position: relative;
}
.--info::before {
  position: absolute;
  content: "※1";
  top: -21px;
  left: 1px;
  font-size: 12px;
}

.price-box__content {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1025px) {
  .price-box__content {
    font-size: 16px;
    gap: 10px;
  }
}

.price-box__content-title {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.477px;
  text-transform: uppercase;
}

.price-box__content-list {
  list-style-type: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1025px) {
  .price-box__content-list {
    gap: 13px;
  }
}

.price-box__content-item {
  margin-left: 16px;
}
@media screen and (min-width: 1025px) {
  .price-box__content-item {
    margin-left: 20px;
  }
}
.price-box__content-item.--none {
  text-decoration: line-through;
}

.price-box__content-info {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .price-box__content-info {
    margin-right: -10px;
  }
}

.voice {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  margin-top: -18px;
}
@media screen and (min-width: 1025px) {
  .voice {
    padding-top: 89px;
    padding-bottom: 100px;
  }
}
.voice::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 210px;
  background: url(../img/voice-line-sp.png) no-repeat top left/contain;
}
@media screen and (min-width: 1025px) {
  .voice::before {
    background: url(../img/voice-line.png) no-repeat top left/contain;
    top: 20px;
    max-height: 306px;
  }
}

.voice__inner {
  max-width: 368px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .voice__inner {
    max-width: 799px;
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media screen and (min-width: 1025px) {
  .voice__inner {
    max-width: 1140px;
    padding-left: 70px;
    padding-right: 70px;
  }
}

.voice__slider {
  position: relative;
  margin-top: 7px;
}
@media screen and (min-width: 1025px) {
  .voice__slider {
    margin-top: 0;
  }
}

.voice-item__before-after {
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
@media screen and (min-width: 1025px) {
  .voice-item__before-after {
    margin: 0;
  }
}

.voice-item__before img {
  width: 155px;
}

.voice-item__before-text {
  text-align: center;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .voice-item__before-text {
    margin-top: 6px;
  }
}

.voice-item__before-text1 {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.42px;
}

.voice-item__before-text2 {
  font-size: 24px;
  letter-spacing: 0.72px;
}

.--weight {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.voice-item__after img {
  width: 155px;
}

.voice-item__after-text {
  text-align: center;
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .voice-item__after-text {
    margin-top: 6px;
  }
}

.voice-item__after-text1 {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.42px;
}

.voice-item__after-text2 {
  font-size: 24px;
  letter-spacing: 0.72px;
}

.voice-item__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  margin-top: 8px;
  background: #877445;
  color: #fff;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}

.voice-item__result-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.voice-item__comment {
  margin-top: 8px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
  text-transform: uppercase;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .voice-item__comment {
    font-size: 14px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.voice__prev {
  background: url(../img/voice-prev.png) no-repeat center center/contain;
  width: 31px;
  height: 31px;
  left: -28px;
  margin-top: -16px;
}
@media screen and (min-width: 1025px) {
  .voice__prev {
    width: 50px;
    height: 50px;
    left: -77px;
    margin-top: -26px;
  }
}

.voice__next {
  background: url(../img/voice-next.png) no-repeat center center/contain;
  width: 31px;
  height: 31px;
  right: -28px;
  margin-top: -16px;
}
@media screen and (min-width: 1025px) {
  .voice__next {
    width: 50px;
    height: 50px;
    right: -77px;
    margin-top: -26px;
  }
}

.trial {
  padding-top: 80px;
  padding-bottom: 36px;
  background: url(../img/trail-bg-sp.png) no-repeat top center/cover;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1025px) {
  .trial {
    background: url(../img/trail-bg.png) no-repeat top center/cover;
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.trial__inner {
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}

.trial__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-right: 12px;
}
@media screen and (min-width: 1025px) {
  .trial__title {
    padding-left: 70px;
    margin-left: 0;
    margin-right: 0;
  }
}

.trial__title-text {
  font-size: 32px;
  letter-spacing: 0.96px;
  font-weight: inherit;
}
@media screen and (min-width: 1025px) {
  .trial__title-text {
    font-size: 43px;
    letter-spacing: 1.287px;
  }
}
.trial__title-text.--large {
  font-size: 40px;
  letter-spacing: -3.2px;
}
@media screen and (min-width: 1025px) {
  .trial__title-text.--large {
    font-size: 57.212px;
    letter-spacing: -4.577px;
  }
}

.--yellow {
  color: #fff500;
  font-weight: inherit;
}

.trial__title-to {
  letter-spacing: -8px;
  font-weight: inherit;
}
@media screen and (min-width: 1025px) {
  .trial__title-to {
    letter-spacing: -11.442px;
  }
}

.trial__title-re {
  letter-spacing: -3.2px;
  font-weight: inherit;
}
@media screen and (min-width: 1025px) {
  .trial__title-re {
    letter-spacing: -4.577px;
  }
}

.trial__title-he {
  letter-spacing: -3.2px;
  font-weight: inherit;
}
@media screen and (min-width: 1025px) {
  .trial__title-he {
    font-size: 47.677px;
    letter-spacing: -3.814px;
  }
}

.trial__items {
  display: grid;
  grid-template-columns: repeat(2, 164px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 25px;
}
@media screen and (min-width: 1025px) {
  .trial__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 65px;
    margin-bottom: 0;
  }
}

.trial__item img {
  width: 164px;
}
@media screen and (min-width: 1025px) {
  .trial__item img {
    width: 226px;
  }
}

.sns-link {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .sns-link {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.sns-link__inner {
  padding-left: 10px;
  padding-right: 10px;
}

.sns-link__boxes {
  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;
  margin-left: auto;
  margin-right: auto;
  max-width: 360px;
}
@media screen and (min-width: 1025px) {
  .sns-link__boxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    max-width: 1000px;
  }
}

.sns-link-box {
  width: 100%;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(224, 224, 225, 0.9);
          box-shadow: 5px 5px 5px 0px rgba(224, 224, 225, 0.9);
}

.sns-link-box__button {
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.sns-link-box__button:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (min-width: 1025px) {
  .sns-link-box__button:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.sns-link-box__link {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 46px 17px 29px;
  gap: 17px;
  border-radius: 1.468px;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__link {
    padding: 24px 40px;
    max-width: 488px;
    width: 100%;
    gap: 24px;
  }
}
.sns-link-box__link.--instagram {
  background: var(--g, radial-gradient(92.18% 99.11% at 26.56% 107.7%, #fd5 0%, #fd5 10%, #ff543e 50%, #c837ab 100%));
}
@media screen and (min-width: 1025px) {
  .sns-link-box__link.--instagram .sns-link-box__title {
    letter-spacing: 1.5px;
  }
}
.sns-link-box__link.--line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(51.79%, #00b400), color-stop(52.23%, #00a700));
  background: linear-gradient(180deg, #00b400 51.79%, #00a700 52.23%);
}
.sns-link-box__link.--line .sns-link-box__head {
  padding-left: 12px;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__link.--line .sns-link-box__head {
    padding-left: 0;
  }
}
@media screen and (min-width: 1025px) {
  .sns-link-box__link.--line .sns-link-box__title {
    letter-spacing: 1.44px;
  }
}
@media screen and (min-width: 1025px) {
  .sns-link-box__link.--line {
    gap: 40px;
  }
}

.sns-link-box__image img {
  width: 47px;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__image img {
    width: 64px;
  }
}

.sns-link-box__head {
  color: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  text-transform: uppercase;
  text-align: start;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__head {
    gap: 8px;
  }
}
.sns-link-box__head::after {
  position: absolute;
  content: "";
  background: url(../img/trial-arrow.png) no-repeat center center/contain;
  top: 50%;
  right: -34px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 13px;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__head::after {
    right: -40px;
    width: 20px;
    height: 20px;
  }
}

.sns-link-box__title {
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1.057px;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__title {
    font-size: 24px;
  }
}

.sns-link-box__text {
  font-size: 10px;
  letter-spacing: 0.308px;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  .sns-link-box__text {
    font-size: 14px;
  }
}

.comparison {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f9f9fa;
  overflow-x: auto;
}
@media screen and (min-width: 1025px) {
  .comparison {
    padding-top: 101px;
    padding-bottom: 100px;
  }
}

.comparison__content {
  margin-left: -8px;
}
@media screen and (min-width: 1025px) {
  .comparison__content {
    margin-left: 0;
  }
}

.comparison__table {
  border-collapse: separate;
  border-spacing: 8px 0;
  table-layout: fixed;
  width: 1024px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  background: #f9f9fa;
}
.comparison__table tr:nth-last-child(1) td {
  border-bottom: 1px solid #cdc7c7;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(224, 224, 225, 0.9);
          box-shadow: 5px 5px 5px 0px rgba(224, 224, 225, 0.9);
}
.comparison__table th,
.comparison__table td {
  padding: 0 8px;
  font-family: "Noto Sans JP", sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
  border-top: 1px solid #cdc7c7;
  border-right: 1px solid #cdc7c7;
  border-left: 1px solid #cdc7c7;
  width: 281px;
}
.comparison__table th:nth-child(1),
.comparison__table td:nth-child(1) {
  color: #fff;
  background: #877445;
  border-right: none;
  font-weight: 700;
  width: 157px;
  padding: 8px 4px;
  letter-spacing: 0.42px;
}
.comparison__table td {
  -webkit-box-shadow: 5px 0px 5px 0px rgba(224, 224, 225, 0.9);
          box-shadow: 5px 0px 5px 0px rgba(224, 224, 225, 0.9);
}
.comparison__table thead th {
  font-weight: 500;
  line-height: 1.8;
  height: 51px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}
.comparison__table thead th:nth-child(1) {
  background: #f9f9fa;
  border: none;
}
.comparison__table thead th:nth-child(2) {
  background: var(--Linear, linear-gradient(180deg, #ffc754 0%, #b67715 74%));
  color: #fff;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.72px;
}
.comparison__table tbody {
  font-family: "Noto Sans JP", sans-serif;
}
.comparison__table tbody tr:nth-child(1) {
  height: 83px;
}
.comparison__table tbody tr:nth-child(2) {
  height: 108px;
}
.comparison__table tbody tr:nth-child(3) {
  height: 83px;
}
.comparison__table tbody tr:nth-child(4) {
  height: 58px;
}
.comparison__table tbody tr:nth-child(5) {
  height: 58px;
}
.comparison__table tbody tr:nth-child(6) {
  height: 83px;
}
.comparison__table tbody tr:nth-child(7) {
  height: 72px;
}
.comparison__table tbody th {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.42px;
}
.comparison__table tbody td {
  color: #211f1c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.42px;
}
.comparison__table tbody .table-small {
  font-size: 12px;
  letter-spacing: 0.36px;
}

.--red {
  color: #e40029;
  font-weight: 700;
}

.payment {
  padding-top: 49px;
  padding-bottom: 40px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}
@media screen and (min-width: 1025px) {
  .payment {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.payment-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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
@media screen and (min-width: 1025px) {
  .payment-type {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 50px;
    margin-top: -8px;
  }
}

.payment-type__item {
  text-align: center;
  padding: 6px 8px;
  border-radius: 2px;
  background: #877445;
  min-width: 198px;
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
}

.payment-brand {
  margin-top: 22px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .payment-brand {
    margin-top: 48px;
  }
}

.payment-brand__text {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1025px) {
  .payment-brand__text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.6px;
  }
}

.payment-brand__images {
  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: 1025px) {
  .payment-brand__images {
    gap: 16px;
  }
}

.payment-brand__image:nth-of-type(1) {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .payment-brand__image:nth-of-type(1) {
    text-align: left;
  }
}
.payment-brand__image:nth-of-type(1) img {
  width: 330.345px;
}
@media screen and (min-width: 1025px) {
  .payment-brand__image:nth-of-type(1) img {
    width: 479px;
  }
}
.payment-brand__image:nth-of-type(2) {
  margin-top: -7px;
}
.payment-brand__image:nth-of-type(2) img {
  width: 359px;
}
@media screen and (min-width: 1025px) {
  .payment-brand__image:nth-of-type(2) img {
    width: 668px;
  }
}
.payment-brand__image:nth-of-type(3) img {
  width: 108.571px;
}
@media screen and (min-width: 1025px) {
  .payment-brand__image:nth-of-type(3) img {
    width: 152px;
  }
}

.qa {
  padding-top: 40px;
  padding-bottom: 40px;
  background: #f9f9fa;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .qa {
    padding-top: 101px;
    padding-bottom: 96px;
  }
}
.qa::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: url(../img/qa-line-sp.png) no-repeat top left/contain;
  width: 100%;
  height: 100%;
  max-height: 118px;
}
@media screen and (min-width: 1025px) {
  .qa::before {
    background: url(../img/qa-line.png) no-repeat top left/contain;
    max-height: 320px;
    top: -200px;
    left: -111px;
  }
}

.qa__inner {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}

.qa-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  padding-bottom: 16px;
  white-space: nowrap;
  overflow: auto;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  /*スクロールバー非表示（Chrome・Safari）*/
}
.qa-tab::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1025px) {
  .qa-tab {
    margin-bottom: 12px;
  }
}

.qa-tab__item {
  padding: 7px 15px;
  border-radius: 2px;
  border: 1px solid #877445;
  background: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .qa-tab__item {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}
.qa-tab__item:hover, .qa-tab__item.active {
  background: #e2d5b5;
  position: relative;
  border: 1px solid #e2d5b5;
}
.qa-tab__item:hover::after, .qa-tab__item.active::after {
  position: absolute;
  content: "";
  bottom: -17px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../img/qa-tab-icon.png) no-repeat center center/contain;
  width: 18px;
  height: 18px;
}

.qa-block {
  display: none;
}
.qa-block.active {
  display: block;
}

.qa__items {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (min-width: 1025px) {
  .qa__items {
    gap: 15px;
  }
}

.qa-box {
  border-radius: 2px;
  border: 1px solid #e2d5b5;
}
.qa-box.is-open .qa-box__head::after {
  background: url(../img/qa-close-icon.png) no-repeat center center/contain;
}

.qa-box__head {
  width: 100%;
  background: #e2d5b5;
  padding: 13px 50px 14px 23px;
  text-align: left;
  display: block;
  text-transform: uppercase;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .qa-box__head {
    padding: 14.5px 16px 13.5px 23px;
  }
}
.qa-box__head::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/qa-open-icon.png) no-repeat center center/contain;
}
@media screen and (min-width: 1025px) {
  .qa-box__head::after {
    right: 32px;
  }
}

.qa-box__head-text {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1025px) {
  .qa-box__head-text {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.6px;
  }
}

.qa-box__body {
  padding: 7px 23px;
  display: none;
  text-transform: uppercase;
}

.qa-box__a-text {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
}
.qa-box__a-text a {
  text-transform: none;
  font-weight: bold;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .qa-box__a-text {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.contact {
  padding-top: 42px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.contact-form {
  text-transform: uppercase;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1025px) {
  .contact-form {
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
}

.contact-form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14.3px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
}
@media screen and (min-width: 1025px) {
  .contact-form__fields {
    gap: 14px;
  }
}

.contact-form__radio {
  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;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  margin-top: 8px;
  margin-left: 9px;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact-form__radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 26px;
  }
}
@media screen and (min-width: 1025px) {
  .contact-form__radio {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    margin-bottom: 16px;
  }
}

.form-radio:focus {
  outline: #000 auto 1px;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-radio__input:checked + .form-radio__text::after {
  opacity: 1;
}
.form-radio__input:focus + .form-radio__text::before {
  outline: #000 auto 1px;
}

.form-radio__text {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  padding-left: 28px;
  line-height: 1.8;
  letter-spacing: 0.48px;
  position: relative;
}
.form-radio__text::before, .form-radio__text::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
.form-radio__text::before {
  width: 19px;
  height: 19px;
  border: 1px solid #111;
  left: 0;
  background: #fff;
  -webkit-transition: outline 0.3s;
  transition: outline 0.3s;
}
.form-radio__text::after {
  width: 8.36px;
  height: 8.36px;
  background: #3d3d3d;
  left: 5px;
  opacity: 0;
}

.contact-field__label {
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  padding-left: 8px;
}

.contact-form__tag {
  color: #e40029;
  font-size: 10px;
  font-weight: 700;
  vertical-align: top;
  margin-left: -4px;
}

.form-text,
.form-tel {
  width: 100%;
  border-radius: 2px;
  border: none;
  background: rgba(226, 213, 181, 0.3);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #adadad;
  padding: 10px 8px 9px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-text:focus,
.form-tel:focus {
  outline: #000 auto 1px;
}

.form-date,
.form-select {
  border-radius: 2px;
  border: none;
  background: rgba(226, 213, 181, 0.3);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #adadad;
  padding: 4px 8px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-date:focus,
.form-select:focus {
  outline: #000 auto 1px;
}

.form-date {
  padding: 5px 8px;
  position: relative;
  width: 100%;
  max-width: 250px;
  height: 35px;
}
.form-date::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
.form-date::after {
  position: absolute;
  content: "";
  background: url(../img/contact-date-icon.png) no-repeat center center/contain;
  width: 18px;
  height: 18px;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-select {
  margin-top: 4px;
  width: 100%;
  max-width: 250px;
  height: 35px;
}

.form-select__icon {
  position: relative;
  max-width: 250px;
  height: 35px;
}
.form-select__icon::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 19px;
  height: 17px;
  background: url(../img/contact-arrow-icon.png) no-repeat center center/contain;
}

.form-textarea {
  height: 120px;
  border: none;
  background: rgba(226, 213, 181, 0.3);
  padding: 20px 24px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 2px;
  width: 100%;
  resize: none;
}
.form-textarea:focus {
  outline: #000 auto 1px;
}

.contact-form__privacy {
  margin-top: 24px;
}
@media screen and (min-width: 1025px) {
  .contact-form__privacy {
    margin-top: 31px;
  }
}

.contact-form__privacy-head {
  color: #131313;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form__privacy-content {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: disc;
}
@media screen and (min-width: 1025px) {
  .contact-form__privacy-content {
    margin-top: 24px;
    margin-left: 5px;
  }
}

.contact-form__privacy-text {
  margin-left: 19px;
  color: #131313;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1025px) {
  .contact-form__privacy-text {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.contact-form__privacy-check {
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .contact-form__privacy-check {
    margin-top: 24px;
  }
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 21px;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
}
.form-checkbox__text::before, .form-checkbox__text::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form-checkbox__text::before {
  width: 18px;
  height: 18px;
  border-radius: 1px;
  border: 1px solid #333;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form-checkbox__text::after {
  width: 13px;
  height: 8px;
  left: 2px;
  background: url(/img/privacy-check-icon.png) no-repeat center center/contain;
  opacity: 0;
}

.contact-form__button {
  text-align: center;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1025px) {
  .contact-form__button {
    margin-top: 40px;
  }
}

.contact-form__text {
  color: #fff;
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.48px;
  background: #b2b2b2;
  width: 100%;
  max-width: 375px;
  padding: 8px 45px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 1025px) {
  .contact-form__text {
    max-width: 200px;
  }
}
.contact-form__text.-active {
  background: var(--Linear, linear-gradient(180deg, #ffc754 0%, #b67715 74%));
}
.contact-form__text.-active:hover {
  opacity: 0.8;
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message.-error {
  color: #ff4646;
}

.message {
  background: #f9f9fa;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1025px) {
  .message {
    padding-top: 68px;
    padding-bottom: 100px;
  }
}

.message-head__en {
  padding-left: 10px;
}

.message__body {
  margin-left: auto;
  margin-right: auto;
  max-width: 685px;
}
@media screen and (min-width: 1025px) {
  .message__body {
    max-width: 1000px;
  }
}

.message__text {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.76;
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1025px) {
  .message__text {
    font-size: 19px;
    letter-spacing: 0.57px;
  }
}

.access {
  padding-top: 40px;
  padding-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .access {
    padding-top: 71px;
    padding-bottom: 66px;
  }
}
.access::before {
  position: absolute;
  content: "";
  background: url(../img/access-line-sp.png) no-repeat top left/contain;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .access::before {
    background: url(../img/access-line.png) no-repeat top left/contain;
    top: 0;
    left: -22px;
    max-height: 104px;
  }
}

@media screen and (min-width: 1025px) {
  .access__inner {
    max-width: 1060px;
    margin-left: auto;
    margin-right: auto;
  }
}

.access-iframe__box {
  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: 1025px) {
  .access-iframe__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 1000px;
  }
}

.access-iframe__youtube {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 1025px) {
  .access-iframe__youtube {
    margin: 0;
    width: 100%;
  }
}
.access-iframe__youtube iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 375/225;
  vertical-align: top;
}
@media screen and (min-width: 1025px) {
  .access-iframe__youtube iframe {
    aspect-ratio: 500/300;
  }
}

.access-iframe__map {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 1025px) {
  .access-iframe__map {
    margin: 0;
    width: 100%;
  }
}
.access-iframe__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 375/225;
  vertical-align: top;
}
@media screen and (min-width: 1025px) {
  .access-iframe__map iframe {
    aspect-ratio: 500/300;
  }
}

.access-information {
  margin-top: 16px;
}
@media screen and (min-width: 1025px) {
  .access-information {
    margin-top: 24px;
  }
}

.access-information__text {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) {
  .access-information__text {
    font-size: 16px;
    letter-spacing: 0.48px;
  }
}

.footer-menu {
  padding-top: 40px;
  padding-bottom: 40px;
  background: url(../img/first-view-bg.png) no-repeat top center/cover;
}
@media screen and (min-width: 1025px) {
  .footer-menu {
    padding-top: 42px;
    padding-bottom: 62px;
  }
}

.footer-menu__nav {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1025px) {
  .footer-menu__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer-menu__logo {
  margin-bottom: 8px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-menu__logo:hover {
  opacity: 0.6;
}
@media screen and (min-width: 1025px) {
  .footer-menu__logo {
    margin-bottom: 0;
    margin-right: 100px;
  }
}
.footer-menu__logo img {
  width: 220px;
}

.footer-menu__link {
  color: #fff;
  font-family: "Rosarivo", cursive;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-menu__link:hover {
  opacity: 0.7;
}

.footer {
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .footer {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.footer__copylight {
  font-family: YuGothic, "Yu Gothic", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.39px;
}
@media screen and (min-width: 1025px) {
  .footer__copylight {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
}

.to-contact {
  position: fixed;
  right: 8px;
  bottom: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 102;
}
@media screen and (min-width: 1025px) {
  .to-contact {
    right: 8px;
    bottom: 170px;
  }
}
.to-contact img {
  width: 90px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.to-contact img:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .to-contact img {
    width: 120px;
  }
}
@media screen and (min-width: 1025px) {
  .to-contact img {
    width: 170px;
  }
}
.to-contact.is-show {
  opacity: 1;
  visibility: visible;
}

.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);
}