/* hono's Cookie - 共通スタイルシート
   最終更新: 2026-04-18(マルチページ化で分離)
*/

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

:root {
  --cream: #FBF8F4;
  --cream-dark: #F5EDE4;
  --pink: #D4A0A0;
  --pink-light: #FFF0ED;
  --pink-pale: #FFF7F5;
  --rose: #C48B8B;
  --gold: #C4975A;
  --gold-light: #E8D5B8;
  --brown: #4A3728;
  --brown-light: #7A6455;
  --brown-mid: #9A8575;
  --text: #4A3728;
  --text-light: #8A7565;
  --white: #FFFFFF;
  --overlay: rgba(74, 55, 40, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 4px 20px rgba(74, 55, 40, 0.08);
  --shadow-hover: 0 8px 30px rgba(74, 55, 40, 0.15);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.9;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.label {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--pink);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
  color: var(--brown);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ===================== HEADER ===================== */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: all 0.4s ease;
}
header.scrolled {
  background: rgba(251, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
}
header.solid {
  background: rgba(251, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(74, 55, 40, 0.08);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.logo span { color: var(--pink); }

nav ul { display: flex; gap: 32px; }
nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown-light);
  transition: color 0.3s;
  letter-spacing: 0.05em;
}
nav a:hover { color: var(--pink); }
nav a.current { color: var(--pink); }

.hamburger {
  display: none;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 6px 0 6px 10px;
  margin-right: -4px;
}
.hamburger .menu-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--brown);
  line-height: 1;
  font-weight: 500;
}
.hamburger .menu-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger .menu-bars span {
  width: 22px;
  height: 2px;
  background: var(--brown);
  transition: all 0.3s;
  border-radius: 2px;
  display: block;
}
.hamburger.active .menu-label { color: var(--rose); }
.hamburger.active .menu-bars span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .menu-bars span:nth-child(2) { opacity: 0; }
.hamburger.active .menu-bars span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-pale) 100%);
  padding: 100px 20px 60px;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.hero-icon {
  width: min(320px, 70vw);
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 24px rgba(74, 55, 40, 0.12));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-content .label {
  font-size: 1.3rem;
  color: var(--rose);
  margin-bottom: 16px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hero-content h1 span { color: var(--pink); }
.hero-sub {
  font-size: 0.95rem;
  color: var(--brown-light);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}
.hero-tagline {
  font-size: 1rem;
  color: var(--brown-light);
  font-weight: 300;
  margin-bottom: 36px;
  line-height: 1.9;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: var(--pink);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 139, 139, 0.3);
  color: var(--white);
}

/* ===================== PAGE HERO (menu/guide用の小さめヒーロー) ===================== */
.page-hero {
  padding: 160px 20px 80px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--pink-pale) 100%);
  text-align: center;
}
.page-hero .label {
  font-size: 1.2rem;
  color: var(--rose);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.page-hero h1 span { color: var(--pink); }
.page-hero p {
  font-size: 0.95rem;
  color: var(--brown-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.9;
}
.breadcrumb {
  max-width: 1100px;
  margin: 24px auto 0;
  padding: 0 40px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--pink); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb .sep { margin: 0 8px; color: var(--brown-mid); }

/* ===================== CONCEPT ===================== */
.concept { padding: 120px 0; background: var(--white); }
.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.concept-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.concept-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.concept-image:hover img { transform: scale(1.03); }
.concept-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2.2;
  margin-bottom: 20px;
}

/* ===================== MAKER (作家紹介) ===================== */
.maker { padding: 120px 0; background: var(--white); }
.maker-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.maker-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--cream-dark);
  position: relative;
}
.maker-image img { width: 100%; height: 100%; object-fit: cover; }
.maker-text .label { margin-bottom: 20px; }
.maker-text .section-title { text-align: left; margin-bottom: 32px; }
.maker-quote {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.04em;
  margin: 0 0 36px !important;
  line-height: 1.7;
}
.maker-text p {
  color: var(--text-light);
  line-height: 2.2;
  margin-bottom: 20px;
}
.maker-sign {
  margin-top: 32px !important;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--rose);
}
@media (max-width: 900px) {
  .maker-grid { grid-template-columns: 1fr; gap: 40px; }
  .maker-image { max-width: 360px; margin: 0 auto; aspect-ratio: 1 / 1; }
  .maker-quote { font-size: 1.25rem; }
}

/* ===================== REASONS (選ばれる理由) ===================== */
.reasons { padding: 120px 0; background: var(--pink-pale); }
.reasons-lead {
  max-width: 760px;
  margin: 0 auto 56px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  text-align: center;
}
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.reason-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.reason-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 16px;
}
.reason-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 14px;
  line-height: 1.6;
}
.reason-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.95;
}

/* ===================== PAGE CTA (index → menu/guide 誘導カード) ===================== */
.page-cta { padding: 120px 0; background: var(--cream); }
.page-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.page-cta-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.page-cta-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.page-cta-card .label {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.page-cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.page-cta-card h3 span { color: var(--pink); }
.page-cta-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 24px;
}
.page-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}
.page-cta-card:hover .page-cta-arrow { gap: 14px; }

/* ===================== SEMI ORDER MENU ===================== */
.semi-order { padding: 120px 0; background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.menu-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.menu-card-image {
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
  position: relative;
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-image img { transform: scale(1.05); }

/* スライドショー(自動切り替え・3枚) */
.menu-card-image.slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: menuSlideFade 9s infinite;
}
.menu-card-image.slideshow img:nth-child(1) { animation-delay: 0s; }
.menu-card-image.slideshow img:nth-child(2) { animation-delay: 3s; }
.menu-card-image.slideshow img:nth-child(3) { animation-delay: 6s; }
@keyframes menuSlideFade {
  0%   { opacity: 0; }
  5%   { opacity: 1; }
  33%  { opacity: 1; }
  38%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ========== 撮影待ちプレースホルダー(共通) ========== */
.shoot-zone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(251, 248, 244, 0.86), rgba(251, 248, 244, 0.86)),
    repeating-linear-gradient(
      45deg,
      #FBF8F4 0 10px,
      #F5EBE0 10px 20px
    );
  border: 1.5px dashed var(--rose);
  color: var(--brown);
  width: 100%;
  height: 100%;
  min-height: 180px;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: inherit;
}
.shoot-zone-inner {
  text-align: center;
  max-width: 92%;
  line-height: 1.5;
}
.shoot-zone-icon {
  font-size: 1.7rem;
  margin-bottom: 4px;
  opacity: 0.85;
}
.shoot-zone-code {
  font-family: 'Caveat', 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--rose);
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1;
}
.shoot-zone-name {
  font-size: 0.9rem;
  color: var(--brown);
  font-weight: 500;
  margin-top: 6px;
}
.shoot-zone-spec {
  font-size: 0.72rem;
  color: var(--brown-mid);
  margin-top: 5px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .shoot-zone-icon { font-size: 1.4rem; }
  .shoot-zone-code { font-size: 1.1rem; }
  .shoot-zone-name { font-size: 0.82rem; }
  .shoot-zone-spec { font-size: 0.68rem; }
}

/* 既存 menu プレースホルダーも shoot-zone ベース互換 */
.menu-card-image.placeholder {
  padding: 0;
  background: none;
}
.menu-card-image.placeholder::before { display: none; }

/* Hero 撮影待ちバッジ */
.shoot-pending-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: rgba(251, 248, 244, 0.96);
  border: 1.5px dashed var(--rose);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: 'Caveat', serif;
  font-size: 0.95rem;
  color: var(--brown);
  box-shadow: 0 4px 14px rgba(74, 55, 40, 0.08);
  z-index: 10;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shoot-pending-badge strong {
  color: var(--rose);
  font-weight: 600;
  letter-spacing: 0.12em;
  font-family: 'Playfair Display', serif;
}
@media (max-width: 900px) {
  .shoot-pending-badge {
    bottom: 18px;
    right: 18px;
    padding: 7px 14px;
    font-size: 0.78rem;
  }
}

/* フルオーダー作例ギャラリー */
.full-samples {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.full-sample-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .full-samples { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
}

.menu-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.menu-card-body h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 8px;
}
.menu-card-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}
.menu-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: 0.04em;
}
.menu-price small {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 6px;
}
.menu-note {
  margin-top: 48px;
  padding: 24px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.9;
  text-align: center;
}

/* ===================== FULL ORDER ===================== */
.full-order { padding: 120px 0; background: var(--cream-dark); }
.full-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.full-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.full-table th, .full-table td {
  padding: 16px 12px;
  text-align: center;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--cream-dark);
}
.full-table th {
  color: var(--brown);
  font-weight: 500;
  background: var(--pink-pale);
  font-size: 0.85rem;
}
.full-table td.price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1rem;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.full-table tr:last-child td { border-bottom: none; }
.full-notes {
  margin-top: 24px;
  padding: 20px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.9;
}
.full-notes li { margin-bottom: 6px; padding-left: 16px; position: relative; }
.full-notes li::before {
  content: '・';
  position: absolute; left: 0;
  color: var(--pink);
}

/* ===================== CHARACTER ===================== */
.character {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--pink-pale) 0%, var(--cream) 100%);
  text-align: center;
}
.character-box {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  box-shadow: var(--shadow);
}
.character-box h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.6;
}
.character-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 28px;
}
.character-line-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #06C755;
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
.character-line-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.35);
}
.character-line-btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ===================== GALLERY / INSTAGRAM ===================== */
.gallery { padding: 120px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.05); }
.gallery-cta {
  text-align: center;
}
.gallery-cta .instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.2);
  transition: all 0.3s;
}
.gallery-cta .instagram-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);
  color: var(--white);
}
.gallery-cta .instagram-link svg { width: 22px; height: 22px; }

/* ===================== ORDER FLOW ===================== */
.order-flow { padding: 120px 0; background: var(--cream); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.flow-step { text-align: center; position: relative; }
.flow-step::after {
  content: '';
  position: absolute;
  top: 32px; right: -16px;
  width: 32px; height: 2px;
  background: var(--gold-light);
}
.flow-step:last-child::after { display: none; }
.flow-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.flow-step h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--brown);
}
.flow-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===================== SHIPPING & PAYMENT ===================== */
.ship-pay { padding: 120px 0; background: var(--white); }
.sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.sp-block h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pink-light);
}
.ship-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.ship-table td {
  padding: 10px 4px;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-light);
}
.ship-table td:last-child {
  text-align: right;
  font-family: 'Playfair Display', serif;
  color: var(--rose);
  font-weight: 600;
}
.sp-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.8;
}
.pay-list {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2;
}
.pay-list strong {
  display: block;
  color: var(--brown);
  font-weight: 500;
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 0.92rem;
}
.pay-list strong:first-child { margin-top: 0; }

/* ===================== FAQ ===================== */
.faq { padding: 120px 0; background: var(--pink-pale); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.6;
  transition: background 0.3s;
}
.faq-question:hover { background: var(--pink-pale); }
.faq-q-mark {
  color: var(--pink);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.faq-toggle {
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--pink);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px 58px;
}
.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 2;
}

/* ===================== SHOP INFO ===================== */
.shop-info { padding: 120px 0; background: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.info-table { width: 100%; }
.info-table tr { border-bottom: 1px solid var(--cream-dark); }
.info-table th, .info-table td {
  padding: 16px 0;
  font-size: 0.9rem;
  text-align: left;
  vertical-align: top;
}
.info-table th {
  font-weight: 500;
  color: var(--brown);
  width: 120px;
  white-space: nowrap;
}
.info-table td { color: var(--text-light); }
.info-note {
  margin-top: 28px;
  padding: 20px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--brown);
  color: var(--cream);
  padding: 60px 0 30px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-logo span { color: var(--pink); }
footer nav { margin: 24px 0; }
footer nav a {
  font-size: 0.82rem;
  color: var(--cream-dark);
  margin: 0 16px;
  transition: color 0.3s;
}
footer nav a:hover { color: var(--pink); }
footer p {
  font-size: 0.78rem;
  color: var(--brown-mid);
  margin-top: 24px;
}
.footer-updated {
  font-size: 0.72rem;
  color: var(--brown-mid);
  margin-top: 8px !important;
}

/* ===================== LINE FLOATING BUTTON ===================== */
.line-float {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  width: 170px;
  background: #FFFFFF;
  border: 1px solid rgba(6, 199, 85, 0.25);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--brown);
  overflow: hidden;
  text-decoration: none;
}
.line-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
  color: var(--brown);
}
.line-float-top {
  background: #06C755;
  color: #FFFFFF;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.line-float svg {
  width: 20px; height: 20px;
  fill: #FFFFFF;
  flex-shrink: 0;
}
.line-float-body {
  padding: 14px 12px;
  text-align: center;
}
.line-float-body p {
  font-size: 0.78rem;
  color: var(--brown);
  line-height: 1.75;
  font-weight: 500;
  margin: 0;
}
.line-float-body .accent {
  color: var(--rose);
  font-weight: 700;
  font-size: 0.82rem;
}

/* モバイル: 丸いアイコンボタンのみ(邪魔にならない) */
.line-float-mobile {
  display: none;
  position: fixed;
  bottom: 18px; right: 18px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #06C755;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.35);
  transition: all 0.3s ease;
}
.line-float-mobile:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.5);
}
.line-float-mobile svg {
  width: 28px; height: 28px;
  fill: #FFFFFF;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .container { padding: 0 16px; }
  .logo { font-size: 1.05rem; letter-spacing: 0.01em; }
  nav ul { gap: 16px; }
  nav a { font-size: 0.76rem; letter-spacing: 0.04em; }
  .hamburger { display: none !important; }
  nav ul.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(251, 248, 244, 0.98);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 999;
  }
  nav ul.active a { font-size: 1.2rem; }

  .hero-content h1 { font-size: 1.9rem; }
  .hero-tagline { font-size: 0.9rem; }
  .page-hero { padding: 88px 20px 24px; }
  .page-hero h1 { font-size: 1.5rem; margin-bottom: 8px; }
  .page-hero .label { font-size: 1rem; margin-bottom: 6px; }
  .page-hero p { font-size: 0.85rem; line-height: 1.75; }
  .breadcrumb { padding: 6px 20px 10px; font-size: 0.75rem; }
  .semi-order { padding-top: 40px; }
  .semi-order .section-title { font-size: 1.3rem; }
  .semi-order .section-subtitle { font-size: 0.85rem; margin-bottom: 8px; }
  .concept-grid { grid-template-columns: 1fr; gap: 32px; }
  .concept-image img { height: 300px; }
  .reasons-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-cta-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-cta-card { padding: 36px 28px; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .flow-step::after { display: none; }
  .sp-grid { grid-template-columns: 1fr; gap: 40px; }
  .info-grid { grid-template-columns: 1fr; gap: 40px; }
  .section-title { font-size: 1.3rem; }
  .full-table-wrap { padding: 24px 16px; }
  .full-table th, .full-table td { padding: 10px 4px; font-size: 0.82rem; }
  .character-box { padding: 40px 24px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.5rem; }
  .flow-steps { grid-template-columns: 1fr; }
  .line-float { width: 112px; bottom: 16px; right: 12px; border-radius: 10px; }
  .line-float-top { padding: 6px 8px; font-size: 0.68rem; gap: 5px; }
  .line-float svg { width: 14px; height: 14px; }
  .line-float-body { padding: 7px 6px; }
  .line-float-body p { font-size: 0.6rem; line-height: 1.5; }
  .line-float-body .accent { font-size: 0.64rem; }
}
