@charset "UTF-8";
/* Scss Document */
html {
  scroll-behavior: smooth;
}
html :target {
  scroll-margin-top: 128px;
}
html body {
  font-family: fot-tsukuardgothic-std, "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 128px;
  font-feature-settings: "palt";
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #595757;
  background-color: #fff9f5;
}
html img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  padding: 12px 42px 12px 24px;
  transition: all 0.3s;
  border-radius: 999px;
  background: #f06661;
}
.btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url(/img/icon_right.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.btn:hover {
  opacity: 0.7;
}

/*--------------------------------
ヘッダー
---------------------------------*/
.hamburger-menu {
  display: none;
}

.header {
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: auto;
  width: auto;
  height: 120px;
  padding: 0 40px;
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  z-index: 999;
}
.header .header__logo {
  max-width: 260px;
  width: 100%;
}
.header .header__nav {
  padding: 18px 60px;
  background-color: rgba(250, 250, 250, 0.92);
  border-radius: 999px;
}
.header__contact-list {
  display: none;
}

/*--------------------------------
グローバルナビ
---------------------------------*/
.nav__list {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
  font-weight: 700;
}

.nav__item {
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav__item:hover {
  opacity: 0.7;
}
.nav__item .nav-btn {
  font-size: 16px;
}

/*--------------------------------
フッター
---------------------------------*/
.footer {
  width: auto;
  height: 120px;
  font-weight: 700;
}
.footer .footer__inner {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 80px 40px 40px;
}
.footer .footer__inner .footer__logo {
  max-width: 160px;
  width: 100%;
  padding-bottom: 16px;
}
.footer .footer__inner .footer__sitemap {
  margin-left: auto;
}
.footer .footer__inner .footer__sitemap .footer__contact-list {
  height: 80px;
  display: flex;
  justify-content: flex-end;
  column-gap: 16px;
}
.footer .footer__copyright {
  text-align: center;
  color: #8b8b8b;
  letter-spacing: 0.08em;
  padding: 32px 0;
}

/*--------------------------------
ページ共通
---------------------------------*/
.section {
  padding: 50px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.cta {
  background-color: #ffefdd;
  margin: 80px auto;
}
.cta .container {
  font-weight: 700;
  text-align: center;
}
.cta .cta__txt {
  font-size: clamp(20px, 4vw, 32px);
  padding-bottom: 32px;
  letter-spacing: 0.07em;
}
.cta .cta__btn {
  font-size: clamp(20px, 3vw, 24px);
  padding: 24px clamp(64px, 10.6vw, 144px) 25px clamp(52px, 9.2vw, 120px);
}
.cta .btn:after {
  width: 32px;
  height: 32px;
  top: 20px;
  right: clamp(20px, 4.8vw, 100px);
  background-size: 30px 30px;
}

.contact-btn:hover {
  opacity: 0.7;
}

.lower {
  margin: 0 auto;
  position: relative;
}
.lower * {
  color: #595757;
  line-height: 32px;
}

.lower-ttl {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.lower-subttl {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #bc9085;
}

.common-access {
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../img/common-access.png);
  background-size: cover;
}
.common-access .wrap {
  padding: 332px 0 175px;
  max-width: 1037px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.common-access__content .logo {
  margin-bottom: 32px;
}
.common-access__content .logo img {
  width: 229px;
}
.common-access__content dl {
  padding: 16px;
  font-weight: 700;
  color: #595757;
}
.common-access__content dl:not(:last-child) {
  border-bottom: 3px dotted #ddcfcf;
}
.common-access__content dl dt {
  font-size: 20px;
  margin-bottom: 16px;
}

.common-access__map iframe {
  width: 560px;
  height: 400px;
  border-radius: 30px;
}

/*--------------------------------
スクロールアクション
---------------------------------*/
.fade {
  transition: all 0.9s;
  opacity: 0;
}

.fade.active {
  opacity: 1;
}

/*--------------------------------
TOP
---------------------------------*/
.section__heading {
  padding-bottom: 80px;
  text-align: center;
}
.section__heading .heading {
  font-size: 32px;
  font-weight: 700;
}
.section__heading .heading__subttl {
  color: #bc9085;
  display: block;
  font-family: din-2014, sans-serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 400;
}
.section__heading .heading__desc {
  padding-top: 24px;
}

.mv {
  width: 100%;
  height: clamp(400px, 60vw, 100vh);
  aspect-ratio: 1280/800;
  position: relative;
  background-image: url(/img/mv_1.png), url(/img/mv_2.png);
  background-repeat: no-repeat;
  background-position: 0 0, 100% 0;
  background-size: 50% auto, 50% auto;
  border-top-left-radius: 1800px 360px;
  border-top-right-radius: 1800px 360px;
}
.mv .mv__ttl-area {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -20%);
  margin: 0 auto;
}
.mv .mv__ttl-area .mv__ttl {
  display: inline-block;
  font-size: clamp(24px, 6vw, 60px);
  color: #fefefe;
  text-shadow: 0px 0px 30px #000000;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.about {
  position: relative;
  padding-bottom: clamp(80px, 13vw, 160px);
}
.about .container {
  position: relative;
  text-align: center;
}
.about .container .about__body {
  display: inline-block;
  text-align: left;
  width: 50%;
  margin: 0 auto;
}
.about .container .about__body .about__ttl {
  color: #bc9085;
  font-size: clamp(24px, 4vw, 32px);
  padding-bottom: clamp(24px, 4vw, 40px);
}
.about .container .about__body .about__message {
  font-size: clamp(14px, 2.8vw, 24px);
  line-height: 2;
}
.about .container .about__photo1 {
  position: absolute;
  top: 0;
  left: 0.25%;
  width: clamp(140px, 22vw, 300px);
}
.about .container .about__photo1:after {
  content: " ";
  position: absolute;
  top: -10px;
  left: 0;
  width: 75%;
  height: 75%;
  border-radius: 999px;
  border: 3px solid #ddcfcf;
  z-index: 1;
}
.about .container .about__photo2 {
  position: absolute;
  top: -20px;
  right: 0;
  width: clamp(150px, 22vw, 320px);
}
.about .container .about__photo2:after {
  content: " ";
  position: absolute;
  top: 3%;
  left: 5%;
  width: 95%;
  height: 95%;
  border-radius: 999px;
  border: 3px solid #ddcfcf;
  z-index: 0;
}
.about .container .about__photo3 {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: clamp(140px, 22vw, 280px);
}
.about .container .about__photo3:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border-radius: 999px;
  border: 3px solid #ddcfcf;
  z-index: 1;
}

.strength {
  background-color: #ffefdd;
  position: relative;
  padding: 0px;
}
.strength:before, .strength:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 160px;
  background-image: url(../img/wave.svg);
  overflow: hidden;
}
.strength:before {
  left: 0;
  top: 0;
}
.strength:after {
  left: 0;
  bottom: 0;
  transform: scale(-1, -1);
}
.strength .container {
  padding-top: 120px;
  padding-bottom: 120px;
}
.strength .heading {
  vertical-align: middle;
}
.strength .heading .text-logo {
  width: 100px;
}
.strength .strength-list {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}
.strength .strength-box {
  display: flex;
  column-gap: 48px;
}
.strength .strength-box > div {
  flex-basis: 50%;
}
.strength .strength-box:nth-of-type(2) {
  flex-direction: row-reverse;
}
.strength .strength-box:not(:last-of-type) {
  align-items: center;
}
.strength .strength-box__list {
  display: flex;
  column-gap: 32px;
  justify-content: center;
}
.strength .strength-box-2 {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  text-align: center;
}
.strength .strength-box-2:nth-of-type(2) {
  margin-top: 30px;
}
.strength .strength-box-2:nth-of-type(3) {
  margin-top: 60px;
}
.strength .strength-box__ttl-wrap {
  display: flex;
  column-gap: 48px;
  align-items: center;
  padding-left: 0.7rem;
  margin-bottom: 24px;
}
.strength .strength-box__img {
  position: relative;
}
.strength .strength-box__img > img:nth-of-type(2) {
  position: absolute;
  bottom: -2vw;
  left: -10px;
  width: clamp(200px, 20vw, 240px);
}
.strength .strength-box__num {
  color: #f06661;
  z-index: 2;
}
.strength .strength-box__num .strength-box__num-txt {
  display: inline-block;
  font-size: 4.6rem;
  letter-spacing: 0.04rem;
  padding-left: 1.5rem;
  padding-top: 0.8rem;
  position: relative;
}
.strength .strength-box__num .strength-box__num-txt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8.5rem;
  height: 8.5rem;
  background-image: url(../img/strength_num_round.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.strength .strength-box__ttl {
  font-size: clamp(24px, 5.5vw, 32px);
  color: #f06661;
  line-height: 1.25;
}
.strength .strength-box__txt {
  font-size: clamp(14px, 2.8vw, 20px);
}

.program .program-list {
  display: flex;
  column-gap: 24px;
  row-gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.program .program-box {
  background-color: #fefefe;
  border: 3px solid #ddcfcf;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1529411765) 0px 2px 4px 0px;
  padding: 24px;
  width: calc(25% - 24px);
  min-width: 250px;
}
.program .program-box:hover {
  transform: translateY(-10px);
}
.program .program-box__ttl {
  border-bottom: 3px dotted #ddcfcf;
  font-size: 20px;
  white-space: nowrap;
}
.program .program-box__img {
  width: 100%;
  padding: 12px 0;
}
.program .program-box__img > img {
  max-height: 170px;
  width: 100%;
  border-radius: 17px;
  object-fit: cover;
}

.flow .container {
  background: linear-gradient(to bottom, #ffefdd, #fce4e0);
  padding-bottom: 160px;
  border-radius: 40px;
}
.flow .flow-list {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.flow .flow-box {
  display: flex;
  justify-content: center;
  position: relative;
}
.flow .flow-box:not(:last-of-type) .flow-box__img:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 40px;
  background-image: url(../img/dot.png);
  background-size: cover;
  bottom: 0px;
  left: 17.8%;
  transform: translateX(-50%);
}
.flow .flow-box__img {
  border: #ddcfcf;
  z-index: 1;
  max-width: 240px;
  width: 30%;
}
.flow .flow-box__img > img {
  border-radius: 999px;
  object-fit: cover;
  border: 10px solid #ddcfcf;
  aspect-ratio: 1/1;
}
.flow .flow-box__desc {
  background-color: #fefefe;
  font-size: clamp(14px, 2.8vw, 20px);
  padding: 40px 80px;
  border-radius: 999px;
  margin-left: -70px;
  margin-top: 80px;
  width: 70%;
}
.flow .flow-box__ttl {
  font-size: clamp(24px, 5.5vw, 32px);
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 3px dotted #ddcfcf;
}

.staff .staff-list {
  display: flex;
  column-gap: 40px;
  max-width: 55.5rem;
  margin: 0 auto;
}
.staff .staff-list > div {
  flex-basis: 50%;
}
.staff .staff-box__img {
  text-align: center;
}
.staff .staff-box__img > img {
  width: 240px;
  height: 240px;
  border-radius: 999px;
  object-fit: cover;
  border: 10px solid #ddcfcf;
}
.staff .staff-box__ttl {
  padding-bottom: 24px;
  text-align: center;
}
.staff .staff-box__ttl .staff__name {
  display: block;
  font-size: 28px;
}
.staff .staff-box__txt {
  inline-size: fit-content;
  margin-inline: auto;
}

}

.plan {
  background-color: #ffefdd;
  border-top: 3px dotted #ddcfcf;
  border-bottom: 3px dotted #ddcfcf;
  padding: 0;
  margin: 50px auto;
}
.plan .scroll-box {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.plan .plan-list {
  display: flex;
  column-gap: 40px;
  justify-content: center;
  padding-bottom: 24px;
  margin: 47px auto 0;
  min-width: 900px;
}
.plan .plan-list:-webkit-scrollbar-track {
  background: #fefefe;
}
.plan .plan-list:-webkit-scrollbar-thumb {
  background: #ddcfcf;
  border: none;
}
.plan .plan-list:-webkit-scrollbar-thumb:hover {
  background: #f2f2f2;
}
.plan .plan-box {
  text-align: center;
  width: 33.3%;
}
.plan .plan-box__ttl {
  background-color: #ddcfcf;
  font-size: 20px;
  padding: 16px 0;
  border-radius: 20px 20px 0 0;
}
.plan .plan-box .best-label {
  color: #f06661;
  background-color: #fefefe;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  position: absolute;
  top: -47px;
  right: -27px;
  z-index: 1;
  outline: 1px solid #f06661;
  outline-offset: -8px;
  border: 1px solid #f06661;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03rem;
}
.plan .plan-box .u-en {
  font-size: 24px;
}
.plan .plan-box:nth-of-type(1) {
  position: relative;
}
.plan .plan-box:nth-of-type(1) .plan-box__ttl {
  background-color: #f06661;
  color: #fefefe;
}
.plan .plan-box__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: #fefefe;
  border-radius: 0 0 20px 20px;
  height: 260px;
  row-gap: 8px;
  padding: 24px 0;
}
.plan .plan-box__content .price,
.plan .plan-box__content .per-price {
  font-family: din-2014, sans-serif;
  margin: 0 6px;
}
.plan .plan-box__content .price {
  font-size: 48px;
}
.plan .plan-box__content .per-price {
  font-size: 28px;
}
.plan .plan-box__content .plan-box__price {
  padding-bottom: 8px;
}
.plan .plan-box__content .plan-box__per {
  color: #8b8b8b;
}
.plan .plan-box__content .plan-box__caption {
  color: #8b8b8b;
  font-size: 12px;
  padding-top: 24px;
}
.plan .plan-box__content .plan-box__program {
  background-color: #f2f2f2;
  padding: 4px 12px;
}
.plan .btn-area {
  text-align: center;
  margin-top: 24px;
}
.plan .btn-area .btn {
  font-size: clamp(20px, 3vw, 24px);
  background-color: #fefefe;
  border: 2px solid #f06661;
  padding: 20px clamp(76px, 10.6vw, 144px) 20px clamp(64px, 9.2vw, 120px);
  color: #f06661;
}
.plan .btn-area .btn:after {
  width: 30px;
  height: 30px;
  top: 18px;
  right: clamp(22px, 4.3vw, 100px);
  background-size: 28px 28px;
  border: 2px solid #f06661;
  border-radius: 50%;
}

.faq .section__body {
  background-color: #fefefe;
  border-radius: 30px;
  padding: 24px;
}
.faq .faq-list {
  display: flex;
  flex-direction: column;
}
.faq .faq-item {
  display: flex;
  justify-content: space-between;
}
.faq .faq-item:not(:first-of-type) .faq-box {
  border-top: 4px dotted #ddcfcf;
  padding-top: 16px;
}
.faq .faq-box {
  width: calc(50% - 24px);
  cursor: pointer;
}
.faq .faq-box summary {
  display: block;
}
.faq .faq-box summary::-webkit-details-marker {
  display: none;
}
.faq .faq-box .faq-box__question {
  padding-right: 32px;
  padding-bottom: 16px;
  position: relative;
  display: flex;
  column-gap: 16px;
  align-items: center;
}
.faq .faq-box .faq-box__question::before, .faq .faq-box .faq-box__question::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  top: 25%;
  right: 12px;
  background-color: #f06661;
}
.faq .faq-box .faq-box__question::before {
  transform: rotate(0deg);
}
.faq .faq-box .faq-box__question::after {
  transform: rotate(90deg);
}
.faq .faq-box[open] .faq-box__question::after {
  display: none;
}
.faq .faq-box .faq-box__answer {
  background-color: #f2f2f2;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 25px;
  display: flex;
  column-gap: 12px;
  flex-wrap: nowrap;
}
.faq .mark-q,
.faq .mark-a {
  font-weight: 700;
  font-family: din-2014, sans-serif;
  text-align: center;
  color: #f06661;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  flex-shrink: 0;
}
.faq .mark-q {
  background-color: #fce4e0;
}

/*--------------------------------
アクセス
---------------------------------*/
.access-main {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 66px;
}
.access-main img {
  width: 100%;
}

.access-contents {
  max-width: 884px;
  margin: 0 auto 120px;
}
.access-contents .map {
  margin: 40px 0 80px;
}
.access-contents .map iframe {
  width: 884px;
  height: 400px;
  border-radius: 30px;
}
.access-contents .contents {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
.access-contents .contents-photo > img {
  border-radius: 20px;
}

/*--------------------------------
プログラムについて
---------------------------------*/
.program-main {
  position: relative;
}
.program-main .page-ttl {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -20%);
  z-index: -1;
}
.program-main .page-ttl::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 258px;
  background-image: url(../img/symbol.svg);
  background-size: cover;
  opacity: 0.2;
  top: 0;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: -1;
}
.program-main__img {
  position: relative;
  width: fit-content;
  margin: 0 0 0 auto;
  z-index: -2;
}

.program-contents {
  padding: 0 40px;
}
.program-contents .index {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 151px;
}
.program-contents .index li {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}
.program-contents .index li:not(:first-child)::before {
  content: "";
  width: 5px;
  height: 51px;
  padding: 0 20px;
  margin: 0 auto;
  border-left: 4px dotted #ddcfcf;
}
.program-contents .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  padding: 64px 80px;
  margin-bottom: 100px;
  gap: 80px;
  background-color: #fefefe;
  border-radius: 20px;
  background-image: url(../img/program-bk.png);
  position: relative;
}
.program-contents .container:nth-child(even) {
  border: 5px dotted #d6a4a4;
}
.program-contents .container:nth-child(even)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(221, 207, 207, 0.75);
  border-radius: 20px;
}
.program-contents .container:nth-child(odd) {
  border: 5px dotted #faaa50;
}
.program-contents .container:nth-child(odd)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(255, 239, 221, 0.75);
  border-radius: 20px;
}
.program-contents .container:nth-child(odd) .note {
  order: 2;
}
.program-contents .container h3 {
  grid-column: 1/3;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #f06661;
}
.program-contents .container .note > p {
  margin-bottom: 24px;
}
.program-contents .container .note > p span {
  color: #f06661;
}
.program-contents .container .note > p:last-child {
  margin-bottom: 32px;
}
.program-contents .container .note .note-recommendation p {
  color: #bc9085;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 22px;
}
.program-contents .container .note .note-recommendation p::before {
  content: "";
  display: block;
  background-image: url("../img/recommendation.svg");
  width: 23px;
  height: 23px;
  background-size: cover;
  margin-right: 8px;
}
.program-contents .container .note .note-recommendation ul li {
  margin-bottom: 8px;
}
.program-contents .container .photo img {
  border-radius: 24px;
}

/*--------------------------------
料金プラン
---------------------------------*/
.price-main {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 66px;
}
.price-main img {
  width: 100%;
}

.price-contents {
  max-width: 960px;
  margin: 95px auto;
}
.price-contents__photo {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 4px dotted #ddcfcf;
}
.price-contents__photo img {
  border-radius: 24px;
}
.price-contents__container {
  display: grid;
  grid-template-columns: 320px auto;
  padding-bottom: 40px;
}
.price-contents__container:not(:first-of-type) {
  border-bottom: 4px dotted #ddcfcf;
  margin-bottom: 40px;
}
.price-contents__container h3 {
  color: #f06661;
  font-weight: 700;
  font-size: 24px;
}
.price-contents__container .note {
  margin-bottom: 40px;
  font-weight: 700;
}
.price-contents__container .note p:first-child {
  margin-bottom: 24px;
}
.price-contents__container .note .annotation {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.price-contents__container dl:not(:last-child) {
  margin-bottom: 24px;
}
.price-contents__container dl dt {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}
.price-contents__container .price {
  background-color: #fefefe;
  font-size: 24px;
  padding: 8px 40px;
  border-radius: 20px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.price-contents__container .price .strong {
  font-size: 48px;
  font-family: din-2014, sans-serif;
  font-style: normal;
  font-weight: 500;
  padding: 0 14px 0 8px;
}
.price-contents__container .price .strong_red {
  color: #f06661;
}
.price-contents__container .price .time {
  display: inline;
  color: #bc9085;
  border: 1px solid #ddcfcf;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 18px;
}

/*--------------------------------
スマホ
---------------------------------*/
@media screen and (max-width: 1023px) {
  body.stop {
    overflow: hidden;
  }
  .header.visible {
    visibility: visible;
    opacity: 1;
    z-index: 98;
  }
  .hamburger-menu__logo.hidden {
    transition: 0.8s;
    opacity: 0;
  }
  .hamburger-menu {
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    padding: 12px;
    justify-content: space-between;
    z-index: 99;
  }
  .hamburger-menu__logo {
    width: 200px;
  }
  .hamburger {
    display: flex;
    height: fit-content;
    top: 12px;
    right: 12px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background-color: rgba(250, 250, 250, 0.92);
  }
  .hamburger button {
    color: #595757;
  }
  .hamburger__icon {
    cursor: pointer;
    transition: 0.3s;
    z-index: 6;
    position: relative;
    width: 5em;
  }
  .hamburger__icon .menubtn {
    background: #595757;
    content: "";
    height: 2px;
    position: absolute;
    left: 16px;
    bottom: 0;
    transition: 0.8s;
    width: 24px;
  }
  .hamburger__icon--01 {
    top: 17px;
  }
  .hamburger__icon--02 {
    top: 25px;
  }
  .hamburger__icon--03 {
    top: 33px;
  }
  .open .hamburger__icon--01 {
    top: 25px;
    transform: rotate(-30deg);
  }
  .open .hamburger__icon--02 {
    opacity: 0;
  }
  .open .hamburger__icon--03 {
    top: 25px;
    transform: rotate(30deg);
  }
  .open .header__menu__hamburger__content {
    right: 0;
  }
  .header {
    opacity: 0;
    transition: 0.6s;
    z-index: -99;
    flex-direction: column;
    background-color: rgba(250, 250, 250, 0.92);
    width: 100vw;
    height: 100vh;
    justify-content: center;
    gap: 40px;
  }
  .header .header__logo {
    max-width: 260px;
    width: 100%;
  }
  .header .header__nav {
    background-color: transparent;
    border-radius: 0;
  }
  .header__contact-list {
    display: flex;
    gap: 24px;
  }
  .header .nav__list {
    flex-direction: column;
    gap: 48px;
  }
  .footer {
    font-size: 1.57vw;
  }
  .heading__desc {
    font-size: 12px;
  }
  .about .container .about__body {
    padding-top: 120px;
    width: 100%;
  }
  .about .container .about__body br {
    display: none;
  }
  .about .container .about__photo3 {
    bottom: -100px;
  }
  .strength:before, .strength::after {
    height: 80px;
  }
  .strength .strength-list {
    row-gap: 40px;
  }
  .strength .strength-box:not(:last-of-type) {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .strength .strength-box__desc {
    z-index: 2;
    margin-top: -140px;
  }
  .strength .strength-box__ttl-wrap {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding-left: 0;
  }
  .strength .strength-box__num {
    align-self: flex-end;
    padding: 24px;
  }
  .strength .strength-box:nth-of-type(2) {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .strength .strength-box:nth-of-type(2) .strength-box__num {
    align-self: flex-start;
  }
  .strength .strength-box__img {
    text-align: center;
  }
  .strength .strength-box__img img:nth-of-type(2) {
    display: none;
  }
  .strength .strength-box__ttl,
  .strength .strength-box__txt {
    text-align: left;
  }
  .strength .strength-box__ttl br,
  .strength .strength-box__txt br {
    display: none;
  }
  .strength .strength-box-2 {
    flex-direction: column;
  }
  .strength .strength-box-2:nth-of-type(2), .strength .strength-box-2:nth-of-type(3) {
    margin-top: 0;
  }
  .strength .strength-box-2:nth-of-type(odd) .strength-box__num {
    align-self: flex-start;
  }
  .strength .strength-box-2 .strength-box__img {
    margin-top: -100px;
  }
  .strength .strength-box__list {
    flex-direction: column;
  }
  .flow .flow-box__desc {
    border-radius: 40px;
  }
  .faq .faq-item {
    flex-direction: column;
  }
  .faq .faq-item:first-of-type .faq-box:not(:first-of-type) {
    padding-top: 16px;
    border-top: 4px dotted #ddcfcf;
  }
  .faq .faq-box {
    width: 100%;
  }
  .program-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    gap: 24px;
  }
  .program-main .page-ttl {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    order: 2;
  }
  .program-main .page-ttl::after {
    content: "";
    position: absolute;
    width: 279px;
    height: 144px;
    top: 20%;
  }
  .program-main__img {
    position: static;
    width: fit-content;
    margin: auto;
    z-index: -2;
  }
  .program-contents {
    padding: 0;
    margin: 0 12px;
  }
  .program-contents .index {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .program-contents .index li {
    font-size: 20px;
    margin-bottom: 16px;
    display: block;
  }
  .program-contents .index li::before {
    display: none;
  }
  .program-contents .index li::after {
    content: "";
    display: block;
    width: 24px;
    margin: 0 auto;
    margin-top: 8px;
    border-bottom: 4px dotted #ddcfcf;
  }
  .program-contents .index li br {
    display: none;
  }
  .program-contents .index li:not(:first-child) {
    border-left: none;
  }
  .program-contents .container {
    padding: 32px 16px;
    margin-bottom: 80px;
    gap: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
  .program-contents .container h3 {
    grid-column: 1/1;
    font-size: 32px;
  }
  .program-contents .photo {
    grid-row: 2/4;
    text-align: center;
  }
  .price-contents {
    margin: 40px 12px 0 12px;
  }
  .price-contents__photo {
    gap: 8px;
  }
  .price-contents__container {
    grid-template-columns: 1fr;
  }
  .price-contents__container h3 {
    text-align: center;
    margin-bottom: 24px;
  }
  .price-contents__container .note p:first-child {
    margin-bottom: 16px;
  }
  .price-contents__container .price {
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
  }
  .price-contents__container .price_row {
    gap: 4px;
    flex-direction: column;
    padding-bottom: 16px;
  }
  .price-contents__container .price .strong {
    font-size: 32px;
  }
  .price-contents__container .price .time {
    display: inline-block;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 32px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 3.2vw;
  }
  .footer .footer__info .footer__logo {
    max-width: 400px;
  }
  .footer .footer__inner {
    flex-direction: column;
    row-gap: 40px;
    justify-content: center;
  }
  .footer .footer__inner .footer__sitemap {
    display: flex;
    flex-direction: column-reverse;
    margin: 0 auto;
    row-gap: 48px;
  }
  .footer .footer__inner .footer__sitemap .footer__contact-list {
    justify-content: center;
  }
  .footer .nav__list {
    flex-direction: column;
    gap: 48px;
    font-size: 4vw;
  }
  .footer .footer__copyright {
    font-size: 12px;
  }
  .container,
  .lower {
    max-width: none;
  }
  .container {
    padding: 40px 12px;
  }
  .lower-ttl {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .common-access {
    background-image: url(../img/common-access@sp.png);
    padding: 0 10px;
    background-size: cover;
  }
  .common-access .wrap {
    padding: 80px 0;
    flex-direction: column;
  }
  .common-access__content {
    margin-bottom: 40px;
  }
  .common-access__map iframe {
    width: 100%;
  }
  .section__heading .heading {
    font-size: 22px;
  }
  .section__heading .heading__subttl {
    font-size: 14px;
  }
  .mv {
    background-position: center 0, center 100%;
    background-size: auto 50%, auto 50%;
    border-top-left-radius: 1800px 360px;
    border-top-right-radius: 1800px 360px;
    background-image: url(/img/mv_sp_1.png), url(/img/mv_sp_2.png);
    aspect-ratio: 390/844;
    height: 100vh;
  }
  .mv .mv__ttl-area {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
  }
  .flow .flow-list {
    row-gap: 80px;
  }
  .flow .flow-box {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  .flow .flow-box:not(:last-of-type) .flow-box__img:after {
    left: 50%;
    bottom: -60px;
  }
  .flow .flow-box__img {
    width: 100%;
  }
  .flow .flow-box__desc {
    margin-left: 0;
    margin-top: -40px;
    padding: 40px 20px;
    width: 100%;
  }
  .access-contents {
    max-width: none;
    margin: 0 12px 80px;
  }
  .access-contents .map iframe {
    width: 100%;
  }
  .access-contents .contents {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 550px) {
  .program .program-box {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */