/* ======================================================
   093 SAMPLE FLEUR — フラワーショップ
   暮らしに、花を一輪。
   Palette: cream #FBF8F3 / dusty rose #C97D8A / sage #97A98C / sumi #3A3632
   Font: Fraunces (EN serif organic) × Zen Maru Gothic (JP round) × Inter (UI)
   [重要] reveal は最初から CSS-only（JS非依存・絶対に消えない）
   ====================================================== */

:root {
  --cream:    #FBF8F3;
  --cream-2:  #F3ECE2;
  --rose:     #C97D8A;
  --rose-deep:#A85C6A;
  --sage:     #97A98C;
  --sage-deep:#6E8263;
  --sumi:     #3A3632;
  --sumi-soft:#5C564F;   /* 本文・はっきり */
  --line:     #E4DACE;
  --white:    #FFFFFF;

  --font-en:  'Fraunces', 'Times New Roman', serif;
  --font-jp:  'Zen Maru Gothic', 'Hiragino Maru Gothic ProN', sans-serif;
  --font-ui:  'Inter', 'Noto Sans JP', sans-serif;

  --container: 1200px;
  --gap: clamp(96px, 12vw, 168px);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  background: var(--cream);
  color: var(--sumi);
  line-height: 1.9;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* ─── DEMO BAR ─────────────────────────────────────────── */
#demo-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  background: rgba(58,54,50,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,125,138,0.3);
  padding: 7px 0;
}
.demo-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 0.7rem; color: rgba(251,248,243,0.45);
  font-family: var(--font-ui); letter-spacing: 0.02em;
}
.demo-badge {
  font-size: 0.54rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  background: rgba(201,125,138,0.22); color: #E9B7BF;
  padding: 3px 10px; border-radius: 20px; flex-shrink: 0;
}
.demo-link { color: #E9B7BF; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.demo-copy { color: rgba(251,248,243,0.25); font-size: 0.62rem; margin-left: 4px; }
@media (max-width: 640px) { .demo-copy { display: none; } }

/* ─── HEADER（中央ロゴ・両サイドメニュー）──────────────── */
.site-header {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 1000;
  background: rgba(251,248,243,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding .35s ease;
}
.site-header.is-shrunk { padding: 0; }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 16px 28px;
  transition: padding .35s ease;
}
.site-header.is-shrunk .header-inner { padding: 8px 28px; }

.nav-left  { justify-self: start; }
.nav-right { justify-self: end; }
.nav-left, .nav-right {
  display: flex; align-items: center; gap: 26px;
  font-family: var(--font-jp);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em;
}
.nav-left a, .nav-right a { color: var(--sumi-soft); transition: color .25s ease; position: relative; }
.nav-left a:hover, .nav-right a:hover { color: var(--rose-deep); }

.site-logo { justify-self: center; text-align: center; line-height: 1; }
.site-logo .logo-en {
  font-family: var(--font-en);
  font-size: 26px; font-weight: 600;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--sumi);
}
.site-logo .logo-jp {
  display: block;
  font-family: var(--font-jp);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.36em;
  color: var(--sage-deep);
  margin-top: 3px;
  padding-right: 0.36em;
}

.header-cta {
  font-family: var(--font-jp); font-weight: 700;
  font-size: 12px !important;
  color: var(--white) !important;
  background: var(--rose);
  padding: 10px 20px; border-radius: 22px;
  transition: background .25s ease;
}
.header-cta:hover { background: var(--rose-deep); color: var(--white) !important; }

.hamburger {
  display: none; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 1100; justify-self: end;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: ''; display: block; position: absolute;
  width: 24px; height: 2px; border-radius: 2px; background: var(--sumi);
  left: 10px; transition: transform .35s ease, top .35s ease, opacity .25s ease;
}
.hamburger span { top: 21px; }
.hamburger span::before { top: -7px; }
.hamburger span::after  { top: 7px; }
.hamburger.is-active span { background: transparent; }
.hamburger.is-active span::before { top: 0; transform: rotate(45deg); }
.hamburger.is-active span::after  { top: 0; transform: rotate(-45deg); }

/* ─── REVEAL（CSS-only / JS完全非依存・最初から）─────────── */
.reveal {
  opacity: 1;
  animation: reveal-in 0.9s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal-up  { animation-delay: 0.08s; }
.reveal-up2 { animation-delay: 0.16s; }
.reveal-up3 { animation-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; opacity: 1; transform: none; }
}

/* ─── HERO（2カラム分離）───────────────────────────────── */
.hero {
  padding-top: calc(36px + 92px);
  background: var(--cream);
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 6vw, 88px) 28px;
}
.hero-copy { position: relative; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-en); font-style: italic;
  font-size: 15px; letter-spacing: 0.08em;
  color: var(--rose-deep);
  margin-bottom: 26px;
}
.hero-eyebrow::before { content:''; width: 30px; height: 1px; background: var(--rose); }
.hero h1 {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.32; letter-spacing: 0.04em;
  color: var(--sumi);
  margin-bottom: 30px;
}
.hero h1 .accent { color: var(--rose-deep); }
.hero-lead {
  max-width: 440px;
  font-size: 16px; line-height: 2.1;
  color: var(--sumi-soft);
  margin-bottom: 38px;
}
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-prim {
  font-family: var(--font-jp); font-weight: 700;
  font-size: 14px; letter-spacing: 0.04em;
  color: var(--white); background: var(--rose);
  padding: 15px 34px; border-radius: 30px;
  transition: background .25s ease, transform .25s ease;
}
.btn-prim:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-text {
  font-family: var(--font-jp); font-weight: 700;
  font-size: 14px; color: var(--sage-deep);
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 2px solid var(--sage);
  padding-bottom: 3px;
  transition: color .25s ease, border-color .25s ease;
}
.btn-text:hover { color: var(--sage); border-color: var(--sage-deep); }

.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-tag {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(251,248,243,0.92);
  border-radius: 24px;
  padding: 8px 18px;
  font-family: var(--font-en); font-style: italic;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--rose-deep);
}
.hero-bloom {
  position: absolute; top: -22px; right: -22px;
  width: 92px; height: 92px;
  background: var(--sage);
  border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
  opacity: .5; z-index: -1;
}

/* ─── SECTION 共通 ─────────────────────────────────────── */
.section { padding: var(--gap) 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(48px, 6vw, 80px); }
.section-head.left { text-align: left; margin-left: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-style: italic;
  font-size: 14px; letter-spacing: 0.06em;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.eyebrow::before, .eyebrow::after { content:''; width: 22px; height: 1px; background: var(--rose); }
.section-head.left .eyebrow::after { display: none; }
.section-title {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.45; letter-spacing: 0.04em;
  color: var(--sumi);
}
.section-title .en {
  display: block;
  font-family: var(--font-en); font-style: italic; font-weight: 400;
  font-size: 0.46em; letter-spacing: 0.04em;
  color: var(--sage-deep);
  margin-bottom: 12px;
}
.section-desc { margin-top: 20px; font-size: 16px; line-height: 2.05; color: var(--sumi-soft); }

/* ─── NEWS（上部・必須）────────────────────────────────── */
.news-band {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.news-inner { display: flex; align-items: center; gap: 32px; }
.news-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-style: italic;
  font-size: 14px; color: var(--rose-deep);
  flex-shrink: 0;
}
.news-label::before { content:''; width: 16px; height: 1px; background: var(--rose); }
.news-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.news-list li { display: flex; align-items: baseline; gap: 20px; font-size: 14px; color: var(--sumi-soft); }
.news-list time {
  font-family: var(--font-en); font-style: italic;
  font-size: 13px; color: var(--sage-deep);
  width: 92px; flex-shrink: 0;
}
.news-list a:hover { color: var(--rose-deep); }
.news-more {
  flex-shrink: 0; font-family: var(--font-jp); font-weight: 700;
  font-size: 13px; color: var(--sumi);
  border-bottom: 2px solid var(--rose); padding-bottom: 3px;
}

/* ─── CONCEPT ──────────────────────────────────────────── */
.concept-grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 84px); align-items: center;
}
.concept-photo { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 5/6; }
.concept-photo img { width: 100%; height: 100%; object-fit: cover; }
.concept-photo .deco {
  position: absolute; bottom: -18px; left: -18px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--rose); opacity: .22; z-index: -1;
}
.concept-body .quote {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.7; letter-spacing: 0.03em;
  color: var(--sumi); margin: 28px 0;
  padding-left: 20px; border-left: 3px solid var(--rose);
}
.concept-body p { font-size: 16px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 18px; }

/* ─── BOUQUET / LINEUP（カード3列）──────────────────────── */
.bouquet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bouquet-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}
.bouquet-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(58,54,50,0.1); }
.bouquet-img { aspect-ratio: 1/1; overflow: hidden; }
.bouquet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.bouquet-card:hover .bouquet-img img { transform: scale(1.06); }
.bouquet-body { padding: 24px; }
.bouquet-tag {
  display: inline-block;
  font-family: var(--font-en); font-style: italic;
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--sage-deep);
  background: rgba(151,169,140,0.16);
  padding: 4px 12px; border-radius: 20px; margin-bottom: 12px;
}
.bouquet-body h3 { font-family: var(--font-jp); font-weight: 700; font-size: 19px; color: var(--sumi); margin-bottom: 8px; }
.bouquet-body p { font-size: 13.5px; line-height: 1.95; color: var(--sumi-soft); margin-bottom: 14px; }
.bouquet-price { font-family: var(--font-en); font-style: italic; font-size: 16px; color: var(--rose-deep); }

/* ─── GALLERY（2x3 masonry風）──────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: 14px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ─── OCCASION（用途・横並びアイコン）──────────────────── */
.occasion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.occasion-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.occasion-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  border-radius: 50%; background: rgba(201,125,138,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep);
}
.occasion-icon svg { width: 26px; height: 26px; }
.occasion-text h3 { font-family: var(--font-jp); font-weight: 700; font-size: 18px; color: var(--sumi); margin-bottom: 6px; }
.occasion-text p { font-size: 14px; line-height: 1.95; color: var(--sumi-soft); }

/* ─── WORKSHOP（横並び）────────────────────────────────── */
.workshop-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.workshop-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.workshop-photo img { width: 100%; height: 100%; object-fit: cover; }
.workshop-body p { font-size: 16px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 18px; }
.workshop-info { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.workshop-info li { display: flex; gap: 16px; font-size: 14px; }
.workshop-info span:first-child {
  font-family: var(--font-en); font-style: italic; font-size: 13px;
  color: var(--sage-deep); width: 96px; flex-shrink: 0;
}

/* ─── ABOUT（店主）────────────────────────────────────── */
.about-wrap { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(36px, 5vw, 72px); align-items: end; }
.about-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-body p { font-size: 15px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 16px; }
.about-sign { margin-top: 28px; font-family: var(--font-jp); font-weight: 700; font-size: 16px; color: var(--sumi); }
.about-sign .role {
  display: block; font-family: var(--font-en); font-style: italic;
  font-size: 12px; color: var(--sage-deep); margin-bottom: 4px;
}

/* ─── SHOP INFO ────────────────────────────────────────── */
.shopinfo-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); }
.info-table { width: 100%; border-top: 1px solid var(--line); }
.info-table tr { border-bottom: 1px solid var(--line); }
.info-table th, .info-table td { padding: 18px 8px; text-align: left; vertical-align: top; font-size: 14px; }
.info-table th {
  font-family: var(--font-en); font-style: italic;
  font-size: 12px; color: var(--sage-deep);
  width: 130px; font-weight: 400;
}
.info-table td { color: var(--sumi-soft); }
.shopinfo-map {
  border-radius: var(--radius); overflow: hidden;
  background: var(--cream-2); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  font-family: var(--font-en); font-style: italic; color: var(--sage-deep);
}

/* ─── CTA BAND ─────────────────────────────────────────── */
.cta-band {
  background: var(--rose);
  color: var(--white);
  border-radius: clamp(24px, 4vw, 48px);
  margin: 0 28px;
  padding: clamp(64px, 9vw, 110px) 28px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content:''; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.cta-band::before { width: 220px; height: 220px; top: -70px; left: -50px; }
.cta-band::after  { width: 160px; height: 160px; bottom: -60px; right: -30px; }
.cta-band .inner { position: relative; z-index: 2; }
.cta-band .eyebrow { color: rgba(255,255,255,0.9); justify-content: center; }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: rgba(255,255,255,0.6); }
.cta-band h2 {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(26px, 4vw, 44px); letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.cta-band p { max-width: 500px; margin: 0 auto 36px; font-size: 15px; line-height: 2; color: rgba(255,255,255,0.92); }
.cta-band .btn-prim { background: var(--white); color: var(--rose-deep); }
.cta-band .btn-prim:hover { background: var(--cream); color: var(--rose-deep); }

/* ─── FOOTER ──────────────────────────────────────────── */
.site-footer { background: var(--sumi); color: rgba(251,248,243,0.75); padding: 72px 0 32px; font-family: var(--font-jp); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .f-logo { font-family: var(--font-en); font-style: italic; font-size: 26px; color: var(--cream); margin-bottom: 6px; }
.footer-brand .f-logo-jp { font-size: 11px; letter-spacing: 0.34em; color: var(--rose); margin-bottom: 20px; padding-right: 0.34em; }
.footer-brand p { font-size: 13px; line-height: 1.95; color: rgba(251,248,243,0.6); }
.footer-col h4 {
  font-family: var(--font-en); font-style: italic; font-size: 14px;
  color: var(--rose); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: rgba(251,248,243,0.7); transition: color .25s ease; }
.footer-col a:hover { color: var(--rose); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(251,248,243,0.12);
  font-family: var(--font-en); font-style: italic; font-size: 12px;
  color: rgba(251,248,243,0.45);
}

/* ─── INTERIOR PAGES ──────────────────────────────────── */
.page-hero {
  padding: calc(36px + 92px + 64px) 0 64px;
  text-align: center; background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow { justify-content: center; }
.page-hero h1 {
  font-family: var(--font-jp); font-weight: 700;
  font-size: clamp(32px, 5vw, 60px); letter-spacing: 0.04em;
  color: var(--sumi); margin-bottom: 12px;
}
.page-hero .page-sub { font-family: var(--font-en); font-style: italic; font-size: 15px; color: var(--sage-deep); }

.privacy-body { max-width: 800px; margin: 0 auto; }
.privacy-body h2 { font-family: var(--font-jp); font-weight: 700; font-size: 20px; color: var(--sumi); margin: 40px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--line); }
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p { font-size: 14px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 14px; }
.privacy-body ul { margin: 10px 0 16px 20px; }
.privacy-body li { font-size: 14px; line-height: 2; color: var(--sumi-soft); margin-bottom: 6px; }

/* contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(40px, 6vw, 88px); }
.contact-info p { font-size: 14px; line-height: 2; color: var(--sumi-soft); margin-bottom: 18px; }
.contact-info dl { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-info dt { font-family: var(--font-en); font-style: italic; font-size: 12px; color: var(--sage-deep); margin-bottom: 4px; }
.contact-info dd { font-size: 14px; color: var(--sumi); }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--font-jp); font-weight: 700; font-size: 13px; color: var(--sumi); }
.form-field label .req { color: var(--rose-deep); margin-left: 4px; }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-jp); font-size: 14px; color: var(--sumi);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; padding: 13px 16px;
  transition: border-color .25s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--rose); }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-submit {
  font-family: var(--font-jp); font-weight: 700; font-size: 15px;
  color: var(--white); background: var(--rose);
  border: none; border-radius: 30px; padding: 16px 44px;
  cursor: pointer; align-self: flex-start; margin-top: 8px;
  transition: background .25s ease, transform .25s ease;
}
.form-submit:hover { background: var(--rose-deep); transform: translateY(-2px); }
.form-note { font-size: 12px; color: var(--sage-deep); margin-top: 4px; }

/* news list */
.news-page-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.news-page-item {
  display: grid; grid-template-columns: 120px 100px 1fr 20px;
  gap: 22px; align-items: baseline; padding: 26px 0;
  border-bottom: 1px solid var(--line); transition: background .25s ease;
}
.news-page-item:hover { background: rgba(201,125,138,0.05); }
.news-page-item time { font-family: var(--font-en); font-style: italic; font-size: 14px; color: var(--rose-deep); }
.news-cat {
  font-family: var(--font-en); font-style: italic; font-size: 11px;
  color: var(--sage-deep); border: 1px solid var(--line);
  border-radius: 14px; padding: 3px 10px; text-align: center; align-self: center;
}
.news-page-item h3 { font-family: var(--font-jp); font-weight: 700; font-size: 16px; color: var(--sumi); line-height: 1.6; }
.news-page-item .arrow { color: var(--sage); transition: transform .3s ease; }
.news-page-item:hover .arrow { transform: translateX(4px); color: var(--rose-deep); }

.news-article { max-width: 760px; margin: 0 auto; }
.news-article .meta { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.news-article time { font-family: var(--font-en); font-style: italic; font-size: 14px; color: var(--rose-deep); }
.news-article h1 { font-family: var(--font-jp); font-weight: 700; font-size: clamp(26px, 4vw, 38px); line-height: 1.5; color: var(--sumi); margin-bottom: 32px; }
.news-article p { font-size: 15px; line-height: 2.1; color: var(--sumi-soft); margin-bottom: 20px; }
.news-article h2 { font-family: var(--font-jp); font-weight: 700; font-size: 20px; color: var(--sumi); margin: 40px 0 16px; }
.news-back {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 48px;
  font-family: var(--font-jp); font-weight: 700; font-size: 14px; color: var(--rose-deep);
  border-bottom: 2px solid var(--rose); padding-bottom: 3px;
}

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .nav-left, .nav-right { display: none; }
  .hamburger { display: block; }
  .site-header { z-index: 1001; } /* mobile-nav(1000)より前面に＝閉じる×ボタンを出す */
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .site-logo { grid-column: 2; justify-self: center; }
  .hamburger { grid-column: 3; justify-self: end; }

  .mobile-nav {
    position: fixed; inset: 0;
    background: var(--cream);
    z-index: 1000;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 26px;
    clip-path: circle(0% at calc(100% - 40px) 64px);
    transition: clip-path .55s cubic-bezier(.2,.7,.2,1);
    pointer-events: none;
  }
  .mobile-nav.is-open { clip-path: circle(150% at calc(100% - 40px) 64px); pointer-events: auto; }
  .mobile-nav-close { position: absolute; top: 50px; right: 24px; background: none; border: none; cursor: pointer; font-family: var(--font-jp); font-weight: 700; font-size: 14px; color: var(--sumi-soft); padding: 8px; }
  .mobile-nav-home { color: var(--rose-deep) !important; }
  .mobile-nav a {
    font-family: var(--font-jp); font-weight: 700;
    font-size: 22px; color: var(--sumi);
    opacity: 0; transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
  }
  .mobile-nav.is-open a { opacity: 1; transform: translateY(0); transition-delay: calc(var(--i,0) * 0.06s + 0.15s); }
  .site-header.menu-active { background: var(--cream) !important; backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --gap: 80px; }

  .hero { padding-top: calc(36px + 76px); }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; padding: 32px 20px 56px; }
  .hero-photo { aspect-ratio: 4/5; max-height: 70vh; }

  .news-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .news-list li { flex-direction: column; gap: 4px; }
  .news-list time { width: auto; }

  /* 1カラム原則 */
  .concept-grid, .workshop-wrap, .about-wrap, .shopinfo-wrap, .contact-wrap {
    grid-template-columns: 1fr !important; gap: 32px;
  }
  .bouquet-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr; }

  /* ギャラリーはビジュアル主体ブロック → 2カラム維持（2x3）★記録対象 */
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }

  .info-table th, .info-table td { display: block; width: 100%; padding: 6px 0; }
  .info-table th { padding-top: 14px; }

  /* contact スマホ強制1カラム（必須ルール）*/
  .form-row, [class*="form-row"] { display: block !important; grid-template-columns: 1fr !important; }
  .contact-form input, .contact-form select, .contact-form textarea,
  .form-row > .form-field, .form-row > div { width: 100% !important; max-width: 100% !important; box-sizing: border-box; }
  .form-row .form-field { margin-bottom: 18px; }

  .news-page-item { grid-template-columns: 100px 1fr; grid-template-rows: auto auto; gap: 10px 16px; }
  .news-page-item time { grid-column: 1; grid-row: 1; }
  .news-cat { grid-column: 2; grid-row: 1; justify-self: start; }
  .news-page-item h3 { grid-column: 1 / -1; grid-row: 2; }
  .news-page-item .arrow { display: none; }
}

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