/* =========================================================
   ふんわりカフェ LP - style.css
   設計: 添付画像（提案デザイン）に基づくナチュラル系
   配色: オフホワイト、薄ベージュ、くすみピンク、優しい茶
   ========================================================= */

/* ---------- リセット ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #4a3b32;
  background: #fcf8f3;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

/* ---------- 共通変数 ---------- */
:root {
  --color-bg: #fcf8f3;
  --color-bg-soft: #f5ede3;
  --color-bg-cream: #faf3e8;
  --color-pink: #e8a7a0;
  --color-pink-soft: #f3d3ce;
  --color-pink-deep: #d68c84;
  --color-brown: #8c6f5c;
  --color-brown-deep: #5a4538;
  --color-text: #4a3b32;
  --color-text-soft: #786558;
  --color-green: #a8b89e;
  --color-line: #e8dccd;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --max-width: 1080px;
}

/* ---------- 共通要素 ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-pink-deep);
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  color: var(--color-brown-deep);
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 56px;
}

.section-title::before,
.section-title::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-pink);
  vertical-align: middle;
  margin: 0 16px;
  opacity: 0.6;
}

.section-lead {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-soft);
  margin-top: 16px;
  line-height: 1.9;
}

.leaf-deco {
  display: inline-block;
  color: var(--color-green);
  font-size: 18px;
  vertical-align: middle;
  margin: 0 8px;
}

.no-break {
  display: inline-block;
  white-space: nowrap;
}

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.global-nav a {
  font-size: 13px;
  color: var(--color-text);
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.global-nav a:hover {
  color: var(--color-pink-deep);
}

.nav-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: var(--color-line);
}

.header-ig {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-pink-soft);
  color: var(--color-brown-deep);
  transition: transform 0.2s;
}

.header-ig:hover {
  transform: scale(1.05);
}

/* ---------- ヒーロー（FV：全面ビジュアル） ---------- */
.hero {
  position: relative;
  height: calc(100vh - 76px);
  min-height: 640px;
  max-height: 880px;
  overflow: hidden;
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 80%),
    linear-gradient(180deg, rgba(252, 248, 243, 0.05) 0%, rgba(58, 42, 30, 0.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}


.hero-eyebrow {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
}

.hero-title .line-1 {
  display: block;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 6px;
  letter-spacing: 0.1em;
}

.hero-title .accent {
  display: block;
  font-size: 38px;
  color: #fff;
  letter-spacing: 0.06em;
}

.hero-text {
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.25s ease;
}

.cta-button.primary {
  background: var(--color-pink);
  color: #fff;
  box-shadow: 0 6px 22px rgba(232, 167, 160, 0.4);
}

.cta-button.primary:hover {
  background: var(--color-pink-deep);
  transform: translateY(-2px);
}

.cta-button.ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-brown-deep);
}

.cta-button.ghost:hover {
  background: #fff;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.7);
  animation: scroll-fade 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scroll-fade {
  0%   { transform: scaleY(0); }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ---------- 動き・スクロール演出 ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero-bg img {
    animation: hero-zoom 14s ease-out both;
  }

  .hero-content > * {
    animation: hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-content > *:nth-child(2) { animation-delay: 0.12s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.22s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.32s; }
}

@keyframes hero-zoom {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-enabled .fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.js-enabled .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.secret-image img,
.menu-image img,
.popular-image img,
.cafe-image img,
.ig-post img {
  transition: transform 0.7s ease;
}

.secret-card:hover .secret-image img,
.menu-item:hover .menu-image img,
.popular-card:hover .popular-image img,
.cafe-image:hover img,
.ig-post:hover img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-line,
  .hero-bg img,
  .hero-content > *,
  .js-enabled .fade-in {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- 来店前クイック情報 ---------- */
.quick-info-strip {
  padding: 24px 0;
  background: rgba(255, 252, 248, 0.96);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 8px 26px rgba(140, 111, 92, 0.05);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr auto;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: 18px;
  background: #fff;
}

.quick-info-item {
  padding: 20px 24px;
  border-right: 1px dashed rgba(140, 111, 92, 0.22);
}

.quick-info-label {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--color-pink-deep);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.quick-info-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-brown-deep);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.quick-info-item small {
  display: block;
  margin-top: 2px;
  color: var(--color-text-soft);
  font-size: 11px;
  line-height: 1.7;
}

.quick-info-actions {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-width: 142px;
}

.mini-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-left: 1px solid var(--color-line);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-brown-deep);
  background: var(--color-bg-cream);
  transition: background 0.2s ease, color 0.2s ease;
}

.mini-button + .mini-button {
  border-top: 1px solid var(--color-line);
}

.mini-button.fill,
.mini-button:hover {
  background: var(--color-pink);
  color: #fff;
}

/* ---------- 人気メニュー先出し ---------- */
.popular-preview {
  padding: 66px 0 104px;
  background:
    linear-gradient(180deg, #fdf8f3 0%, var(--color-bg-cream) 100%);
}

.section-title-wrap.compact {
  margin-bottom: 42px;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 0 auto;
}

.popular-card {
  background: #fff;
  border: 1px solid rgba(232, 220, 205, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(140, 111, 92, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.popular-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(140, 111, 92, 0.14);
}

.popular-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff7f1;
}

.popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.popular-body {
  padding: 24px 24px 28px;
}

.popular-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--color-pink-soft);
  color: var(--color-pink-deep);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.popular-body h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--color-brown-deep);
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5;
}

.popular-body p {
  min-height: 66px;
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-bottom: 14px;
}

.popular-body strong {
  font-family: var(--font-serif);
  color: var(--color-brown-deep);
  font-size: 18px;
  font-weight: 500;
}

.popular-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.cta-button.soft {
  background: #fff;
  color: var(--color-brown-deep);
  border: 1px solid var(--color-line);
}

.cta-button.soft:hover {
  background: var(--color-pink-soft);
  transform: translateY(-2px);
}

/* ---------- スマホ固定CTA ---------- */
.mobile-fixed-cta {
  display: none;
}

/* ---------- ふんわりのひみつ ---------- */
.secrets {
  padding: 100px 0;
  background: var(--color-bg);
  background-image: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-cream) 100%);
}

.secrets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.secret-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(140, 111, 92, 0.08);
  transition: transform 0.3s ease;
}

.secret-card:hover {
  transform: translateY(-4px);
}

.secret-head {
  padding: 28px 28px 18px;
}

.secret-no {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--color-pink-deep);
  background: var(--color-pink-soft);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  margin-bottom: 12px;
}

.secret-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-brown-deep);
  margin-bottom: 12px;
  font-weight: 500;
}

.secret-body {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.9;
  padding: 0 28px 24px;
}

.secret-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.secret-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- シフォンケーキメニュー（5列カード） ---------- */
.menu {
  padding: 100px 0;
  background: var(--color-bg-cream);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto 32px;
}

.menu-item {
  text-align: center;
  position: relative;
}

.menu-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
}

.menu-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-brown-deep);
  margin-bottom: 8px;
  font-weight: 500;
}

.menu-desc {
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.7;
  padding: 0 8px;
}

.menu-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-pink);
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  z-index: 2;
}

.menu-note {
  display: block;
  text-align: center;
  margin: 32px auto 0;
  padding: 12px 28px;
  border: 1px solid var(--color-line);
  border-radius: 100px;
  background: #fff;
  width: fit-content;
  font-size: 13px;
  color: var(--color-brown);
}

/* ---------- メニュー＆ドリンク（メニュー一覧表） ---------- */
.cafe-menu {
  padding: 100px 0;
  background: var(--color-bg);
  position: relative;
}

.menu-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 56px;
  box-shadow: 0 12px 40px rgba(140, 111, 92, 0.08);
}

.board-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-brown-deep);
  font-weight: 500;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 1px dashed var(--color-line);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.board-title-2nd {
  margin-top: 32px;
}

.board-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-pink-deep);
  letter-spacing: 0.15em;
}

.board-list {
  display: grid;
  gap: 14px;
}

.board-list > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(140, 111, 92, 0.2);
}

.board-list dt {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.6;
}

.board-list dt small {
  display: block;
  margin-top: 4px;
  color: var(--color-text-soft);
  font-size: 11px;
}

.board-list dd {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--color-brown-deep);
  white-space: nowrap;
  font-weight: 500;
}

.badge {
  display: inline-block;
  background: var(--color-pink);
  color: #fff;
  font-size: 9px;
  padding: 2px 8px;
  border-radius: 8px;
  margin-left: 8px;
  letter-spacing: 0.1em;
  vertical-align: middle;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.menu-notice {
  max-width: 920px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--color-text-soft);
  background: var(--color-pink-soft);
  border-radius: 12px;
  padding: 16px 24px;
  line-height: 1.9;
}

.menu-notice strong {
  color: var(--color-pink-deep);
  font-weight: 500;
}

/* ---------- カフェスペース ---------- */
.cafe-space {
  padding: 100px 0;
  background: var(--color-bg-soft);
}

.cafe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}

.cafe-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 12px 32px rgba(140, 111, 92, 0.12);
}

.cafe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cafe-text {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.cafe-title {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.6;
  color: var(--color-brown-deep);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.cafe-text-body {
  font-size: 13px;
  line-height: 2;
  color: var(--color-text-soft);
}

.cafe-icon {
  display: inline-block;
  font-size: 32px;
  margin-top: 24px;
  color: var(--color-brown);
}

/* ---------- 店舗情報＋Google Maps ---------- */
.shop-info {
  padding: 100px 0;
  background: var(--color-bg);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}

.shop-card {
  background: var(--color-bg-cream);
  border-radius: 16px;
  padding: 36px;
}

.shop-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-brown-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-line);
  font-weight: 500;
}

.shop-list {
  display: grid;
  gap: 14px;
}

.shop-list > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dotted rgba(140, 111, 92, 0.15);
  align-items: start;
}

.shop-list dt {
  font-size: 12px;
  color: var(--color-brown-deep);
  background: var(--color-pink-soft);
  padding: 2px 10px;
  border-radius: 10px;
  text-align: center;
  height: fit-content;
  font-weight: 500;
}

.shop-list dd {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.7;
}

.shop-list dd a {
  color: var(--color-pink-deep);
  text-decoration: underline;
}

.shop-list dd small {
  font-size: 11px;
  color: var(--color-text-soft);
}

.shop-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  min-height: 480px;
  box-shadow: 0 12px 32px rgba(140, 111, 92, 0.1);
}

.shop-map {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border: 0;
}

.shop-map-button {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  display: inline-block;
  padding: 10px 22px;
  background: var(--color-pink);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(232, 167, 160, 0.5);
  transition: background 0.2s;
}

.shop-map-button:hover {
  background: var(--color-pink-deep);
}

/* ---------- Instagram ---------- */
.instagram-section {
  padding: 100px 0;
  background: var(--color-bg-soft);
  position: relative;
}

.ig-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: center;
}

.ig-intro {
  position: relative;
}

.ig-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-brown-deep);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ig-icon {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f8b9b3, #e8a7a0);
  border-radius: 8px;
  position: relative;
}

.ig-icon::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.ig-text {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.8;
  margin-bottom: 20px;
}

.ig-handle {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--color-brown);
  margin-bottom: 16px;
}

.ig-button {
  display: inline-block;
  padding: 10px 28px;
  background: var(--color-pink-soft);
  color: var(--color-brown-deep);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: background 0.2s;
}

.ig-button:hover {
  background: var(--color-pink);
  color: #fff;
}

.ig-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}

.ig-post {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}

.ig-post:hover {
  transform: scale(1.03);
}

.ig-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ig-bubble {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--color-pink);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(232, 167, 160, 0.4);
}

/* ---------- フッター ---------- */
.site-footer {
  background: var(--color-bg-soft);
  padding: 60px 0 32px;
  border-top: 1px solid var(--color-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto 40px;
  align-items: start;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 11px;
  color: var(--color-text-soft);
  margin-top: 8px;
  line-height: 1.8;
}

.footer-nav-title {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
}

.footer-nav ul {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  font-size: 12px;
  color: var(--color-text);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-pink-deep);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-cta a {
  display: inline-block;
  padding: 8px 22px;
  background: #fff;
  color: var(--color-brown-deep);
  border-radius: 100px;
  font-size: 12px;
  border: 1px solid var(--color-line);
  transition: background 0.2s;
}

.footer-cta a:hover {
  background: var(--color-pink-soft);
}

.footer-copy {
  text-align: center;
  font-size: 11px;
  color: var(--color-text-soft);
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
  max-width: 1080px;
  margin: 0 auto;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 900px) {
  .header-inner {
    padding: 10px 20px;
  }

  .global-nav {
    display: none;
  }

  .brand-logo {
    height: 44px;
  }

  .hero {
    height: auto;
    min-height: 560px;
    max-height: none;
    padding: 80px 0;
  }


  .hero-title .line-1 {
    font-size: 16px;
  }

  .hero-title .accent {
    font-size: 28px;
  }

  .secrets-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-board {
    grid-template-columns: 1fr;
    padding: 32px 28px;
  }

  .cafe-grid {
    grid-template-columns: 1fr;
  }

  .cafe-image {
    aspect-ratio: 4 / 3;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-map-wrap {
    min-height: 320px;
  }

  .ig-grid {
    grid-template-columns: 1fr;
  }

  .ig-feed {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-title {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-title .accent {
    font-size: 22px;
  }

  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ig-feed {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-board {
    padding: 24px 20px;
  }
}

@media (max-width: 900px) {
  body {
    padding-bottom: 82px;
  }

  .quick-info-strip {
    padding: 18px 0;
  }

  .quick-info-grid {
    grid-template-columns: 1fr 1fr;
    border-radius: 14px;
  }

  .quick-info-item {
    padding: 16px 18px;
  }

  .quick-info-item:nth-child(2) {
    border-right: 0;
  }

  .quick-info-item:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px dashed rgba(140, 111, 92, 0.22);
    border-right: 0;
  }

  .quick-info-actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-width: 0;
  }

  .mini-button {
    min-height: 44px;
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .mini-button + .mini-button {
    border-left: 1px solid var(--color-line);
    border-top: 1px solid var(--color-line);
  }

  .popular-preview {
    padding: 50px 0 84px;
  }

  .popular-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .popular-body p {
    min-height: auto;
  }

  .mobile-fixed-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(232, 220, 205, 0.95);
    border-radius: 999px;
    background: rgba(255, 252, 248, 0.95);
    box-shadow: 0 12px 34px rgba(90, 69, 56, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-fixed-cta a {
    min-height: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
    color: var(--color-brown-deep);
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  .mobile-fixed-cta a + a {
    border-left: 1px solid var(--color-line);
  }

  .mobile-fixed-cta a:nth-child(2) {
    background: var(--color-pink);
    color: #fff;
  }

  .fixed-cta-en {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.18em;
    opacity: 0.86;
  }
}

@media (max-width: 480px) {
  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .quick-info-item,
  .quick-info-item:nth-child(2),
  .quick-info-item:nth-child(3) {
    grid-column: auto;
    border-right: 0;
    border-top: 1px dashed rgba(140, 111, 92, 0.22);
  }

  .quick-info-item:first-child {
    border-top: 0;
  }

  .popular-card {
    border-radius: 14px;
  }

  .popular-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .popular-actions .cta-button {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .section-title::before,
  .section-title::after {
    width: 14px;
    margin: 0 8px;
  }

  .popular-preview .section-title {
    font-size: 20px;
    letter-spacing: 0.04em;
  }

  .popular-body h3 {
    font-size: 17px;
  }
}

/* ---------- 今回の構成変更: 線画・おすすめ・定番 ---------- */
.secret-image.illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background:
    radial-gradient(circle at 22% 18%, rgba(243, 211, 206, 0.5), transparent 30%),
    linear-gradient(135deg, #fffaf6 0%, #fbefe7 100%);
}

.secret-image.illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.secret-card:hover .secret-image.illustration img {
  transform: translateY(-4px);
}

.recommendation-grid .popular-image {
  aspect-ratio: 1 / 1;
  background: #fffaf6;
}

.recommendation-grid .popular-image img {
  object-fit: contain;
  padding: 10px;
}

.standard-menu {
  background:
    linear-gradient(180deg, var(--color-bg-cream) 0%, #fffaf5 100%);
}

.standard-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  gap: 28px;
}

.standard-grid .menu-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 220, 205, 0.92);
  border-radius: 18px;
  padding: 16px 16px 24px;
  box-shadow: 0 12px 30px rgba(140, 111, 92, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.standard-grid .menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(140, 111, 92, 0.13);
}

.standard-grid .menu-image {
  border-radius: 14px;
  background: #fffaf6;
}

.standard-grid .menu-image img {
  object-fit: contain;
  padding: 8px;
}

.cafe-menu {
  overflow: hidden;
  background: #fffaf5;
  isolation: isolate;
}

.cafe-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/cake-whole.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  filter: saturate(0.82) brightness(1.08);
  transform: scale(1.02);
}

.cafe-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(252, 248, 243, 0.92) 0%, rgba(252, 248, 243, 0.76) 50%, rgba(252, 248, 243, 0.92) 100%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.92) 0%, rgba(255, 250, 245, 0.74) 48%, rgba(255, 250, 245, 0.92) 100%);
}

.cafe-menu .container {
  position: relative;
  z-index: 1;
}

.cafe-menu .menu-board {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(232, 220, 205, 0.86);
  backdrop-filter: blur(8px);
}

.cafe-menu .menu-notice {
  background: rgba(243, 211, 206, 0.82);
  backdrop-filter: blur(6px);
}

@media (max-width: 900px) {
  .standard-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .secret-image.illustration {
    padding: 22px;
  }
}

@media (max-width: 480px) {
  .recommendation-grid .popular-image img,
  .standard-grid .menu-image img {
    padding: 6px;
  }
}

/* ---------- 今回の追加修正: 円形カード・画像調整 ---------- */
.secrets-grid {
  align-items: center;
}

.secret-card {
  width: min(100%, 300px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 22%, rgba(243, 211, 206, 0.7), transparent 32%),
    #fff;
}

.secret-head {
  padding: 0;
}

.secret-no {
  margin-bottom: 10px;
}

.secret-title {
  font-size: 17px;
  margin-bottom: 14px;
}

.secret-body {
  padding: 0;
  font-size: 12px;
  line-height: 1.85;
}

.secret-image,
.secret-image.illustration {
  display: none;
}

.recommendation-grid .popular-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.standard-grid .menu-image img {
  filter: brightness(1.16) saturate(1.05) contrast(0.98);
}

.cafe-menu::before {
  background-image: url("../images/ケーキ_3種.png");
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  filter: saturate(0.95) brightness(1.08);
  transform: scale(1.01);
}

.cafe-menu::after {
  background:
    linear-gradient(90deg, rgba(252, 248, 243, 0.9) 0%, rgba(252, 248, 243, 0.7) 50%, rgba(252, 248, 243, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.88) 0%, rgba(255, 250, 245, 0.68) 48%, rgba(255, 250, 245, 0.88) 100%);
}

.cafe-space .cafe-image img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .secret-card {
    width: min(100%, 310px);
    padding: 34px;
  }
}

@media (max-width: 480px) {
  .secrets {
    padding: 84px 0;
  }

  .secret-card {
    width: min(100%, 292px);
    padding: 30px;
  }

  .secret-title {
    font-size: 16px;
  }

  .secret-body {
    font-size: 11px;
    line-height: 1.8;
  }
}

/* ---------- 定番シフォン: カードではなく写真を背景に配置 ---------- */
.standard-grid {
  max-width: 960px;
  gap: 46px 34px;
}

.standard-grid .menu-item {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.standard-grid .menu-item:hover {
  transform: none;
  box-shadow: none;
}

.standard-grid .menu-image {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 14px;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.standard-grid .menu-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(1.12) saturate(1.04) contrast(0.98);
}

.standard-grid .menu-item:hover .menu-image img {
  transform: translateY(-3px);
}

.standard-grid .menu-name {
  margin-top: 4px;
}

.standard-grid .menu-desc {
  max-width: 13.5em;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 900px) {
  .standard-grid {
    gap: 42px;
  }

  .standard-grid .menu-image {
    max-width: 250px;
  }
}


/* ---------- カフェメニュー3区分調整 ---------- */
.menu-board.menu-board-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  gap: 30px;
  padding: 44px 42px;
}

.menu-board-three .board-title {
  font-size: 17px;
  line-height: 1.5;
  justify-content: center;
  text-align: center;
}

.board-note {
  margin: -4px 0 16px;
  color: var(--color-text-soft);
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}

.board-note-after {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--color-line);
}

.menu-board-three .board-list {
  gap: 10px;
}

.menu-board-three .board-list > div {
  gap: 10px;
  padding-bottom: 10px;
}

.menu-board-three .board-list dt {
  font-size: 12px;
}

.menu-board-three .board-list dd {
  font-size: 13px;
}

@media (max-width: 1100px) {
  .menu-board.menu-board-three {
    grid-template-columns: 1fr;
    max-width: 720px;
    padding: 38px 34px;
  }
}

@media (max-width: 480px) {
  .menu-board.menu-board-three {
    padding: 28px 20px;
  }
}


/* ---------- 今回の追加修正: 2列メニュー・日本語改行 ---------- */
body,
h1,
h2,
h3,
h4,
p,
a,
li,
dt,
dd,
small,
span,
strong,
button {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.menu-board.menu-board-two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: 1080px;
  gap: 38px;
  padding: 46px 48px;
}

.menu-board-two .menu-board-group + .menu-board-group {
  margin-top: 36px;
}

.menu-board-two .board-title {
  justify-content: center;
  text-align: center;
  line-height: 1.5;
}

.menu-board-two .board-note {
  margin: -4px 0 16px;
  color: var(--color-text-soft);
  font-size: 12px;
  line-height: 1.75;
  text-align: center;
}

.menu-board-two .board-note-after {
  margin: 16px 0 0;
  padding-top: 12px;
  border-top: 1px dashed var(--color-line);
}

.menu-board-two .board-list {
  gap: 10px;
}

.menu-board-two .board-list > div {
  gap: 12px;
  padding-bottom: 10px;
}

.menu-board-two .board-list dt {
  font-size: 12.5px;
}

.menu-board-two .board-list dd {
  font-size: 13px;
}

@media (max-width: 900px) {
  .menu-board.menu-board-two {
    grid-template-columns: 1fr;
    max-width: 720px;
    padding: 38px 34px;
  }
}

@media (max-width: 480px) {
  .menu-board.menu-board-two {
    padding: 28px 20px;
  }

  .menu-board-two .board-list > div {
    gap: 8px;
  }
}


/* ---------- 今回の追加修正: ひみつカードのスマホ横並び ---------- */
@media (max-width: 900px) {
  .secrets .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .secrets .section-title-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .secrets-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 310px;
    justify-content: start;
    gap: 24px;
    max-width: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 max(24px, calc((100vw - 310px) / 2)) 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .secrets-grid::-webkit-scrollbar {
    height: 4px;
  }

  .secrets-grid::-webkit-scrollbar-thumb {
    background: rgba(224, 154, 146, 0.5);
    border-radius: 999px;
  }

  .secrets-grid .secret-card {
    width: 310px;
    min-width: 310px;
    scroll-snap-align: center;
  }
}

@media (max-width: 480px) {
  .secrets-grid {
    grid-auto-columns: 230px;
    gap: 18px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .secrets-grid .secret-card {
    width: 230px;
    min-width: 230px;
    padding: 20px;
  }
}

/* ---------- 今回の追加修正: スマホ用カフェメニュー折りたたみ ---------- */
.menu-board-wrap {
  position: relative;
}

.menu-collapse-check {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  opacity: 0;
}

.menu-collapse-toggle {
  display: none;
}

.menu-collapse-toggle .less-label {
  display: none;
}

@media (max-width: 900px) {
  .cafe-menu .menu-board-wrap {
    max-height: 390px;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .cafe-menu .menu-board-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 92px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 250, 245, 0.96));
    transition: opacity 0.25s ease;
  }

  .menu-collapse-check:checked + .menu-board-wrap {
    max-height: 5000px;
  }

  .menu-collapse-check:checked + .menu-board-wrap::after {
    opacity: 0;
  }

  .menu-collapse-check:checked ~ .menu-collapse-toggle .more-label {
    display: none;
  }

  .menu-collapse-check:checked ~ .menu-collapse-toggle .less-label {
    display: inline;
  }

  .menu-collapse-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 168px;
    min-height: 46px;
    margin: 18px auto 0;
    padding: 12px 28px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    background: var(--color-pink);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(224, 154, 146, 0.2);
  }
}


/* ---------- 今回の追加修正: FV左テキスト・右画像 ---------- */
.hero {
  min-height: 680px;
  background:
    linear-gradient(90deg, #fffaf5 0%, #fff7f0 42%, #f7efe8 100%);
  color: var(--color-brown-deep);
}

.hero-bg {
  inset: 0 0 0 auto;
  width: min(68vw, 980px);
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 34%;
  background: linear-gradient(90deg, #fffaf5 0%, rgba(255, 250, 245, 0.94) 42%, rgba(255, 250, 245, 0.28) 78%, rgba(255, 250, 245, 0) 100%);
}

.hero-bg img {
  object-position: center center;
  filter: saturate(1.04) brightness(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.92) 34%, rgba(255, 250, 245, 0.42) 56%, rgba(255, 250, 245, 0.08) 78%, rgba(255, 250, 245, 0) 100%);
}

.hero-content {
  max-width: min(46vw, 590px);
  align-items: flex-start;
  text-align: left;
  padding: 0 24px 0 max(42px, calc((100vw - 1180px) / 2 + 32px));
}

.hero-eyebrow {
  color: var(--color-pink-deep);
  text-shadow: none;
  letter-spacing: 0.16em;
}

.hero-title {
  color: var(--color-brown-deep);
  text-shadow: none;
}

.hero-title .line-1 {
  font-size: clamp(21px, 2.15vw, 30px);
}

.hero-title .accent {
  font-size: clamp(34px, 3.4vw, 50px);
  color: var(--color-pink-deep);
}

.hero-text {
  color: var(--color-text);
  text-shadow: none;
  max-width: 430px;
}

.hero-cta {
  justify-content: flex-start;
}

.hero .cta-button.ghost {
  border: 1px solid rgba(140, 111, 92, 0.22);
}

.hero-scroll {
  color: rgba(140, 111, 92, 0.7);
}

.hero .scroll-line {
  background: rgba(140, 111, 92, 0.45);
}

@media (max-width: 900px) {
  .hero {
    min-height: 650px;
    padding: 0;
    background: #fffaf5;
  }

  .hero-bg {
    inset: 0;
    width: 100%;
    opacity: 1;
  }

  .hero-bg::before {
    width: 58%;
    background: linear-gradient(90deg, #fffaf5 0%, rgba(255, 250, 245, 0.94) 48%, rgba(255, 250, 245, 0.34) 82%, rgba(255, 250, 245, 0) 100%);
  }

  .hero-bg img {
    object-position: 30% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(255, 250, 245, 0.98) 0%, rgba(255, 250, 245, 0.84) 50%, rgba(255, 250, 245, 0.12) 100%);
  }

  .hero-content {
    min-height: 650px;
    max-width: none;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 96px 24px 92px;
  }

  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-title .line-1 {
    font-size: 18px;
  }

  .hero-title .accent {
    font-size: 30px;
  }

  .hero-text {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 620px;
  }

  .hero-content {
    min-height: 620px;
    padding: 92px 22px 86px;
  }

  .hero-bg img {
    object-position: 30% center;
  }

  .hero-title .accent {
    font-size: 28px;
  }

  .hero-cta {
    gap: 12px;
  }
}
