﻿:root {
  --brand-red: #AF1F24;
  --primary: #B84C54;
  --primary-dark: #A94149;
  --green: #00B900;
  --yellow: #FFC400;
  --dark: #333333;
  --heading: #3F3F3F;
  --text: #3F3F3F;
  --muted: #767676;
  --line: #E3DED8;
  --soft: #FAF8F6;
  --font: "LINE Seed JP", "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  background: #FFFFFF;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.u-sp-block{
  display: none;
}
@media (max-width: 767px) {
.u-sp-block{
  display: block;
}
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 82px;
  padding: 0 48px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
}
.site-header__logo { width: 119px; flex: 0 0 auto; }
.site-header__menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}
.site-header__menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--heading);
  transition: transform .2s ease, opacity .2s ease;
}
.site-header__nav {
  display: flex;
  justify-content: flex-end;
  flex: 1;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}
.site-header__nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}
.site-header__nav a::before {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  content: "";
  background: url("/assets/img/icon-arrow-nav.png") center / contain no-repeat;
}
.site-header__nav a.site-header__nav-blog::before {
  background-image: url("/assets/img/icon-blog-nav.png");
}
.site-header__nav .site-header__nav-reserve,
.site-header__nav .site-header__nav-line {
  display: none;
}
.site-header__cta {
  display: grid;
  place-items: center;
  padding: 16px 32px;
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background: var(--primary);
  border-radius: 8px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(720px, calc(100svh - 82px));
  padding: 24px 24px 120px;
  overflow: hidden;
  background: #F4F0EA;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero__media::before,
.hero__media::after {
  position: absolute;
  inset: -12% -24%;
  z-index: 2;
  content: "";
  pointer-events: none;
  opacity: 0;
  transform: skewX(-18deg) translate3d(-120%, 0, 0);
}
.hero__media::before {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 196, 0, .42) 45%, rgba(255, 255, 255, .78) 50%, rgba(255, 196, 0, .32) 55%, transparent 100%);
  mix-blend-mode: screen;
  animation: heroStreak 6s cubic-bezier(.16, 1, .3, 1) infinite;
}
.hero__media::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .36) 48%, rgba(184, 76, 84, .32) 54%, transparent 100%);
  mix-blend-mode: overlay;
  animation: heroStreak 6s cubic-bezier(.16, 1, .3, 1) infinite .16s;
}
.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.14) translate3d(72px, 0, 0);
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 24% 100%);
  animation: heroSlide 24s cubic-bezier(.16, 1, .3, 1) infinite;
  will-change: opacity, transform, clip-path, filter;
}
.hero__media img:nth-child(2) { animation-delay: 6s; }
.hero__media img:nth-child(3) { animation-delay: 12s; }
.hero__media img:nth-child(4) { animation-delay: 18s; }
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.hero__media.is-canvas-ready img {
  opacity: 0;
  animation: none;
}
.hero__media.is-canvas-ready .hero__canvas {
  opacity: 1;
}
.hero__media.is-canvas-ready::before,
.hero__media.is-canvas-ready::after {
  display: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 650px;
}
.hero__title { width: min(640px, 43vw); margin: 0; }
.hero__title-sp,
.hero__line-sp {
  display: none;
}
.hero__badges {
  position: absolute;
  z-index: 1;
  top: 32px;
  right: 48px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__content .hero__badges {
  display: none;
}
.hero__badges li {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  aspect-ratio: 1;
  padding: 56px 20px 32px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, .16), transparent 30%),
    rgba(36, 36, 36, .78);
  border-radius: 50%;
}
.hero__badges li::before {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 36px;
  height: 36px;
  content: "";
  background: url("/assets/img/icon-check-hero.png") center / contain no-repeat;
  transform: translateX(-50%);
}
.hero__line {
  position: absolute;
  z-index: 1;
  right: 50%;
  bottom: 28px;
  width: 1000px;
  text-decoration: none;
  transform: translateX(50%);
}
.hero__line img {
  width: 100%;
  height: auto;
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    filter: saturate(1.18) contrast(1.14);
    transform: scale(1.16) translate3d(96px, 0, 0);
    clip-path: polygon(48% 0, 100% 0, 100% 100%, 30% 100%);
  }
  5% {
    opacity: 1;
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  }
  12% {
    opacity: 1;
    transform: scale(1.08) translate3d(24px, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  28% {
    opacity: 1;
    filter: saturate(1.06) contrast(1.08);
    transform: scale(1.03) translate3d(-16px, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  36% {
    opacity: 0;
    filter: saturate(1.18) contrast(1.14);
    transform: scale(1.01) translate3d(-96px, 0, 0);
    clip-path: polygon(0 0, 74% 0, 56% 100%, 0 100%);
  }
  100% {
    opacity: 0;
    filter: saturate(1.18) contrast(1.14);
    transform: scale(1.16) translate3d(96px, 0, 0);
    clip-path: polygon(48% 0, 100% 0, 100% 100%, 30% 100%);
  }
}

@keyframes heroStreak {
  0%,
  2% {
    opacity: 0;
    transform: skewX(-18deg) translate3d(-120%, 0, 0);
  }
  8% {
    opacity: .72;
  }
  16% {
    opacity: 0;
    transform: skewX(-18deg) translate3d(120%, 0, 0);
  }
  100% {
    opacity: 0;
    transform: skewX(-18deg) translate3d(120%, 0, 0);
  }
}

@keyframes heroSlideSp {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  10%,
  28% {
    opacity: 1;
    transform: scale(1);
  }
  38%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}
.section { padding: 120px 0; }
.container { width: min(1080px, calc(100% - 48px)); margin: 0 auto; }
.container--narrow { width: min(760px, calc(100% - 48px)); }
.section-title {
  margin: 0 0 24px;
  color: var(--heading);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.section-title img { display: inline-block; width: 104px; margin-right: 16px; vertical-align: middle; }
.section-title--reason { margin-bottom: 60px; }
.section-title--reason span { color: var(--primary); }
#plans .section-title span { color: var(--primary); }
#plans .section-lead { margin-bottom: 60px; }
.section-title--flow { margin-bottom: 60px; }
.section-title--flow span { color: var(--primary); }
.section-lead { margin: 0 auto 48px; max-width: 720px; text-align: center; }
.sub-title { margin: 80px 0 32px; font-size: 32px; line-height: 1.4; text-align: center; }
.sub-title--diet {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 96px;
  font-size: 36px;
}
.sub-title--diet::before,
.sub-title--diet::after {
  color: var(--heading);
  font-weight: 400;
}
.sub-title--diet::before {
  content: "\\";
}
.sub-title--diet::after {
  content: "/";
}
.sub-title--ticket {
  margin-top: 120px;
  margin-bottom: 48px;
  font-size: 36px;
}

.reason__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 72px 24px;
}
.reason-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  text-align: center;
}
.reason-card:nth-child(-n+3) { grid-column: span 2; }
.reason-card:nth-child(4) { grid-column: 2 / span 2; }
.reason-card:nth-child(5) { grid-column: 4 / span 2; }
.reason-card__icon {
  display: block;
  width: 110px;
  height: 110px;
  margin-inline: auto;
  margin-bottom: 24px;
}
.reason-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.reason-card h3 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 22px;
  line-height: 1.5;
}
.reason-card p {
  margin: 0 0 24px;
  font-size: 14px;
  text-align: left;
}
.reason-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }

.plans { background: #FBF9F7; }
#plans {
  padding: 0 0 120px;
}
#plans .container {
  width: min(1240px, calc(100% - 48px));
}
.plans__label-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 32px;
  object-fit: contain;
}
.plans__cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr) minmax(0, 1fr);
  align-items: end;
  gap: 24px;
  margin-top: 48px;
}
.plan-card {
  display: grid;
  justify-items: center;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(63, 63, 63, .08);
}
.plan-card--featured {
  padding: 24px;
  background: #FFFDF6;
  border: 2px solid #D9A43D;
}
.plan-card__title {
  width: 100%;
  margin: 0 0 24px;
}
.plan-card__title img {
  width: 100%;
  height: auto;
}
.plan-card__title--standard {
  width: 86%;
  margin-bottom: 24px;
}
.plan-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--heading);
  font-weight: 800;
  line-height: 1.2;
}
.plan-card__price strong {
  color: var(--primary);
  font-size: 48px;
  letter-spacing: 0;
}
.plan-card__price span {
  color: var(--heading);
  font-size: 18px;
}
.plan-card__price span:first-child {
  font-size: 16px;
}
.plan-card__meta {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}
.plan-card__features {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}
.plan-card__features img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.plan-card__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  margin: 24px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid #D9A43D;
}
.plan-card__perks li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.plan-card__perks img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.plan-card__note {
  width: 100%;
  margin: 24px 0 0;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  background: #FFF;
  border-radius: 8px;
}
.plan-card__payment,
.diet-card__payment {
  width: 100%;
  margin: 24px 0 0;
  padding: 16px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  background: #FFF;
  border: 1px solid #E3DED8;
  border-radius: 8px;
}
.plan-card__payment span,
.diet-card__payment span {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}
.plan-card__payment small,
.diet-card__payment small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.plan-compare-title {
  margin: 56px 0 24px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
}
.plan-compare {
  margin-top: 0;
  overflow-x: auto;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(63, 63, 63, .08);
  -webkit-overflow-scrolling: touch;
}
.plan-compare table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
  color: var(--heading);
  margin-bottom: 0 !important;
}
.plan-compare th,
.plan-compare td {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}
.plan-compare th:last-child,
.plan-compare td:last-child {
  border-right: 0;
}
.plan-compare tbody tr:last-child th,
.plan-compare tbody tr:last-child td {
  border-bottom: 0;
}
.plan-compare thead th {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  background: var(--heading);
}
.plan-compare thead th:nth-child(3) {
  background: #D9A43D;
}
.plan-compare tbody th {
  width: 20%;
  text-align: left;
  background: #FAFFF6 !important;
}
.plan-compare td {
  width: 26.666%;
  background: #FFFFFF;
}
.plan-compare td.plan-compare__featured {
  background: #FFFDF6;
}
.plan-compare small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}
.plan-compare-title--diet {
  margin-top: 48px;
}
.diet-compare table {
  min-width: 720px;
}
.diet-compare thead th:nth-child(2) {
  background: #D9A43D;
}
.diet-compare thead th:nth-child(3) {
  background: var(--heading);
}
.diet-compare td {
  width: 40%;
}
.plan-card a,
.diet-card a {
  display: grid;
  place-items: center;
  min-height: 48px;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  background: var(--heading);
  border-radius: 4px;
}
.diet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 0 16px rgba(63, 63, 63, .08);
}
.diet-card {
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 32px;
  padding: 24px;
  background: transparent;
}
.diet-card + .diet-card {
  border-left: 1px dashed var(--line);
}
.diet-card__photo {
  width: 100%;
  height: 312px;
  object-fit: cover;
}
.diet-card h4 {
  margin: 0;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.4;
}
.diet-card__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.6;
}
.diet-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: var(--heading);
  font-weight: 800;
  line-height: 1.2;
}
.diet-card__price strong {
  color: var(--primary);
  font-size: 48px;
  letter-spacing: 0;
}
.diet-card__price span {
  color: var(--heading);
  font-size: 18px;
}
.diet-card__price span:first-child {
  font-size: 16px;
}
.diet-card__meta {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.diet-card__features {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.diet-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.diet-card__features img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.diet-card__perks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 24px 0;
  list-style: none;
  border-top: 1px solid #D9A43D;
  border-bottom: 1px solid #D9A43D;
}
.diet-card__perks li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.diet-card__perks img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.diet-card__note {
  margin: 16px 0 0;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  background: #FAFFF6;
  border-radius: 8px;
}
.diet-card__payment {
  margin-top: 16px;
}
.ticket__lead {
  max-width: 760px;
  margin: -24px auto 32px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
.ticket__sub-title {
  margin: 56px 0 32px;
  color: var(--heading);
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
}
.ticket {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(63, 63, 63, .08);
}
.ticket--pair {
  border-color: rgba(184, 76, 84, .22);
  background: #FFFDF6;
}
.ticket__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.ticket caption {
  padding-bottom: 16px;
  color: var(--heading);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
.ticket td {
  padding: 24px 16px;
  border:none !important;
  border-top: 1px dotted #CCCCCC !important;
  vertical-align: middle;
}
.ticket tr:last-child td {
  border-bottom: 1px dotted #CCCCCC !important;
}
.ticket td:first-child {
  width: 26%;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.ticket td:nth-child(2) {
  width: 43%;
  color: var(--primary);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0;
}
.ticket td:last-child {
  width: 31%;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}
.ticket small {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.2;
}
.ticket td:first-child small {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}
.ticket__notes {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin: 24px auto 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  list-style: none;
}
.ticket__notes li {
  position: relative;
  padding-left: 20px;
}
.ticket__notes li::before {
  position: absolute;
  top: .8em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--primary);
  border-radius: 50%;
  transform: translateY(-50%);
}

.flow .container {
  width: min(1200px, calc(100% - 48px));
}
.flow__body {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 56px;
}
.flow__photo {
  width: 100%;
  height: 256px;
  object-fit: cover;
  border-radius: 8px;
}
.flow__steps { display: grid; gap: 24px; }
.flow__steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 16px;
  padding: 24px 32px;
  background: #FAFFF6;
  border-radius: 8px;
}
.flow__steps span {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  color: #FFFFFF;
  font-weight: 800;
  background: #004202;
  border-radius: 50%;
}
.flow__steps h3 {
  margin: 0 0 8px;
  color: var(--heading);
  font-size: 18px;
  line-height: 1.5;
}
.flow__steps p {
  grid-column: 2;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.flow__cta {
  display: grid;
  justify-items: center;
  margin-top: 24px;
}
.flow__trial-price {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.3;
}
.flow__trial-price strong {
  color: var(--primary);
  font-size: 32px;
  line-height: 1;
}
.line-button {
  display: grid;
  place-items: center;
  width: 360px;
  min-height: 64px;
  margin: 40px auto 0;
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 800;
  text-decoration: none;
  background: var(--green);
  border-radius: 999px;
}
.line-button--sub {
  width: 520px;
  min-height: 0;
  margin: 0;
  background: transparent;
}
.line-button--sub img {
  width: 100%;
  height: auto;
}
.flow__special {
  position: relative;
  width: 392px;
  margin-top: 16px;
  padding: 16px 24px;
  text-align: center;
  background: #FBF7ED;
}
.flow__special::before {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 32px;
  height: 16px;
  content: "";
  background: #FBF7ED;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.flow__special p {
  margin: 0;
  color: var(--heading);
  font-weight: 800;
  line-height: 1.5;
}
.flow__special p:first-child strong {
  color: #D9A43D;
  font-size: 32px;
  line-height: 1;
}
.flow__special p:first-child em {
  color: #D9A43D;
  font-style: normal;
}
.flow__special p:last-child {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
  font-weight: 400;
}
.flow__special b {
  font-size: 24px;
}
.flow__special span:last-child b {
  color: var(--primary);
  font-size: 32px;
}
.flow__special span:last-child em {
  color: var(--primary);
  font-style: normal;
}
.flow__special i {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #D9A43D;
}

.case {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  background: #3D3D3B;
}
.case::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 52%;
  content: "";
  background: #2F2F2F;
  clip-path: polygon(0 0, 76% 0, 24% 100%, 0 100%);
}
.case .container {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
}
.case__title {
  display: grid;
  justify-items: center;
  margin: 0 0 60px;
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
}
.case__title img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  object-fit: contain;
}
.case__title span {
  display: block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 400;
}
.case__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.case__photos article {
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 16px;
}
.case__photos img {
  width: 100%;
}
.case__story {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  margin: 32px 0 48px;
  padding: 32px;
  color: var(--text);
  background: #FFFFFF;
  border-radius: 8px;
}
.case__story p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}
.case__story img {
  align-self: start;
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}
.case__sub {
  margin: 0 0 24px;
  color: #FFFFFF;
  font-size: 28px;
  line-height: 1.4;
  text-align: center;
}
.case__sub br {
  display: none;
}
.trainer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.trainer-grid article {
  overflow: hidden;
  color: var(--heading);
  background: #FFFFFF;
  border-radius: 4px;
}
.trainer-grid img {
  width: 100%;
  object-fit: cover;
}
.trainer-grid p {
  margin: 0;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}
.case__message {
  display: grid;
  grid-template-columns: 328px 1fr;
  gap: 32px;
  padding: 32px;
  color: var(--text);
  background: #FFFFFF;
  border-radius: 8px;
}
.case__message img {
  width: 100%;
  object-fit: cover;
}
.case__message p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.8;
}
.case__message p:last-child {
  margin-bottom: 0;
  font-weight: 700;
}
.case__bottom-icon {
  width: 72px;
  height: 72px;
  margin: 96px auto 0;
  object-fit: contain;
}

.access {
  padding: 120px 0 64px;
  background: var(--yellow);
}
.access .container {
  width: min(1240px, calc(100% - 48px));
}
.access__title {
  display: grid;
  justify-items: center;
  margin: 0 0 60px;
  color: #FFFFFF;
  font-size: 40px;
  line-height: 1.2;
  text-align: center;
}
.access__title img {
  width: 152px;
  height: 64px;
  margin-bottom: 0;
  object-fit: contain;
}
.access__title span {
  display: block;
  margin-top: 24px;
  font-size: 22px;
  font-weight: 400;
}
.access__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.access__grid article {
  display: grid;
  align-content: start;
  min-height: 240px;
  padding: 24px 24px 24px;
  background: #FFFFFF;
  border: 1px solid #D9A43D;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(63, 63, 63, .08);
}
.access__grid h3 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}
.access__grid p {
  position: relative;
  min-height: 72px;
  margin: 0;
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.5;
}
.access__grid p img {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.access__grid a {
  display: grid;
  place-items: center;
  min-height: 48px;
  margin-top: 40px;
  padding: 0 24px;
  color: #FFFFFF;
  font-weight: 700;
  text-decoration: none;
  background: var(--primary);
  border-radius: 8px;
}
.access__bottom-icon {
  width: 80px;
  height: 80px;
  margin: 64px auto 0;
  object-fit: contain;
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.photo-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.45 / 1;
  background: #FFFFFF;
  border-radius: 8px;
}
.photo-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}
.photo-gallery a:hover img {
  filter: brightness(1.05);
  transform: scale(1.04);
}
.access__gallery {
  margin-top: 40px;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .82);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox img {
  max-width: min(100%, 1120px);
  max-height: calc(100svh - 96px);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .34);
}
.gallery-lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #FFFFFF;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 50%;
  cursor: pointer;
}

.faq {
  background: #FFFFFF;
}
.faq .section-title {
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 1.4;
}
.faq .section-title span {
  color: var(--primary);
}
.faq .section-lead {
  margin-bottom: 60px;
  font-size: 18px;
  text-align: center;
}
.faq__list {
  display: grid;
  gap: 8px;
}
.faq details {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 6px;
}
.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 16px 56px 16px 16px;
  font-weight: 800;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  content: "";
  background: url("/assets/img/icon-faq-arrow.png") center / contain no-repeat;
  transform: translateY(-50%);
}
.faq details[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq details p {
  margin: 0;
  padding: 0 56px 16px 16px;
  color: var(--muted);
}
.faq details p img{
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.trial {
  position: relative;
  padding: 64px 0 96px;
  background: var(--primary);
}
.trial::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 224px;
  height: 48px;
  content: "";
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.trial__panel {
  position: relative;
  width: min(1152px, calc(100% - 48px));
  margin: 0 auto;
  padding: 96px 128px 64px;
  background: #FFFFFF;
  border-radius: 8px;
}
.trial__panel::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 224px;
  height: 48px;
  content: "";
  background: var(--primary);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.trial__panel h2 {
  margin: 0 0 48px;
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
}
.trial__intro {
  display: grid;
  grid-template-columns: 392px 1fr;
  align-items: center;
  gap: 96px;
  margin-bottom: 48px;
}
.trial__intro > img {
  width: 100%;
  aspect-ratio: 1.52 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.trial__price {
  text-align: center;
  font-weight: 800;
}
.trial__price span {
  display: inline-grid;
  place-items: center;
  min-width: 120px;
  min-height: 40px;
  margin-bottom: 16px;
  padding: 0 24px;
  background: var(--yellow);
  border-radius: 999px;
}
.trial__price strong {
  display: block;
  color: var(--primary);
  font-size: 80px;
  line-height: 1;
}
.trial__price small {
  margin-left: 8px;
  font-size: 32px;
}
.trial__price p {
  margin: 16px 0 0;
  font-size: 16px;
}
.trial__steps {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}
.trial__steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0 24px;
  padding: 24px;
  background: #FAFFF6;
  border-radius: 8px;
}
.trial__steps span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #FFFFFF;
  font-weight: 800;
  background: #004202;
  border-radius: 50%;
}
.trial__steps h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.4;
}
.trial__steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.trial__notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.trial__notes h3,
.trial__special h3 {
  margin: 0 0 16px;
  color: #004202;
  font-size: 18px;
  line-height: 1.4;
}
.trial__notes p,
.trial__special p {
  margin: 0;
  padding: 24px;
  color: var(--muted);
  background: #FAFFF6;
  border-radius: 8px;
}
.trial__special {
  margin-bottom: 48px;
}
.trial__line {
  width: min(920px, 100%);
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}
.trial__line img {
  width: 100%;
}
.trial__line-sp {
  display: none;
}

.instagram {
  padding: 96px 0;
  background: #FFFFFF;
}
.instagram .container {
  width: min(960px, calc(100% - 48px));
}
.instagram h2 {
  margin: 0 0 16px;
  color: var(--heading);
  font-size: 32px;
  line-height: 1.4;
  text-align: center;
}
.instagram p {
  margin: 0 0 32px;
  color: var(--text);
  text-align: center;
}
.instagram__banner {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(63, 63, 63, .12);
  transition: opacity .2s ease, transform .2s ease;
}
.instagram__banner:hover {
  opacity: .92;
  transform: translateY(-2px);
}
.instagram__banner img {
  width: 100%;
}

.footer {
  display: grid;
  place-items: center;
  gap: 24px;
  padding: 72px 24px;
  background: #FFFFFF;
}
.footer img { width: 120px; }
.footer p { margin: 0; font-size: 14px; }

@media (max-width: 1100px) {
  .site-header { gap: 20px; padding-inline: 24px; }
  .site-header__nav { gap: 16px; font-size: 13px; }
  .hero__line { width: calc(100% - 96px); }
  .hero__badges {
    right: 32px;
    gap: 20px;
  }
  .hero__badges li {
    width: 160px;
    font-size: 18px;
  }
  .trial__panel {
    padding: 80px 64px 64px;
  }
  .trial__intro {
    grid-template-columns: 360px 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 72px;
    justify-content: space-between;
  padding-inline: 24px;
  }
  .site-header__menu-toggle {
    display: grid;
    align-content: center;
    justify-content: center;
    gap: 4px;
    order: 3;
    width: 48px;
    height: 48px;
    border-color: #E3DED8;
    border-radius: 8px;
  }
  .site-header__menu-toggle span {
    width: 24px;
    height: 4px;
    background: var(--primary);
    border-radius: 999px;
  }
  .site-header.is-open .site-header__menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header.is-open .site-header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.is-open .site-header__menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .site-header__nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, .98);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(47, 47, 47, .12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-header.is-open .site-header__nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .site-header__nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }
  .site-header__nav .site-header__nav-reserve {
    display: grid;
    place-items: center;
    min-height: auto;
    margin-top: 24px;
    padding: 16px 32px;
    color: #FFFFFF;
    line-height: 1;
    background: var(--primary);
    border-bottom: 0;
    border-radius: 8px;
  }
  .site-header__nav .site-header__nav-line {
    display: block;
    min-height: auto;
    margin-top: 16px;
    border-bottom: 0;
  }
  .site-header__nav-reserve::before,
  .site-header__nav-line::before {
    display: none;
  }
  .site-header__nav-line img {
    width: 100%;
  }
  .site-header__cta { display: none; }
  .hero {
    z-index: 1000;
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0 16px 16px;
    background: none;
  }
  .hero__media {
    position: relative;
    inset: auto;
    z-index: 0;
    width: calc(100% + 32px);
    aspect-ratio: 640 / 427;
    margin: 0 -16px;
  }
  .hero__media img {
    object-position: 54% center;
    clip-path: none;
    animation-name: heroSlideSp;
  }
  .hero__media::before,
  .hero__media::after {
    display: none;
  }
  .hero__content {
    position: relative;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 0;
  }
  .hero__title {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 8px;
    opacity: .94;
  }
  .hero__title-pc,
  .hero__line-pc {
    display: none;
  }
  .hero__title-sp,
  .hero__line-sp {
    display: block;
  }
  .hero__badges {
    display: none;
  }
  .hero__content .hero__badges {
    position: relative;
    z-index: 1;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
  }
  .hero__badges li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: auto;
    aspect-ratio: unset;
    padding: 8px 8px 8px 48px;
    color: var(--yellow);
    font-size: 14px;
    line-height: 1.3;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    border: 0;
    border-radius: 999px;
  }
  .hero__badges li::before {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 24px;
    height: 24px;
    content: "";
    background: url("/assets/img/icon-check-hero.png") center / contain no-repeat;
    transform: translateY(-50%);
  }
  .hero__badges br {
    display: none;
  }
  .hero__line {
    position: fixed;
    z-index: 1001;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .35s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
  }
  body.is-hero-line-visible .hero__line {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .section { padding: 64px 0; }
  .section-title {
    font-size: 24px;
  }
  .faq .section-title {
    font-size: 24px;
  }
  #plans .section-lead {
    text-align: left;
  }
  #plans .section-lead br:first-of-type {
    display: none;
  }
  #plans {
    padding-bottom: 64px;
  }
  .reason-card h3 {
    font-size: 18px;
  }
  .sub-title--diet,
  .sub-title--ticket,
  .case__sub {
    font-size: 20px;
  }
  .case__sub br {
    display: block;
  }
  .sub-title--diet {
    margin-top: 32px;
  }
  .sub-title--ticket {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .plan-card__price strong {
    font-size: 32px;
  }
  .plan-card__note {
    margin-top: 16px;
    padding: 12px;
    font-size: 13px;
  }
  .plan-card__payment,
  .diet-card__payment {
    margin-top: 16px;
    padding: 12px;
    font-size: 13px;
  }
  .plan-compare-title {
    margin: 32px 0 16px;
    font-size: 20px;
  }
  .plan-compare {
    margin-top: 0;
  }
  .plan-compare table {
    min-width: 760px;
  }
  .plan-compare th,
  .plan-compare td {
    padding: 8px;
    font-size: 13px;
  }
  .plan-compare thead th {
    font-size: 14px;
  }
  .diet-card h4 {
    font-size: 26px;
  }
  .diet-card__price span {
    font-size: 16px;
  }
  .diet-card__price strong {
    font-size: 26px;
  }
  .diet-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .diet-card__photo {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }
  .diet-card__price {
    justify-content: center;
  }
  .diet-card__meta {
    text-align: center;
  }
  .diet-card__note {
    padding: 12px;
    font-size: 13px;
  }
  .ticket__lead {
    margin: -16px 0 24px;
    font-size: 14px;
    text-align: left;
  }
  .ticket caption {
    font-size: 16px;
  }
  .ticket td {
    padding: 8px;
  }
  .ticket td:first-child,
  .ticket td:last-child {
    font-size: 16px;
  }
  .ticket td:nth-child(2) {
    font-size: 18px;
  }
  .ticket td:first-child small {
    font-size: 10px;
  }
  .ticket__notes {
    margin-top: 16px;
    font-size: 13px;
  }
  .reason__grid,
  .plans__cards,
  .diet-grid,
  .ticket,
  .flow__body,
  .case__photos,
  .case__story,
  .case__message,
  .trainer-grid,
  .access__grid { grid-template-columns: 1fr; }
  .reason-card,
  .reason-card:nth-child(-n+3),
  .reason-card:nth-child(4),
  .reason-card:nth-child(5) { grid-column: auto; }
  .diet-card + .diet-card {
    border-top: 1px dashed var(--line);
    border-left: 0;
  }
  .ticket__table + .ticket__table {
    padding-top: 24px;
    border-top: 1px dashed var(--line);
    border-left: 0;
  }
  .access {
    padding: 64px 0;
  }
  .access__title {
    font-size: 32px;
  }
  .access__title img {
    width: 120px;
    height: 48px;
  }
  .access__title span {
    font-size: 18px;
  }
  .access__grid article {
    min-height: auto;
  }
  .photo-gallery {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .photo-gallery a {
    flex: 0 0 76%;
    scroll-snap-align: start;
  }
  .gallery-lightbox {
    padding: 16px;
  }
  .gallery-lightbox button {
    top: 16px;
    right: 16px;
  }
  .trial {
    padding: 64px 0;
  }
  .trial__panel {
    padding: 72px 24px 40px;
  }
  .trial__panel::before {
    width: 160px;
    height: 40px;
  }
  .trial__panel h2 {
    margin-bottom: 32px;
    font-size: 18px;
    text-align: left;
  }
  .trial__intro,
  .trial__notes {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trial__intro {
    margin-bottom: 32px;
  }
  .trial__steps article {
    grid-template-columns: 40px 1fr;
    gap: 0 16px;
    padding: 16px;
  }
  .trial__steps span {
    width: 40px;
    height: 40px;
  }
  .trial__steps h3 {
    font-size: 16px;
  }
  .trial__steps p {
    font-size: 14px;
  }
  .trial__line {
    width: 100%;
  }
  .trial__line-pc {
    display: none;
  }
  .trial__line-sp {
    display: block;
  }
  .instagram {
    padding: 64px 0;
  }
  .instagram h2 {
    font-size: 24px;
  }
  .instagram p {
    margin-bottom: 24px;
    text-align: left;
  }
  .flow__body {
    margin-top: 32px;
  }
  .flow__photo {
    height: auto;
  }
  .line-button--sub {
    width: min(100%, 520px);
  }
  .flow__special {
    width: min(100%, 392px);
  }
}


.fukidashi-endo{
  display: flex;
  align-items: start;
}
.fukidashi-endo-text{
  width: 75%;
  padding-right: 16px;
}
.fukidashi-endo-img{
  width: 25%;
  border-radius: 100%;
  overflow: hidden;
  border:solid 2px #eee;
}
.fukidashi-endo-img img{
  max-width: 100%;
  height: auto;
}
.text-impact{
  font-size: 120%;
  color: var(--primary);;
}
.trial__img{
  max-width: 640px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}
.trial__contact__tel{
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  margin-top: 24px;
}
.trial__contact__tel a{
  font-size: 30px;
  text-decoration: none;
}

/* Access page */
.access-page {
  padding: 120px 0 128px;
  background: #FFFFFF;
}
.access-page__container {
  width: min(896px, calc(100% - 48px));
  margin: 0 auto;
}
.access-page h1 {
  margin: 0 0 80px;
  color: var(--primary);
  font-size: 36px;
  line-height: 1.4;
  text-align: center;
}
.access-page__tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 80px;
  font-size: 14px;
  font-weight: 800;
}
.access-page__tabs a {
  position: relative;
  padding: 0 8px;
  color: var(--heading);
  text-decoration: none;
}
.access-page__tabs a + a::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 12px;
  content: "";
  background: var(--line);
  transform: translateY(-50%);
}
.access-page__stores {
  display: grid;
  gap: 96px;
}
.store h2 {
  margin: 0 0 24px;
  font-size: 20px;
  line-height: 1.4;
}
.store__body {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: start;
}
.access-page__map {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / .92;
  border: 1px solid #E5EEF4;
}
.access-page__map iframe {
  width: 100%;
  height: 100%;
}
.store dl {
  display: grid;
  gap: 20px;
  margin: 0;
}
.store dl div {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 24px;
}
.store dt {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
}
.store dd {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}
.store__badge {
  display: grid;
  place-items: center;
  width: max-content;
  min-width: 88px;
  min-height: 24px;
  margin: 16px 0 8px;
  padding: 0 16px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: #004202;
  border-radius: 999px;
}
.store-gallery {
  margin-top: 32px;
}
.store-gallery h3 {
  margin: 0 0 24px;
  color: var(--heading);
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .access-page {
    padding: 80px 0;
  }
  .access-page h1,
  .access-page__tabs {
    margin-bottom: 48px;
  }
  .access-page__tabs {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .access-page__stores {
    gap: 64px;
  }
  .store__body,
  .store dl div {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .store dd {
    font-size: 16px;
  }
  .store-gallery {
    margin-top: 24px;
  }
  .store-gallery h3 {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
