@charset "UTF-8";

/* =========================
   reserve.css
   ゼロトレhanare 予約TOP
========================= */

:root {
  --color-text: #2b2b2b;
  --color-sub: #333333;
  --color-muted: #666666;
  --color-green: #569b9f;
  --color-green-border: #56989e;
  --color-line: #0cb107;
  --color-bg: #ffffff;
  --color-soft: #eef4f2;
  --color-footer: #4f4f4f;

  --font-main: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 375px;
  --section-padding: 16px;
  --letter-wide: 0.1em;
}

/* =========================
   Base
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--color-text);
  background: #f6f8f7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* =========================
   Page
========================= */

.reserve-page {
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-bg);
  overflow: hidden;
}

/* =========================
   Header
========================= */

.reserve-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  height: 64px;
  padding: 4px 16px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
}

.line-mini-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 18px;
  border: 0.3px solid var(--color-green-border);
  border-radius: 8px;
  color: var(--color-line);
  background: #fff;
  font-size: 7px;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.reserve-logo {
  width: 62px;
  height: 48px;
  object-fit: contain;
}

/* =========================
   Hero
========================= */

.reserve-hero {
  padding: 16px 24px 3px;
  text-align: center;
  background: #fff;
}

.reserve-hero__sub {
  margin: 0 0 8px;
  font-size: 10px;
  line-height: 1.52;
  letter-spacing: 0.09em;
}

.reserve-hero__title {
  margin: 0;
  font-weight: 300;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.25em;
  color: var(--color-text);
  text-shadow: 1px -1px 4px rgba(0, 0, 0, 0.25);
}

.reserve-hero__text {
  margin: 8px 0 0;
  font-weight: 350;
  font-size: 12px;
  line-height: 1.52;
  letter-spacing: 0.09em;
}

/* =========================
   Menu Cards
========================= */

.reserve-menu {
  padding: 8px 0;
  background: #fff;
}

.reserve-menu__block {
  padding: 8px 16px;
}

.reserve-menu__label {
  margin: 0 0 10px;
  font-weight: 350;
  font-size: 10px;
  line-height: 1.52;
  letter-spacing: 0.09em;
  color: var(--color-sub);
}

.reserve-menu__card {
  display: block;
  width: 342px;
  max-width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.reserve-menu__card:active {
  transform: scale(0.985);
  opacity: 0.9;
}

.reserve-menu__card img {
  width: 100%;
  height: auto;
}

.reserve-menu__description {
  margin: 10px 8px 0;
  font-weight: 350;
  font-size: 10px;
  line-height: 1.52;
  letter-spacing: 0.09em;
  color: var(--color-text);
}

.reserve-divider {
  width: 300px;
  margin: 8px auto;
  border: 0;
  border-top: 0.3px solid #000;
}

/* =========================
   Quick Navigation
========================= */

.reserve-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 136px;
  background: #fff;
}

.reserve-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 112px;
  min-height: 100px;
  gap: 4px;
  text-align: center;
}

.reserve-nav__item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.reserve-nav__item strong {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.67;
  letter-spacing: 0.12em;
  color: var(--color-sub);
}

.reserve-nav__item span {
  display: block;
  width: 112px;
  font-weight: 350;
  font-size: 8px;
  line-height: 1.67;
  letter-spacing: 0.1em;
  color: var(--color-sub);
}

/* =========================
   Common Sections
========================= */

.reserve-section {
  padding: 16px 0;
  background: #fff;
}

.reserve-section__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.74;
  letter-spacing: 0.13em;
  text-align: center;
  color: var(--color-sub);
}

.reserve-section__title img {
  width: 14px;
  height: 23px;
  object-fit: contain;
}

.reserve-section__title--faq {
  letter-spacing: 0.08em;
}

.reserve-section__title--inquiry {
  letter-spacing: 0.08em;
}

/* =========================
   Flow
========================= */

.reserve-flow__box {
  width: 300px;
  margin: 0 auto;
  padding: 16px;
  background: var(--color-soft);
  border: 0.3px solid #6c6b6b;
  border-radius: 8px;
}

.reserve-flow__box::before {
  content: "";
  display: block;
  width: 240px;
  height: 0;
  margin: 0 auto;
}

.reserve-flow__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 240px;
  min-height: 108px;
  margin: 0 auto;
  padding: 4px 0;
  background: #fff;
}

.reserve-flow__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  gap: 4px;
  flex-shrink: 0;
}

.reserve-flow__icon span {
  width: 80px;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.67;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--color-green);
}

.reserve-flow__icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.reserve-flow__text {
  width: 124px;
}

.reserve-flow__text h3 {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.67;
  letter-spacing: 0.12em;
  color: var(--color-sub);
}

.reserve-flow__text p {
  margin: 0;
  font-weight: 350;
  font-size: 8px;
  line-height: 1.67;
  letter-spacing: 0.1em;
  color: var(--color-sub);
}

/* =========================
   Cancellation Policy
========================= */

.reserve-policy__detail {
  width: 327px;
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

.reserve-policy__detail p {
  margin: 0 0 4px;
  font-weight: 400;
  font-size: 9px;
  line-height: 1.67;
  letter-spacing: 0.1em;
  color: var(--color-sub);
}

/* =========================
   FAQ
========================= */

.reserve-faq__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reserve-faq__card {
  width: 320px;
  padding: 14px 16px;
  background: #fff;

  border: 0.5px solid #b3b3b3;

  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.10);

  border-radius: 0;
  box-sizing: border-box;
}

.reserve-faq__card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 0 12px;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.12em;
  color: var(--color-sub);
}

.reserve-faq__card h3 span {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: #50d5da;
}

.reserve-faq__card h3::after {
  content: "";
  display: none;
}

.reserve-faq__card p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #cfcfcf;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-sub);
}

.reserve-faq__card h3 span {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: #50d5da;
}

.reserve-faq__card h3::after {
  content: "";
  display: none;
}

.reserve-faq__card p {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #cfcfcf;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-sub);
}


/* =========================
   Inquiry
========================= */

.reserve-inquiry {
  padding: 8px 0 24px;
}

.reserve-inquiry__text {
  width: 321px;
  margin: 0 auto 16px;
  padding: 3px 4px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.67;
  letter-spacing: 0.1em;
  color: var(--color-sub);
}

.line-large-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 161px;
  height: 34px;
  margin: 0 auto;
  padding-left: 24px;
  border: 0.5px solid var(--color-green-border);
  border-radius: 8px;
  background: #fff;
  color: var(--color-line);
  letter-spacing: 0.06em;
  position: relative;
}

.line-large-button::after {
  content: "LINE";
  position: absolute;
  right: 10px;
  top: 8px;
  font-weight: 700;
  font-size: 9px;
  color: var(--color-line);
}

.line-large-button span {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.2;
}

.line-large-button small {
  margin-top: 2px;
  font-weight: 400;
  font-size: 8px;
  line-height: 1;
  color: var(--color-text);
}

/* =========================
   Page Top
========================= */

.page-top-button {
  position: fixed;
  right: max(8px, calc((100vw - 375px) / 2 + 8px));
  bottom: 24px;
  z-index: 30;
  width: 72px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-button span {
  display: block;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.57;
  letter-spacing: 0.04em;
  text-align: right;
  color: var(--color-muted);
}

.page-top-button img {
  width: 20px;
  height: 32px;
  margin-left: auto;
  object-fit: contain;
}

/* =========================
   Footer
========================= */

.reserve-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 43px;
  padding: 12px 8px;
  background: var(--color-footer);
}

.reserve-footer small {
  font-weight: 400;
  font-size: 10px;
  line-height: 1.67;
  letter-spacing: 0.1em;
  color: #fff;
}

/* =========================
   Interaction
========================= */

.reserve-nav__item,
.line-mini-button,
.line-large-button {
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.reserve-nav__item:active,
.line-mini-button:active,
.line-large-button:active {
  opacity: 0.75;
  transform: scale(0.98);
}

/* =========================
   PC / Tablet
========================= */

@media (min-width: 768px) {
  body {
    padding: 24px 0;
  }

  .reserve-page {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }
}

/* header fixed */
.reserve-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 375px;
  z-index: 1000;
}

main {
  padding-top: 64px;
}

.reserve-logo-link {
  display: block;
  width: 62px;
  height: 48px;
}

.reserve-logo-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* feather return top */
.page-top-button {
  position: fixed;
  right: max(8px, calc((100vw - 375px) / 2 + 8px));
  bottom: 24px;
  z-index: 1001;
  width: 72px;
  height: 64px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.page-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top-button span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  line-height: 1.57;
  letter-spacing: 0.04em;
  text-align: right;
  color: #666666;
}

.page-top-button img {
  width: 20px;
  height: 32px;
  margin-left: auto;
  object-fit: contain;
}
/* ===========================
   Reserve header layout 最終版
=========================== */

.reserve-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;

  width: 100%;
  max-width: 375px;
  height: 64px;
  padding: 4px 16px;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 左：LINEメニューに戻る */
.line-mini-button {
  position: absolute;
  left: 16px;
  bottom: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 104px;
  height: 18px;
  border: 0.3px solid var(--color-green-border);
  border-radius: 8px;

  color: var(--color-line);
  background: #fff;

  font-size: 7px;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-decoration: none;
}

/* 中央：hanareロゴ */
.reserve-logo-link {
  position: absolute;
  left: 50%;
  bottom: 6px;
  transform: translateX(-50%);

  display: block;
  width: 62px;
  height: 48px;
}

.reserve-logo {
  display: block;
  width: 62px;
  height: 48px;
  object-fit: contain;
}

/* 右：LPへのリンク */
.header-about {
  position: absolute;
  right: 16px;
  bottom: 15px;

  font-family: "Noto Sans JP", sans-serif;
  font-size: 8px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.08em;

  color: #2B2B2B;
  text-decoration: none;
  white-space: nowrap;

  transition: opacity 0.25s ease;
}

.header-about:hover {
  opacity: 0.6;
}

.header-about:visited {
  color: #2B2B2B;
}

.header-about:focus-visible {
  outline: 2px solid #3fb1c5;
  outline-offset: 4px;
  border-radius: 4px;
}

main {
  padding-top: 64px;
}