@charset "utf-8";

:root {
  font-size: 62.5%;
  --sp-width: 375px;
  --font-serif: YakuHanMP, 'Noto Serif JP', serif;
  --font-serif-zen: YakuHanMP, 'Zen Old Mincho', serif;
  --font-sans-zen: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: YakuHanJP, 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #1f3737;
}

.lp-frame {
  display: grid;
  grid-template-columns: 1fr auto auto;
  background-color: #68d0c5;
}

.lp-bg-pc {
  background: url('../img/pc_side_bg.jpg') center center / cover no-repeat;
  height: 100vh;
  position: sticky;
  top: 0;
  right: 0;
}

@media (max-width: 1023px) {
  .lp-frame {
    grid-template-columns: 1fr auto;
  }

  .lp-bg-pc {
    display: none;
  }
}

@media (max-width: 765px) {
  .lp-frame {
    display: block;
  }
}

/* 右側のサイドメニュー（固定） */
.lp-side-pc {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 2;
  overflow-y: auto;
}

@media (max-width: 765px) {
  .lp-side-pc {
    display: none;
  }
}

.lp-side-pc__logo {
  width: min(18.15vh, 196px);
  text-align: center;
  margin: 1.85vh auto;
}

.lp-side-pc__logo a {
  display: block;
}

.lp-side-pc__nav {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.4em, 1.48vh, 1.6rem);
  padding: 0 20px;
  overflow: auto;
}

.lp-side-pc__nav a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: min(16px, 1.48vh) 0;
  border-bottom: 1px solid #dfdfdf;
  text-decoration: none;
  color: #333;
}

.lp-side-pc__nav a::before {
  content: '';
  width: 0.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #68d0c5;
}

.lp-side-pc__btns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: min(10px, 0.93vh);
  flex: 1;
  padding: min(20px, 1.85vh) 20px;
}

.lp-side-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(10px, 0.93vh) 20px;
  background: #fff;
  border-radius: 4px;
  border: min(0.74vh, 8px) solid #ebebeb;
  text-decoration: none;
}

.lp-side-card__body {
  flex: 1;
}

.lp-side-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.lp-side-card--reserve .lp-side-card__title {
  color: #17c34b;
}

.lp-side-card--insta .lp-side-card__title {
  color: #ea3b78;
}

.lp-side-card__note {
  font-size: 1rem;
  color: #666;
}

.lp-side-card__img {
  width: clamp(40px, 7vh, 70px);
}

.lp-side-pc__cta {
  padding: min(20px, 1.85vh);
  background-color: #68d0c5;
}

/* SP用メインコンテンツ */
.l-shell__main {
  position: relative;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  max-width: var(--sp-width);
  height: 100%;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  background-color: #e8f3f3;
}

@media (max-width: 430px) {
  .l-shell__main {
    max-width: 430px;
  }
}

/* ===== PCレイアウト ===== */

@media (min-width: 1000px) {
  .l-shell__inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
  }

  .l-shell__side {
    display: flex;
    flex: 1 1 0;
  }

  .l-shell__side--left {
    justify-content: flex-end;
    align-items: center;
  }

  .l-shell__side--right {
    justify-content: flex-start;
    align-items: center;
  }
}

/* 共通スタイル */
.wrapper {
  padding: 0 25px;
}

picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* メインビジュアル */
.hero {
  position: relative;
  width: 100%;
  height: 560px;
  margin-bottom: 35.67%;
}

.fv_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../img/fv_img.jpg) no-repeat top center/contain;
}

.hero-inner {
  position: relative;
  padding-top: 325px;
}

.hero-inner .balloon {
  width: 150px;
  position: absolute;
  top: 326px;
  right: 20px;
  transform: translate(0, -100%);
}

@media (max-width: 430px) {
  .hero-inner {
    padding-top: min(85.33vw, 366px);
  }

  .hero-inner .balloon {
    width: 40vw;
    top: min(85.33vw, 366px);
  }
}

.hero-visual-text {
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  gap: 8px 5px;
  line-height: 1;
  color: #fff;
}

.hero-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  aspect-ratio: 1/1;
  background-color: #caffef;
  border-radius: 50%;
  font-family: var(--font-sans-zen);
  font-size: 2rem;
  font-weight: 700;
  color: #009090;
}

.hero-copy {
  font-size: min(6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px rgba(25 131 132 / 30%);
}

.hero-title {
  grid-column: span 4;
  position: relative;
  z-index: 2;
  font-family: 'Shippori Mincho', serif;
  font-size: min(14vw, 5.3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px rgb(25 131 132 / 30%);
  transform: skewX(-10deg);
}

.hero-title span {
  font-size: min(13.5vw, 5rem);
  letter-spacing: -0.2em;
}

.hero-cta {
  transform: translateY(20px);
}

.cta {
  overflow: hidden;
  border-radius: 10px;
  background-color: #fff;
  font-family: var(--font-sans-zen);
}

.cta_last {
  padding-bottom: 80px;
}

.cta__badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 7px 10px;
  background-color: #caffef;
}

.cta__badge {
  padding: 3px 14px;
  border-radius: 2.5px;
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #009090;
}

.lp-side-pc__cta .cta__badge {
  font-size: 1.4rem;
}

.cta__badge--right {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: #009090;
}

.lp-side-pc__cta .cta__badge--right {
  font-size: 1.4rem;
}

.cta__badge--right span {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
}

.lp-side-pc__cta .cta__badge--right span {
  font-size: 2rem;
}

.cta__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  margin: 5px auto;
  font-weight: 700;
}

.lp-side-pc__cta .cta__price-row {
  gap: 8px;
}

.cta__price-original,
.cta__price-special {
  text-align: center;
  line-height: 1;
}

.cta__price-label {
  font-size: 1.2rem;
  font-weight: 700;
}

.cta__price-main,
.cta__price-special {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr auto;
  align-items: flex-end;
  column-gap: 2px;
  font-family: var(--font-serif-zen);
  line-height: 1;
}

.cta__price-num {
  grid-row: span 2;
}

.cta__price-num--old {
  font-size: 3rem;
  position: relative;
  grid-row: span 2;
  letter-spacing: -0.05em;
}

.lp-side-pc__cta .cta__price-num--old {
  font-size: 2.8rem;
}

.cta__price-num--old::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #333;
  transform: translateY(-50%) rotate(13deg);
}

.cta__price-num--new {
  font-size: 5.5rem;
  color: #d9333f;
  letter-spacing: -0.05em;
  transform: translateY(2px);
}

.cta__price-num--new span {
  font-size: 4.2rem;
  letter-spacing: -0.1em;
}

.lp-side-pc__cta .cta__price-num--new {
  font-size: 4.8rem;
}

.cta__tax {
  font-size: 0.7rem;
  font-weight: 700;
  grid-column: 2;
}

.cta__yen {
  font-size: 1.6rem;
  font-weight: 700;
  grid-column: 2;
}

.cta__price-special .cta__tax {
  font-size: 1.2rem;
  font-weight: 700;
  grid-column: 2;
}

.lp-side-pc__cta .cta__price-special .cta__tax {
  font-size: 1rem;
}

.cta__price-special .cta__yen {
  font-size: 2.8rem;
  font-weight: 700;
  grid-column: 2;
}

.lp-side-pc__cta .cta__price-special .cta__yen {
  font-size: 2.4rem;
}

.cta__arrow {
  display: block;
  align-self: center;
  width: 7px;
  height: 18px;
  margin-top: 15px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  background-color: #061010;
}

.lp-side-pc__cta .cta__arrow {
  width: 6px;
  height: 15px;
}

.cta__btn {
  display: block;
  padding: 0 10px;
  margin: 12px auto 8px;
}

/* slide */

.swiper {
  margin-bottom: 60px;
}
.swiper-slide {
  border-radius: 4px;
  overflow: hidden;
}

/* trouble */
.trouble {
  padding: 50px 20px 20px;
  margin-bottom: 35px;
  overflow: hidden;
}

.trouble-title {
  margin-bottom: 20px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #3d2217;
}

.trouble-title span {
  font-size: 2.2rem;
}

.trouble-list-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 28px 5px 28px 20px;
  box-shadow: 41px 35px 120px rgba(25, 131, 132, 0.3);
  margin-bottom: 50px;
}

.trouble-list {
  list-style: none;
}

.trouble-list li {
  font-size: min(3.73vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #080e0e;
}

.trouble-list li span {
  font-size: min(4.8vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0em;
}

.trouble-list li + li {
  margin-top: 12px;
}

.trouble-list li::before {
  content: '';
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  margin-right: 8px;
  background: url('../img/check_mark.png') no-repeat center/contain;
}

/* 共感メッセージ */
.message {
  position: relative;
  margin-bottom: 40px;
}

.message-title {
  margin-bottom: 30px;
  font-family: var(--font-serif);
  font-size: min(8vw, 3rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #1f3737;
}

.message-photo {
  position: absolute;
  top: -63px;
  right: -20px;
}

.message-photo img {
  display: block;
  width: 160px;
}

.message p {
  font-size: min(4.27vw, 1.5rem);
  line-height: 1.8;
}

.cts_question {
  position: relative;
  z-index: 1;
}

.cts_question::after {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: radial-gradient(#caffef, transparent 25% 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

/* 呼吸 × 開脚 セクション */
.method {
  margin-top: -40px;
  margin-bottom: 25px;
  padding: 60px 17px 27px;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
}

.method-heading {
  text-align: center;
  margin-bottom: 20px;
}

.method-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Shippori Mincho', serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #009090;
}

.method-main span {
  font-size: 4.5rem;
  font-weight: 100;
  color: #1f3737;
}

.method-sub {
  margin-top: 2px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
}

.method-heading::after {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  background: radial-gradient(
    circle farthest-side,
    #acacac,
    #acacac 25%,
    transparent 25%,
    transparent
  );
  background-size: 8px;
  margin: 15px auto 0;
}

.method-item {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.method-item + .method-item {
  margin-top: 27px;
}

.method-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  border-radius: 15px 0 15px 0;
  background: linear-gradient(90deg, #198384, #10aeaf);
  color: #fff;
  font-family: var(--font-serif-zen);
  font-style: italic;
  font-size: 3rem;
  font-weight: 300;
}

.method-text-wrap {
  flex: 1;
  line-height: 1.3;
  transform: translateY(-5px);
  margin-bottom: -6px;
}

.method-title {
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #198384;
}

.method-title span {
  font-size: 3.3rem;
}

.method-text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #1f3737;
}

.method-text span {
  font-size: 2.3rem;
}

/* expert */
.expert {
  position: relative;
  z-index: 2;
}

.expert-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.expert-heading span {
  font-size: 3.6rem;
  letter-spacing: 0.1em;
  color: #009090;
}

.expert-balloons {
  margin-bottom: 20px;
}

.expert-balloons picture + picture {
  margin-top: 8px;
}

.expert-lead {
  margin-bottom: 10px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: 700;
}

.expert-lead span {
  display: inline-block;
  position: relative;
}

.expert-lead span::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: calc(100% + 3px);
  height: 11px;
  background-color: #cbfeef;
}

.expert-text {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

.expert-profile {
  margin-bottom: 32px;
}

.expert-photo {
  margin-bottom: 20px;
  position: relative;
}

.expert-photo img {
  border-radius: 10px;
}

.expert-ribbon {
  position: absolute;
  top: -12px;
  right: 10px;
  width: auto;
  height: max-content;
  padding: 10px 4px;
  background-color: #009090;
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}

.expert-title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.maimai .expert-title {
  margin-bottom: 0;
}

.expert-name {
  font-size: 3.8rem;
  margin-bottom: 20px;
  font-family: var(--font-serif-zen);
  font-weight: 500;
  line-height: 1;
  color: #198384;
}

.maimai .expert-name {
  margin-bottom: 15px;
  font-size: 4.6rem;
}

.expert-description {
  font-size: 1.4rem;
  letter-spacing: 0em;
  line-height: 1.6;
}

/* 喜び・驚きの声 */
.voices {
  padding: 60px 16px 80px;
}

.voices__head {
  position: relative;
  text-align: center;
  margin-bottom: 26px;
  z-index: 1;
}

.voices__head::before {
  content: '';
  display: block;
  width: 300px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(#caffef, transparent 50% 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  z-index: -1;
}

.voices__catch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #009090;
}

.voices__catch span {
  font-size: 4.5rem;
  font-weight: 100;
  color: #1f3737;
}

.voices__lead {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.voices__title {
  display: block;
  width: fit-content;
  margin: 10px auto;
  padding: 0 15px;
  font-family: var(--font-sans-zen);
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #198384;
}

.voices__title span {
  font-size: 2.5rem;
}

.voice-card {
  padding: 15px 10px 28px;
}

.voice-card__body {
  padding: 15px 10px;
  border-radius: 10px;
  background-color: #fff;
}

.voice-card__body + .voice-card__body {
  margin-top: 52px;
}

.voice-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  column-gap: 10px;
  margin-bottom: -3px;
}

.voice-card__body:nth-child(even) .voice-card__title {
  flex-direction: row-reverse;
  justify-content: space-between;
}

.voice-card__thumb {
  width: 100px;
  aspect-ratio: 1 / 1;
  transform: translateY(-30%);
}

.voice-card__title h3 {
  font-size: min(4.8vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0d7f7c;
}

.voice-card__meta {
  font-size: 1.2rem;
  color: #777;
}

.voice-card__body p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.voice-card__body p + p {
  margin-top: 10px;
}

.marker {
  background-color: #fff4a9;
}

/* 初回体験の流れ */
.flow {
  margin: 40px auto 100px;
}

.flow__title {
  font-size: 2.7rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 17px;
}

.flow__title span {
  font-size: 3rem;
}

.flow__title span.green {
  color: #198384;
  font-weight: 500;
}

.flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-item {
  display: grid;
  grid-template-rows: auto;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  width: calc(100% - 15px);
  margin: 0 0 0 auto;
  padding: 13px 10px 13px 45px;
}

.flow-item + .flow-item {
  margin-top: 2rem;
}

.flow-item:not(:last-child)::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 33px;
  height: 10px;
  background-color: rgba(0, 144, 144, 0.5);
}

.flow-step {
  width: 55px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #009090;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -15px;
}

.flow-step__label {
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}

.flow-step__num {
  font-family: var(--font-serif-zen);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.flow-item__body {
  flex: 1;
}

.flow-item__title {
  font-size: 1.7rem;
  font-weight: 500;
  color: #198384;
  margin-bottom: 5px;
}

.flow-item__text {
  font-size: 1.35rem;
  letter-spacing: 0;
}

/* ご参加特典3大プレゼント */
#present {
  margin-top: -60px;
  padding-top: 60px;
}

.benefit {
  background-color: #fdf5e7;
  padding-bottom: 30px;
}

.benefit__head {
  position: relative;
  margin-bottom: 16px;
}

.only_now {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  top: -55px;
  left: 25px;
  width: 120px;
  aspect-ratio: 1 / 1.2;
  padding-top: 30px;
  border-radius: 50%;
  background-color: #fdf5e7;
}

.only_now p {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transform: translateX(-3px) rotate(-15deg);
}
.only_now p span {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
}

.only_now p::before,
.only_now p::after {
  content: '';
  display: block;
  width: 1px;
  height: 20px;
  background-color: #50343c;
  position: absolute;
  bottom: 0;
}

.only_now p::before {
  left: -6px;
  transform: rotate(-50deg);
}
.only_now p::after {
  right: -6px;
  transform: rotate(30deg);
}

.benefit__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 10px;
  text-align: center;
  line-height: 1;
}

.benefit__copy__left {
  font-size: min(6.4vw, 2.4rem);
  font-weight: 500;
}

.benefit__num {
  font-size: 7.5rem;
  font-family: var(--font-serif-zen);
  font-style: italic;
  color: #8f7432;
  padding-right: 12px;
  margin-left: -5px;
}

.benefit__copy__right {
  font-family: var(--font-sans-zen);
  font-size: min(8vw, 3rem);
  font-weight: 700;
}

.benefit-list {
  list-style: none;
  position: relative;
  margin-bottom: 20px;
}

.benefit-item + .benefit-item {
  margin-top: 24px;
}

.benefit-item__content {
  display: flex;
  border-radius: 5px;
  border: 2px solid #9d8844;
  overflow: hidden;
}

.benefit-item__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  padding: 16px 0;
  background-color: #9d8844;
  line-height: 1;
  color: #ffffff;
}

.benefit-item__label-text {
  font-size: 1.5rem;
  font-weight: 500;
}

.benefit-item__label-num {
  font-size: 3.6rem;
  font-family: var(--font-serif-zen);
  font-style: italic;
  margin-top: 4px;
  transform: translateY(-3px);
}

.benefit-item__body {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 16px;
  background-color: #fff;
}

.benefit-item__title {
  font-size: min(5.3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.benefit-item__title span {
  display: block;
  margin: 0 0 0 auto;
}

.benefit-item__desc {
  margin-top: 12px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0;
}

.benefit-item__desc span {
  background-color: rgba(241, 192, 34, 0.37);
}

/* FAQセクション */
.faq {
  padding-top: 40px;
}

.faq__head {
  margin-bottom: 35px;
  text-align: center;
  line-height: 1;
}

.faq__title-ja {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.faq__title-en {
  display: block;
  font-family: var(--font-serif-zen);
  font-size: 5.8rem;
  font-weight: 700;
  color: #198384;
}

.faq__title-en span {
  font-size: 4rem;
  color: #222222;
}

.faq__img {
  overflow: hidden;
}

.faq__img picture {
  display: block;
  left: 50%;
  transform: translateX(-50%);
}

.faq__img img {
  width: 100%;
}

.faq-list {
  margin-top: -45px;
  padding-bottom: 40px;
}

.faq-item {
  background-color: #fff;
  border-radius: 5px;
  padding: 18px 14px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item__q {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: 500;
}

.faq-item__q p {
  font-weight: 500;
  letter-spacing: 0.05em;
}

.faq-icon-q,
.faq-icon-a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  padding-bottom: 4px;
  border-radius: 50%;
  font-family: var(--font-serif-zen);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.faq-icon-q {
  background-color: #c7c7c7;
  color: #080e0e;
}

.faq-item__a {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 10px;
  font-size: 1.4rem;
}

.faq-icon-a {
  background-color: #009090;
  color: #fff;
}

.faq-item__a p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  color: #080e0e;
}

/* 最後のメッセージセクション */
.message-last {
  position: relative;
  overflow: hidden;
}

.message-last__content {
  margin-bottom: 20px;
}

.message-last__title {
  font-family: var(--font-serif);
  font-size: min(6.13vw, 2.3rem);
  line-height: 1.9;
  font-weight: 700;
  color: #009090;
  margin-bottom: 1.5rem;
}

.message-last p {
  font-size: min(4.27vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #1f3737;
}

.message-last p + p {
  margin-top: 23px;
}

.message-last__img {
  position: absolute;
  right: -15px;
  top: min(38.67vw, 138px);
  width: min(45.33vw, 170px);
}

/* 店舗情報 */

.info {
  background: #fff;
  padding: 50px 25px;
  position: relative;
}

.info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 45px;
  background: url(../img/footer_bg.png) no-repeat center bottom / contain;
}

.info__logo {
  width: 220px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

.info__logo img {
  height: auto;
}

.info__block {
  font-family: var(--font-sans-zen);
  color: #333;
  line-height: 1;
}

.info__block::before {
  content: '';
  display: block;
  width: 100%;
  height: 1rem;
  background: radial-gradient(
    circle farthest-side,
    #acacac,
    #acacac 25%,
    transparent 25%,
    transparent
  );
  background-size: 0.8rem;
  margin-bottom: 30px;
}

.info__block + .info__block {
  margin-top: 20px;
}

.info__heading {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 13px;
  font-size: 2rem;
  font-weight: 500;
}

.icon--clock,
.icon--pin {
  width: 23px;
  aspect-ratio: 1 / 1;
}

.info__time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info__time {
  padding-bottom: 4px;
  font-size: min(9vw, 3.4rem);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.info__holiday {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.4rem;
}

.info__holiday-label {
  border: 0.5px solid #474747;
  padding: 2px 5px;
  font-size: 1.2rem;
}

.info__holiday-text {
  font-size: 1.6rem;
}

.info__map {
  width: 100%;
  height: 180px;
  margin: 5px 0 15px;
  border-radius: 10px;
  overflow: hidden;
}

.info__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info__access-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info__access-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 400;
}

.info__access-item + .info__access-item {
  margin-top: 10px;
}

.info__access-item::before {
  content: '';
  width: 20px;
  height: 20px;
}

.info__access-item--car::before {
  background: url(../img/icon_car.svg) no-repeat center/contain;
}

.info__access-item--parking::before {
  background: url(../img/icon_parking.svg) no-repeat center/contain;
}

/* footer */
.page-footer {
  text-align: center;
  background-color: #333;
  padding: 12px 0;
  font-size: 1.2rem;
  color: #fff;
}
