:root {
  color-scheme: light;
  --ink: #1f2a24;
  --muted: #68746d;
  --paper: #f7f5ef;
  --white: #fffdf8;
  --moss: #47644d;
  --cedar: #8f4f2f;
  --river: #2f6f73;
  --gold: #d7a64a;
  --line: rgba(31, 42, 36, .14);
  --shadow: 0 22px 70px rgba(26, 34, 28, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  line-break: strict;
  word-break: normal;
}

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

.inline-text-link {
  color: var(--river);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 245, 239, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
  color: var(--moss);
  border: 1px solid rgba(31, 42, 36, .18);
  font-weight: 800;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  white-space: nowrap;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #324039;
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  flex: 0 0 auto;
  word-break: keep-all;
  font-weight: 800;
}

/* ヘッダーのカートアイコン */
.nav-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  color: var(--cedar);
}

.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cedar);
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

#cartSummary {
  scroll-margin-top: 96px;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-wrap: balance;
  word-break: keep-all;
}

.nav-cta,
.button.primary {
  background: var(--cedar);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, .78);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17231c;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: brightness(1.08) contrast(1.08) saturate(1.03);
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  animation: heroFade 24.5s infinite;
  will-change: opacity;
}

.hero-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  animation-delay: 3.5s;
}

.hero-slide:nth-child(3) {
  animation-delay: 7s;
}

.hero-slide:nth-child(4) {
  animation-delay: 10.5s;
}

.hero-slide:nth-child(5) {
  animation-delay: 14s;
}

.hero-slide:nth-child(6) {
  animation-delay: 17.5s;
}

.hero-slide:nth-child(7) {
  animation-delay: 21s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }

  2%,
  12% {
    opacity: 1;
  }

  14.285%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .hero-slide:first-child {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 18, .68), rgba(14, 23, 18, .24) 58%, rgba(14, 23, 18, .08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 0 82px clamp(18px, 7vw, 96px);
  color: var(--white);
}

.hero-copy h1 {
  max-width: 900px;
  font-size: clamp(34px, 5.6vw, 40px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(40px, 8vw, 40px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

p,
li,
td,
th {
  overflow-wrap: break-word;
}

.hero-copy p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.section-heading p,
.catalog-grid p,
.feature-card p {
  text-wrap: pretty;
}

.catalog-grid h3,
.feature-card h3,
.steps span,
.info-strip span {
  word-break: keep-all;
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

.hero-actions,
.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.band,
.section {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: -42px;
  padding: 24px;
  position: relative;
  z-index: 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notice p {
  margin: 4px 0 0;
  color: var(--muted);
}

.text-link {
  color: var(--river);
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: 92px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
}

/* 事業サマリー：少し大きめ・見やすく・全幅で1行に（狭い画面では折り返す） */
.business-lead {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line, rgba(31, 42, 36, .14));
  box-shadow: 0 10px 26px rgba(31, 42, 36, .10);
  font-size: clamp(1.02rem, 1.7vw, 1.3rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink, #2b120c);
  text-align: center;
  display: block;
  cursor: pointer;
  text-decoration: none;
  animation: businessLeadFloat 3.2s ease-in-out infinite;
  transition: box-shadow .2s ease;
}
.business-lead:hover,
.business-lead:focus-visible {
  box-shadow: 0 18px 36px rgba(31, 42, 36, .2);
  outline: none;
}
@keyframes businessLeadFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@media (prefers-reduced-motion: reduce) {
  .business-lead {
    animation: none;
  }
}
/* 吹き出しのしっぽ（下向き） */
.business-lead::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
  height: 20px;
  background: #fff;
  border-right: 1px solid var(--line, rgba(31, 42, 36, .14));
  border-bottom: 1px solid var(--line, rgba(31, 42, 36, .14));
  border-bottom-right-radius: 4px;
}
.business-lead-wrap {
  position: relative;
  z-index: 3;
  margin-top: -46px;
  margin-bottom: 30px;
}

#business {
  scroll-margin-top: 84px;
}
/* お知らせ帯を事業詳細見出しの下に置くときの調整（ヒーロー重なりを解除） */
.notice.notice-in-section {
  margin-top: 6px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  overflow: hidden;
  min-height: 430px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.clickable-card {
  cursor: pointer;
}

.clickable-card:focus-visible {
  outline: 3px solid rgba(15, 105, 112, .35);
  outline-offset: 4px;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card div {
  padding: 20px;
}

.feature-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cedar);
  font-weight: 800;
}

.feature-card p,
.split p,
.summary p,
.contact p {
  color: var(--muted);
}

.feature-card p {
  font-size: 15px;
  line-height: 1.75;
}

.feature-price {
  display: block;
  margin: 12px 0 8px;
  color: var(--cedar);
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
}

.card-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--river);
  font-weight: 900;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #17231c;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .68;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 23, 18, .84), rgba(14, 23, 18, .34));
}



.glamping-hero img {
  opacity: .92;
}

.glamping-hero::after {
  background: linear-gradient(90deg, rgba(14, 23, 18, .46), rgba(14, 23, 18, .14) 62%, rgba(14, 23, 18, .04));
}

.welfare-hero img {
  opacity: .92;
}

.welfare-hero::after {
  background: linear-gradient(90deg, rgba(14, 23, 18, .54), rgba(14, 23, 18, .18) 58%, rgba(14, 23, 18, .04));
}

.page-hero div {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 70px clamp(18px, 7vw, 96px);
  color: var(--white);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: 18px;
}

.page-hero h1 {
  font-size: clamp(38px, 7vw, 40px);
}

.page-title {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 40px);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.catalog-grid article {
  min-height: 240px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.catalog-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 78px;
  margin-bottom: 12px;
}

.catalog-card-head h3 {
  flex: 1 1 auto;
  margin: 0;
  line-height: 1.35;
}

.catalog-card-badge {
  flex: 0 0 auto;
  width: 70px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.furupo-badge {
  aspect-ratio: 4 / 3;
  width: 86px;
}

.chimney-card-image,
.firewood-card-image {
  width: calc(100% + 48px);
  max-width: none;
  aspect-ratio: 16 / 9;
  margin: -24px -24px 20px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.density-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.density-card {
  background: var(--surface, #fff);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.density-card h3 {
  margin: 0 0 12px;
}

.density-card p {
  margin: 0 0 12px;
}

.density-card p:last-child {
  margin-bottom: 0;
}

.density-note {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--accent, #c0742f);
  background: rgba(192, 116, 47, .06);
  border-radius: 0 12px 12px 0;
}

.chimney-hero-title {
  font-size: clamp(32px, 4.5vw, 40px);
}

.chimney-maintenance {
  border-top: 1px solid var(--line);
}

.chimney-main-hero img,
.chimney-inquiry-page-hero img {
  opacity: .86;
  filter: brightness(1.16) saturate(1.04);
  object-position: center;
}

.chimney-main-hero::after,
.chimney-inquiry-page-hero::after {
  background: linear-gradient(90deg, rgba(14, 23, 18, .68), rgba(14, 23, 18, .2) 72%, rgba(14, 23, 18, .08));
}

.maintenance-heading {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  margin: 56px 0 22px;
}

.maintenance-heading > span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-weight: 900;
}

.maintenance-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 34px);
}

.maintenance-heading p {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
}

.maintenance-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.maintenance-gallery figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.maintenance-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.maintenance-gallery figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
}

.maintenance-alert {
  border: 2px solid #a84c34 !important;
}

.maintenance-alert figcaption {
  color: #8b321f;
  font-weight: 900;
}

.maintenance-advice {
  margin: 22px 0 34px;
  padding: 24px;
  background: #eef2e8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.maintenance-advice > strong {
  color: var(--moss);
  font-size: 22px;
}

.maintenance-advice ul {
  margin: 12px 0;
  padding-left: 22px;
}

.maintenance-advice p {
  margin-bottom: 0;
  font-weight: 800;
}

.maintenance-process-title {
  margin: 32px 0 18px;
  font-size: 26px;
}

.maintenance-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.maintenance-process-grid li,
.maintenance-process-grid figure {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.maintenance-process-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.maintenance-process-grid li > span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin: 12px 6px 8px 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--cedar);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.maintenance-process-grid li > strong {
  display: block;
  padding: 0 12px 16px;
  font-size: 14px;
  line-height: 1.55;
}

.maintenance-process-grid figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 13px;
}

.maintenance-details {
  margin-top: 24px;
  padding: 0 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.maintenance-details summary {
  padding: 20px 0;
  cursor: pointer;
  color: var(--river);
  font-size: 18px;
  font-weight: 900;
}

.maintenance-example {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.maintenance-example h3 {
  margin-bottom: 16px;
}

.compact-process {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.catalog-grid p {
  color: var(--muted);
}

.catalog-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--cedar);
  font-size: 18px;
}

.furupo-card {
  position: relative;
}

.furupo-logo {
  display: block;
  width: min(132px, 58%);
  height: auto;
  margin: 0 0 18px;
  object-fit: contain;
}

.hero-logo {
  width: min(168px, 42vw);
  margin-bottom: 16px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button.light {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.steps {
  display: grid;
  gap: 12px;
}

.process-diagram {
  overflow-x: auto;
  margin: 0 0 28px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.process-diagram img {
  width: 100%;
  min-width: 760px;
  height: auto;
}

.process-diagram figcaption {
  padding: 10px 8px 4px;
  color: var(--muted);
  font-size: 13px;
}

.steps span,
.info-strip span {
  display: block;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.info-strip.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kayak-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.kayak-course-card {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.kayak-course-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #07132c;
}

.kayak-course-card figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
}

.kayak-course-card figcaption strong {
  font-size: 20px;
}

.kayak-course-card figcaption span {
  color: var(--muted);
}

.kayak-course-card figcaption b {
  margin-top: 4px;
  color: var(--cedar);
  font-size: 18px;
}

.kayak-course-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.kayak-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.kayak-select-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.kayak-select-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #07132c;
}

.kayak-select-card > div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.kayak-select-card h2,
.kayak-select-card p {
  margin: 0;
}

.kayak-select-card strong {
  color: var(--cedar);
  font-size: 20px;
}

.kayak-select-card .button {
  margin-top: 8px;
}

.kayak-time-select {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.kayak-time-select legend {
  padding-inline: 8px;
  font-weight: 900;
}

.kayak-time-select label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}

.kayak-time-select input,
.kayak-option input {
  width: 20px;
  min-height: 20px;
}

.kayak-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.kayak-select-card .kayak-option-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}

.kayak-select-card .kayak-option {
  padding: 12px;
}

.kayak-select-card .kayak-option small {
  font-size: 12px;
}

.kayak-option {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.kayak-option span,
.kayak-option small {
  display: block;
}

.kayak-option small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 400;
}

.kayak-booking-dialog {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(15, 25, 20, .3);
}

.kayak-booking-dialog::backdrop {
  background: rgba(12, 20, 16, .62);
}

.kayak-dialog-close {
  position: sticky;
  top: 12px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 24px;
}

.kayak-booking-step {
  padding: 34px;
}

.kayak-selection-list {
  margin: 20px 0;
}

.kayak-selection-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.kayak-selection-list dt {
  color: var(--muted);
}

.kayak-selection-list dd {
  margin: 0;
  font-weight: 800;
}

.kayak-booking-bar {
  display: grid;
  grid-template-columns: minmax(160px, .7fr) minmax(240px, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.kayak-booking-bar strong {
  color: var(--cedar);
  font-size: 20px;
}

.js-date-step {
  display: grid;
  gap: 16px;
}

.js-date-step[hidden],
.js-summary-step[hidden] {
  display: none;
}

.kayak-date-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.kayak-schedule-section {
  display: grid;
  grid-template-columns: minmax(220px, .65fr) minmax(0, 1.35fr);
  gap: 36px;
  margin-top: 48px;
  padding: 30px;
  background: #eef2e8;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.kayak-schedule-section h2,
.kayak-schedule-section h3,
.kayak-schedule-section p {
  margin-bottom: 8px;
}

.kayak-schedule-section p:not(.eyebrow) {
  color: var(--muted);
}

.kayak-schedule-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.kayak-schedule-columns > div {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.kayak-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kayak-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  min-height: 72px;
  padding-bottom: 18px;
}

.kayak-timeline li::before {
  content: "";
  position: absolute;
  left: 69px;
  top: 9px;
  bottom: -4px;
  width: 2px;
  background: rgba(71, 100, 77, .28);
}

.kayak-timeline li::after {
  content: "";
  position: absolute;
  left: 64px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--moss);
}

.kayak-timeline li:last-child::before {
  display: none;
}

.kayak-timeline time {
  color: var(--cedar);
  font-weight: 900;
}

.kayak-timeline li > div {
  padding-left: 14px;
}

.kayak-timeline strong,
.kayak-timeline span {
  display: block;
}

.kayak-timeline span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats div {
  padding: 22px;
  background: #eef2e8;
  border-radius: 8px;
}

.stats strong {
  display: block;
  color: var(--moss);
  font-size: 30px;
  line-height: 1.2;
}

.stats span {
  color: var(--muted);
  font-size: 13px;
}

.maica-guide {
  background: #f6f7ef;
}

.maica-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 28px;
  align-items: start;
}

.maica-guide-copy {
  display: grid;
  gap: 14px;
}

.maica-guide-copy article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.maica-guide-copy h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.maica-guide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.maica-guide-visual {
  margin: 0;
}

.maica-guide-visual img {
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.order-section {
  padding-top: 44px;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 28px;
  align-items: start;
}

/* firewood-products: 注文者情報とカゴの中を左右入れ替え（PC表示のみ／モバイルは従来どおり縦積み） */
@media (min-width: 981px) {
  .order-layout-swap {
    grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  }

  .order-layout-swap > .summary {
    order: 1;
  }

  .order-layout-swap > .order-form {
    order: 2;
  }
}

.mypage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 28px;
  align-items: start;
}

.order-form,
.summary,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: #33423a;
  font-weight: 800;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.check-row a {
  color: var(--river);
  font-weight: 900;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
  font-size: 15px;
}

.check-line input {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 5px;
}

.wide {
  grid-column: 1 / -1;
}

select,
input,
textarea {
  width: 100%;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
}

/* 郵便番号欄に〒マークを常時表示 */
.postal-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.postal-wrap > .postal-mark {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #7a6a5a;
  font-weight: 800;
  pointer-events: none;
  line-height: 1;
}
.postal-wrap > input {
  padding-left: 32px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-actions .button.light {
  border: 1px solid var(--line);
}

.form-intro h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.form-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.member-actions .button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.member-actions .button.light {
  border: 1px solid var(--line);
}

.map-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #eef2e8;
  border-radius: 8px;
}

.map-tools p {
  flex-basis: 100%;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.shipping-result {
  margin-top: 16px;
  padding: 14px;
  background: #eef2e8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--moss);
  font-weight: 900;
}

body.is-member .mypage-layout {
  grid-template-columns: minmax(320px, 720px);
}

body.is-member .mypage-summary {
  position: static;
}

textarea {
  resize: vertical;
}

.summary {
  position: sticky;
  top: 94px;
  padding: 28px;
}

.summary dl {
  margin: 20px 0;
}

.summary dl div,
.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.summary dt {
  color: var(--muted);
}

.summary dd {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.summary .button.secondary {
  border-color: var(--line);
  color: var(--ink);
}

.mypage-summary .small-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.auth-panel {
  max-width: 820px;
  margin: 0 auto;
}

.auth-form {
  margin-top: 24px;
}

.auth-message {
  min-height: 1.75em;
  margin: 0;
  color: var(--cedar);
  font-weight: 700;
}

.member-password-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.member-password-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.legal-page article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-page article h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.legal-page article p {
  max-width: 920px;
  color: var(--muted);
}

.recruit-hero h1 {
  max-width: 840px;
}

.recruit-points article {
  min-height: 250px;
}

.ai-match-section {
  padding-top: 44px;
}

.ai-result {
  top: 94px;
}

.poster-body {
  background: #e8eee6;
}

.poster-page {
  width: min(980px, calc(100% - 28px));
  margin: 28px auto;
}

.poster-sheet {
  padding: clamp(26px, 5vw, 54px);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.poster-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef2e8;
  color: var(--moss);
  font-weight: 900;
}

.poster-sheet h1 {
  max-width: 780px;
  margin-bottom: 4px;
  color: var(--moss);
  font-size: clamp(40px, 8vw, 40px);
}

.poster-lead {
  margin-bottom: 26px;
  color: var(--cedar);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
}

.poster-visual {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px;
  align-items: stretch;
  margin: 24px 0;
}

.poster-visual img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 8px;
}

.poster-visual div {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  background: #1d2922;
  color: var(--white);
  border-radius: 8px;
}

.poster-visual strong {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.25;
}

.poster-visual span {
  color: rgba(255, 253, 248, .78);
  font-size: 18px;
}

.poster-work {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.poster-work h2 {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  font-size: clamp(26px, 4vw, 40px);
}

.poster-work div,
.poster-support p {
  padding: 18px;
  background: #eef2e8;
  border-radius: 8px;
}

.poster-work strong,
.poster-work span {
  display: block;
}

.poster-work strong {
  color: var(--cedar);
  font-size: 24px;
}

.poster-work span {
  color: var(--muted);
}

.poster-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.poster-support p {
  margin: 0;
  color: var(--moss);
  font-weight: 900;
  text-align: center;
}

.poster-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 2px solid var(--line);
}

.poster-footer strong,
.poster-footer span {
  display: block;
}

.poster-footer strong {
  font-size: 22px;
}

.poster-footer span {
  color: var(--muted);
}

.poster-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.compact {
  padding-top: 24px;
}

.price-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
  padding: 24px;
  background: #eef2e8;
  border-radius: 8px;
}

.price-list-card {
  overflow-x: auto;
  margin-bottom: 22px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
}

.price-list-details > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  background: var(--cedar);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 10px 24px rgba(143, 79, 47, .22);
  transition: background-color .2s ease, transform .2s ease;
}

.price-list-details > summary:hover {
  background: #743d25;
  transform: translateY(-1px);
}

.price-list-details > summary::-webkit-details-marker {
  display: none;
}

.price-list-details > summary::after {
  content: "・・;
  margin-left: 0.7rem;
}

.price-list-details[open] > summary::after {
  content: "・・;
}

.price-list-details-content {
  margin-top: 1.25rem;
}

.price-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-list-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.price-list-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fbfaf6;
  font-size: 14px;
}

.price-list-table th,
.price-list-table td {
  border: 1px solid rgba(31, 42, 36, .22);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}

.price-list-table th {
  background: #e7eddc;
  color: var(--moss);
  font-weight: 900;
  white-space: nowrap;
}

.price-list-table tbody tr:nth-child(even) {
  background: #eef2e8;
}

.compact-table {
  min-width: 0;
}

.price-notes {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 42px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 26px;
}

.contact-panel a {
  color: var(--river);
  font-weight: 900;
}

.contact-panel span {
  color: var(--muted);
}

.contact-map {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 8px;
  margin: 8px 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #1d2922;
  color: var(--white);
}

.footer span:last-child {
  color: rgba(255, 253, 248, .72);
}

.chat-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
  font-size: 14px;
}

/* 注文フォームの一括クリア（右下・チャットボタンの上に重ねない高さ） */
.clear-order-btn {
  position: fixed;
  right: 18px;
  bottom: 88px;
  z-index: 55;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(159, 53, 36, .35);
  background: #fff;
  color: #9f3524;
  font-weight: 800;
  font-size: 12.5px;
  box-shadow: 0 10px 26px rgba(82, 35, 24, .2);
  cursor: pointer;
}
.clear-order-btn:hover { background: #fdf3f0; }
@media (max-width: 640px) {
  .clear-order-btn { bottom: 82px; right: 12px; font-size: 12px; padding: 8px 12px; }
}

.chat-toggle {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  padding: 10px 16px 10px 10px;
  background: var(--river);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(18, 43, 45, .28);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.chat-toggle span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
}

.chat-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(26, 34, 28, .22);
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: #1d2922;
  color: var(--white);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: rgba(255, 253, 248, .7);
  font-size: 12px;
}

.chat-close {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
  padding: 6px 9px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 280px;
  min-height: 150px;
  overflow-y: auto;
  padding: 16px;
}

.chat-message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  line-height: 1.55;
}

.chat-message.bot {
  justify-self: start;
  background: #eef2e8;
}

.chat-message.user {
  justify-self: end;
  background: var(--river);
  color: var(--white);
}

.chat-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin-top: 10px;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: var(--cedar);
  color: var(--white);
  font-family: inherit;
  font-size: inherit;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

/* AIヒアリング後の「こちらがおすすめ」ポップアップ（カード） */
.chat-reco {
  margin-top: 10px;
  padding: 12px 14px;
  border: 2px solid var(--cedar);
  border-radius: 10px;
  background: #fff7ee;
  animation: chat-reco-pop 0.25s ease-out;
}
@keyframes chat-reco-pop {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.chat-reco-head {
  font-weight: 900;
  color: var(--cedar);
  margin-bottom: 4px;
}
.chat-reco-title {
  font-weight: 800;
  margin-bottom: 6px;
}
.chat-reco-reasons {
  margin: 0 0 6px;
  padding-left: 1.1em;
  line-height: 1.7;
}
.chat-reco-reasons li {
  margin: 2px 0;
}
.chat-reco-price {
  font-weight: 800;
  color: #7a4a1f;
}

/* 注文ページ上部の「こちらがおすすめ」カード（写真付き） */
.page-reco {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 0 0 22px;
  padding: 16px;
  border: 2px solid var(--cedar);
  border-radius: 12px;
  background: #fff7ee;
}
.page-reco > img {
  width: 180px;
  max-width: 40%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.page-reco-body {
  flex: 1;
  min-width: 0;
}
.page-reco-head {
  font-weight: 900;
  color: var(--cedar);
}
.page-reco-title {
  font-weight: 800;
  font-size: 1.15rem;
  margin: 2px 0 8px;
}
.page-reco-reasons {
  margin: 0 0 8px;
  padding-left: 1.1em;
  line-height: 1.7;
}
.page-reco-reasons li {
  margin: 2px 0;
}
.page-reco-price {
  font-weight: 800;
  color: #7a4a1f;
  margin-bottom: 6px;
}
.page-reco-note {
  font-size: 0.85rem;
  color: #6b5a4a;
  margin: 0 0 12px;
}
.page-reco-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 560px) {
  .page-reco {
    flex-direction: column;
  }
  .page-reco > img {
    width: 100%;
    max-width: 100%;
  }
}

.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chat-quick button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px;
  background: #fbfaf6;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.chat-choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 16px 12px;
}

.chat-choice-group button:disabled {
  opacity: .55;
  cursor: default;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  min-height: 42px;
}

.chat-form button {
  min-width: 64px;
  border: 0;
  border-radius: 6px;
  background: var(--cedar);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 580px;
  }

  .feature-grid,
  .catalog-grid,
  .order-layout,
  .mypage-layout,
  .maica-guide-layout,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .summary {
    position: static;
  }

  .price-table {
    grid-template-columns: 1fr 1fr;
  }

  .price-list-grid {
    grid-template-columns: 1fr;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .kayak-course-grid {
    grid-template-columns: 1fr;
  }

  .kayak-select-grid,
  .kayak-option-grid,
  .kayak-date-grid,
  .kayak-booking-bar,
  .kayak-schedule-section,
  .kayak-schedule-columns {
    grid-template-columns: 1fr;
  }

  .maintenance-gallery,
  .maintenance-process-grid,
  .compact-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .maintenance-heading {
    grid-template-columns: 44px 1fr;
  }

  .maintenance-heading > span {
    width: 40px;
    height: 40px;
  }

  .maintenance-gallery,
  .maintenance-process-grid,
  .compact-process {
    grid-template-columns: 1fr;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-copy {
    margin: 0 auto 54px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .catalog-grid,
  .order-form,
  .stats,
  .price-table {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .footer {
    flex-direction: column;
  }

  .chat-widget {
    right: 12px;
    bottom: 12px;
    width: min(340px, calc(100vw - 24px));
  }

  .poster-work,
  .poster-support {
    grid-template-columns: 1fr;
  }
}

@media print {
  .site-header,
  .chat-widget,
  .poster-actions {
    display: none !important;
  }

  body,
  .poster-body {
    background: white;
  }

  .poster-page {
    width: 100%;
    margin: 0;
  }

  .poster-sheet {
    box-shadow: none;
    border: 0;
    border-radius: 0;
  }
}

.compact-hero {
  min-height: 360px;
}

.linked-page-hero {
  min-height: 70mm;
}

.order-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.order-product-card {
  overflow: hidden;
  scroll-margin-top: 96px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(26, 34, 28, .08);
}

.order-product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f4f0e8;
}

/* 繧ｯ繝ｪ繝・け蠑・蝠・刀蜀咏悄繧ｹ繝ｩ繧､繝繝ｼ・亥・逵溷・菴薙ｒ陦ｨ遉ｺ・・*/
.product-slider {
  position: relative;
  overflow: hidden;
  background: #f4f0e8;
}

.product-slider-track {
  display: flex;
  width: 100%;
  transition: transform .35s ease;
  cursor: pointer;
}

.product-slider-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 220px;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #f4f0e8;
}

.product-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(18, 24, 20, .22);
}

.product-slider-arrow.prev { left: 10px; }
.product-slider-arrow.next { right: 10px; }

.product-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.product-slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(40, 40, 40, .3);
  cursor: pointer;
}

.product-slider-dot.is-active {
  width: 20px;
  background: var(--soil, #8a3f24);
}

.order-product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.order-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.order-product-top h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.stock-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e6f0df;
  color: #234236;
  font-size: 12px;
  font-weight: 900;
}

.stock-badge.soldout {
  background: #f0e3dd;
  color: #8a3f24;
}

.stock-badge.low {
  background: #fdf1d8;
  color: #8a6414;
}

.product-tab.is-soldout {
  opacity: .55;
  text-decoration: line-through;
  text-decoration-color: rgba(138, 63, 36, .6);
}

.order-stock-note {
  margin: -4px 0 0;
  color: #c0392b;
  font-size: 13px;
  font-weight: 800;
}

.product-option {
  font-size: 14px;
}

.product-price {
  color: var(--soil);
  font-size: 20px;
}

.product-description {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* 商品詳細プルタブ（折りたたみ） */
.product-detail-toggle {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.product-detail-toggle > summary {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  list-style: none;
  color: var(--river);
  font-weight: 800;
}

.product-detail-toggle > summary::-webkit-details-marker {
  display: none;
}

.product-detail-toggle > summary::after {
  content: "＋";
  margin-left: auto;
  font-weight: 900;
}

.product-detail-toggle[open] > summary::after {
  content: "－";
}

.product-detail-toggle .product-description {
  margin-top: 10px;
}

.quantity-label {
  max-width: 140px;
}

.add-cart {
  width: fit-content;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.add-cart:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  background: #f7f4ec;
  border-radius: 6px;
}

.cart-row span {
  line-height: 1.5;
}

.cart-remove {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--soil);
  padding: 6px 8px;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 980px) {
  .order-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .order-products {
    grid-template-columns: 1fr;
  }

  .order-product-card img {
    height: 210px;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-tab {
  width: 100%;
  min-height: 82px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf6;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  line-height: 1.45;
  white-space: pre-line;
  text-align: left;
  cursor: pointer;
}

.product-tab.is-active {
  border-color: var(--soil);
  background: #fff2e8;
  color: var(--soil);
  box-shadow: inset 0 0 0 1px var(--soil);
}
/* Welfare page sections */
.welfare-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.welfare-work-grid article,
.senior-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.welfare-work-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.welfare-work-grid div {
  padding: 18px;
}

.welfare-work-grid h3,
.senior-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 20px;
}

.welfare-work-grid p,
.senior-grid p,
.welfare-note {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.welfare-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.welfare-timeline div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.welfare-timeline time {
  color: var(--cedar);
  font-weight: 800;
}

.welfare-timeline span {
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.welfare-note {
  margin-top: 14px;
}

.senior-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.senior-grid article {
  padding: 20px;
}

.welfare-contact-panel {
  margin-bottom: 92px;
}

@media (max-width: 980px) {
  .welfare-work-grid,
  .senior-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .welfare-work-grid,
  .senior-grid,
  .welfare-timeline {
    grid-template-columns: 1fr;
  }

  .welfare-work-grid img {
    height: 210px;
  }
}
.welfare-card-slider {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background: #eef2e8;
}

.welfare-card-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: welfareSlide 50s infinite;
  animation-delay: calc(var(--slide-index) * 5s);
}

@keyframes welfareSlide {
  0%, 8% { opacity: 1; }
  12%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .welfare-card-slider img {
    animation: none;
  }

  .welfare-card-slider img:first-child {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .welfare-card-slider {
    height: 210px;
  }
}
/* Welfare timeline two-column ordering */
.welfare-intro {
  grid-template-columns: minmax(0, 920px);
  align-items: start;
}

.welfare-timeline .timeline-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.welfare-timeline .timeline-item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

@media (max-width: 640px) {
  .welfare-intro {
    grid-template-columns: 1fr;
  }
}
/* Clickable welfare farm slider */
.welfare-card-slider {
  cursor: pointer;
}

.welfare-card-slider img {
  animation: none;
  opacity: 0;
  transition: opacity .25s ease;
}

.welfare-card-slider img.is-active {
  opacity: 1;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(18, 24, 20, .2);
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 18px;
  background: var(--cedar);
}
/* Page-specific inquiry forms */
.page-inquiry-section {
  border-top: 1px solid var(--line);
}

.page-inquiry-form {
  max-width: 920px;
}

.page-inquiry-form .form-actions {
  align-items: center;
}

.page-inquiry-status {
  margin: 0;
  color: var(--muted);
}
.order-image-hero img {
  object-fit: contain;
  opacity: 1;
  background: #16120d;
}

.order-image-hero::after {
  background: linear-gradient(90deg, rgba(14, 23, 18, .50), rgba(14, 23, 18, .08));
}


.order-category-section {
  padding-top: 64px;
}

.order-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.order-category-card {
  overflow: hidden;
  display: grid;
  min-height: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 36px rgba(26, 34, 28, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}

.order-category-card:hover,
.order-category-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(26, 34, 28, .14);
  outline: none;
}

.order-category-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: #eee8dc;
}

.order-category-card[href*="furu-po"] img {
  object-fit: contain;
  padding: 34px;
  background: #fffdf8;
}

.order-category-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.order-category-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.order-category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.order-category-card strong {
  align-self: end;
  color: var(--river);
  font-size: 15px;
  font-weight: 900;
}

@media (max-width: 980px) {
  .order-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .order-category-grid {
    grid-template-columns: 1fr;
  }
}

.catalog-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-link-card article {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.catalog-link-card:hover article,
.catalog-link-card:focus-visible article {
  transform: translateY(-3px);
  border-color: rgba(154, 84, 47, .38);
  box-shadow: 0 18px 38px rgba(31, 48, 42, .12);
}

.catalog-card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  background: #f4f1eb;
}

.catalog-grid .furupo-card .catalog-card-image {
  object-fit: contain;
  padding: 24px;
  background: #fff;
}

.glamping-feature-photo {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: 6px;
}

.tour-overview-grid article {
  position: relative;
  min-height: 260px;
  padding-right: 62px;
}

.tour-card-icon {
  position: absolute;
  top: 13px;
  right: 12px;
  width: 54px;
  height: 48px;
  background-image: url("assets/tour-card-icon-sprite.png");
  background-repeat: no-repeat;
  background-size: 1024px 490px;
}

.tour-icon-early {
  background-position: -190px -178px;
}

.tour-icon-lunch {
  background-position: -443px -178px;
}

.tour-icon-family {
  background-position: -699px -178px;
}

.tour-icon-pet {
  background-position: -951px -178px;
}

.tour-overview-grid h3 {
  padding-right: 6px;
}

.accessories-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-detail-section {
  padding-top: 120px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 42px;
  align-items: start;
}

.product-detail-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(31, 48, 42, .12);
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: auto;
}

.product-detail-content h1 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.12;
}

.product-catch {
  color: var(--soil);
  font-size: 22px;
  font-weight: 700;
}

.product-detail-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.product-detail-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-detail-list dt {
  color: var(--muted);
  font-weight: 700;
}

.product-detail-list dd {
  margin: 0;
  font-weight: 700;
}

.product-copy-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.product-copy-box h2 {
  margin-top: 0;
  font-size: 22px;
}

@media (max-width: 900px) {
  .accessories-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-section {
    padding-top: 88px;
  }
}

.badge-gallery-section {
  padding-top: 0;
}

.badge-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.badge-gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(31, 48, 42, .08);
}

.badge-gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.badge-gallery-grid figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.firewood-support-section {
  background: linear-gradient(180deg, #f8f5ee 0%, #f3efe7 100%);
}

.firewood-support-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.firewood-support-lead,
.firewood-support-panel,
.firewood-process-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 36px rgba(31, 48, 42, .08);
}

.firewood-support-lead {
  padding: clamp(28px, 4vw, 48px);
}

.firewood-support-lead h2 {
  margin: 8px 0 20px;
  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.18;
}

.firewood-support-lead p,
.firewood-process-card p {
  color: var(--muted);
  line-height: 1.95;
}

.firewood-support-panel {
  padding: 28px;
}

.firewood-support-panel h3,
.firewood-process-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.firewood-support-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.firewood-support-panel li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border-radius: 6px;
  background: #f6f1e8;
  font-weight: 700;
}

.firewood-support-panel li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cedar);
}

.firewood-process-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .45fr);
  gap: 26px;
  margin-top: 24px;
  padding: clamp(24px, 3vw, 36px);
}

.firewood-process-points {
  display: grid;
  align-content: center;
  gap: 12px;
}

.firewood-process-points button {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(71, 100, 77, .2);
  border-radius: 999px;
  background: #e8f0e1;
  color: var(--river);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease;
}

.firewood-process-points button:hover,
.firewood-process-points button:focus-visible {
  background: #dbe8d3;
  transform: translateY(-1px);
  outline: none;
}

.firewood-process-points button strong,
.firewood-process-points button small {
  display: block;
}

.firewood-process-points button strong {
  font-weight: 800;
}

.firewood-process-points button small {
  margin-top: 2px;
  color: var(--moss);
}

@media (max-width: 900px) {
  .firewood-support-layout,
  .firewood-process-card {
    grid-template-columns: 1fr;
  }

  .firewood-process-points button {
    text-align: left;
  }
}

/* Cafe page redesign */
.cafe-page {
  background: #fffaf5;
  color: #2a1710;
}

.cafe-site-header {
  border-bottom: 4px solid #8e271d;
}

.cafe-hero {
  min-height: 620px;
  background: #4a2018;
}

.cafe-hero img {
  object-position: center 48%;
  filter: saturate(1.08) contrast(1.04) brightness(.82);
}

.cafe-hero::after {
  background: linear-gradient(90deg, rgba(60, 22, 15, .88), rgba(93, 36, 24, .48) 48%, rgba(255, 250, 245, .1));
}

.cafe-hero-copy h1 {
  max-width: 780px;
  color: #fffdf8;
}

.cafe-hero-copy p:not(.eyebrow) {
  max-width: 720px;
  color: #fff3e6;
}

.cafe-page .eyebrow {
  color: #b3442d;
}

.cafe-hero .eyebrow {
  color: #f8c06b;
}

.cafe-page .button.primary,
.cafe-page .nav-cta {
  background: #9f3524;
  border-color: #9f3524;
  color: #fffaf5;
}

.cafe-page .button.light {
  background: rgba(255, 250, 245, .92);
  color: #6e2b1e;
  border-color: rgba(255, 250, 245, .92);
}

.cafe-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr);
  gap: 24px;
  background: #fffaf5;
}

.cafe-intro-card,
.cafe-info-card,
.cafe-rental-grid article,
.cafe-menu-card,
.cafe-menu-list,
.cafe-story-copy {
  background: #fffdf9;
  border: 1px solid #ead8ca;
  box-shadow: 0 18px 48px rgba(74, 32, 24, .08);
}

.cafe-intro-card,
.cafe-info-card,
.cafe-story-copy {
  border-radius: 8px;
  padding: 32px;
}

.cafe-intro-card h2,
.cafe-heading h2,
.cafe-story-copy h2,
.cafe-menu-list h2 {
  color: #3b1d14;
}

.cafe-intro-card p,
.cafe-story-copy p,
.cafe-heading p,
.cafe-menu-card p,
.cafe-menu-list dt,
.cafe-rental-grid p {
  color: #65483d;
}

.cafe-info-card {
  display: grid;
  gap: 14px;
  align-content: center;
  background: #8e271d;
  color: #fff8ee;
}

.cafe-info-card strong {
  font-size: 1.35rem;
}

.cafe-feature-section,
.cafe-rental-section,
.cafe-inquiry-section {
  background: #fff3e8;
}

.cafe-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.cafe-menu-card {
  overflow: hidden;
  border-radius: 8px;
}

.cafe-menu-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.cafe-menu-card div {
  padding: 24px;
}

.cafe-menu-card span {
  color: #9f3524;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cafe-menu-card h3 {
  color: #2a1710;
  margin: 8px 0 10px;
}

.cafe-menu-card strong,
.cafe-rental-grid strong {
  display: inline-block;
  color: #9f3524;
  margin-top: 8px;
  font-size: 1.1rem;
}

.cafe-menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  border-radius: 8px;
  padding: 34px;
}

.cafe-menu-list dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.cafe-menu-list dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ead8ca;
  padding-bottom: 12px;
}

.cafe-menu-list dd {
  color: #9f3524;
  font-weight: 800;
  white-space: nowrap;
}

.cafe-story-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  background: #fffaf5;
}

.cafe-story-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cafe-story-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(74, 32, 24, .13);
}

.cafe-story-media img:nth-child(2) {
  margin-top: 44px;
}

.cafe-rental-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.cafe-rental-grid article {
  border-radius: 8px;
  padding: 26px;
}

.cafe-rental-grid h3 {
  color: #3b1d14;
}

.cafe-inquiry-section .order-form {
  background: #fffdf9;
  border-color: #ead8ca;
}

@media (max-width: 900px) {
  .cafe-hero {
    min-height: 560px;
  }
  .cafe-intro-section,
  .cafe-feature-grid,
  .cafe-menu-list,
  .cafe-story-section,
  .cafe-rental-grid {
    grid-template-columns: 1fr;
  }
  .cafe-story-media img,
  .cafe-menu-card img {
    height: 260px;
  }
  .cafe-story-media img:nth-child(2) {
    margin-top: 0;
  }
}

/* Cafe balanced layout refinement */
.cafe-page-balanced {
  background: linear-gradient(180deg, #fffaf5 0%, #fff4ea 42%, #fffaf5 100%);
}

.cafe-page-balanced .section {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.cafe-page-balanced .cafe-hero {
  min-height: clamp(500px, 58vw, 660px);
}

.cafe-page-balanced .cafe-hero::after {
  background: linear-gradient(90deg, rgba(48, 20, 14, .86) 0%, rgba(92, 37, 24, .56) 46%, rgba(255, 250, 245, .04) 100%);
}

.cafe-page-balanced .cafe-hero img {
  object-position: center 54%;
  filter: saturate(1.1) contrast(1.02) brightness(.9);
}

.cafe-page-balanced .cafe-hero-copy {
  max-width: 760px;
}

.cafe-page-balanced .cafe-hero-copy h1 {
  font-size: clamp(2.5rem, 7.2vw, 2.5rem);
  line-height: .98;
  margin-bottom: 24px;
}

.cafe-page-balanced .cafe-hero-copy p:not(.eyebrow) {
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 2;
}

.cafe-overview-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: stretch;
}

.cafe-overview-copy,
.cafe-shop-card {
  border-radius: 10px;
  padding: clamp(28px, 4vw, 46px);
  background: #fffdf9;
  border: 1px solid #ead8ca;
  box-shadow: 0 22px 58px rgba(74, 32, 24, .08);
}

.cafe-overview-copy h2 {
  color: #381b13;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.18;
  margin: 10px 0 20px;
}

.cafe-overview-copy p {
  color: #60463b;
  line-height: 2.05;
  max-width: 760px;
}

.cafe-shop-card {
  display: grid;
  align-content: center;
  gap: 20px;
  background: #8d2f24;
  color: #fffaf5;
}

.cafe-shop-card strong {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.cafe-shop-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.cafe-shop-card dl div {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.cafe-shop-card dt {
  font-weight: 800;
  color: #ffd9b8;
}

.cafe-shop-card dd {
  margin: 0;
  line-height: 1.7;
}

.cafe-heading.compact {
  max-width: 780px;
  margin-bottom: 32px;
}

.cafe-heading.compact h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.cafe-signature-section {
  background: #fff3e8;
}

.cafe-signature-grid {
  display: grid;
  grid-template-columns: 1.16fr .92fr .92fr;
  gap: clamp(18px, 2.3vw, 28px);
  align-items: stretch;
}

.cafe-signature-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  border-radius: 10px;
  background: #fffdf9;
  border: 1px solid #ead8ca;
  box-shadow: 0 20px 50px rgba(74, 32, 24, .1);
}

.cafe-signature-card.main {
  grid-row: span 2;
  grid-template-rows: minmax(360px, 1fr) auto;
}

.cafe-signature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cafe-signature-card div {
  padding: clamp(22px, 3vw, 34px);
}

.cafe-signature-card span {
  color: #a33825;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.cafe-signature-card h3 {
  color: #2a1710;
  font-size: clamp(1.28rem, 2vw, 1.75rem);
  margin: 8px 0 12px;
}

.cafe-signature-card p {
  color: #684b40;
  line-height: 1.85;
}

.cafe-signature-card strong {
  display: inline-block;
  color: #a33825;
  font-size: 1.18rem;
  margin-top: 10px;
}

.cafe-menu-list.balanced {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(26px, 4vw, 46px);
  border-radius: 10px;
}

.cafe-menu-list.balanced h3 {
  color: #32170f;
  font-size: 1.55rem;
  margin: 4px 0 18px;
}

.cafe-menu-list.balanced dl div {
  align-items: baseline;
}

.cafe-story-section.balanced {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(26px, 5vw, 64px);
}

.cafe-story-section.balanced .cafe-story-media {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.cafe-story-section.balanced .cafe-story-media img {
  height: clamp(300px, 35vw, 440px);
  border-radius: 10px;
}

.cafe-story-section.balanced .cafe-story-copy {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 10px;
}

.cafe-rental-grid.balanced {
  gap: clamp(18px, 2.4vw, 28px);
}

.cafe-rental-grid.balanced article {
  border-radius: 10px;
  min-height: 210px;
}

.cafe-inquiry-section .order-form {
  max-width: 1040px;
  margin-inline: auto;
  background: #fffdf9;
  border-color: #ead8ca;
  box-shadow: 0 20px 50px rgba(74, 32, 24, .08);
}

@media (max-width: 980px) {
  .cafe-overview-section,
  .cafe-signature-grid,
  .cafe-menu-list.balanced,
  .cafe-story-section.balanced,
  .cafe-rental-grid.balanced {
    grid-template-columns: 1fr;
  }

  .cafe-signature-card,
  .cafe-signature-card.main {
    grid-template-rows: 260px auto;
    grid-row: auto;
  }

  .cafe-shop-card dl div {
    grid-template-columns: 58px 1fr;
  }
}

@media (max-width: 640px) {
  .cafe-page-balanced .cafe-hero-copy h1 {
    font-size: clamp(2.5rem, 15vw, 2.5rem);
  }

  .cafe-overview-copy,
  .cafe-shop-card,
  .cafe-menu-list.balanced,
  .cafe-story-section.balanced .cafe-story-copy {
    padding: 24px;
  }

  .cafe-story-section.balanced .cafe-story-media {
    grid-template-columns: 1fr;
  }

  .cafe-menu-list.balanced dl div {
    grid-template-columns: 1fr auto;
  }
}

/* Header hamburger menu */
.nav.nav-menu-ready {
  position: relative;
  width: auto;
  overflow: visible;
  padding: 0;
}

.nav-menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--cedar);
  border-radius: 6px;
  background: var(--cedar);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.nav-menu-toggle:hover,
.nav-menu-toggle:focus-visible {
  background: #7e3e22;
  outline: 3px solid rgba(158, 82, 45, .2);
  outline-offset: 2px;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 40;
  display: grid;
  width: min(320px, calc(100vw - 28px));
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, .98);
  box-shadow: 0 18px 46px rgba(26, 34, 28, .2);
  white-space: normal;
}

.nav-menu-panel[hidden] {
  display: none;
}

.nav-menu-panel a,
.nav-menu-panel .nav-cta {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 5px;
  color: var(--ink);
}

.nav-menu-panel a:hover,
.nav-menu-panel a:focus-visible {
  background: #eee8dc;
  outline: none;
}

.nav-menu-panel .nav-cta {
  margin-top: 4px;
  background: var(--cedar);
  color: var(--white);
}

.nav-menu-member {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.nav.nav-menu-ready > .nav-menu-persistent {
  width: auto;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .nav.nav-menu-ready {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .nav.nav-menu-ready {
    gap: 10px;
  }

  .nav-menu-member {
    width: auto;
    font-size: 13px;
  }

  .nav-menu-panel {
    position: fixed;
    top: 76px;
    right: 14px;
  }
}

/* Cafe compact hero without photo */
.cafe-page-balanced .cafe-hero-compact {
  min-height: clamp(300px, 32vw, 400px);
  display: grid;
  align-items: center;
  padding-top: clamp(92px, 10vw, 126px);
  padding-bottom: clamp(38px, 5vw, 62px);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 250, 245, .26), transparent 28%),
    linear-gradient(135deg, #7a241b 0%, #9f3524 48%, #fff1e4 48%, #fffaf5 100%);
}

.cafe-page-balanced .cafe-hero-compact img {
  display: none;
}

.cafe-page-balanced .cafe-hero-compact::after {
  background: linear-gradient(90deg, rgba(52, 20, 13, .2), rgba(52, 20, 13, 0));
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy {
  position: relative;
  max-width: 900px;
  padding-right: 5vw;
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy h1 {
  font-size: clamp(2.5rem, 5.4vw, 2.5rem);
  line-height: 1.06;
  margin-bottom: 18px;
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  line-height: 1.9;
}

@media (max-width: 640px) {
  .cafe-page-balanced .cafe-hero-compact {
    min-height: 280px;
    padding-top: 92px;
    padding-bottom: 38px;
    background: linear-gradient(160deg, #7a241b 0%, #9f3524 62%, #fff1e4 62%, #fffaf5 100%);
  }
}
/* Cafe editorial polish */
.cafe-page-balanced {
  background:
    linear-gradient(180deg, #fffaf5 0%, #fff1e5 36%, #fffaf5 72%),
    repeating-linear-gradient(90deg, rgba(126, 52, 34, .035) 0 1px, transparent 1px 34px);
}

.cafe-page-balanced .section {
  position: relative;
}

.cafe-page-balanced .section-heading.compact {
  max-width: 760px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.cafe-page-balanced .section-heading.compact h2,
.cafe-page-balanced .cafe-overview-copy h2,
.cafe-page-balanced .cafe-story-copy h2 {
  letter-spacing: .03em;
}

.cafe-page-balanced .section-heading.compact .eyebrow,
.cafe-page-balanced .cafe-overview-copy .eyebrow,
.cafe-page-balanced .cafe-story-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9f3524;
}

.cafe-page-balanced .section-heading.compact .eyebrow::after,
.cafe-page-balanced .cafe-overview-copy .eyebrow::after,
.cafe-page-balanced .cafe-story-copy .eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: #d6a06d;
}

.cafe-page-balanced .cafe-hero-compact {
  min-height: clamp(280px, 29vw, 360px);
  border-bottom: 1px solid rgba(159, 53, 36, .18);
  box-shadow: inset 0 -1px 0 rgba(255, 250, 245, .8);
  background:
    linear-gradient(120deg, rgba(122, 36, 27, .98) 0%, rgba(159, 53, 36, .96) 47%, rgba(255, 241, 228, .98) 47%, #fffaf5 100%),
    repeating-linear-gradient(135deg, rgba(255, 250, 245, .08) 0 1px, transparent 1px 18px);
}

.cafe-page-balanced .cafe-hero-compact::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 245, .22);
  pointer-events: none;
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy h1 {
  text-shadow: 0 10px 28px rgba(45, 16, 10, .22);
}

.cafe-page-balanced .cafe-hero-compact .hero-actions {
  gap: 12px;
  margin-top: 24px;
}

.cafe-page-balanced .button,
.cafe-page-balanced .nav-cta {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
}

.cafe-page-balanced .button.primary,
.cafe-page-balanced .nav-cta {
  box-shadow: 0 12px 24px rgba(126, 43, 27, .18);
}

.cafe-page-balanced .button.primary:hover,
.cafe-page-balanced .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(126, 43, 27, .24);
}

.cafe-page-balanced .cafe-overview-copy,
.cafe-page-balanced .cafe-shop-card,
.cafe-page-balanced .cafe-signature-card,
.cafe-page-balanced .cafe-menu-list.balanced,
.cafe-page-balanced .cafe-story-section.balanced .cafe-story-copy,
.cafe-page-balanced .cafe-rental-grid.balanced article,
.cafe-page-balanced .cafe-inquiry-section .order-form {
  border-color: rgba(159, 53, 36, .16);
  background: rgba(255, 253, 249, .92);
  box-shadow: 0 20px 52px rgba(74, 32, 24, .09);
}

.cafe-page-balanced .cafe-overview-copy,
.cafe-page-balanced .cafe-shop-card,
.cafe-page-balanced .cafe-menu-list.balanced,
.cafe-page-balanced .cafe-story-section.balanced .cafe-story-copy {
  border-radius: 14px;
}

.cafe-page-balanced .cafe-shop-card {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, .96), rgba(255, 244, 234, .96));
}

.cafe-page-balanced .cafe-shop-card strong {
  color: #7a241b;
}

.cafe-page-balanced .cafe-shop-card dl div {
  border-bottom-color: rgba(159, 53, 36, .13);
}

.cafe-page-balanced .cafe-signature-card {
  border-radius: 14px;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}

.cafe-page-balanced .cafe-signature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 64px rgba(74, 32, 24, .14);
}

.cafe-page-balanced .cafe-signature-card img,
.cafe-page-balanced .cafe-story-section.balanced .cafe-story-media img {
  filter: saturate(1.05) contrast(1.02) brightness(1.02);
}

.cafe-page-balanced .cafe-signature-card span {
  color: #9f3524;
  background: #fff1e4;
  border-radius: 999px;
  padding: 5px 10px;
}

.cafe-page-balanced .cafe-signature-card strong,
.cafe-page-balanced .cafe-menu-list.balanced dd,
.cafe-page-balanced .cafe-rental-grid.balanced strong {
  color: #9f3524;
}

.cafe-page-balanced .cafe-menu-list.balanced dl div {
  background: #fffaf5;
  border-radius: 10px;
  padding: 12px 14px;
}

.cafe-page-balanced .cafe-story-section.balanced .cafe-story-media {
  gap: 14px;
}

.cafe-page-balanced .cafe-story-section.balanced .cafe-story-media img {
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(74, 32, 24, .12);
}

.cafe-page-balanced .cafe-rental-grid.balanced article {
  border-radius: 14px;
  padding: clamp(22px, 3vw, 32px);
}

.cafe-page-balanced .cafe-rental-grid.balanced article h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 14px;
  background: #d6a06d;
}

@media (max-width: 640px) {
  .cafe-page-balanced .cafe-hero-compact {
    min-height: 260px;
  }

  .cafe-page-balanced .cafe-hero-compact::before {
    inset: 12px;
  }
}
/* Cafe readability fixes */
.cafe-page-balanced .cafe-shop-card dt {
  color: #8e271d;
  opacity: 1;
}

.cafe-page-balanced .cafe-shop-card dd {
  color: #3b1d14;
  opacity: 1;
  font-weight: 700;
}

.cafe-page-balanced .cafe-shop-card dl div {
  border-bottom-color: rgba(159, 53, 36, .24);
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 4.4vw, 2.5rem);
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy p:not(.eyebrow) {
  font-weight: 800;
  color: #fffdf8;
}
/* Cafe about section */
.cafe-page-balanced .cafe-about-copy h2 {
  font-size: clamp(2.3rem, 4.6vw, 2.5rem);
  line-height: 1.12;
}

.cafe-about-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: about-number;
}

.cafe-about-list li {
  position: relative;
  counter-increment: about-number;
  padding: 16px 18px 16px 58px;
  border: 1px solid rgba(159, 53, 36, .14);
  border-radius: 12px;
  background: #fffaf5;
  color: #4d2c22;
  line-height: 1.85;
}

.cafe-about-list li::before {
  content: counter(about-number);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #9f3524;
  color: #fffaf5;
  font-weight: 800;
  font-size: .9rem;
}
/* Cafe menu image size alignment */
.cafe-page-balanced .cafe-signature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cafe-page-balanced .cafe-signature-card,
.cafe-page-balanced .cafe-signature-card.main {
  grid-row: auto;
  grid-template-rows: 220px 1fr;
}

.cafe-page-balanced .cafe-signature-card img {
  height: 220px;
  object-fit: cover;
  object-position: center center;
}

.cafe-page-balanced .cafe-signature-card.main img {
  height: 220px;
}

@media (max-width: 980px) {
  .cafe-page-balanced .cafe-signature-grid {
    grid-template-columns: 1fr;
  }

  .cafe-page-balanced .cafe-signature-card,
  .cafe-page-balanced .cafe-signature-card.main {
    grid-template-rows: 240px auto;
  }

  .cafe-page-balanced .cafe-signature-card img,
  .cafe-page-balanced .cafe-signature-card.main img {
    height: 240px;
  }
}
/* Cafe hero headline balance */
.cafe-page-balanced .cafe-hero-compact {
  background:
    linear-gradient(120deg, rgba(122, 36, 27, .98) 0%, rgba(159, 53, 36, .96) 58%, rgba(255, 241, 228, .98) 58%, #fffaf5 100%),
    repeating-linear-gradient(135deg, rgba(255, 250, 245, .08) 0 1px, transparent 1px 18px);
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy {
  padding-left: clamp(52px, 7vw, 120px);
  max-width: 980px;
}

.cafe-page-balanced .cafe-hero-compact .cafe-hero-copy h1 {
  font-size: clamp(2.5rem, 5.1vw, 2.5rem);
  line-height: 1.08;
}

.cafe-page-balanced .cafe-hero-compact .hero-subline {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  line-height: 1.9;
  letter-spacing: .02em;
}

@media (max-width: 640px) {
  .cafe-page-balanced .cafe-hero-compact {
    background: linear-gradient(160deg, #7a241b 0%, #9f3524 72%, #fff1e4 72%, #fffaf5 100%);
  }

  .cafe-page-balanced .cafe-hero-compact .hero-subline {
    font-size: 1rem;
  }
}

/* kg雋ｩ螢ｲ・夂岼螳峨・豕ｨ險・*/
.kg-preset-note {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* maica.tokuhiroeco.com inspired cafe page */
.maica-cafe-page {
  background: #fff8f3;
  color: #32140d;
}

.maica-cafe-page .site-header {
  border-bottom-color: rgba(142, 39, 29, .16);
}

.maica-main-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: end;
  max-width: 1180px;
  margin: 28px auto 0;
  padding: clamp(42px, 6vw, 76px) clamp(24px, 5vw, 58px) 38px;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(122, 36, 27, .98), rgba(159, 53, 36, .96)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .07) 0 1px, transparent 1px 18px);
  color: #fffaf5;
  box-shadow: 0 24px 70px rgba(82, 35, 24, .18);
}

.maica-main-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 7vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.maica-hero-copy {
  max-width: 780px;
  margin: 0 0 26px;
  font-size: clamp(1.04rem, 1.7vw, 1.45rem);
  font-weight: 800;
  line-height: 1.8;
}

.maica-hero-info {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 245, 236, .54);
  border-radius: 8px;
  background: rgba(255, 248, 243, .96);
  color: #3d1a10;
  font-size: .95rem;
  line-height: 1.7;
}

.maica-hero-info strong {
  color: #8e271d;
  font-size: 1.15rem;
}

.maica-lead {
  max-width: 980px;
  font-size: 1.08rem;
  line-height: 2;
}

.maica-topic-grid,
.maica-info-grid,
.maica-long-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.maica-topic-card,
.maica-info-card,
.maica-note-box,
.maica-event-list,
.maica-long-story > div {
  border: 1px solid rgba(159, 53, 36, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 18px 42px rgba(82, 35, 24, .07);
}

.maica-topic-card {
  display: grid;
  gap: 8px;
  min-height: 180px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.maica-topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(82, 35, 24, .12);
}

.maica-topic-card span {
  color: #a24932;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.maica-topic-card strong {
  color: #2b120c;
  font-size: 1.24rem;
}

.maica-topic-card p,
.maica-long-story p,
.maica-event-list li {
  color: #63483f;
  line-height: 1.85;
}

.maica-menu-list {
  margin-bottom: 18px;
}

.maica-note-box {
  display: grid;
  gap: 6px;
  padding: 20px 24px;
  color: #5b4138;
}

.maica-note-box p {
  margin: 0;
}

.maica-info-grid {
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1.12fr);
  align-items: stretch;
}

.maica-info-card {
  padding: 28px;
}

.maica-info-card h3 {
  color: #8e271d;
  font-size: 1.55rem;
}

.maica-info-photo {
  overflow: hidden;
  min-height: 340px;
  border-radius: 8px;
}

.maica-info-photo img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.maica-map {
  margin-top: 18px;
  border-radius: 8px;
  overflow: hidden;
}

.maica-map iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.maica-long-story {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.maica-long-story > div {
  padding: 30px;
}

.maica-long-story h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
}

.maica-event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 24px 28px;
  list-style: none;
}

.maica-event-list li {
  position: relative;
  padding-left: 18px;
}

.maica-event-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a24932;
}

.maica-cafe-page .cafe-inquiry-section .order-form {
  border-color: rgba(159, 53, 36, .18);
  background: #fffdf8;
}


.maica-instagram-panel {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
}

.maica-instagram-copy,
.maica-instagram-embed {
  border: 1px solid rgba(159, 53, 36, .16);
  border-radius: 8px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 18px 42px rgba(82, 35, 24, .07);
}

.maica-instagram-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 34px;
}

.maica-instagram-copy span {
  color: #a24932;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.maica-instagram-copy h3 {
  margin: 0;
  color: #2b120c;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.maica-instagram-copy p {
  margin: 0;
  color: #714f41;
  line-height: 1.9;
}

.maica-instagram-embed {
  min-height: 360px;
  padding: 18px;
  overflow: hidden;
}

.maica-instagram-embed .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
}

.maica-topic-subgrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .maica-instagram-panel,
  .maica-topic-subgrid {
    grid-template-columns: 1fr;
  }

  .maica-instagram-copy {
    padding: 26px;
  }
}
@media (max-width: 920px) {
  .maica-main-hero,
  .maica-info-grid,
  .maica-long-story,
  .maica-event-list {
    grid-template-columns: 1fr;
  }

  .maica-topic-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .maica-main-hero {
    margin-top: 12px;
    padding: 34px 20px 26px;
  }

  .maica-main-hero h1 {
    font-size: 2.5rem;
  }

  .maica-hero-info,
  .maica-topic-card,
  .maica-info-card,
  .maica-long-story > div {
    padding: 20px;
  }
}

/* Cafe page: maica reference layout */
.maica-side-layout {
  background: #fff8f3;
}

.maica-side-layout .maica-side-nav {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  width: 252px;
  padding: 90px 34px 28px;
  background:
    radial-gradient(circle, rgba(95, 54, 37, .17) 1px, transparent 1.25px) 0 0 / 7px 7px,
    #f3dfd2;
  color: #1f1712;
  text-align: center;
}

.maica-side-logo {
  display: inline-grid;
  justify-self: center;
  color: #0f0e0d;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.maica-side-logo::before {
  content: "";
  display: block;
  width: 124px;
  height: 34px;
  margin: 0 auto -2px;
  border-top: 7px solid currentColor;
  border-left: 7px solid currentColor;
  transform: skewY(-19deg) rotate(13deg);
  transform-origin: center;
}

.maica-side-nav nav {
  align-self: end;
  display: grid;
  gap: 16px;
  justify-items: center;
  font-weight: 800;
  letter-spacing: .04em;
}

.maica-side-nav nav a {
  color: #1f1712;
  text-decoration: none;
}

.maica-side-nav nav span {
  font-size: .95rem;
  line-height: 1;
}

.maica-side-instagram {
  justify-self: center;
  margin-bottom: 40px;
  color: #1f1712;
  font-size: 1.8rem;
  font-weight: 900;
  text-decoration: none;
}

.maica-side-shop {
  display: grid;
  gap: 4px;
  margin-bottom: 90px;
  color: #1f1712;
  font-size: .82rem;
  line-height: 1.45;
  text-align: left;
}

.maica-side-shop strong {
  margin-bottom: 2px;
  font-size: .95rem;
}

.maica-side-shop a {
  justify-self: center;
  margin-top: 8px;
  padding: 7px 22px;
  border-radius: 999px;
  background: #1f1712;
  color: #fffdf8;
  font-size: .72rem;
  font-weight: 900;
  text-decoration: none;
}

.maica-side-layout main,
.maica-side-layout .footer {
  margin-left: 252px;
}

.maica-side-layout .maica-main-hero.maica-photo-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: url("assets/maica-hero-shelf.png") center center / cover no-repeat;
  box-shadow: none;
  overflow: hidden;
}

.maica-side-layout .maica-main-hero.maica-photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(68, 30, 18, .25), rgba(68, 30, 18, .08) 45%, rgba(68, 30, 18, .18));
}

.maica-side-layout .maica-photo-hero .maica-hero-inner {
  position: relative;
  align-self: end;
  max-width: 900px;
  padding: 0 clamp(34px, 6vw, 80px) clamp(54px, 8vw, 96px);
}

.maica-side-layout .maica-photo-hero .eyebrow {
  display: none;
}

.maica-side-layout .maica-photo-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(1.55rem, 2.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.45;
  text-shadow: 0 3px 16px rgba(67, 24, 12, .58);
}

.maica-side-layout .maica-photo-hero .maica-hero-copy {
  margin: 0;
  color: #fff;
  font-size: clamp(.98rem, 1.2vw, 1.18rem);
  font-weight: 900;
  line-height: 1.8;
  text-shadow: 0 2px 12px rgba(67, 24, 12, .62);
}

@media (max-width: 980px) {
  .maica-side-layout .maica-side-nav {
    position: static;
    width: auto;
    min-height: 0;
    grid-template-rows: auto auto;
    padding: 22px 18px;
  }

  .maica-side-layout .maica-side-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    margin-top: 18px;
  }

  .maica-side-instagram,
  .maica-side-shop {
    display: none;
  }

  .maica-side-layout main,
  .maica-side-layout .footer {
    margin-left: 0;
  }

  .maica-side-layout .maica-main-hero.maica-photo-hero {
    min-height: 72vh;
  }
}

@media (max-width: 640px) {
  .maica-side-layout .maica-main-hero.maica-photo-hero {
    min-height: 620px;
    background-position: center center;
  }

  .maica-side-layout .maica-photo-hero .maica-hero-inner {
    padding: 0 22px 42px;
  }

  .maica-side-layout .maica-photo-hero h1 {
    font-size: 1.45rem;
    line-height: 1.42;
  }
}
/* Cafe page restored shared header */
.maica-side-layout .maica-top-header {
  position: sticky;
  top: 0;
  z-index: 45;
  border-bottom-color: rgba(142, 39, 29, .18);
}

.maica-side-layout .maica-top-header .nav {
  gap: 16px;
}

.maica-side-layout .maica-top-header .nav-menu-toggle {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 8px;
  background: #9b4f30;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
}

.maica-side-layout .maica-side-nav {
  inset: 71px auto 0 0;
}

.maica-side-layout .maica-main-hero.maica-photo-hero {
  min-height: calc(100vh - 71px);
}

.welfare-topicks {
  padding-top: clamp(42px, 6vw, 72px);
}

.welfare-instagram-panel {
  border-color: rgba(74, 112, 87, .18);
  background: linear-gradient(135deg, rgba(239, 247, 232, .94), rgba(255, 253, 248, .96));
}

/* welfare Instagram: フィードを全幅で大きく＋下の余白をなくす */
.welfare-instagram-panel {
  grid-template-columns: 1fr;   /* 1カラム：コピー上・フィード下（全幅で大きく） */
  gap: 16px;
  margin-bottom: 0;             /* パネル下の余白をなくす */
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.welfare-instagram-panel .maica-instagram-embed {
  min-height: 0;                /* 余分な最小高さを解除 */
  padding: 0;                   /* 内側の余白（下の空き）をなくす */
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.welfare-instagram-panel .maica-instagram-embed .lightwidget-widget {
  display: block;               /* iframe下の隙間を消す */
  margin: 0;
}
/* フィード下〜次セクションの余白も詰める */
.welfare-topicks {
  padding-bottom: clamp(20px, 3vw, 32px);
}

/* cafe Instagram: welfareと同じ全幅レイアウト（後続の max-width:720px より詳細度を高くして全幅を勝たせる） */
.maica-topics .maica-instagram-panel.cafe-instagram-feed {
  grid-template-columns: 1fr;   /* 1カラム：全幅で大きく */
  max-width: none;              /* 720px制限を解除して全幅に */
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 80px);  /* フィード下の余白を多く */
}
/* 上の余白を少なく（写真を上へ）＋見出しとフィードを詰める */
.section.maica-topics {
  padding-top: clamp(24px, 3.5vw, 44px);
}
.maica-topics .section-heading {
  margin-bottom: 14px;
}
.cafe-instagram-feed .maica-instagram-embed {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.cafe-instagram-feed .maica-instagram-embed .lightwidget-widget {
  display: block;
  margin: 0;
}

@media (max-width: 980px) {
  .maica-side-layout .maica-side-nav {
    inset: auto;
  }

  .maica-side-layout .maica-main-hero.maica-photo-hero {
    min-height: 72vh;
  }
}

@media (max-width: 720px) {
  .maica-side-layout .maica-top-header {
    align-items: flex-start;
  }

  .maica-side-layout .maica-top-header .nav {
    gap: 8px;
  }

  .maica-side-layout .maica-top-header .nav a:not(.nav-cta):not(.nav-menu-toggle) {
    display: none;
  }
}
/* maica logo image and Instagram text fit */
.maica-side-logo {
  width: 178px;
  max-width: 100%;
}

.maica-side-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.maica-side-logo::before {
  display: none;
}

.maica-instagram-copy h3 {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  font-size: clamp(1.55rem, 2.2vw, 2.4rem);
}

.maica-instagram-copy .button {
  justify-self: stretch;
  text-align: center;
}
/* Cafe topics compact Instagram link card */
.maica-topics .maica-instagram-panel {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.maica-topics .maica-instagram-copy {
  min-width: 0;
}

.maica-topics .maica-instagram-copy h3 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

/* Cafe TOPICS photo card */
.maica-topics .maica-instagram-panel {
  grid-template-columns: minmax(280px, 1.15fr) minmax(260px, .85fr);
  max-width: none;
}

.maica-instagram-photo {
  display: block;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(159, 53, 36, .16);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(82, 35, 24, .07);
}

.maica-instagram-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  transition: transform .3s ease;
}

.maica-instagram-photo:hover img,
.maica-instagram-photo:focus-visible img {
  transform: scale(1.025);
}

@media (max-width: 920px) {
  .maica-topics .maica-instagram-panel {
    grid-template-columns: 1fr;
  }
}

/* Fine tune maica side logo position */
.maica-side-layout .maica-side-logo {
  margin-top: -18px;
}

/* Cafe TOPICS Instagram-style gallery */
.maica-instagram-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.maica-instagram-gallery a {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  background: #f3dfd2;
  box-shadow: 0 12px 30px rgba(82, 35, 24, .08);
}

.maica-instagram-gallery a::after {
  content: "";
  position: absolute;
  inset: 10px 10px auto auto;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 3px;
  box-shadow: 4px -4px 0 -1px rgba(255, 255, 255, .75);
  z-index: 3;
}


.maica-instagram-gallery a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(43, 18, 12, 0) 42%, rgba(43, 18, 12, .72) 100%);
  pointer-events: none;
}

.maica-topic-caption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 11px;
  z-index: 2;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .36);
}
.maica-instagram-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.maica-instagram-gallery a:hover img,
.maica-instagram-gallery a:focus-visible img {
  filter: brightness(.92);
  transform: scale(1.04);
}

.maica-instagram-action {
  display: flex;
  justify-content: center;
  margin: 8px 0 26px;
}

@media (max-width: 920px) {
  .maica-instagram-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .maica-instagram-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }
}

/* Cafe TOPICS official Instagram link */
.maica-instagram-official {
  display: grid;
  gap: 14px;
  max-width: 780px;
  padding: 34px;
  margin: 0 0 28px;
  border: 1px solid rgba(159, 53, 36, .18);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .98), rgba(250, 235, 222, .9));
  box-shadow: 0 18px 42px rgba(82, 35, 24, .08);
}

.maica-instagram-official h3 {
  margin: 0;
  color: #2b120c;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.maica-instagram-official p:not(.eyebrow) {
  margin: 0;
  color: #714f41;
  line-height: 1.85;
}

.maica-instagram-official .button {
  justify-self: start;
}

@media (max-width: 560px) {
  .maica-instagram-official {
    padding: 24px;
  }
}

.maica-instagram-fallback {
  display: inline-flex;
  justify-content: center;
  margin: 14px auto 0;
  width: min(100%, 320px);
}

.maica-instagram-embed a {
  pointer-events: auto;
}

.maica-instagram-link-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  min-height: 320px;
  padding: 28px;
  text-align: center;
}

.maica-instagram-link-card strong {
  color: #2b120c;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.maica-instagram-link-card p {
  margin: 0;
  color: #714f41;
  line-height: 1.8;
}

.maica-instagram-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #a24932;
  color: #fffaf2;
  font-size: 1.8rem;
  font-weight: 900;
}

/* トップ ヒーロー下のキーワード文 */
.hero-keywords {
  margin: 14px 0 0;
  max-width: 640px;
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .45);
}

/* 注文フォーム：ピン取得ガイド（折りたたみ） */
.pin-guide {
  margin: -4px 0 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(31, 42, 36, .03);
}
.pin-guide > summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  list-style: none;
}
.pin-guide > summary::-webkit-details-marker { display: none; }
.pin-guide > summary::before { content: "▶ "; font-size: .8em; color: var(--muted); }
.pin-guide[open] > summary::before { content: "▼ "; }
.pin-guide-body {
  margin-top: 8px;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ink);
}
.pin-guide-body p { margin: 6px 0 2px; }
.pin-guide-body ol { margin: 2px 0 10px; padding-left: 1.4em; }
.pin-guide-body li { margin: 2px 0; }
.pin-guide-img {
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: 8px 0 12px;
  border: 1px solid var(--line, #e5ddd2);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(82, 35, 24, .1);
}