@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700;900&family=Montserrat:wght@500&display=swap");

:root {

  --c-blue:        #085EAC;
  --c-blue-mid:    #E27600;
  --c-blue-teal:   #51B0BB;
  --c-blue-pale:   #E0F1F7;
  --c-green:       #E27600;
  --c-green-pale:  #DAF5E6;
  --c-red:         #FF4A31;
  --c-yellow:      #FCEA3D;
  --c-yellow-dk:   #C8B60E;
  --c-cream:       #FFFBE4;
  --c-orange:      #E27600;
  --c-pink-pale:   #FFE8E5;
  --c-text:        #333333;
  --c-text-2:      #444444;
  --c-text-mute:   #ABABAB;
  --c-white:       #FFFFFF;
  --c-line:        #E1E1E1;
  --c-line-2:      #D9D9D9;

  --ff-jp: "Zen Kaku Gothic New", -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  --ff-en: "Montserrat", var(--ff-jp);

  --fw-m: 500;
  --fw-b: 700;
  --fw-bk: 900;

  --fs-10: 10px;
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-20: 20px;
  --fs-24: 22px;
  --fs-32: 32px;
  --fs-40: 40px;
  --fs-48: 48px;
  --fs-56: 56px;
  --fs-80: 80px;

  --ls: 0.05em;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-8: 64px;
  --sp-10: 80px;

  --r-s: 5px;
  --r-m: 10px;
  --r-pill: 50px;

  --content-w: 480px;
  --sidebar-x: 101px;
  --mq: 1024px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; -webkit-appearance: none; appearance: none; }

.s-events__arrow:focus-visible,
.s-reasons__arrow:focus-visible,
.s-features__arrow:focus-visible,
.s-gallery__arrow:focus-visible,
.s-voice__arrow:focus-visible,
.s-company__arrow:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}
input, textarea, select, button { font-family: inherit; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; color-scheme: light; }
body {
  font-family: var(--ff-jp);
  font-weight: var(--fw-m);
  color: var(--c-text);
  letter-spacing: var(--ls);
  line-height: 1.75;
  background: var(--c-white);
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.wrap { position: relative; }
.content {
  width: 100%;
  max-width: var(--content-w);
  margin-inline: auto;
  background: var(--c-white);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.sec { position: relative; width: 100%; }
.sec__img { width: 100%; height: auto; display: block; }

@media (max-width: 1023px) {
  .sec { scroll-margin-top: 88px; }
}

.pc-bg { display: none; }

.pc-sidebar, .pc-cta, .pc-event-badge { display: none; }

.sp-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; padding: 0 var(--sp-2) 0 var(--sp-3);
  background: var(--c-white); box-shadow: 0 1px 6px rgba(0,0,0,.12);
  transform: translateY(-100%);
  transition: transform .3s ease;
}
.sp-header.is-visible { transform: translateY(0); }
.sp-header__logo { width: 60px; }
.sp-header__logo img { width: 100%; }
.sp-hamburger {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  height: 44px; position: relative; z-index: 60;
}
.sp-hamburger__label { font-family: var(--ff-en); font-size: var(--fs-16); font-weight: var(--fw-m); color: var(--c-text-2); letter-spacing: .04em; }
.sp-hamburger__icon { position: relative; width: 28px; height: 16px; }
.sp-hamburger__bar, .sp-hamburger__bar::before, .sp-hamburger__bar::after {
  content: ""; position: absolute; left: 0; width: 28px; height: 2px;
  background: var(--c-text-2); transition: transform .25s, opacity .25s;
}
.sp-hamburger__bar { top: 50%; transform: translateY(-50%); }
.sp-hamburger__bar::before { top: -7px; }
.sp-hamburger__bar::after  { top: 7px; }
.sp-hamburger.is-open .sp-hamburger__bar { background: transparent; }
.sp-hamburger.is-open .sp-hamburger__bar::before { top: 0; transform: rotate(45deg); }
.sp-hamburger.is-open .sp-hamburger__bar::after  { top: 0; transform: rotate(-45deg); }

.sp-nav {
  position: fixed; inset: 0; z-index: 55;
  background: #F6F2EB url(./img/shell-menu-bg.png) top center / 100% auto no-repeat;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .3s ease;
  overflow-y: auto;
}
.sp-nav.is-open { transform: translateX(0); }

.sp-nav__header {
  flex: none;
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 var(--sp-3);
  background: var(--c-white); border-bottom: 1px solid var(--c-blue-mid);
}
.sp-nav__logo { width: 45px; }
.sp-nav__logo img { width: 100%; }
.sp-nav__close { display: inline-flex; align-items: center; gap: var(--sp-1); color: var(--c-text-2); }
.sp-nav__close-txt { font-family: var(--ff-jp); font-size: var(--fs-16); font-weight: var(--fw-m); }
.sp-nav__close-x { position: relative; width: 28px; height: 28px; }
.sp-nav__close-x::before, .sp-nav__close-x::after { content: ""; position: absolute; top: 50%; left: 3px; width: 22px; height: 2px; background: var(--c-text-2); }
.sp-nav__close-x::before { transform: rotate(45deg); }
.sp-nav__close-x::after { transform: rotate(-45deg); }

.sp-nav__box {
  margin: auto;
  background: var(--c-white); border-radius: var(--r-m);
  padding: var(--sp-4) 25px var(--sp-3);
}
.sp-nav__list { display: flex; flex-direction: column; gap: var(--sp-1); }
.sp-nav__item {
  display: flex; align-items: center;
  font-size: var(--fs-14); line-height: 26px; white-space: nowrap;
  color: #333333;
}

.sp-nav__cta { flex: none; display: flex; flex-direction: column; gap: var(--sp-2); padding: 0 var(--sp-5) var(--sp-3); }
.sp-nav__btn {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px; padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-green); color: var(--c-white); border-radius: var(--r-pill);
}
.sp-nav__btn-left { display: flex; align-items: center; gap: var(--sp-1); }
.sp-nav__btn-icon { flex: none; width: 20px; height: 20px; object-fit: contain; }
.sp-nav__btn-text { font-size: var(--fs-16); font-weight: var(--fw-m); line-height: 18px; }
.sp-nav__btn-arrow { flex: none; position: relative; width: 22px; height: 22px; border-radius: 50%; background: var(--c-white); }
.sp-nav__btn-arrow::before { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 4px 0 4px 7px; border-color: transparent transparent transparent var(--c-green); }
body.no-scroll { overflow: hidden; }

.content { padding-top: 0; }

.fixed-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  display: flex; gap: var(--sp-1);
}
.fixed-cta__btn { display: block; height: 56px; flex: 1 1 0; min-width: 0; }
.fixed-cta__btn img { width: 100%; height: 100%; object-fit: contain; display: block; }

@media (min-width: 1024px) {
  body { background: #F6F2EB; }

  .sp-header, .fixed-cta, .sp-nav, .sp-hamburger { display: none !important; }
  .content { padding-top: 0; box-shadow: 0 0 40px rgba(0,0,0,.08); }

  .pc-bg {
    display: block; position: fixed; inset: 0; z-index: 0;
    background: #F6F2EB;
  }
  .pc-bg img { width: 100%; height: 100%; object-fit: cover; }

  .pc-sidebar {
    display: block; position: fixed; top: 50%; transform: translateY(-50%);
    left: max(16px, calc(50% - 619px)); width: 277px; z-index: 20;
    background: var(--c-white); border-radius: var(--r-m);
    padding: var(--sp-4) 25px var(--sp-3); text-align: center;
  }
  .pc-sidebar__logo { display: block; width: 81px; height: auto; margin: 0 auto var(--sp-3); }
  .pc-sidebar__logo img { width: 100%; height: auto; }
  .pc-nav { text-align: left; }
  .pc-nav__list { display: flex; flex-direction: column; gap: var(--sp-1); }

  .pc-nav__link {
    display: flex; align-items: center; gap: var(--sp-1);
    font-size: var(--fs-14); line-height: 26px; white-space: nowrap;
    color: var(--c-text-mute); transition: color .2s;
  }
  .pc-nav__link::before {
    content: ""; flex: none; width: 13px; height: 1px;
    background: var(--c-orange); opacity: 0; transition: opacity .2s;
  }
  .pc-nav__link:hover { color: var(--c-orange); }
  .pc-nav__link.is-current { color: var(--c-orange); font-weight: var(--fw-m); }
  .pc-nav__link.is-current::before { opacity: 1; }

  .pc-cta {
    display: flex; flex-direction: column; gap: var(--sp-1);
    position: fixed; top: 160px; left: min(calc(100% - 200px), calc(50% + 240px)); z-index: 20;
  }
  .pc-cta__btn {
    display: flex; align-items: center; gap: var(--sp-1); width: 174px;
    padding: var(--sp-2) var(--sp-3) var(--sp-2) var(--sp-2);
    background: var(--c-green); color: var(--c-white);
    border-radius: 0 20px 5px 0;
    font-size: var(--fs-16); font-weight: var(--fw-m); line-height: 22px; letter-spacing: var(--ls);
    transition: width .25s ease, padding .25s ease;
  }

  .pc-cta__btn:hover { width: 190px; padding-left: var(--sp-4); padding-right: var(--sp-4); }
  .pc-cta__btn img { width: 26px; height: 26px; object-fit: contain; flex: none; }
  .pc-cta__btn span { white-space: nowrap; }

  .pc-event-badge {
    display: block; position: fixed; z-index: 30;
    bottom: 24px;
    right: max(16px, calc(50% - 240px + 16px));
    width: 160px;
    transition: transform .25s ease;
  }
  .pc-event-badge img { width: 100%; height: auto; display: block; }
  .pc-event-badge:hover { transform: translateY(-4px); }

  .lm-spec__row { flex-direction: row; gap: var(--sp-1); }
}

.sec--link { display: block; }

.faq { background: var(--c-white); padding: var(--sp-8) var(--sp-3) var(--sp-10); }
.faq__head { text-align: center; margin-bottom: var(--sp-4); }
.faq__label { font-family: var(--ff-en); font-size: var(--fs-16); font-weight: var(--fw-m); color: var(--c-green); line-height: 1; margin-bottom: var(--sp-2); }
.faq__title { font-size: var(--fs-24); font-weight: var(--fw-b); color: var(--c-text-2); line-height: 36px; }
.faq__list { max-width: 432px; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--c-line); }
.faq__item:last-child { border-bottom: 1px solid var(--c-line); }
.faq__q { display: flex; align-items: flex-start; gap: var(--sp-1); width: 100%; padding: var(--sp-3) 0; text-align: left; }
.faq__q-mark { flex: none; font-family: var(--ff-en); font-size: var(--fs-24); line-height: 24px; color: var(--c-blue-mid); padding-top: 4px; }
.faq__q-text { flex: 1; font-size: var(--fs-16); font-weight: var(--fw-b); color: var(--c-text-2); line-height: 28px; }
.faq__toggle { position: relative; flex: none; width: 30px; height: 30px; margin-top: 4px; }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--c-blue-mid); transform: translate(-50%, -50%); }
.faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); transition: opacity .2s; }
.faq__item.is-open .faq__toggle::after { opacity: 0; }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.faq__item.is-open .faq__a { max-height: 600px; }
.faq__a p { font-size: var(--fs-14); color: var(--c-text-2); line-height: 26px; padding-bottom: var(--sp-3); }

.form { background: var(--c-cream); padding: var(--sp-10) var(--sp-3); }
.form__head { text-align: center; margin-bottom: var(--sp-4); }
.form__label { font-family: var(--ff-en); font-size: var(--fs-16); font-weight: var(--fw-m); color: var(--c-green); line-height: 1; margin-bottom: var(--sp-2); }
.form__title { font-size: var(--fs-24); font-weight: var(--fw-b); color: var(--c-text-2); line-height: 36px; }
.form__body { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 432px; margin-inline: auto; }
.form__row { display: flex; flex-direction: column; gap: var(--sp-1); }
.form__label-row { display: flex; align-items: center; gap: var(--sp-1); }
.form__badge { flex: none; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 32px; border-radius: var(--r-s); color: var(--c-white); font-size: var(--fs-14); }
.form__badge--req { background: var(--c-blue-mid); }
.form__badge--opt { background: var(--c-text-mute); }
.form__name { font-size: var(--fs-16); font-weight: var(--fw-m); color: var(--c-text-2); }
.form__control { width: 100%; height: 40px; background: var(--c-white); border: 0; border-radius: 0; padding: 0 var(--sp-2); font-size: var(--fs-14); color: var(--c-text-2); }
.form__control::placeholder { color: var(--c-text-mute); }
textarea.form__control { height: 240px; padding: var(--sp-1) var(--sp-2); line-height: 26px; resize: vertical; }
.form__select { position: relative; }
.form__select::after { content: "▼"; position: absolute; right: var(--sp-2); top: 50%; transform: translateY(-50%); font-size: var(--fs-14); color: var(--c-text-mute); pointer-events: none; }
.form__select .form__control { appearance: none; -webkit-appearance: none; }
.form__note { font-size: var(--fs-14); color: var(--c-text-2); line-height: 26px; }
.form__privacy { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.form__policy { width: 100%; height: 200px; overflow-y: auto; background: var(--c-white); padding: var(--sp-2); font-size: var(--fs-14); color: var(--c-text-2); line-height: 26px; }
.form__policy p { margin-bottom: 0; }
.form__agree { display: flex; align-items: flex-start; gap: var(--sp-1); font-size: var(--fs-14); color: var(--c-text-2); }
.form__agree input { flex: none; width: 13px; height: 13px; margin-top: 6px; }
.form__submit { width: 100%; max-width: 432px; height: 56px; margin-inline: auto; background: var(--c-green); color: var(--c-white); border-radius: var(--r-pill); font-size: var(--fs-16); font-weight: var(--fw-b); }

.lm {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: var(--sp-5) var(--sp-2);
}
.lm.is-open { display: flex; }
.lm__overlay {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, .6);
}
.lm__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 432px;
  max-height: calc(100vh - var(--sp-10));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-m);
}
.lm__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-text-2);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  z-index: 2;
}
.lm__close svg { width: 22px; height: 22px; }
.lm__card {
  margin-top: -40px;
  padding: var(--sp-5) var(--sp-3);
  background: var(--c-blue-pale);
  border-radius: var(--r-m);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.lm-gallery { position: relative; }
.lm-gallery__track {
  display: flex;
  gap: var(--sp-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: var(--r-m);
  background: var(--c-white);
}
.lm-gallery__track::-webkit-scrollbar { display: none; }
.lm-gallery__item { flex: 0 0 100%; scroll-snap-align: center; }
.lm-gallery__item img { width: 100%; height: 222px; object-fit: contain; display: block; background: var(--c-white); }
.lm-gallery__arrow {
  position: absolute;
  top: 111px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(226, 118, 0, .9);
}
.lm-gallery__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
}
.lm-gallery__arrow--prev { left: 8px; }
.lm-gallery__arrow--prev::before { transform: translate(-30%, -50%) rotate(225deg); }
.lm-gallery__arrow--next { right: 8px; }
.lm-gallery__arrow--next::before { transform: translate(-70%, -50%) rotate(45deg); }
.lm-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  margin-top: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lm-gallery__thumbs::-webkit-scrollbar { display: none; }
.lm-gallery__thumbs li { flex: 0 0 93px; }
.lm-gallery__thumbs img { width: 93px; height: 71px; object-fit: cover; display: block; cursor: pointer; opacity: .55; transition: opacity .2s; }
.lm-gallery__thumbs li.is-active img { opacity: 1; }

.lm-info {
  background: var(--c-white);
  border-radius: var(--r-m);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.lm-info__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-text-mute);
}
.lm-info__cat {
  display: inline-flex;
  align-items: center;
  padding: 2px var(--sp-1);
  background: var(--c-blue-mid);
  color: var(--c-white);
  font-size: var(--fs-12);
  line-height: 18px;
}
.lm-info__name { font-size: var(--fs-20); font-weight: var(--fw-b); line-height: 30px; color: var(--c-text-2); }
.lm-info__area { display: flex; align-items: center; gap: var(--sp-1); font-size: var(--fs-12); line-height: 18px; color: var(--c-text-2); }
.lm-info__pin { display: inline-flex; flex: none; width: 9px; height: 15px; color: var(--c-blue-mid); }
.lm-info__price { display: flex; align-items: flex-end; gap: 2px; }
.lm-info__price-num { font-size: var(--fs-32); font-weight: var(--fw-b); line-height: 32px; color: var(--c-blue-mid); }
.lm-info__price-unit { font-size: var(--fs-16); line-height: 16px; color: var(--c-text-2); }
.lm-info__sec { display: flex; flex-direction: column; gap: var(--sp-1); }
.lm-info__h { font-size: var(--fs-16); font-weight: var(--fw-b); line-height: 28px; color: var(--c-text-2); }

.lm-spec { display: flex; flex-direction: column; gap: var(--sp-1); }

.lm-spec__row { display: flex; align-items: flex-start; gap: var(--sp-1); }
@media (max-width: 1023px) {
  .lm-spec__row--stack { flex-direction: column; gap: 4px; }
}
.lm-spec__key {
  flex: none;
  white-space: nowrap;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  padding: 2px var(--sp-1);
  border: 1px solid var(--c-blue-mid);
  color: var(--c-blue-mid);
  font-size: var(--fs-12);
  line-height: 18px;
}
.lm-spec__val { font-size: var(--fs-14); line-height: 26px; color: var(--c-text-2); }

.lm-madori { display: flex; gap: var(--sp-2); }

.lm-madori__thumb {
  position: relative; flex: 1 1 0; min-width: 0;
  aspect-ratio: 164 / 120;
  background: #F6F2EB; border-radius: var(--r-s); overflow: hidden;
  display: block; cursor: pointer; padding: var(--sp-2); border: 0;
}
.lm-madori__thumb img { width: 100%; height: 100%; object-fit: contain; display: block; }
.lm-madori__zoom {
  position: absolute; right: 0; bottom: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-green);
  border-bottom-right-radius: var(--r-s);
}
.lm-madori__zoom svg { width: 22px; height: 22px; display: block; }

.madori-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.75); padding: var(--sp-4);
}
.madori-lightbox.is-open { display: flex; }
.madori-lightbox__img { max-width: min(88%, 560px); max-height: 72vh; width: auto; height: auto; background: #fff; border-radius: var(--r-s); }
.madori-lightbox__close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border-radius: 50%; background: #fff; cursor: pointer;
}
.madori-lightbox__close::before, .madori-lightbox__close::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 20px; height: 2px; background: var(--c-text-2);
}
.madori-lightbox__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.madori-lightbox__close::after  { transform: translate(-50%,-50%) rotate(-45deg); }
.lm-map {
  height: 150px;
  border-radius: var(--r-s);
  overflow: hidden;
  background: #ddd;
}
.lm-map iframe { width: 100%; height: 100%; border: 0; display: block; }

.lm-table { display: flex; flex-direction: column; }
.lm-table__row { display: flex; gap: var(--sp-2); padding: var(--sp-1) 0; border-top: 1px solid var(--c-line); }
.lm-table__row:last-child { border-bottom: 1px solid var(--c-line); }
.lm-table__row dt { flex: 0 0 110px; font-size: var(--fs-14); font-weight: var(--fw-b); line-height: 26px; color: var(--c-blue-mid); }
.lm-table__row dd { flex: 1; font-size: var(--fs-14); line-height: 26px; color: var(--c-text-2); }

.lm-foot { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.lm-foot__txt { font-size: var(--fs-14); line-height: 26px; color: var(--c-text-2); text-align: center; }
.lm-foot__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  width: 100%;
  max-width: 320px;
  min-height: 38px;
  padding: var(--sp-1) var(--sp-2);
  background: var(--c-green);
  border-radius: var(--r-pill);
  color: var(--c-white);
  transition: background-color .25s ease;
}
.lm-foot__btn:hover { background: #333333; }
.lm-foot__btn:hover .lm-foot__btn-arrow svg path { fill: #333333; }
.lm-foot__btn-icon { flex: none; width: 20px; height: 18px; }
.lm-foot__btn-text { font-size: var(--fs-14); font-weight: var(--fw-m); line-height: 18px; }
.lm-foot__btn-arrow { flex: none; width: 22px; height: 22px; }
.lm-foot__btn-arrow svg { width: 22px; height: 22px; display: block; }

body.lm-open { overflow: hidden; }

#lm-tamiyahonmachi .lm__card,
#lm-nishikanmuri .lm__card { background: var(--c-cream); }

@media (min-width: 1024px) {
  :root { --fs-16: 14px; }
}

@media (max-width: 480px) {
  :root { --fs-16: 14px; --fs-24: 20px; }
}

.br-sp { display: none; }
@media (max-width: 480px) { .br-sp { display: inline; } }

body.lm-open .sp-header,
body.lm-open .fixed-cta { z-index: 1; }

@media (max-width: 480px) {
  .lm-table__row { flex-direction: column; gap: 2px; }
  .lm-table__row dt { flex: none; }
}

.form__control option { background: #fff; color: var(--c-text-2); }

.s-fv { container-type: inline-size; width: 100%; max-width: var(--content-w); margin-inline: auto; }
.s-fv__canvas {
  --u: 0.2083333cqw;
  position: relative; width: 100%; aspect-ratio: 480 / 810; overflow: hidden;
  background: #bfe0f5;
}

.s-fv__slideshow { position: absolute; inset: 0; z-index: 1; }
.s-fv__slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  opacity: 0; transition: opacity 1.2s ease;
}
.s-fv__slide.is-active { opacity: 1; }

.s-fv__datebar  { position: absolute; z-index: 5; left: 0; bottom: 0; width: 100%; margin: 0; }
.s-fv__datebar img { width: 100%; height: auto; display: block; }
.s-fv__headline { position: absolute; z-index: 3; left: 0; right: 0; margin-inline: auto; top: calc(61 * var(--u)); width: calc(424 * var(--u)); }
.s-fv__headline img { width: 100%; height: auto; display: block; }
.s-fv__frame    { position: absolute; z-index: 4; left: calc(8 * var(--u)); top: calc(8 * var(--u)); width: calc(464 * var(--u)); height: calc(794 * var(--u)); display: block; pointer-events: none; }

.s-appeal {
  background: var(--c-white);
  padding: var(--sp-5) var(--sp-3);
}

.s-appeal__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.s-appeal__card {

  flex: 0 0 calc(50% - 4px);
}
.s-appeal__card img {
  width: 100%;
  height: auto;
  display: block;
}

.s-events { width: 100%; }
.s-events__img { width: 100%; height: auto; display: block; }

.s-cta1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6) var(--sp-3);
  background: var(--c-green);
  color: var(--c-white);
  text-align: center;
}

.s-cta1__frame {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--c-white);
  border-radius: var(--r-m);
  pointer-events: none;
}

.s-cta1__head, .s-cta1__main, .s-cta1__sub { position: relative; z-index: 1; }

.s-cta1__head { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.s-cta1__en {
  font-family: var(--ff-en);
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 1;
  letter-spacing: 0.05em;
}
.s-cta1__title {
  font-size: var(--fs-24);
  font-weight: var(--fw-b);
  line-height: 36px;
  letter-spacing: 0.05em;
}

.s-cta1__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.s-cta1__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  max-width: 100%;
  height: 38px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-white);
  border-radius: var(--r-pill);
  transition: background-color .25s ease;
}
.s-cta1__btn-left { display: flex; align-items: center; gap: var(--sp-1); }
.s-cta1__btn-icon { flex: none; width: 20px; height: 22px; transition: filter .25s ease; }
.s-cta1__btn-text {
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-green);
  letter-spacing: 0.05em;
  transition: color .25s ease;
}

.s-cta1__btn-arrow {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green);
  transition: background-color .25s ease;
}
.s-cta1__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--c-white);
  transition: border-color .25s ease;
}

.s-cta1__btn:hover { background: var(--c-text); }
.s-cta1__btn:hover .s-cta1__btn-text { color: var(--c-white); }
.s-cta1__btn:hover .s-cta1__btn-icon { filter: brightness(0) invert(1); }
.s-cta1__btn:hover .s-cta1__btn-arrow { background: var(--c-white); }
.s-cta1__btn:hover .s-cta1__btn-arrow::before { border-left-color: var(--c-text); }

.s-cta1__place {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-12);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-white);
}
.s-cta1__pin { flex: none; width: 9px; height: 15px; display: block; }

.s-cta1__sub { display: flex; align-items: center; gap: var(--sp-1); }
.s-cta1__sub-icon { flex: none; width: 16px; height: 16px; }
.s-cta1__sub span {
  font-size: var(--fs-12);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-white);
  letter-spacing: 0.05em;
}

.s-concept {
  position: relative;
  min-height: 411px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.s-concept__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.s-concept__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(68, 68, 68, .6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.s-concept__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-3);
  color: var(--c-white);
  text-align: center;
}
.s-concept__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.s-concept__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
}
.s-concept__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
}
.s-concept__lead {
  align-self: stretch;
  text-align: left;
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 30px;
}

.s-reasons {
  background: var(--c-white);
  padding: var(--sp-10) 0 var(--sp-8);
  overflow: hidden;
}

.s-reasons__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  padding: 0 var(--sp-3);
  margin-bottom: var(--sp-4);
}
.s-reasons__en {
  font-family: var(--ff-en);
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  color: var(--c-green);
  line-height: 1;
}
.s-reasons__title {
  font-size: var(--fs-24);
  font-weight: var(--fw-b);
  color: var(--c-text-2);
  line-height: 36px;
}

.s-reasons__carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.s-reasons__track {
  display: flex;
  gap: var(--sp-3);
  width: 100%;
  padding: 0 var(--sp-3) var(--sp-1);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  list-style: none;
  margin: 0;
}
.s-reasons__track::-webkit-scrollbar { display: none; }

.s-reasons__card {
  flex: none;
  scroll-snap-align: center;
  width: 432px;
  max-width: calc(100vw - var(--sp-6));
  min-height: 229px;
  border-radius: var(--r-m);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) var(--sp-3) var(--sp-3) 28px;
}
.s-reasons__card--blue  { background: #F6F2EB; }
.s-reasons__card--cream { background: #F6F2EB; }

.s-reasons__badge {
  align-self: flex-start;
  margin-left: -32px;
  margin-bottom: var(--sp-1);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  height: 31px;
  padding: 5px var(--sp-3) 4px;
  background: var(--c-green);
  color: var(--c-white);
  position: relative;
}
.s-reasons__badge::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-color: #1B5635 transparent transparent transparent;
  transform: scaleX(-1);
}
.s-reasons__badge-icon { flex: none; width: 22px; height: 22px; object-fit: contain; }
.s-reasons__badge-text {
  font-family: var(--ff-en);
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 16px;
  letter-spacing: 0.05em;
}

.s-reasons__name {
  font-size: var(--fs-20);
  font-weight: var(--fw-b);
  color: var(--c-text-2);
  line-height: 30px;
  letter-spacing: 0.05em;
}
.s-reasons__desc {
  font-size: var(--fs-16);
  color: var(--c-text-2);
  line-height: 28px;
  letter-spacing: 0.05em;
}

.s-reasons__nav {
  display: flex;
  gap: var(--sp-3);
  align-items: center;
}
.s-reasons__arrow { display: inline-flex; width: 30px; height: 30px; }
.s-reasons__arrow svg { width: 100%; height: 100%; display: block; }
.s-reasons__dots { display: flex; gap: var(--sp-1); align-items: center; }
.s-reasons__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-pill);
  background: var(--c-text-mute);
}
.s-reasons__dot.is-active { background: var(--c-green); }

.s-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) 0 0;
  background: #F6F2EB;
}

.s-features__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  padding: 0 var(--sp-3);
  text-align: center;
}
.s-features__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
  color: var(--c-green);
}
.s-features__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
  color: var(--c-text-2);
}

.s-features__panel {
  width: 100%;
  background: #F6F2EB;
  padding: var(--sp-4) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.s-features__track {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  width: 100%;
  padding: 0 var(--sp-3);
  scroll-padding: 0 var(--sp-3);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s-features__track::-webkit-scrollbar { display: none; }

.s-features__card {
  flex: 0 0 100%;
  min-width: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  scroll-snap-align: start;
}

.s-features__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
}
.s-features__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px var(--sp-1);
  background: var(--c-green);
  color: var(--c-white);
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-12);
  line-height: 12px;
}
.s-features__name {
  font-weight: var(--fw-b);
  font-size: var(--fs-20);
  line-height: 30px;
  color: var(--c-text-2);
}

.s-features__photo {
  width: 100%;
  border-radius: var(--r-m);
  overflow: hidden;
}
.s-features__photo img {
  width: 100%;
  height: 243px;
  object-fit: cover;
}

.s-features__desc {
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 28px;
  color: var(--c-text-2);
}

.s-features__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.s-features__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-green);
}
.s-features__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
}
.s-features__arrow--next::before { transform: translate(-65%, -50%) rotate(45deg); }
.s-features__arrow--prev::before { transform: translate(-35%, -50%) rotate(225deg); }

.s-features__dots {
  display: flex;
  align-items: center;

  gap: 18.67px;
}
.s-features__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-text-mute);
}
.s-features__dot.is-active { background: var(--c-green); }

.s-information { background: var(--c-white); }
.s-information__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-3);
}

.s-information__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}
.s-information__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
  color: var(--c-green);
}
.s-information__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
  color: var(--c-text-2);
}

.s-information__photo {
  width: 100%;
  max-width: 432px;
}
.s-information__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--r-m);
  object-fit: cover;
}

.s-information__count {
  width: 100%;
  max-width: 432px;
}
.s-information__count img {
  width: 100%;
  height: auto;
  display: block;
}

.s-information__lead {
  width: 100%;
  max-width: 432px;
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 28px;
  color: var(--c-text-2);
}

.s-information__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.s-information__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  min-height: 45px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-green);
  border-radius: var(--r-pill);
  color: var(--c-white);
  transition: background-color .25s ease;
}

.s-information__btn:hover { background: #333333; }
.s-information__btn:hover .s-information__btn-arrow svg path { fill: #333333; }
.s-information__btn-main {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.s-information__btn-icon { flex: none; width: 20px; height: auto; }
.s-information__btn-text {
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 18px;
  color: var(--c-white);
}
.s-information__btn-arrow { flex: none; width: 22px; height: 22px; }
.s-information__btn-arrow svg { display: block; width: 100%; height: 100%; }

.s-lead {
  position: relative;
  min-height: 634px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.s-lead__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.s-lead__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(68, 68, 68, .6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.s-lead__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-3) var(--sp-8);
}
.s-lead__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  color: var(--c-white);
}
.s-lead__label {
  font-weight: var(--fw-m);
  font-size: var(--fs-14);
  line-height: 26px;
}
.s-lead__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
}
.s-lead__body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.s-lead__text {
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 30px;
  color: var(--c-white);
}
.s-lead__voice {
  position: relative;
  margin: var(--sp-4) 0 0;
  padding: var(--sp-3);
  background: var(--c-white);
  border-radius: var(--r-m);
}

.s-lead__voice::before {
  content: "";
  position: absolute;
  top: -32px;
  right: 16px;
  width: 70px;
  height: 57px;
  background: url(./img/hirakata_lead-voice-tail.svg) center / contain no-repeat;
  transform: scaleY(-1);
}
.s-lead__quote {
  margin: 0;
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 28px;
  color: var(--c-text-2);
}
.s-lead__cite {
  margin-top: var(--sp-1);
  font-weight: var(--fw-m);
  font-size: var(--fs-14);
  line-height: 26px;
  text-align: right;
  color: var(--c-blue-mid);
}

.s-gallery {
  position: relative;
  min-height: 703px;
  background: #F6F2EB;
  padding: var(--sp-10) 0 0;
  overflow: hidden;
}

.s-gallery__head {
  padding: 0 var(--sp-3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  margin-bottom: var(--sp-4);
}
.s-gallery__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
  color: var(--c-green);
}
.s-gallery__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
  color: var(--c-text-2);
}

.s-gallery__carousel-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}
.s-gallery__track {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  width: 100%;
  padding: 0 var(--sp-3);
  scroll-padding: 0 var(--sp-3);
  margin: 0;
  list-style: none;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s-gallery__track::-webkit-scrollbar { display: none; }
.s-gallery__card {
  flex: 0 0 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-3);
  background: var(--c-white);
  border-radius: var(--r-m);
  scroll-snap-align: start;
}
.s-gallery__photo {
  width: 100%;
  aspect-ratio: 384 / 288;
  border-radius: var(--r-m);
  overflow: hidden;
}
.s-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-gallery__photo--empty {
  background: var(--c-blue-pale);
}
.s-gallery__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-1);
  width: 100%;
}
.s-gallery__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px var(--sp-1);
  background: var(--c-blue-mid);
  color: var(--c-white);
  font-weight: var(--fw-m);
  font-size: var(--fs-12);
  line-height: 18px;
}
.s-gallery__name {
  font-weight: var(--fw-b);
  font-size: var(--fs-20);
  line-height: 30px;
  color: var(--c-text-2);
}

.s-gallery__controls {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.s-gallery__arrow {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-green);
}
.s-gallery__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--c-white);
  border-right: 2px solid var(--c-white);
}
.s-gallery__arrow--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
.s-gallery__arrow--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
.s-gallery__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.s-gallery__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-text-mute);
}
.s-gallery__dot.is-active {
  background: var(--c-green);
}

.s-lineup {
  --s-lineup-spec-key-w: 66px;
  background: var(--c-white);
  padding: var(--sp-10) var(--sp-3) var(--sp-10);
}
.s-lineup__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  margin-bottom: var(--sp-3);
}
.s-lineup__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 1;
  color: var(--c-green);
}
.s-lineup__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
  color: var(--c-text-2);
}
.s-lineup__lead {
  max-width: 432px;
  margin: 0 auto var(--sp-5);
  font-weight: var(--fw-m);
  font-size: var(--fs-14);
  line-height: 28px;
  color: var(--c-text-2);
}

.s-lineup__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  max-width: 432px;
  margin-inline: auto;
}

.s-lineup__areahead {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--c-green);
}
.s-lineup__areahead-flag { flex: none; width: 40px; height: 40px; }
.s-lineup__areahead-text {
  font-size: var(--fs-24);
  font-weight: var(--fw-b);
  color: var(--c-green);
  line-height: 36px;
  letter-spacing: 0.05em;
}
.s-lineup__card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-2);
  border-radius: var(--r-m);
}

.s-lineup__card:nth-child(odd)  { background: var(--c-cream); }
.s-lineup__card:nth-child(even) { background: var(--c-blue-pale); }

.s-lineup__card.s-lineup__card--bg-cream { background: var(--c-cream); }
.s-lineup__card.s-lineup__card--bg-blue  { background: var(--c-blue-pale); }

.s-lineup__photo {
  position: relative;
  border-radius: var(--r-m);
  overflow: hidden;
}
.s-lineup__photo img {
  width: 100%;
  aspect-ratio: 384 / 288;
  object-fit: cover;
  display: block;
}
.s-lineup__status {
  position: absolute;
  top: var(--sp-2);
  left: var(--sp-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px var(--sp-1);
  background: var(--c-blue-mid);
  color: var(--c-white);
  font-size: var(--fs-12);
  line-height: 18px;
}

.s-lineup__body {
  background: var(--c-white);
  border-radius: var(--r-m);
  padding: var(--sp-3);
}
.s-lineup__top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-text-mute);
}
.s-lineup__name {
  font-weight: var(--fw-b);
  font-size: var(--fs-20);
  line-height: 30px;
  color: var(--c-text-2);
}
.s-lineup__area {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--fs-12);
  line-height: 18px;
  color: var(--c-text-2);
}
.s-lineup__pin {
  display: inline-flex;
  flex: none;
  width: 9px;
  height: 15px;
  color: var(--c-blue-mid);
}
.s-lineup__pin svg { display: block; width: 100%; height: 100%; }
.s-lineup__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: var(--sp-1);
}
.s-lineup__price-num {
  font-weight: var(--fw-b);
  font-size: var(--fs-32);
  line-height: 32px;
  color: var(--c-blue-mid);
}
.s-lineup__price-unit {
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
  color: var(--c-text-2);
}

.s-lineup__spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--sp-2);
}

.s-lineup__spec-row {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.s-lineup__spec-row--multi { align-items: flex-start; }

@media (max-width: 1023px) {
  .s-lineup__spec-row--stack { flex-direction: column; align-items: flex-start; gap: 4px; }
}
.s-lineup__spec-key {
  flex: none;
  white-space: nowrap;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--s-lineup-spec-key-w);
  padding: 2px var(--sp-1);
  border: 1px solid var(--c-blue-mid);
  color: var(--c-blue-mid);
  font-size: var(--fs-12);
  line-height: 18px;
}
.s-lineup__spec-row--multi .s-lineup__spec-key { margin-top: 4px; }
.s-lineup__spec-val {
  font-size: var(--fs-14);
  line-height: 26px;
  color: var(--c-text-2);
}

.s-lineup__cta {
  display: flex;
  justify-content: center;
}
.s-lineup__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px;
  min-height: 44px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-4);
  background: var(--c-green);
  border-radius: var(--r-pill);
  color: var(--c-white);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 18px;
  transition: background-color .25s ease;
}
.s-lineup__btn:hover { background: #333333; }
.s-lineup__btn:hover .s-lineup__btn-icon svg path { fill: #333333; }
.s-lineup__btn-icon {
  display: inline-flex;
  flex: none;
  width: 22px;
  height: 22px;
}
.s-lineup__btn-icon svg { display: block; width: 100%; height: 100%; }

.s-cta2 {
  --fs-40: 40px;
  display: block;
  padding: var(--sp-1) 0 var(--sp-1);
  background: var(--c-green);
}

.s-cta2__box {
  position: relative;
  margin: var(--sp-1);
  padding: var(--sp-3);
  border: 1px solid var(--c-white);
  border-radius: var(--r-m);
  color: var(--c-white);
  text-align: center;
}

.s-cta2__ribbon {
  position: absolute;
  top: -36px;
  left: 16px;
  width: 78px;
  height: 70px;
}
.s-cta2__ribbon-bg {
  display: block;
  width: 100%;
  height: 100%;
}
.s-cta2__ribbon-text {
  position: absolute;
  top: 5px;
  left: 9px;
  font-size: var(--fs-14);
  font-weight: var(--fw-b);
  line-height: 18px;
  color: var(--c-green);
  text-align: left;
}

.s-cta2__title {
  display: block;
  padding-bottom: var(--sp-1);
  border-bottom: 1px solid var(--c-white);
  font-size: var(--fs-20);
  font-weight: var(--fw-b);
  line-height: 30px;
}

.s-cta2__offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.s-cta2__card {
  flex: none;
  width: 108px;
  height: 72px;
}
.s-cta2__offer-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1;
}
.s-cta2__offer-label {
  font-size: var(--fs-24);
  font-weight: var(--fw-b);
  line-height: 36px;
}
.s-cta2__offer-amount {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-1);
}
.s-cta2__num {
  font-size: var(--fs-40);
  font-weight: var(--fw-b);
  line-height: 36px;
  letter-spacing: -0.03em;
}
.s-cta2__unit {
  font-size: var(--fs-14);
  font-weight: var(--fw-b);
  line-height: 26px;
  text-align: left;
}

.s-cta2__lead {
  margin-top: var(--sp-2);
  font-size: var(--fs-14);
  font-weight: var(--fw-m);
  line-height: 26px;
  text-align: left;
}

.s-cta2__foot {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.s-cta2__deadline {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--c-white);
  border-radius: 50%;
  font-weight: var(--fw-b);
  line-height: 1;
}
.s-cta2__date { font-size: var(--fs-20); line-height: 22px; letter-spacing: -0.02em; }
.s-cta2__day  { font-size: 8px; line-height: 8px; margin-top: 3px; }
.s-cta2__until { font-size: var(--fs-12); line-height: 16px; margin-top: 2px; }

.s-cta2__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-1);
  max-width: 280px;
  min-height: 38px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-white);
  border-radius: var(--r-pill);
  transition: background-color .25s ease;
}

.s-cta2:hover .s-cta2__btn { background: #333333; }
.s-cta2:hover .s-cta2__btn-text { color: var(--c-white); }
.s-cta2:hover .s-cta2__btn-icon { filter: brightness(0) invert(1); }
.s-cta2:hover .s-cta2__btn-arrow { background: #333333; }
.s-cta2__btn-icon { flex: none; width: 20px; height: 18px; }
.s-cta2__btn-text {
  flex: 1;
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-green);
  text-align: left;
}

.s-cta2__btn-arrow {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green);
}
.s-cta2__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--c-white);
}

.s-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-3);
  background: var(--c-white);
  text-align: center;
}

.s-welcome__deco {
  position: absolute;
  top: 77px;
  right: 44px;
  width: 64px;
  height: auto;
  pointer-events: none;
}

.s-welcome__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}
.s-welcome__en {
  font-family: var(--ff-en);
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 16px;
  color: var(--c-green);
}
.s-welcome__title {
  font-size: var(--fs-24);
  font-weight: var(--fw-b);
  line-height: 36px;
  color: var(--c-text-2);
}

.s-welcome__lead {
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 28px;
  color: var(--c-text-2);
}

.s-welcome__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-1);
  width: 280px;
  min-height: 38px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-green);
  border-radius: var(--r-pill);
  transition: background-color .25s ease;
}
.s-welcome__btn:hover { background: #333333; }
.s-welcome__btn:hover .s-welcome__btn-arrow::before { border-left-color: #333333; }
.s-welcome__btn-icon { flex: none; width: 20px; height: 18px; }
.s-welcome__btn-text {
  flex: 1;
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-white);
  text-align: left;
  white-space: nowrap;
}

.s-welcome__btn-arrow {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-white);
}
.s-welcome__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--c-green);
}

.s-voice {
  background: var(--c-white);
  padding: var(--sp-10) 0 var(--sp-8);
}

.s-voice__head {
  padding: 0 var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  margin-bottom: var(--sp-4);
}
.s-voice__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
  color: var(--c-green);
}
.s-voice__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
  color: var(--c-text-2);
}

.s-voice__slider {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.s-voice__track {
  display: flex;
  gap: var(--sp-3);
  list-style: none;
  margin: 0;
  padding: 0 var(--sp-3) 28px;
  scroll-padding: 0 var(--sp-3);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s-voice__track::-webkit-scrollbar { display: none; }

.s-voice__card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: center;
}

.s-voice__bubble {
  position: relative;
  margin: 0;
  background: #F6F2EB;
  border-radius: var(--r-m);
  padding: var(--sp-3);
}

.s-voice__bubble::after {
  content: "";
  position: absolute;
  right: 28px;
  bottom: -22px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 0 42px;
  border-color: #F6F2EB transparent transparent transparent;
}

.s-voice__photo {
  display: block;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto var(--sp-2);
}
.s-voice__attr {
  text-align: center;
  font-weight: var(--fw-b);
  font-size: var(--fs-14);
  line-height: 26px;
  color: var(--c-blue-mid);
  margin-bottom: var(--sp-1);
}
.s-voice__comment {
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 30px;
  text-align: left;
  color: var(--c-text-2);
}

.s-voice__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
}
.s-voice__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.s-voice__arrow svg { display: block; width: 30px; height: 30px; }

.s-voice__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-voice__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-text-mute);
}
.s-voice__dot.is-active { background: var(--c-green); }

.s-about { background: var(--c-white); }
.s-about__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-3);
}

.s-about__head {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-2); text-align: center;
}
.s-about__en {
  font-family: var(--ff-en); font-size: var(--fs-16); font-weight: var(--fw-m);
  color: var(--c-green); line-height: 1;
}
.s-about__title {
  font-size: var(--fs-24); font-weight: var(--fw-b);
  color: var(--c-text-2); line-height: 36px;
}

.s-about__lead {
  width: 100%; max-width: 432px;
  font-size: var(--fs-16); font-weight: var(--fw-m);
  color: var(--c-text-2); line-height: 28px;
}

.s-about__data {
  width: 100%; max-width: 432px;
  display: flex; flex-direction: column;
}
.s-about__row {
  display: flex; align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--c-text-mute);
}
.s-about__row:last-child { border-bottom: 1px solid var(--c-text-mute); }
.s-about__dt {
  flex: none; width: 124px;
  font-size: var(--fs-16); font-weight: var(--fw-b);
  color: var(--c-blue-mid); line-height: 28px;
  white-space: nowrap;
}
.s-about__dd {
  flex: 1;
  font-size: var(--fs-16); font-weight: var(--fw-m);
  color: var(--c-text-2); line-height: 28px;
}
.s-about__note {
  display: block;
  font-size: var(--fs-12); color: var(--c-text-mute); line-height: 20px;
}

.s-company {
  background: var(--c-white);
  padding: var(--sp-10) 0 var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.s-company__head {
  padding: 0 var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}
.s-company__en {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
  color: var(--c-green);
}
.s-company__title {
  font-weight: var(--fw-b);
  font-size: var(--fs-24);
  line-height: 36px;
  color: var(--c-text-2);
}

.s-company__slider {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.s-company__track {
  display: flex;
  gap: var(--sp-3);
  list-style: none;
  margin: 0;
  padding: 0 var(--sp-3);
  scroll-padding: 0 var(--sp-3);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s-company__track::-webkit-scrollbar { display: none; }

.s-company__card {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  min-height: 229px;
  border-radius: var(--r-m);
  padding: var(--sp-4) var(--sp-3) var(--sp-3);
  scroll-snap-align: center;
  box-sizing: border-box;
}
.s-company__card--blue  { background: #F6F2EB; }
.s-company__card--cream { background: #F6F2EB; }

.s-company__badge {
  position: relative;
  display: flex;
  width: fit-content;
  align-items: center;
  gap: var(--sp-1);
  height: 31px;
  margin-left: -28px;
  padding: 5px var(--sp-3) 4px;
}
.s-company__badge::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 4px;
  height: 4px;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.s-company__badge--blue {
  background: var(--c-green);
  color: var(--c-white);
}
.s-company__badge--blue::after { background: #1B5635; }
.s-company__badge--yellow {
  background: var(--c-green);
  color: var(--c-white);
}
.s-company__badge--yellow::after { background: #1B5635; }
.s-company__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  line-height: 0;
}
.s-company__icon svg { display: block; width: 22px; height: 22px; }
.s-company__icon-img { display: block; width: 22px; height: 22px; object-fit: contain; }
.s-company__no {
  font-family: var(--ff-en);
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 16px;
}

.s-company__card-title {
  font-weight: var(--fw-b);
  font-size: var(--fs-20);
  line-height: 30px;
  color: var(--c-text-2);
  margin-top: 12px;
}
.s-company__card-text {
  font-weight: var(--fw-m);
  font-size: var(--fs-16);
  line-height: 28px;
  color: var(--c-text-2);
  margin-top: var(--sp-2);
}

.s-company__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.s-company__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
.s-company__arrow svg { display: block; width: 30px; height: 30px; }

.s-company__dots {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-company__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-text-mute);
}
.s-company__dot.is-active { background: var(--c-green); }

.s-welcome2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-10) var(--sp-3);
  background: var(--c-green);
  color: var(--c-white);
  text-align: center;
}

.s-welcome2__frame {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--c-white);
  border-radius: var(--r-m);
  pointer-events: none;
}

.s-welcome2__head, .s-welcome2__lead, .s-welcome2__btn { position: relative; z-index: 1; }

.s-welcome2__head { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); }
.s-welcome2__en {
  font-family: var(--ff-en);
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 1;
  letter-spacing: 0.05em;
}
.s-welcome2__title {
  font-size: var(--fs-24);
  font-weight: var(--fw-b);
  line-height: 36px;
  letter-spacing: 0.05em;
}
.s-welcome2__lead {
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 28px;
  letter-spacing: 0.05em;
}

.s-welcome2__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  max-width: 100%;
  height: 38px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-white);
  border-radius: var(--r-pill);
  transition: background-color .25s ease;
}

.s-welcome2__btn:hover { background: #333333; }
.s-welcome2__btn:hover .s-welcome2__btn-text { color: var(--c-white); }
.s-welcome2__btn:hover .s-welcome2__btn-icon { filter: brightness(0) invert(1); }
.s-welcome2__btn:hover .s-welcome2__btn-arrow { background: #333333; }
.s-welcome2__btn-left { display: flex; align-items: center; gap: var(--sp-1); }
.s-welcome2__btn-icon { flex: none; width: 20px; height: 20px; }
.s-welcome2__btn-text {
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-green);
  letter-spacing: 0.05em;
}
.s-welcome2__btn-arrow {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-green);
}
.s-welcome2__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--c-white);
}

.s-form {
  background: #F6F2EB;
  padding: var(--sp-10) var(--sp-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.s-form__head { display: flex; flex-direction: column; align-items: center; gap: var(--sp-2); text-align: center; }
.s-form__en { font-family: var(--ff-en); font-size: var(--fs-16); font-weight: var(--fw-m); color: var(--c-green); line-height: 1; }
.s-form__title { font-size: var(--fs-24); font-weight: var(--fw-b); color: var(--c-text-2); line-height: 36px; }

.s-form__telcard {
  width: 100%; max-width: 432px;
  background: var(--c-white); border-radius: var(--r-m);
  padding: var(--sp-3);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
}
.s-form__tel-head { font-size: var(--fs-16); font-weight: var(--fw-b); color: var(--c-green); letter-spacing: 0.05em; }
.s-form__tel-btns { display: flex; flex-direction: column; gap: var(--sp-1); }
.s-form__tel-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 280px; max-width: 100%; height: 38px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-green); color: var(--c-white); border-radius: var(--r-pill);
  transition: background-color .25s ease;
}
.s-form__tel-btn:hover { background: #333333; }
.s-form__tel-btn:hover .s-form__tel-arrow::before { border-left-color: #333333; }
.s-form__tel-left { display: flex; align-items: center; gap: var(--sp-1); font-size: var(--fs-16); font-weight: var(--fw-m); line-height: 18px; letter-spacing: 0.05em; }
.s-form__tel-icon { flex: none; width: 20px; height: 20px; }
.s-form__tel-arrow { flex: none; position: relative; width: 22px; height: 22px; border-radius: 50%; background: var(--c-white); }
.s-form__tel-arrow::before { content: ""; position: absolute; top: 50%; left: 54%; transform: translate(-50%, -50%); border-style: solid; border-width: 4px 0 4px 7px; border-color: transparent transparent transparent var(--c-green); }

.s-form__widget { width: 100%; max-width: 432px; }
.s-form__widget #locaop-reservation-widget { width: 100%; }

.s-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-6) var(--sp-3) var(--sp-4);
  background: #F6F2EB;
  text-align: center;
}

.s-footer__logo { display: block; width: 119px; }
.s-footer__logo img { width: 100%; height: auto; }

.s-footer__nav {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
}
.s-footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  text-align: left;
}
.s-footer__col li a {
  font-size: var(--fs-14);
  font-weight: var(--fw-m);
  line-height: 26px;
  color: var(--c-text-2);
  transition: color .2s;
}
.s-footer__col li a:hover { color: var(--c-green); }

.s-footer__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.s-footer__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  min-height: 38px;
  padding: var(--sp-1) var(--sp-2) var(--sp-1) var(--sp-3);
  background: var(--c-green);
  border-radius: var(--r-pill);
  transition: background-color .25s ease;
}
.s-footer__btn:hover { background: #333333; }
.s-footer__btn:hover .s-footer__btn-arrow::before { border-left-color: #333333; }
.s-footer__btn-main {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
}
.s-footer__btn-icon { flex: none; width: 22px; height: 22px; object-fit: contain; }
.s-footer__btn-text {
  font-size: var(--fs-16);
  font-weight: var(--fw-m);
  line-height: 18px;
  color: var(--c-white);
}

.s-footer__btn-arrow {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-white);
}
.s-footer__btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--c-green);
}

.s-footer__copy {
  font-size: var(--fs-12);
  font-weight: var(--fw-m);
  line-height: 1.6;
  color: var(--c-text-2);
}