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

:root {
  --c-primary: #2E4A3E;
  --c-primary-dark: #1e3228;
  --c-secondary: #8B6F47;
  --c-accent: #C4965A;
  --c-bg: #FAF6F0;
  --c-bg-alt: #F2EDE4;
  --c-white: #FFFFFF;
  --c-text: #2A2A2A;
  --c-text-sub: #666666;
  --c-border: #DACCB4;
  --c-green-light: #E5F0E8;
  --c-ume: #9B3A4A;
  --c-ume-bg: #FBF0F2;
  --c-ume-border: #D4828F;
  --c-lemon: #7A6200;
  --c-lemon-bg: #FFFDE8;
  --c-lemon-border: #C8AA00;

  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --font-heading: 'Shippori Mincho', 'Noto Serif JP', serif;

  --r: 4px;
}
.sec-title,
.hero-title-sub,
.kd-card h3,
.feature-card__title,
.pickup-v2__title,
.season-v2__title,
.cta-bar__title,
.ftr-name,
.page-hero-title,
.menu-cat-title {
  font-family: var(--font-heading);
}



.nav a,
.btn,
.hdr-tel,
.mobile-menu__link,
.tel-btn,
.break-badge,
.badge-spring,
.badge-summer,
.season-v2__badge {
  font-family: var(--font-sans);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-serif);
  background: var(--c-bg);
  color: var(--c-text);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1040px;
  margin-inline: auto;
  padding-inline: 20px;
}

.container--compact {
  max-width: 720px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ヘッダー */
.hdr {
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.hdr-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0;
  min-height: 60px;
  gap: 10px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  width: 165px;
  height: auto;
  background: transparent;
}

@media (max-width: 768px) {
  .logo-img {
    width: 128px;
  }
}

.nav {
  display: none;
}

.nav a {
  font-size: .76rem;
  color: var(--c-text);
  letter-spacing: .05em;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.nav a.on,
.nav a:hover {
  color: var(--c-primary);
  border-bottom-color: var(--c-secondary);
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hdr-tel {
  display: none;
  align-items: center;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-primary);
  padding: 6px 10px;
  border-radius: var(--r);
  white-space: nowrap;
}

.hamburger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  background: #fff;
  padding-inline: 10px;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--c-primary);
  transition: .2s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--c-border);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__inner {
  padding-top: 8px;
  padding-bottom: 16px;
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  font-size: .86rem;
}

.mobile-menu__link.on {
  color: var(--c-primary);
}

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 13px 20px;
  min-height: 48px;
  font-family: var(--font-sans);
  font-size: .90rem;
  font-weight: 700;
  letter-spacing: .04em;
  border: 2px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: .2s;
  white-space: nowrap;
}

.btn-p {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.btn-p:hover {
  background: var(--c-primary-dark);
}

.btn-ow {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-w {
  background: #fff;
  color: var(--c-primary);
  border-color: #fff;
}

.btn-o {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.btn-lg {
  padding: 14px 28px;
  font-size: .96rem;
}

.btn-full {
  width: 100%;
}

.btn-sm {
  font-size: .80rem;
  padding: 9px 16px;
  min-height: auto;
}

/* ヒーロー */
.hero {
  min-height: 430px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  background-color: #F4EEE2;
  background-image: url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
}

/* 和紙背景を少し明るくなじませる */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .92) 0%,
      rgba(244, 238, 226, .82) 6%,
      rgba(244, 238, 226, .58) 18%,
      rgba(244, 238, 226, .34) 36%,
      rgba(244, 238, 226, .16) 62%,
      rgba(244, 238, 226, .04) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* 余計な線は出さない */
.hero::after {
  content: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 430px;
  display: flex;
  align-items: center;
}

.hero-c {
  width: min(46%, 480px);
  color: var(--c-text);
  text-align: center;
  padding: 56px 0 58px;
}

.hero-ey {
  font-size: .68rem;
  letter-spacing: .24em;
  color: var(--c-text);
  opacity: .74;
  margin: 0 0 16px;
}

.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 7vw, 3.2rem);
  letter-spacing: .18em;
  line-height: 1.3;
  margin: 0 0 20px;
}

.hero-h1--logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-title-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 400;
  letter-spacing: .18em;
  line-height: 1.4;
  color: var(--c-primary);
  opacity: .92;
}

.hero-title-logo {
  display: block;
  width: min(360px, 86vw);
  height: auto;
  background: transparent;
}

.hero-lead {
  font-size: .84rem;
  letter-spacing: .08em;
  color: var(--c-text);
  opacity: .86;
  line-height: 2.05;
  margin: 0 0 30px;
}

/* 右側の鴨せいろ写真 */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 0;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(.94) contrast(.96) brightness(.98);
}

/* 写真の左端を和紙になじませる */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, 1) 0%,
      rgba(244, 238, 226, .72) 14%,
      rgba(244, 238, 226, .24) 32%,
      rgba(244, 238, 226, 0) 58%
    );
  z-index: 1;
  pointer-events: none;
}

/* 写真全体に少しだけ和紙色をかぶせる */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(244, 238, 226, .12);
  z-index: 2;
  pointer-events: none;
}

/* ヒーロー内CTA */
.hero .cta-g {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  max-width: 100%;
  margin: 0 auto;
}

.hero .btn {
  min-width: 160px;
  min-height: 50px;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 2px 8px rgba(46, 74, 62, .08);
}

/* 電話する：主CTA */
.hero .btn-p {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.hero .btn-p:hover {
  background: #6F5635;
  border-color: #6F5635;
  color: #fff;
}

/* 地図を見る：白背景＋緑枠 */
.hero .btn-ow {
  background: rgba(255, 255, 255, .68);
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.hero .btn-ow:hover {
  background: var(--c-primary);
  color: #fff;
}

/* お品書きを見る：白背景＋緑枠 */
.hero .btn-w {
  background: rgba(255, 255, 255, .84);
  color: var(--c-primary);
  border-color: var(--c-primary);
}

.hero .btn-w:hover {
  background: var(--c-primary);
  color: #fff;
}

/* タブレット以下 */
@media (max-width: 1023px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-c {
    width: 52%;
    padding: 52px 0;
  }

  .hero-photo {
    width: 54%;
  }

  .hero-title-logo {
    width: min(320px, 82vw);
  }

  .hero .btn {
    min-width: 142px;
    padding-inline: 18px;
  }
}

/* スマホ */
@media (max-width: 767px) {
  .hero {
    display: block;
    padding: 0;
    text-align: center;
  }

  .hero::before {
    background: rgba(250, 246, 240, .62);
  }

  .hero-inner {
    display: block;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-c {
    width: 100%;
    padding: 0;
  }

  .hero-ey {
    font-size: .62rem;
    letter-spacing: .18em;
    margin-bottom: 12px;
  }

  .hero-h1--logo {
    gap: 12px;
  }

  .hero-title-sub {
    font-size: 1.05rem;
    letter-spacing: .16em;
  }

  .hero-title-logo {
    width: min(310px, 86vw);
  }

  .hero-lead {
    font-size: .78rem;
    line-height: 1.9;
    letter-spacing: .04em;
    margin: 0 0 24px;
  }

  .hero-lead br {
    display: none;
  }

  /* スマホではファーストビューの鴨せいろ写真を非表示 */
  .hero-photo {
    display: none;
  }

  .hero .cta-g {
    flex-direction: column;
    gap: 10px;
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .hero .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 13px 18px;
  }
}


/* 営業時間 */
.hours-bar {
  background: #fff;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
}

.hours-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.hours-info {
  padding: 4px 0;
}

.hours-head {
  font-size: .70rem;
  font-weight: 700;
  color: var(--c-text-sub);
  letter-spacing: .16em;
  margin: 0 0 10px;
}

.hours-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.hours-time {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: .04em;
  line-height: 1.3;
}

.break-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFF7E6;
  border: 1px solid #C4965A;
  color: #7A5500;
  font-size: .68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: .04em;
}

.hours-closed {
  font-size: .82rem;
  color: var(--c-text-sub);
  line-height: 1.85;
  margin: 0;
}

.hours-closed strong {
  color: var(--c-text);
}

.hours-closed small {
  font-size: .74rem;
  color: var(--c-text-sub);
}

/* 臨時休業案内 */
.kyuugyo-box {
  background: linear-gradient(135deg, #FFF8E8 0%, #FBF0D9 100%);
  border-left: 4px solid var(--c-secondary);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px;
  color: var(--c-text);
  line-height: 1.8;
  box-shadow: 0 3px 14px rgba(139, 111, 71, .10);
}

.kyuugyo-box strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--c-primary);
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.kyuugyo-box span {
  display: block;
  font-size: .82rem;
  color: var(--c-text);
}

.kyuugyo-box a {
  display: inline-block;
  margin-top: 6px;
  color: var(--c-primary);
  font-weight: 700;
  letter-spacing: .06em;
}

/* 営業時間：スマホ表示調整 */
@media (max-width: 767px) {
  .hours-bar {
    padding: 24px 0;
  }

  .hours-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
  }

  .hours-info {
    width: 100%;
    min-width: 0;
    padding: 0;
  }

  .hours-head {
    writing-mode: horizontal-tb;
    text-align: left;
    margin-bottom: 10px;
  }

  .hours-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hours-time {
    display: block;
    font-size: 1.45rem;
    line-height: 1.35;
    white-space: nowrap;
  }

  .break-badge {
    display: inline-flex;
    width: fit-content;
    font-size: .66rem;
  }

  .hours-closed {
    font-size: .80rem;
    line-height: 1.8;
  }

  .hours-closed strong {
    word-break: keep-all;
  }

  .kyuugyo-box {
    width: 100%;
    min-width: 0;
    padding: 15px 16px;
  }

  .kyuugyo-box strong {
    font-size: .94rem;
  }

  .kyuugyo-box span {
    font-size: .78rem;
  }
}

/* セクション */
.sec {
  padding: 52px 0;
}

.sec-alt {
  background: var(--c-bg-alt);
}

.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 4vw, 1.55rem);
  color: var(--c-primary);
  text-align: center;
  letter-spacing: .10em;
  margin: 0 0 5px;
}

.sec-sub {
  font-size: .76rem;
  color: var(--c-text-sub);
  text-align: center;
  margin: 0 0 8px;
}

.divider {
  width: 32px;
  height: 2px;
  background: var(--c-secondary);
  margin: 8px auto 30px;
}


/* こだわり */
.kd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.kd-card {
  background: #fff;
  border-top: 3px solid var(--c-secondary);
  border-radius: var(--r);
  padding: 22px 18px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
}

.kd-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kd-icon {
  font-size: 1.05rem;
  color: var(--c-secondary);
  margin: 0;
  line-height: 1;
  flex-shrink: 0;
}

.kd-title {
  font-family: var(--font-serif);
  font-size: .98rem;
  color: var(--c-primary);
  margin: 0;
  line-height: 1.4;
}

.kd-text {
  font-size: .80rem;
  color: var(--c-text-sub);
  line-height: 1.85;
  margin: 0;
}

@media (min-width: 768px) {
  .kd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* こだわりセクション */
.sec-kodawari {
  background-color: #E9F0E7;
  background-image:
    linear-gradient(
      rgba(232, 241, 232, .62),
      rgba(232, 241, 232, .62)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: no-repeat;
  background-size: 110% 100%, 110% auto;
  background-position: center center;
  border-top: 1px solid rgba(46, 74, 62, .10);
  border-bottom: 1px solid rgba(46, 74, 62, .10);
}

.sec-kodawari .sec-title {
  color: var(--c-primary);
}

.sec-kodawari .sec-sub {
  color: rgba(42, 42, 42, .66);
}

.sec-kodawari .kd-card {
  background: rgba(255, 255, 255, .88);
  border-top: 3px solid var(--c-secondary);
  box-shadow: 0 6px 18px rgba(46, 74, 62, .08);
}

.sec-kodawari .kd-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46, 74, 62, .12);
}

/* フィーチャーカード */
.feature-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
}

.feature-card__photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.feature-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.feature-card__photo-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(46, 74, 62, .85);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .10em;
  padding: 4px 10px;
  border-radius: 2px;
}

.feature-card__body {
  padding: 22px 26px 26px;
  text-align: center;
}

.feature-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--c-text);
  margin: 0 0 10px;
  letter-spacing: .08em;
}

.feature-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 10px;
}

.feature-card__desc {
  font-size: .86rem;
  color: var(--c-text-sub);
  line-height: 1.95;
  margin: 0 0 18px;
}

.feature-card--menu {
  max-width: 100%;
  margin-bottom: 34px;
}

.feature-card__body--menu {
  background: #fff;
  padding: 18px 20px;
  text-align: left;
}

.feature-card__title--menu {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.feature-card__price-inline {
  font-size: .80rem;
  font-weight: 700;
  color: var(--c-primary);
}

/* 季節限定 */
.season-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.season-grid--compact {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.season-card {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.season-card__photo {
  height: 150px;
  overflow: hidden;
  position: relative;
}

.season-card__photo-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
}

.season-card__photo-ph::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 10px 10px;
}

.ph-ume {
  background: linear-gradient(135deg, #5C2030 0%, #8B3A4A 50%, #6B2A38 100%);
  color: #FFE8EC;
}

.ph-lemon {
  background: linear-gradient(135deg, #5A4800 0%, #8B6E00 50%, #6A5500 100%);
  color: #FFFDE0;
}

.ph-name {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.ph-label {
  position: relative;
  z-index: 1;
  font-size: .60rem;
  letter-spacing: .18em;
  opacity: .78;
}

.season-card__body {
  padding: 14px 18px 18px;
  background: #fff;
}

.season-card__body--plain {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.season-card__body--ume {
  background: var(--c-ume-bg);
}

.season-card__body--lemon {
  background: var(--c-lemon-bg);
}

.season-card__name {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  color: var(--c-text);
  margin: 0 0 5px;
}

.season-card__desc {
  font-size: .78rem;
  color: var(--c-text-sub);
  line-height: 1.80;
  margin: 0;
}

.season-card__name--small {
  font-size: .90rem;
}

.season-card__desc--small {
  font-size: .74rem;
}

.badge-spring,
.badge-summer {
  display: inline-block;
  font-size: .58rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 7px;
  letter-spacing: .06em;
}

.badge-spring {
  background: var(--c-ume);
  color: #fff;
}

.badge-summer {
  background: var(--c-lemon);
  color: #fff;
}

.season-note {
  font-size: .76rem;
  color: var(--c-text-sub);
  margin: 12px 0 0;
  line-height: 1.75;
  text-align: center;
}

.season-note--menu {
  text-align: left;
}


/* アクセス */
.access-mini-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-embed {
  flex: 0 0 50%;
  height: 210px;
  background: var(--c-green-light);
  border-radius: var(--r);
  overflow: hidden;
}

.map-embed iframe,
.map-live iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.ac-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .86rem;
}

.ac-lbl {
  font-size: .64rem;
  font-weight: 700;
  color: var(--c-primary);
  background: var(--c-green-light);
  padding: 2px 7px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}

.ac-val {
  color: var(--c-text);
  line-height: 1.65;
}

.access-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.map-live {
  background: var(--c-green-light);
  height: 300px;
}

/* CTA */
.cta-bar {
  background: var(--c-primary);
  padding: 44px 20px;
  text-align: center;
}

.cta-bar__title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 4px;
  letter-spacing: .08em;
}

.cta-bar__sub {
  font-size: .76rem;
  color: rgba(255, 255, 255, .65);
  margin: 0 0 22px;
}

.cta-bar__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  margin: 0 auto;
}

.cta-bar__btns--triple {
  max-width: 360px;
}

/* フッター */
.ftr {
  background: var(--c-primary);
  color: rgba(255, 255, 255, .85);
  padding: 20px 15px 20px;
}

.ftr-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: .10em;
  margin: 0 0 13px;
}

.ftr-info {
  font-size: .76rem;
  line-height: 2.0;
  margin-bottom: 16px;
}

.ftr-info p,
.ftr-info small {
  margin: 0;
  display: block;
}

.ftr-info small {
  opacity: .65;
}

.ftr-notice {
  font-size: .74rem;
  background: rgba(255, 255, 255, .10);
  border-left: 3px solid rgba(255, 255, 255, .35);
  padding: 9px 13px;
  margin-bottom: 20px;
  line-height: 1.7;
  border-radius: 0 var(--r) var(--r) 0;
}

.ftr-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  margin-bottom: 18px;
}

.ftr-nav a {
  font-size: .74rem;
  color: rgba(255, 255, 255, .65);
}

.ftr-copy {
  font-size: .66rem;
  color: rgba(255, 255, 255, .40);
  text-align: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  margin: 0;
}
/* フッター：Instagram導線 */
.ftr-sns {
  margin: 0 0 18px;
}

.ftr-sns__card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  color: #fff;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .16) 0%,
      rgba(255, 255, 255, .08) 100%
    );
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .10);
  transition: .2s;
}

.ftr-sns__card:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .22) 0%,
      rgba(255, 255, 255, .12) 100%
    );
  border-color: rgba(255, 255, 255, .44);
}

.ftr-sns__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--c-primary);
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.ftr-sns__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ftr-sns__label {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
}

.ftr-sns__text {
  margin-top: 2px;
  color: rgba(255, 255, 255, .70);
  font-size: .72rem;
  line-height: 1.6;
}

.ftr-sns__arrow {
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .ftr-sns__card {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 13px 14px;
  }

  .ftr-sns__icon {
    width: 38px;
    height: 38px;
    font-size: .98rem;
  }

  .ftr-sns__label {
    font-size: .80rem;
  }

  .ftr-sns__text {
    font-size: .70rem;
  }
}
.ftr-sns__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, .92);
  border-radius: 50%;
  flex-shrink: 0;
}

.ftr-sns__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--c-primary);
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 内部ページ */
.page-hero {
  background: var(--c-primary);
  padding: 48px 20px;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: #fff;
  letter-spacing: .18em;
  margin: 0 0 5px;
}

.page-hero-en {
  font-size: .64rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .22em;
  margin: 0;
}

/* メニュー */
.menu-cat {
  margin-bottom: 38px;
}

.menu-cat-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.menu-cat-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--c-primary);
  letter-spacing: .10em;
  white-space: nowrap;
  margin: 0;
}

.menu-cat-rule {
  flex: 1;
  height: 1px;
  background: var(--c-border);
}

.nabe-tag {
  display: inline-flex;
  font-size: .60rem;
  font-weight: 700;
  color: #1A3A5C;
  background: #E8F0FF;
  border: 1px solid #A0BADD;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: .06em;
  white-space: nowrap;
}

.menu-list {
  border-top: 1px solid var(--c-border);
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 6px;
  border-bottom: 1px solid var(--c-border);
  gap: 14px;
}

.menu-item.rec {
  background: #FAFFF8;
}

.menu-item.s-ume {
  background: var(--c-ume-bg);
}

.menu-item.s-lemon {
  background: var(--c-lemon-bg);
}

.mi-name {
  font-size: .92rem;
  color: var(--c-text);
  letter-spacing: .02em;
  line-height: 1.5;
}

.mi-price {
  font-size: .90rem;
  font-weight: 700;
  color: var(--c-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.mi-price .yen {
  font-size: .72rem;
  font-weight: 400;
  color: var(--c-text-sub);
}

.badge-rec {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  color: #fff;
  background: var(--c-secondary);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: .04em;
}

.badge-sp {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  color: var(--c-ume);
  background: var(--c-ume-bg);
  border: 1px solid var(--c-ume-border);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: .04em;
}

.badge-su {
  display: inline-block;
  font-size: .55rem;
  font-weight: 700;
  color: var(--c-lemon);
  background: var(--c-lemon-bg);
  border: 1px solid var(--c-lemon-border);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 5px;
  vertical-align: middle;
  letter-spacing: .04em;
}

.season-inline {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .72rem;
  color: var(--c-text-sub);
  flex-wrap: wrap;
}

.menu-note {
  background: var(--c-bg-alt);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-top: 10px;
}

.menu-note p {
  font-size: .80rem;
  color: var(--c-text-sub);
  line-height: 1.85;
  margin: 0;
}

.yoyaku-note {
  background: #F0F6F0;
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: .80rem;
  color: var(--c-text);
  line-height: 1.75;
  margin-top: 12px;
}

.ippin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--c-border);
}

.ippin-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 6px;
  border-bottom: 1px solid var(--c-border);
  gap: 8px;
  font-size: .86rem;
}

.ippin-item:nth-child(even) {
  border-left: 1px solid var(--c-border);
}

.ippin-name {
  color: var(--c-text);
}

.ippin-price {
  font-size: .82rem;
  font-weight: 700;
  color: var(--c-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

/* テーブル・アクセス */
.info-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}

.info-tbl th,
.info-tbl td {
  padding: 11px 13px;
  border: 1px solid var(--c-border);
  font-size: .88rem;
  vertical-align: top;
  line-height: 1.75;
}

.info-tbl th {
  background: var(--c-green-light);
  color: var(--c-primary);
  font-weight: 700;
  width: 36%;
  text-align: left;
}

.info-tbl td {
  background: #fff;
  color: var(--c-text);
}

.info-tbl .note {
  display: block;
  font-size: .74rem;
  color: var(--c-text-sub);
  margin-top: 4px;
}

.ac-block {
  border-radius: var(--r);
  border: 1px solid var(--c-border);
  overflow: hidden;
  margin-bottom: 14px;
}

.ac-block-hdr {
  background: var(--c-green-light);
  color: var(--c-primary);
  font-weight: 700;
  font-size: .86rem;
  padding: 9px 14px;
  letter-spacing: .06em;
}

.ac-block-body {
  padding: 14px 16px;
  font-size: .88rem;
  line-height: 1.85;
  background: #fff;
}

/* 利用案内 */
.usage-list {
  border-top: 1px solid var(--c-border);
}

.usage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 4px;
  border-bottom: 1px solid var(--c-border);
}

.usage-arrow {
  color: var(--c-primary);
  font-size: .9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.usage-body {
  flex: 1;
}

.usage-lbl {
  font-size: .70rem;
  font-weight: 700;
  color: var(--c-primary);
  margin: 0 0 2px;
}

.usage-val {
  font-size: .88rem;
  color: var(--c-text);
  line-height: 1.7;
  margin: 0;
}

.usage-note {
  font-size: .72rem;
  color: var(--c-text-sub);
  margin: 3px 0 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .cta-g,
  .cta-bar__btns,
  .access-buttons {
    flex-direction: row;
    max-width: 100%;
    justify-content: center;
  }

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

  .feature-card {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .feature-card__photo {
    height: 100%;
    min-height: 280px;
  }

  .feature-card__body {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

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

  .access-mini-body {
    flex-direction: row;
  }

  .map-live {
    height: 380px;
  }
}

@media (min-width: 1024px) {
  .hdr-in {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
  }

  .logo {
    justify-self: start;
  }

  .nav {
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
  }

  .hdr-actions {
    justify-self: end;
  }

  .hdr-tel {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }
}


@media (max-width: 767px) {
  .menu-cat--season .mi-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .menu-cat--season .badge-sp,
  .menu-cat--season .badge-su,
  .menu-cat--season .badge-rec,
  .menu-cat--season .b-ume,
  .menu-cat--season .b-lem {
    display: inline-flex;
    margin-left: 0;
    white-space: nowrap;
  }
}

/* =========================================================
   TOP HOME FINAL:
   営業時間・アクセス背景 / おすすめ・季節限定メニュー整理版
========================================================= */

/* ---------------------------------------------------------
   営業時間・アクセス：おすすめ/季節限定と同じ生成り和紙背景
--------------------------------------------------------- */

.hours-bar,
.sec-access-home {
  background-color: #F4EEE2;
  background-image:
    linear-gradient(
      rgba(244, 238, 226, .66),
      rgba(244, 238, 226, .66)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: no-repeat;
  background-size: 110% 100%, 110% auto;
  background-position: center center;
}

/* 営業時間内の情報は白寄りの面で読みやすく残す */
.hours-panel {
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(218, 204, 180, .45);
  border-radius: 6px;
  padding: 22px 24px;
}

/* アクセス内の情報も白寄りの面で読みやすく残す */
.sec-access-home .access-mini-body {
  background: rgba(255, 255, 255, .55);
  border: 1px solid rgba(218, 204, 180, .45);
  border-radius: 6px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(46, 74, 62, .06);
}

/* ---------------------------------------------------------
   おすすめのお品書き / 季節限定メニュー：セクション全体
--------------------------------------------------------- */

.menu-duo-v2 {
  position: relative;
  overflow: hidden;
  background-color: #F4EEE2;
  background-image:
    linear-gradient(
      rgba(244, 238, 226, .66),
      rgba(244, 238, 226, .66)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: no-repeat;
  background-size: 110% 100%, 110% auto;
  background-position: center center;
  border-top: 1px solid rgba(218, 204, 180, .45);
  border-bottom: 1px solid rgba(218, 204, 180, .45);
}

.menu-duo-v2__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 20px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.menu-duo-v2__pane,
.menu-duo-v2__inner {
  min-width: 0;
}

.menu-duo-v2__pane {
  position: relative;
  padding: 0;
  background: transparent;
}

.menu-duo-v2__pane::before,
.menu-duo-v2__pane::after {
  content: none;
  display: none;
}

.menu-duo-v2__inner {
  max-width: none;
  margin: 0;
}

.menu-duo-v2 .sec-title {
  color: var(--c-primary);
  text-align: center;
}

.menu-duo-v2 .sec-sub {
  color: rgba(42, 42, 42, .68);
  text-align: center;
}

.menu-duo-v2 .divider {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* セクション下部CTA */
.menu-duo-v2__cta {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 34px;
  text-align: center;
}

.menu-duo-v2__cta .btn {
  width: 240px;
  max-width: 100%;
  min-height: 48px;
}

/* ---------------------------------------------------------
   鴨せいろカード
--------------------------------------------------------- */

.pickup-v2 {
  display: grid;
  grid-template-columns: 52% 48%;
  height: 315px;
  min-height: 0;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(214, 201, 179, .95);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(46, 74, 62, .08);
}

.pickup-v2__media {
  position: relative;
  height: 315px;
  min-height: 0;
  line-height: 0;
  overflow: hidden;
  background: #eee6da;
}

.pickup-v2__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.pickup-v2__media::after {
  content: none;
  display: none;
}

.pickup-v2__badge {
  position: absolute;
  top: 18px;
  left: -38px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 36px;
  font-size: .76rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #C79A33 0%, #B8871E 100%);
  border-radius: 2px;
  letter-spacing: .08em;
  transform: rotate(-45deg);
  box-shadow: 0 6px 14px rgba(139, 111, 71, .18);
}

.pickup-v2__body {
  min-height: 315px;
  padding: 28px 36px;
  background:
    linear-gradient(rgba(255,255,255,.92), rgba(255,255,255,.92)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pickup-v2__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: #222;
  letter-spacing: .08em;
}

.pickup-v2__price {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-primary);
}

.pickup-v2__desc {
  margin: 0;
  font-size: .9rem;
  line-height: 1.9;
  color: #4b4b4b;
}

/* ---------------------------------------------------------
   季節限定カード
--------------------------------------------------------- */

.season-v2__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.season-v2 {
  position: relative;
  display: grid;
  grid-template-rows: 238px 165px;
  height: 403px;
  min-height: 0;
  max-height: 403px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(214, 201, 179, .95);
  box-shadow: 0 10px 24px rgba(46, 74, 62, .08);
  background: transparent;
}

.season-v2--ume {
  --season-rgb: 250, 238, 241;
  --season-title: #A14B5A;
  --season-badge: #A14B5A;
}

.season-v2--lemon {
  --season-rgb: 255, 251, 225;
  --season-title: #8C6D00;
  --season-badge: #8C6D00;
}

/* 添付装飾画像をカード背景に使用 */
.season-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  pointer-events: none;
}

.season-v2--ume::before {
  background-image: url("../images/sakura_image.png");
}

.season-v2--lemon::before {
  background-image: url("../images/lemon_image.png");
}

.season-v2__body {
  position: relative;
  z-index: 2;
  height: 238px;
  min-height: 238px;
  padding: 22px 26px 16px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(var(--season-rgb), .34) 0%,
      rgba(var(--season-rgb), .24) 100%
    );
}

.season-v2__body::before,
.season-v2__body::after {
  content: none;
  display: none;
}

.season-v2__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: var(--season-badge);
}

.season-v2__title {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.4;
  color: var(--season-title);
}

.season-v2__price {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--c-primary);
}

.season-v2__desc {
  margin: 0;
  font-size: .80rem;
  line-height: 1.85;
  color: #4b4b4b;
}

.season-v2__note {
  margin: 8px 0 0;
  font-size: .68rem;
  line-height: 1.65;
  color: #666;
}

.season-v2__media {
  position: relative;
  z-index: 1;
  height: 165px;
  line-height: 0;
  overflow: hidden;
  background: rgb(var(--season-rgb));
}

.season-v2__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

/* グラデーション・和紙被せは使わない */
.season-v2__media::before,
.season-v2__media::after {
  content: none;
  display: none;
}

/* ---------------------------------------------------------
   商品名 + 価格 横並び
--------------------------------------------------------- */

.menu-item-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.menu-item-head .pickup-v2__title,
.menu-item-head .season-v2__title,
.menu-item-head .pickup-v2__price,
.menu-item-head .season-v2__price {
  margin: 0;
}

.menu-item-head .pickup-v2__title,
.menu-item-head .season-v2__title {
  line-height: 1.4;
}

.menu-item-head .pickup-v2__price,
.menu-item-head .season-v2__price {
  white-space: nowrap;
}

/* ---------------------------------------------------------
   レスポンシブ
--------------------------------------------------------- */

@media (max-width: 900px) {
  .menu-duo-v2__grid {
    display: block;
    padding: 42px 20px 18px;
  }

  .menu-duo-v2__pane {
    width: 100%;
  }

  .menu-duo-v2__pane + .menu-duo-v2__pane {
    margin-top: 42px;
  }

  .menu-duo-v2__inner {
    max-width: 430px;
    width: 100%;
    margin: 0 auto;
  }

  .pickup-v2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 430px;
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0 auto;
  }

  .pickup-v2__media {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .pickup-v2__media img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: center center;
  }

  .pickup-v2__body {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 26px 24px 28px;
    overflow: visible;
  }

  .pickup-v2__title {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  .pickup-v2__price {
    font-size: 1.05rem;
  }

  .pickup-v2__desc {
    font-size: .88rem;
    line-height: 1.9;
  }

  .season-v2__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 430px;
    margin: 0 auto;
  }

  .season-v2 {
    display: block;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .season-v2__body {
    height: auto;
    min-height: 0;
    padding: 24px 24px 18px;
    overflow: visible;
  }

  .season-v2__media {
    height: auto;
  }

  .season-v2__media img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }

  .menu-duo-v2__cta {
    padding: 0 20px 42px;
  }

  .menu-duo-v2__cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .menu-item-head {
    gap: 12px;
    margin-bottom: 12px;
  }

  .menu-item-head .pickup-v2__price,
  .menu-item-head .season-v2__price {
    font-size: 1rem;
  }
}

/* =========================================================
   営業時間：ファーストビューと同じ和紙感に寄せる
========================================================= */

.hours-bar {
  background-color: #F4EEE2;
  background-image:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .92) 0%,
      rgba(244, 238, 226, .82) 8%,
      rgba(244, 238, 226, .58) 22%,
      rgba(244, 238, 226, .34) 42%,
      rgba(244, 238, 226, .22) 70%,
      rgba(244, 238, 226, .18) 100%
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover, cover;
  background-position: center center, center center;
  border-top: 1px solid rgba(218, 204, 180, .38);
  border-bottom: 1px solid rgba(218, 204, 180, .45);
}

/* 営業時間の中身は読みやすさ優先で白い面を残す */
.hours-panel {
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(218, 204, 180, .42);
  border-radius: 6px;
  padding: 22px 24px;
  box-shadow: 0 6px 18px rgba(46, 74, 62, .05);
}

/* =========================================================
   ファーストビュー / 営業時間背景
   左右の色ムラを隠しつつ和紙感を強める
========================================================= */

.fv,
.hours-bar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* 左端を自然に隠す + 和紙感を強める */
.fv::before,
.hours-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    /* 左端の色違いを隠す */
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .98) 0%,
      rgba(244, 238, 226, .94) 5%,
      rgba(244, 238, 226, .78) 12%,
      rgba(244, 238, 226, .42) 22%,
      rgba(244, 238, 226, 0) 34%
    ),

    /* 和紙の繊維っぽさ */
    repeating-linear-gradient(
      27deg,
      rgba(120, 104, 76, .020) 0 1px,
      transparent 1px 24px
    ),
    repeating-linear-gradient(
      118deg,
      rgba(255, 255, 255, .080) 0 1px,
      transparent 1px 26px
    ),

    /* 和紙の粒感 */
    radial-gradient(
      circle at 14% 22%,
      rgba(255, 255, 255, .16) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 78% 64%,
      rgba(135, 117, 88, .035) 0 1px,
      transparent 1px 100%
    ),
    radial-gradient(
      circle at 36% 74%,
      rgba(255, 255, 255, .10) 0 1px,
      transparent 1px 100%
    ),

    /* 全体のふわっとした和紙感 */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .10) 0%,
      rgba(255, 255, 255, .03) 42%,
      rgba(255, 255, 255, 0) 100%
    );
}

/* 右端も自然に馴染ませる */
.fv::after,
.hours-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      270deg,
      rgba(244, 238, 226, .96) 0%,
      rgba(244, 238, 226, .90) 6%,
      rgba(244, 238, 226, .66) 14%,
      rgba(244, 238, 226, .28) 25%,
      rgba(244, 238, 226, 0) 38%
    );
}

/* 中身を前面に出す */
.fv > *,
.hours-bar > * {
  position: relative;
  z-index: 1;
}






/*-----------------------------------------お品書きページ----------------------------------------------------------------------*/
/* =========================================================
   お品書きページ：薄い和紙背景テスト
   - ページ背景に和紙
   - メニュー一覧にも薄く和紙を適用
   - 視認性確認用
========================================================= */

/* お品書きページ全体の背景 */
.sec-menu-page {
  background-color: #F4EEE2;
  background-image:
    linear-gradient(
      rgba(244, 238, 226, .72),
      rgba(244, 238, 226, .72)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: no-repeat;
  background-size: 110% 100%, 110% auto;
  background-position: center center;
  border-top: 1px solid rgba(218, 204, 180, .42);
}

/* カテゴリごとのまとまりを少し面として見せる */
.sec-menu-page .menu-cat {
  background:
    linear-gradient(
      rgba(255, 255, 255, .54),
      rgba(255, 255, 255, .54)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
  background-position: center center;
  border: 1px solid rgba(218, 204, 180, .45);
  border-radius: 6px;
  padding: 22px 22px 24px;
  box-shadow: 0 6px 18px rgba(46, 74, 62, .045);
}

/* カテゴリ見出しの線が背景に埋もれないよう調整 */
.sec-menu-page .menu-cat-rule {
  background: rgba(139, 111, 71, .34);
}

/* 通常メニュー一覧にも薄く和紙を適用 */
.sec-menu-page .menu-list {
  background:
    linear-gradient(
      rgba(255, 255, 255, .66),
      rgba(255, 255, 255, .66)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
  background-position: center center;
  border-top: 1px solid rgba(218, 204, 180, .70);
}

/* 各メニュー行は透明寄りにして、下の和紙を少し見せる */
.sec-menu-page .menu-item {
  background: rgba(255, 255, 255, .42);
  border-bottom: 1px solid rgba(218, 204, 180, .62);
}

/* おすすめ行は少しだけ緑味を残す */
.sec-menu-page .menu-item.rec {
  background:
    linear-gradient(
      rgba(246, 252, 244, .72),
      rgba(246, 252, 244, .72)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
}

/* 梅・レモン行は季節感を残しつつ和紙を重ねる */
.sec-menu-page .menu-item.s-ume {
  background:
    linear-gradient(
      rgba(251, 240, 242, .78),
      rgba(251, 240, 242, .78)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
}

.sec-menu-page .menu-item.s-lemon {
  background:
    linear-gradient(
      rgba(255, 253, 232, .78),
      rgba(255, 253, 232, .78)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
}

/* 一品メニューの2カラムにも和紙を適用 */
.sec-menu-page .ippin-grid {
  background:
    linear-gradient(
      rgba(255, 255, 255, .66),
      rgba(255, 255, 255, .66)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
  border-top: 1px solid rgba(218, 204, 180, .70);
}

.sec-menu-page .ippin-item {
  background: rgba(255, 255, 255, .42);
  border-bottom: 1px solid rgba(218, 204, 180, .62);
}

.sec-menu-page .ippin-item:nth-child(even) {
  border-left: 1px solid rgba(218, 204, 180, .62);
}

/* 補足欄も和紙に馴染ませる */
.sec-menu-page .menu-note,
.sec-menu-page .yoyaku-note {
  background:
    linear-gradient(
      rgba(255, 255, 255, .60),
      rgba(255, 255, 255, .60)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
  border: 1px solid rgba(218, 204, 180, .45);
  box-shadow: 0 4px 14px rgba(46, 74, 62, .035);
}

/* 文字の視認性は少し強めに保つ */
.sec-menu-page .mi-name,
.sec-menu-page .ippin-name,
.sec-menu-page .menu-note p,
.sec-menu-page .yoyaku-note {
  color: rgba(42, 42, 42, .92);
}

.sec-menu-page .mi-price,
.sec-menu-page .ippin-price {
  color: var(--c-primary);
}

/* スマホ時：余白を少し抑える */
@media (max-width: 767px) {
  .sec-menu-page .menu-cat {
    padding: 18px 16px 20px;
    border-radius: 5px;
  }

  .sec-menu-page .menu-item {
    padding: 11px 4px;
  }

  .sec-menu-page .ippin-item {
    padding: 10px 4px;
  }
}

.page-hero {
  background: var(--c-primary);
  padding: 34px 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-hero {
    padding: 28px 20px;
  }
}

/* こだわりページ */
.kodawari-page {
  background-color: #F7F1E7;
  background-image:
    linear-gradient(
      rgba(247, 241, 231, .84),
      rgba(247, 241, 231, .84)
    ),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: auto, 1200px auto;
  background-position: center top;
}

.kodawari-hero {
  padding: 34px 0 52px;
}

.kodawari-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 6px 22px rgba(46, 74, 62, .06);
}

.kodawari-hero__body {
  position: relative;
  padding: 54px 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(247, 241, 231, .92), rgba(247, 241, 231, .90)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: auto, 980px auto;
}

.kodawari-hero__body::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  bottom: 28px;
  width: 72px;
  opacity: .18;
  background:
    radial-gradient(circle at 30% 14%, rgba(139, 111, 71, .42) 0 1px, transparent 1px 16px),
    radial-gradient(circle at 56% 28%, rgba(139, 111, 71, .34) 0 1px, transparent 1px 20px),
    radial-gradient(circle at 48% 46%, rgba(139, 111, 71, .30) 0 1px, transparent 1px 18px),
    linear-gradient(rgba(139, 111, 71, .22), rgba(139, 111, 71, .22)) left 34px top 28px / 1px calc(100% - 56px) no-repeat;
  pointer-events: none;
}

.kodawari-hero__en,
.kodawari-block__lead {
  font-family: var(--font-sans);
}

.kodawari-hero__en {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--c-secondary);
}

.kodawari-hero__rule {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 2px;
  margin-bottom: 22px;
  background: var(--c-secondary);
}

.kodawari-hero__title {
  position: relative;
  z-index: 1;
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: .12em;
  color: var(--c-primary);
}

.kodawari-hero__catch {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: clamp(1.24rem, 2.4vw, 1.85rem);
  line-height: 1.9;
  letter-spacing: .08em;
  color: var(--c-text);
}

.kodawari-hero__text {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 32em;
  font-size: .92rem;
  line-height: 2;
  color: var(--c-text-sub);
}

.kodawari-hero__media {
  min-height: 420px;
}

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

.kodawari-section {
  padding: 0 0 54px;
}

.kodawari-section--first {
  padding-top: 8px;
}

.kodawari-section--last {
  padding-bottom: 70px;
}

.kodawari-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .98fr);
  gap: 28px;
  align-items: center;
}

.kodawari-block--reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
}

.kodawari-block__media {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(46, 74, 62, .08);
  background: #efe7da;
}

.kodawari-block__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
}

.kodawari-block__content,
.kodawari-material {
  padding: 28px 30px;
  background:
    linear-gradient(rgba(255, 255, 255, .62), rgba(255, 255, 255, .62)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: auto, 980px auto;
  border: 1px solid rgba(218, 204, 180, .56);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(46, 74, 62, .05);
}

.kodawari-block__content--wide {
  padding-right: 34px;
}

.kodawari-block__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 34px;
  padding: 0 10px;
  margin-bottom: 16px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .94rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.kodawari-block__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.6vw, 1.95rem);
  line-height: 1.5;
  letter-spacing: .08em;
  color: var(--c-primary);
}

.kodawari-block__lead {
  margin: 0 0 14px;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .06em;
  color: var(--c-secondary);
}

.kodawari-block__text,
.kodawari-material__text {
  margin: 0;
  font-size: .92rem;
  line-height: 2;
  color: var(--c-text);
}

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

.kodawari-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(46, 74, 62, .08);
}

.kodawari-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center center;
}

.kodawari-material {
  width: 100%;
}

/* =========================================================
   こだわりページ 03：牡丹そばポイントカード
========================================================= */

.kodawari-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 20px;
  margin-top: 32px;
}

.kodawari-points__item {
  min-height: 72px;
  padding: 18px 20px;
  border: 1px solid rgba(46, 74, 62, 0.35);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
  color: #244d3f;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kodawari-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.kodawari-cta .btn {
  min-width: 200px;
}

@media (max-width: 900px) {
  .kodawari-hero {
    padding: 20px 0 40px;
  }

  .kodawari-hero__inner,
  .kodawari-block,
  .kodawari-block--reverse {
    grid-template-columns: 1fr;
  }

  .kodawari-hero__body {
    order: 2;
    padding: 34px 24px 32px;
  }

  .kodawari-hero__body::before {
    left: 14px;
    top: 20px;
    bottom: 20px;
    width: 48px;
  }

  .kodawari-hero__title {
    margin-bottom: 18px;
    font-size: clamp(1.7rem, 8vw, 2.15rem);
  }

  .kodawari-hero__catch {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .kodawari-hero__text,
  .kodawari-block__text,
  .kodawari-material__text {
    font-size: .86rem;
    line-height: 1.95;
  }

  .kodawari-hero__media {
    order: 1;
    min-height: 260px;
  }

  .kodawari-section {
    padding-bottom: 38px;
  }

  .kodawari-block__content,
  .kodawari-material {
    padding: 22px 20px;
  }

  .kodawari-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kodawari-gallery__item img {
    aspect-ratio: 16 / 9;
  }

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

  .kodawari-points__item {
    min-height: 64px;
    font-size: .88rem;
  }

  .kodawari-cta {
    flex-direction: column;
  }

  .kodawari-cta .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 639px) {
  .kodawari-points {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   こだわりページ：緊急整理・上書き修正版
   ※ HTMLの .kodawari- 系に合わせる
========================================================= */

/* ページ全体 */
.kodawari-page {
  background-color: #f3eee3;
  background-image:
    linear-gradient(rgba(246, 240, 229, .78), rgba(246, 240, 229, .78)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: auto, 1100px auto;
  background-position: center top;
}

/* FV：左和紙 + 右写真 */
.kodawari-hero {
  padding: 0 0 58px;
}

.kodawari-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  width: min(1120px, calc(100% - 48px));
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
  background:
    linear-gradient(
      90deg,
      rgba(246, 240, 229, .98) 0%,
      rgba(246, 240, 229, .96) 34%,
      rgba(246, 240, 229, .70) 50%,
      rgba(246, 240, 229, 0) 64%
    );
  box-shadow: none;
}

.kodawari-hero__body {
  position: relative;
  z-index: 2;
  padding: 118px 58px 80px;
  background: transparent;
}

.kodawari-hero__body::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 72px;
  width: 150px;
  height: 360px;
  opacity: .14;
  background:
    linear-gradient(rgba(139, 111, 71, .22), rgba(139, 111, 71, .22)) left 42px top 0 / 1px 100% no-repeat;
  pointer-events: none;
}

.kodawari-hero__en {
  margin: 0 0 10px;
  color: #9a7a3a;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
}

.kodawari-hero__rule {
  width: 42px;
  height: 1px;
  margin: 0 0 34px;
  background: #9a7a3a;
}

.kodawari-hero__title {
  margin: 0 0 28px;
  color: var(--c-primary);
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.35;
  letter-spacing: .18em;
}

.kodawari-hero__catch {
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.6vw, 2.1rem);
  line-height: 1.9;
  letter-spacing: .12em;
}

.kodawari-hero__text {
  max-width: 420px;
  margin: 0;
  font-size: .88rem;
  line-height: 2.1;
  letter-spacing: .06em;
}

.kodawari-hero__media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.kodawari-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(246, 240, 229, .96) 0%,
      rgba(246, 240, 229, .70) 18%,
      rgba(246, 240, 229, .26) 38%,
      rgba(246, 240, 229, 0) 62%
    );
  pointer-events: none;
}

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

/* 共通：カード感を弱める */
.kodawari-section {
  padding: 0 0 48px;
}

.kodawari-section--first {
  padding-top: 18px;
}

.kodawari-section--last {
  padding-bottom: 72px;
}

.kodawari-block {
  display: grid;
  grid-template-columns: 52% 48%;
  gap: 30px;
  align-items: stretch;
}

.kodawari-block--reverse {
  grid-template-columns: 52% 48%;
}

.kodawari-block__media {
  overflow: hidden;
  border-radius: 3px;
  background: transparent;
  box-shadow: none;
}

.kodawari-block__media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 7.5;
  object-fit: cover;
  object-position: center center;
}

.kodawari-block__content,
.kodawari-material {
  padding: 34px 42px;
  background:
    linear-gradient(rgba(246, 240, 229, .82), rgba(246, 240, 229, .82)),
    url("../images/washi-hero-bg.png");
  background-size: auto, 1000px auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* 01 */
.kodawari-section--first .kodawari-block__content {
  background:
    linear-gradient(
      90deg,
      rgba(246, 240, 229, .92) 0%,
      rgba(246, 240, 229, .82) 68%,
      rgba(246, 240, 229, .58) 100%
    ),
    url("../images/washi-hero-bg.png");
  background-size: auto, 1000px auto;
}

/* 見出し */
.kodawari-block__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  padding: 0 10px;
  margin-bottom: 18px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.kodawari-block__title {
  margin: 0 0 16px;
  color: var(--c-primary);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.4;
  letter-spacing: .12em;
}

.kodawari-block__lead {
  margin: 0 0 18px;
  color: #8a7245;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: .08em;
}

.kodawari-block__text,
.kodawari-material__text {
  margin: 0;
  font-size: .9rem;
  line-height: 2;
  letter-spacing: .05em;
}

/* 02下の3枚画像 */
.kodawari-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.kodawari-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: none;
}

.kodawari-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 5.2;
  object-fit: cover;
  object-position: center center;
}

/* 03 */
.kodawari-material {
  padding: 38px 48px 44px;
}

.kodawari-material__text {
  max-width: 980px;
}

.kodawari-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.kodawari-points__item {
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(46, 74, 62, .38);
  border-radius: 2px;
  background: rgba(255, 255, 255, .18);
  color: var(--c-primary);
  font-family: var(--font-serif);
  font-size: .9rem;
  letter-spacing: .08em;
  box-shadow: none;
}

/* 04：鴨せいろ */
.kodawari-duck {
  display: grid;
  grid-template-columns: 50% 50%;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  align-items: stretch;
}

.kodawari-duck__media {
  overflow: hidden;
  background: transparent;
}

.kodawari-duck__media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
}

.kodawari-duck__content {
  padding: 34px 42px 30px;
  background:
    linear-gradient(
      90deg,
      rgba(246, 240, 229, .88) 0%,
      rgba(246, 240, 229, .78) 70%,
      rgba(246, 240, 229, .58) 100%
    ),
    url("../images/washi-hero-bg.png");
  background-size: auto, 1000px auto;
  border: none;
  box-shadow: none;
}

.kodawari-duck__points {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.kodawari-duck__point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0;
  background: transparent;
  border: none;
}

.kodawari-duck__point span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
}

.kodawari-duck__point p {
  margin: 0;
  font-size: .86rem;
  line-height: 1.8;
}

.kodawari-duck__closing {
  margin-top: 18px;
}

/* 04のボタンはHTMLから消す前提だが、残っていても非表示 */
.kodawari-cta {
  display: none;
}

.kodawari-final-message {
  width: min(1120px, calc(100% - 48px));
  margin: 30px auto 0;
  color: var(--c-primary);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 2;
  text-align: center;
  letter-spacing: .10em;
}



/* スマホ */
@media (max-width: 900px) {
  .kodawari-hero__inner,
  .kodawari-duck,
  .kodawari-block,
  .kodawari-block--reverse {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 680px);
  }

  .kodawari-hero__body {
    padding: 44px 26px 34px;
  }

  .kodawari-hero__media {
    min-height: 320px;
  }

  .kodawari-block__content,
  .kodawari-material,
  .kodawari-duck__content {
    padding: 28px 22px;
  }

  .kodawari-block__media img,
  .kodawari-duck__media img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .kodawari-gallery {
    grid-template-columns: 1fr;
  }

  .kodawari-gallery__item img {
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 560px) {
  .kodawari-points {
    grid-template-columns: 1fr;
  }

  .kodawari-hero__title {
    font-size: 2rem;
  }

  .kodawari-hero__catch {
    font-size: 1.25rem;
  }
}

/* =========================================================
   こだわりページ：表示崩れ修正版
   - フッター白塗り修正
   - FV高さ調整
   - 左装飾復活
   - 左右の帯状ムラ対策
========================================================= */

/* まずページ背景の帯状ムラを消す */
.kodawari-page {
  background-color: #f4eee2;
  background-image:
    linear-gradient(rgba(244, 238, 226, .76), rgba(244, 238, 226, .76)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: cover, cover;
  background-position: center center;
  overflow-x: hidden;
}

/* 各セクションの左右にも同じ背景を広げて、帯状の差を出さない */
.kodawari-hero,
.kodawari-section {
  position: relative;
  background-color: transparent;
  overflow: hidden;
}

/* セクション左右の色ムラを和紙色で自然に隠す */
.kodawari-hero::before,
.kodawari-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .95) 0%,
      rgba(244, 238, 226, .78) 5%,
      rgba(244, 238, 226, 0) 15%,
      rgba(244, 238, 226, 0) 85%,
      rgba(244, 238, 226, .78) 95%,
      rgba(244, 238, 226, .95) 100%
    );
}

.kodawari-hero > *,
.kodawari-section > * {
  position: relative;
  z-index: 1;
}


/* =========================================================
   ファーストビュー調整
========================================================= */

.kodawari-hero {
  padding: 0 0 42px;
}

/* FVが長すぎるので高さを圧縮 */
.kodawari-hero__inner {
  width: min(1120px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 47% 53%;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
  box-shadow: none;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .98) 0%,
      rgba(244, 238, 226, .96) 35%,
      rgba(244, 238, 226, .68) 50%,
      rgba(244, 238, 226, 0) 65%
    );
}

/* 左側テキスト */
.kodawari-hero__body {
  position: relative;
  z-index: 2;
  padding: 76px 56px 58px;
  background: transparent;
  justify-content: center;
}

/* プレビューにあった植物っぽい薄い装飾を復活 */
.kodawari-hero__body::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 74px;
  width: 185px;
  height: 310px;
  opacity: .16;
  pointer-events: none;
  background:
    radial-gradient(circle at 38% 10%, rgba(139, 111, 71, .45) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 22%, rgba(139, 111, 71, .35) 0 2px, transparent 3px),
    radial-gradient(circle at 35% 34%, rgba(139, 111, 71, .32) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 44%, rgba(139, 111, 71, .30) 0 2px, transparent 3px),
    linear-gradient(115deg, transparent 0 47%, rgba(139, 111, 71, .28) 48% 49%, transparent 50%),
    linear-gradient(72deg, transparent 0 47%, rgba(139, 111, 71, .22) 48% 49%, transparent 50%),
    linear-gradient(rgba(139, 111, 71, .25), rgba(139, 111, 71, .25)) left 62px top 18px / 1px 250px no-repeat;
}

/* 文字を前面に */
.kodawari-hero__body > * {
  position: relative;
  z-index: 1;
}

.kodawari-hero__en {
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: .28em;
}

.kodawari-hero__rule {
  width: 42px;
  height: 1px;
  margin: 0 0 28px;
}

.kodawari-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.35;
  letter-spacing: .16em;
}

.kodawari-hero__catch {
  margin: 0 0 22px;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.85;
  letter-spacing: .10em;
}

.kodawari-hero__text {
  max-width: 410px;
  font-size: .86rem;
  line-height: 2;
}

/* 右側写真 */
.kodawari-hero__media {
  position: relative;
  min-height: 430px;
  overflow: hidden;
}

.kodawari-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .95) 0%,
      rgba(244, 238, 226, .72) 18%,
      rgba(244, 238, 226, .28) 38%,
      rgba(244, 238, 226, 0) 62%
    );
}

.kodawari-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* 縦に長く見えすぎるのを軽減 */
  object-position: center 52%;
}


/* =========================================================
   各コンテンツ面の背景も帯が出ないよう統一
========================================================= */

.kodawari-block__content,
.kodawari-material,
.kodawari-duck__content {
  background:
    linear-gradient(rgba(244, 238, 226, .82), rgba(244, 238, 226, .82)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: cover, cover;
  background-position: center center;
}


/* =========================================================
   レスポンシブ
========================================================= */

@media (max-width: 900px) {
  .kodawari-hero {
    padding-bottom: 34px;
  }

  .kodawari-hero__inner {
    width: min(100% - 32px, 680px);
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .kodawari-hero__body {
    padding: 42px 26px 34px;
  }

  .kodawari-hero__media {
    min-height: 300px;
  }

  .kodawari-hero__media::before {
    background:
      linear-gradient(
        180deg,
        rgba(244, 238, 226, .88) 0%,
        rgba(244, 238, 226, .28) 34%,
        rgba(244, 238, 226, 0) 72%
      );
  }

  .kodawari-hero__title {
    font-size: 2rem;
  }

  .kodawari-hero__catch {
    font-size: 1.18rem;
  }
}
/* =========================================================
   こだわりページ：FV・見出し・背景ムラ・フッターロゴ修正
========================================================= */

/* 1. FV左側の謎のX装飾を消す */
.kodawari-hero__body::before {
  content: none !important;
}

/* 2. FV左側に植物っぽい薄い装飾を入れ直す */
.kodawari-hero__body::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 70px;
  width: 150px;
  height: 300px;
  opacity: .13;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 48px 38px, rgba(139, 111, 71, .45) 0 2px, transparent 3px),
    radial-gradient(circle at 76px 72px, rgba(139, 111, 71, .35) 0 2px, transparent 3px),
    radial-gradient(circle at 42px 115px, rgba(139, 111, 71, .28) 0 2px, transparent 3px),
    radial-gradient(circle at 92px 158px, rgba(139, 111, 71, .28) 0 2px, transparent 3px),
    linear-gradient(rgba(139, 111, 71, .22), rgba(139, 111, 71, .22)) 62px 20px / 1px 230px no-repeat,
    linear-gradient(70deg, transparent 0 48%, rgba(139, 111, 71, .18) 49% 50%, transparent 51%) 30px 55px / 95px 80px no-repeat,
    linear-gradient(110deg, transparent 0 48%, rgba(139, 111, 71, .16) 49% 50%, transparent 51%) 20px 125px / 105px 95px no-repeat;
}

/* FV文字を装飾より前面に */
.kodawari-hero__body > * {
  position: relative;
  z-index: 1;
}

/* 3. 「幻庵のこだわり」が変な位置で改行されるのを防ぐ */
.kodawari-hero__title {
  white-space: nowrap;
  font-size: clamp(2rem, 3.1vw, 2.8rem) !important;
  letter-spacing: .13em;
}

/* 4. 01・04などの大見出しも途中改行を防ぐ */
.kodawari-block__title,
.kodawari-duck__content .kodawari-block__title,
.kodawari-duck__content h2 {
  white-space: nowrap;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem) !important;
  letter-spacing: .10em;
}

/* 5. 左右に出る帯状の色ムラ対策 */
.kodawari-page,
.kodawari-hero,
.kodawari-section {
  background-color: #f4eee2 !important;
  background-image:
    linear-gradient(rgba(244, 238, 226, .78), rgba(244, 238, 226, .78)),
    url("../images/washi-hero-bg.png") !important;
  background-repeat: repeat !important;
  background-size: cover, cover !important;
  background-position: center center !important;
}

/* セクションに余計な左右グラデーションが残っている場合は無効化 */
.kodawari-hero::before,
.kodawari-section::before {
  content: none !important;
}

/* 6. FVの高さを少し自然に調整 */
.kodawari-hero__inner {
  min-height: 430px !important;
}

.kodawari-hero__media {
  min-height: 430px !important;
}

.kodawari-hero__body {
  padding-top: 74px !important;
  padding-bottom: 56px !important;
}

/* 7. フッターのロゴを白にする */
.ftr-logo-img {
  display: block;
  width: 150px;
  height: auto;
  background: transparent !important;
  opacity: .95;

  /* 黒ロゴを白ロゴに変換 */
  filter: brightness(0) invert(1) !important;
}

/* もしロゴ画像自体に白背景がある場合、白い四角も出る。
   その場合は透明PNGのロゴ画像を使う必要あり。 */

/* 8. スマホ時は改行許可。無理に1行にすると逆に崩れるため */
@media (max-width: 700px) {
  .kodawari-hero__title,
  .kodawari-block__title,
  .kodawari-duck__content .kodawari-block__title,
  .kodawari-duck__content h2 {
    white-space: normal;
  }

  .kodawari-hero__title {
    font-size: 2rem !important;
  }

  .kodawari-block__title,
  .kodawari-duck__content .kodawari-block__title,
  .kodawari-duck__content h2 {
    font-size: 1.75rem !important;
  }

  .kodawari-hero__body::after {
    opacity: .08;
    left: 4px;
    top: 48px;
  }
}
/* =========================================================
   こだわりFV：左側の植物装飾を画像で反映
========================================================= */

/* 既存のCSS製植物・謎のXを完全に無効化 */
.kodawari-hero__body::before,
.kodawari-hero__body::after {
  content: none !important;
}

/* FV左側の和紙面に植物画像を配置 */
.kodawari-hero__inner::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 82px;
  width: 210px;
  height: 380px;
  z-index: 1;
  pointer-events: none;

  background-image: url("../images/sobahana-transparent.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;

  opacity: .30;
  mix-blend-mode: multiply;
}

/* FV内の文字は植物画像より前面 */
.kodawari-hero__body {
  position: relative;
  z-index: 2;
}

/* 右側写真も植物画像より前面に来すぎないよう整理 */
.kodawari-hero__media {
  position: relative;
  z-index: 1;
}

/* 画像フェードは維持 */
.kodawari-hero__media::before {
  z-index: 2;
}

/* タイトルが変なところで改行されるのを防ぐ */
.kodawari-hero__title {
  white-space: nowrap;
  font-size: clamp(2rem, 3vw, 2.7rem) !important;
  letter-spacing: .12em;
}

/* 文字幅を少し広げて「幻庵のこだわり」を収める */
.kodawari-hero__body {
  padding-left: 56px !important;
  padding-right: 44px !important;
}

/* スマホでは装飾を薄く・小さく */
@media (max-width: 700px) {
  .kodawari-hero__inner::before {
    left: 8px;
    top: 52px;
    width: 145px;
    height: 260px;
    opacity: .18;
  }

  .kodawari-hero__title {
    white-space: normal;
    font-size: 2rem !important;
  }
}

/* =========================================================
   緊急修正：ヘッダー・スマホナビ・こだわりページ表示整理
   最後に貼って既存CSSを上書きする
========================================================= */

/* ------------------------------
   ヘッダー：PCメニューを5項目で安定表示
------------------------------ */

@media (min-width: 1024px) {
  .hdr-in {
    display: grid !important;
    grid-template-columns: 220px 1fr 220px !important;
    align-items: center !important;
    min-height: 60px !important;
  }

  .logo {
    justify-self: start !important;
  }

  .nav {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .nav a {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    font-size: .76rem !important;
  }

  .hdr-actions {
    justify-self: end !important;
  }

  .hdr-tel {
    display: inline-flex !important;
  }

  .hamburger {
    display: none !important;
  }
}

/* ------------------------------
   スマホメニュー：class漏れがあっても崩れないようにする
------------------------------ */

.mobile-menu__inner > a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
  font-family: var(--font-sans);
  font-size: .86rem;
}

.mobile-menu__inner > a.btn {
  display: inline-flex;
  border-bottom: 0;
  margin-top: 14px;
}

.mobile-menu__inner > a.on,
.mobile-menu__link.on {
  color: var(--c-primary);
  font-weight: 700;
}

/* ------------------------------
   フッターロゴ：深緑背景で白表示
------------------------------ */

.ftr-logo-link {
  display: inline-block !important;
  margin: 0 0 18px !important;
  line-height: 1 !important;
  background: transparent !important;
}

.ftr-logo-img {
  display: block !important;
  width: 150px !important;
  height: auto !important;
  background: transparent !important;
  opacity: .95 !important;
  filter: brightness(0) invert(1) !important;
}

/* ------------------------------
   こだわりページ：写真・花装飾が見えなくなる問題対策
------------------------------ */

.kodawari-page {
  background-color: #f4eee2 !important;
  background-image:
    linear-gradient(rgba(244, 238, 226, .78), rgba(244, 238, 226, .78)),
    url("../images/washi-hero-bg.png") !important;
  background-repeat: repeat !important;
  background-size: cover, cover !important;
  background-position: center center !important;
  overflow-x: hidden !important;
}

.kodawari-hero,
.kodawari-section {
  position: relative !important;
  background: transparent !important;
  overflow: hidden !important;
}

.kodawari-hero::before,
.kodawari-hero::after,
.kodawari-section::before,
.kodawari-section::after {
  content: none !important;
}

/* FV */
.kodawari-hero {
  padding: 0 0 42px !important;
}

.kodawari-hero__inner {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 47% 53% !important;
  width: min(1120px, calc(100% - 48px)) !important;
  min-height: 430px !important;
  margin: 0 auto !important;
  overflow: hidden !important;
  border-radius: 0 0 4px 4px !important;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .98) 0%,
      rgba(244, 238, 226, .96) 35%,
      rgba(244, 238, 226, .68) 50%,
      rgba(244, 238, 226, 0) 65%
    ) !important;
  box-shadow: none !important;
}

/* 既存のCSS製装飾・謎のXを消す */
.kodawari-hero__body::before,
.kodawari-hero__body::after {
  content: none !important;
}

/* 花の透過PNGを表示 */
.kodawari-hero__inner::before {
  content: "" !important;
  position: absolute !important;
  left: 18px !important;
  top: 82px !important;
  width: 210px !important;
  height: 380px !important;
  z-index: 1 !important;
  pointer-events: none !important;

  background-image: url("../images/sobahana-transparent.png") !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: left top !important;

  opacity: .30 !important;
  mix-blend-mode: multiply !important;
}

.kodawari-hero__body {
  position: relative !important;
  z-index: 2 !important;
  padding: 74px 44px 56px 56px !important;
  background: transparent !important;
}

.kodawari-hero__body > * {
  position: relative !important;
  z-index: 2 !important;
}

.kodawari-hero__en {
  margin: 0 0 10px !important;
  color: #9a7a3a !important;
  font-family: var(--font-sans) !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  letter-spacing: .28em !important;
}

.kodawari-hero__rule {
  width: 42px !important;
  height: 1px !important;
  margin: 0 0 28px !important;
  background: #9a7a3a !important;
}

.kodawari-hero__title {
  margin: 0 0 24px !important;
  color: var(--c-primary) !important;
  font-size: clamp(2rem, 3vw, 2.7rem) !important;
  line-height: 1.35 !important;
  letter-spacing: .12em !important;
  white-space: nowrap !important;
}

.kodawari-hero__catch {
  margin: 0 0 22px !important;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem) !important;
  line-height: 1.85 !important;
  letter-spacing: .10em !important;
}

.kodawari-hero__text {
  max-width: 410px !important;
  margin: 0 !important;
  font-size: .86rem !important;
  line-height: 2 !important;
  letter-spacing: .06em !important;
}

.kodawari-hero__media {
  position: relative !important;
  z-index: 1 !important;
  min-height: 430px !important;
  overflow: hidden !important;
}

.kodawari-hero__media::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(
      90deg,
      rgba(244, 238, 226, .95) 0%,
      rgba(244, 238, 226, .72) 18%,
      rgba(244, 238, 226, .28) 38%,
      rgba(244, 238, 226, 0) 62%
    ) !important;
}

.kodawari-hero__media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 52% !important;
}

/* ------------------------------
   こだわり本文：画像が消えないようにする
------------------------------ */

.kodawari-block__media,
.kodawari-duck__media,
.kodawari-gallery__item {
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
}

.kodawari-block__media img,
.kodawari-duck__media img,
.kodawari-gallery__item img {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.kodawari-block__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.kodawari-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

.kodawari-gallery__item img {
  width: 100% !important;
  aspect-ratio: 16 / 5.2 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.kodawari-duck__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: 430px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* 見出しの変な改行防止 */
.kodawari-block__title {
  white-space: nowrap !important;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem) !important;
  letter-spacing: .10em !important;
}

/* ------------------------------
   スマホ
------------------------------ */

@media (max-width: 900px) {
  .kodawari-hero__inner {
    grid-template-columns: 1fr !important;
    width: min(100% - 32px, 680px) !important;
    min-height: auto !important;
  }

  .kodawari-hero__body {
    padding: 42px 26px 34px !important;
  }

  .kodawari-hero__media {
    min-height: 300px !important;
  }

  .kodawari-hero__media::before {
    background:
      linear-gradient(
        180deg,
        rgba(244, 238, 226, .88) 0%,
        rgba(244, 238, 226, .28) 34%,
        rgba(244, 238, 226, 0) 72%
      ) !important;
  }

  .kodawari-gallery {
    grid-template-columns: 1fr !important;
  }

  .kodawari-gallery__item img {
    aspect-ratio: 16 / 9 !important;
  }
}

@media (max-width: 700px) {
  .kodawari-hero__inner::before {
    left: 8px !important;
    top: 52px !important;
    width: 145px !important;
    height: 260px !important;
    opacity: .18 !important;
  }

  .kodawari-hero__title,
  .kodawari-block__title {
    white-space: normal !important;
  }

  .kodawari-hero__title {
    font-size: 2rem !important;
  }

  .kodawari-block__title {
    font-size: 1.75rem !important;
  }
}

/* =========================================================
   こだわりページ：スマホ表示 最終版
   - PC表示は一切変更しない
   - max-width: 767px の中だけで上書き
   - 既存の競合CSSを最後尾で制御
========================================================= */

@media (max-width: 767px) {

  /* ---------------------------------------------------------
     全体：左右の帯・背景ムラ対策
  --------------------------------------------------------- */
  body {
    overflow-x: hidden !important;
  }

  .kodawari-page {
    width: 100% !important;
    overflow-x: hidden !important;
    background-color: #f4eee2 !important;
    background-image:
      linear-gradient(rgba(244, 238, 226, .78), rgba(244, 238, 226, .78)),
      url("../images/washi-hero-bg.png") !important;
    background-repeat: repeat !important;
    background-size: auto, 920px auto !important;
    background-position: center top !important;
  }

  .kodawari-page .container {
    width: 100% !important;
    max-width: none !important;
    padding-inline: 24px !important;
    margin-inline: auto !important;
  }

  .kodawari-hero,
  .kodawari-section {
    width: 100% !important;
    overflow: hidden !important;
    background: transparent !important;
  }

  .kodawari-hero::before,
  .kodawari-hero::after,
  .kodawari-section::before,
  .kodawari-section::after {
    content: none !important;
  }


  /* ---------------------------------------------------------
     FV：写真 → 文章の順番
     プレビュー寄せで余白・文字サイズを調整
  --------------------------------------------------------- */
  .kodawari-hero {
    padding: 0 0 48px !important;
  }

  .kodawari-hero__inner {
    display: flex !important;
    flex-direction: column-reverse !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .kodawari-hero__media {
    order: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    width: calc(100% - 48px) !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 28px auto 0 !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    background: transparent !important;
  }

  .kodawari-hero__media::before,
  .kodawari-hero__media::after {
    content: none !important;
  }

  .kodawari-hero__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5.2 !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .82 !important;
    filter: saturate(.92) contrast(.96) brightness(1.05) !important;
  }

  .kodawari-hero__body {
    order: 2 !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 54px 56px 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .kodawari-hero__body::before,
  .kodawari-hero__body::after {
    content: none !important;
  }

  /* 植物装飾：スマホでは主張を抑えて背景側に置く */
  .kodawari-hero__inner::before {
    content: "" !important;
    position: absolute !important;
    left: 18px !important;
    top: 388px !important;
    width: 150px !important;
    height: 300px !important;
    z-index: 1 !important;
    pointer-events: none !important;
    background-image: url("../images/sobahana-transparent.png") !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: left top !important;
    opacity: .16 !important;
    mix-blend-mode: multiply !important;
  }

  .kodawari-hero__body > * {
    position: relative !important;
    z-index: 2 !important;
  }

  .kodawari-hero__en {
    margin: 0 0 12px !important;
    color: #9a7a3a !important;
    font-family: var(--font-sans) !important;
    font-size: .72rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: .32em !important;
  }

  .kodawari-hero__rule {
    width: 48px !important;
    height: 1px !important;
    margin: 0 0 30px !important;
    background: #9a7a3a !important;
  }

  .kodawari-hero__title {
    margin: 0 0 26px !important;
    color: var(--c-primary) !important;
    font-family: var(--font-serif) !important;
    font-size: 2.05rem !important;
    line-height: 1.48 !important;
    letter-spacing: .13em !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .kodawari-hero__catch {
    margin: 0 0 26px !important;
    color: var(--c-text) !important;
    font-family: var(--font-serif) !important;
    font-size: 1.32rem !important;
    line-height: 1.9 !important;
    letter-spacing: .08em !important;
  }

  .kodawari-hero__text {
    max-width: none !important;
    margin: 0 !important;
    color: rgba(42, 42, 42, .78) !important;
    font-size: .86rem !important;
    line-height: 2.05 !important;
    letter-spacing: .04em !important;
  }


  /* ---------------------------------------------------------
     共通：セクション余白とカード感を整理
  --------------------------------------------------------- */
  .kodawari-section {
    padding: 0 0 54px !important;
  }

  .kodawari-section--first {
    padding-top: 6px !important;
  }

  .kodawari-section--last {
    padding-bottom: 64px !important;
  }

  .kodawari-block,
  .kodawari-block--reverse,
  .kodawari-duck {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: none !important;
    gap: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .kodawari-block__content,
  .kodawari-material,
  .kodawari-duck__content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 44px 32px !important;
    background:
      linear-gradient(rgba(244, 238, 226, .66), rgba(244, 238, 226, .66)),
      url("../images/washi-hero-bg.png") !important;
    background-repeat: repeat !important;
    background-size: auto, 900px auto !important;
    background-position: center top !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .kodawari-block__label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 54px !important;
    min-width: 54px !important;
    height: 50px !important;
    margin: 0 0 28px !important;
    padding: 0 !important;
    border-radius: 5px !important;
    background: var(--c-primary) !important;
    color: #fff !important;
    font-family: var(--font-sans) !important;
    font-size: .95rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .08em !important;
  }

  .kodawari-block__title {
    margin: 0 0 24px !important;
    color: var(--c-primary) !important;
    font-family: var(--font-serif) !important;
    font-size: 2rem !important;
    line-height: 1.48 !important;
    letter-spacing: .10em !important;
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .kodawari-block__lead {
    margin: 0 0 26px !important;
    color: #8a7245 !important;
    font-family: var(--font-serif) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    line-height: 1.85 !important;
    letter-spacing: .06em !important;
  }

  .kodawari-block__text,
  .kodawari-material__text,
  .kodawari-duck__closing {
    margin: 0 !important;
    color: rgba(42, 42, 42, .92) !important;
    font-size: .96rem !important;
    line-height: 2.05 !important;
    letter-spacing: .04em !important;
  }

  .kodawari-block__text br,
  .kodawari-material__text br {
    display: none !important;
  }


  /* ---------------------------------------------------------
     01：画像 → テキスト
  --------------------------------------------------------- */
  .kodawari-section--first .kodawari-block__media {
    order: 1 !important;
  }

  .kodawari-section--first .kodawari-block__content {
    order: 2 !important;
  }

  .kodawari-block__media {
    width: calc(100% - 48px) !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto 32px !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .kodawari-block__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 4.6 !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .9 !important;
  }


  /* ---------------------------------------------------------
     02：本文 → メイン画像 → 3枚ギャラリー
  --------------------------------------------------------- */
  .kodawari-section:not(.kodawari-section--first):not(.kodawari-section--last) .kodawari-block {
    gap: 0 !important;
  }

  .kodawari-section:not(.kodawari-section--first):not(.kodawari-section--last) .kodawari-block__content {
    order: 1 !important;
  }

  .kodawari-section:not(.kodawari-section--first):not(.kodawari-section--last) .kodawari-block__media {
    order: 2 !important;
    margin-top: 28px !important;
    margin-bottom: 26px !important;
  }

  .kodawari-section:not(.kodawari-section--first):not(.kodawari-section--last) .kodawari-block__media img {
    aspect-ratio: 4 / 3.4 !important;
    object-position: center center !important;
  }

  .kodawari-gallery {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    width: calc(100% - 48px) !important;
    margin: 0 auto !important;
  }

  .kodawari-gallery__item {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    border-radius: 4px !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .kodawari-gallery__item img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 2.8 !important;
    object-fit: cover !important;
    object-position: center center !important;
  }


  /* ---------------------------------------------------------
     03：そば粉セクション
  --------------------------------------------------------- */
  .kodawari-material {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .kodawari-material .kodawari-block__title {
    font-size: 1.9rem !important;
    line-height: 1.55 !important;
  }

  .kodawari-points {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin: 34px 0 0 !important;
  }

  .kodawari-points__item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 64px !important;
    padding: 14px 18px !important;
    color: var(--c-primary) !important;
    font-family: var(--font-serif) !important;
    font-size: .98rem !important;
    line-height: 1.6 !important;
    letter-spacing: .06em !important;
    text-align: center !important;
    background: rgba(255, 255, 255, .18) !important;
    border: 1px solid rgba(46, 74, 62, .35) !important;
    border-radius: 2px !important;
    box-shadow: none !important;
  }


  /* ---------------------------------------------------------
     04：鴨せいろ
  --------------------------------------------------------- */
  .kodawari-duck__media {
    order: 1 !important;
    width: calc(100% - 48px) !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto 32px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .kodawari-duck__media img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5.2 !important;
    object-fit: cover !important;
    object-position: center center !important;
    opacity: .96 !important;
  }

  .kodawari-duck__content {
    order: 2 !important;
  }

  .kodawari-duck__points {
    display: grid !important;
    gap: 22px !important;
    margin: 34px 0 34px !important;
  }

  .kodawari-duck__point {
    display: grid !important;
    grid-template-columns: 56px 1fr !important;
    gap: 18px !important;
    align-items: start !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .kodawari-duck__point span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 50% !important;
    background: var(--c-primary) !important;
    color: #fff !important;
    font-family: var(--font-sans) !important;
    font-size: .8rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .06em !important;
  }

  .kodawari-duck__point p {
    margin: 0 !important;
    color: rgba(42, 42, 42, .92) !important;
    font-size: .95rem !important;
    line-height: 1.9 !important;
    letter-spacing: .04em !important;
  }

  .kodawari-cta,
  .kodawari-duck__actions,
  .kodawari-actions {
    display: none !important;
  }

  .kodawari-final-message {
    width: calc(100% - 64px) !important;
    max-width: none !important;
    margin: 54px auto 0 !important;
    color: var(--c-primary) !important;
    font-family: var(--font-serif) !important;
    font-size: 1.15rem !important;
    line-height: 2.1 !important;
    letter-spacing: .08em !important;
    text-align: center !important;
  }


  /* ---------------------------------------------------------
     フッター：スマホでも既存デザイン維持
  --------------------------------------------------------- */
  .ftr {
    margin-top: 0 !important;
  }

  .ftr-logo-img {
    width: 150px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    opacity: .95 !important;
    background: transparent !important;
  }
}


/* =========================================================
   さらに狭いスマホ用
========================================================= */

@media (max-width: 430px) {
  .kodawari-page .container {
    padding-inline: 24px !important;
  }

  .kodawari-hero__media,
  .kodawari-block__media,
  .kodawari-duck__media,
  .kodawari-gallery {
    width: calc(100% - 48px) !important;
  }

  .kodawari-hero__body,
  .kodawari-block__content,
  .kodawari-material,
  .kodawari-duck__content {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }

  .kodawari-hero__title {
    font-size: 1.95rem !important;
  }

  .kodawari-block__title {
    font-size: 1.85rem !important;
  }

  .kodawari-hero__catch {
    font-size: 1.24rem !important;
  }

  .kodawari-block__lead {
    font-size: 1rem !important;
  }

  .kodawari-hero__inner::before {
    left: 14px !important;
    top: 374px !important;
    width: 132px !important;
    height: 270px !important;
    opacity: .14 !important;
  }
}
/* =========================================================
   アクセスページ：店舗外観 + アクセス情報 2カラム表示
========================================================= */

.access-detail-section {
  background-color: #FAF6F0;
  padding: 52px 0 58px;
}

.access-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.access-detail-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.access-detail-cards .ac-block {
  margin-bottom: 0;
  background: #fff;
}

.access-detail-cards .ac-block-body {
  min-height: 96px;
}

.access-shop-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--c-border);
  border-radius: var(--r);
  background: #fff;
  box-shadow: 0 6px 18px rgba(46, 74, 62, .08);
}

.access-shop-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  max-height: 470px;
  object-fit: cover;
  object-position: center 58%;
}

.access-shop-photo figcaption {
  padding: 13px 16px 15px;
  color: var(--c-primary);
  font-family: var(--font-serif);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .06em;
  text-align: center;
  background:
    linear-gradient(rgba(255, 255, 255, .76), rgba(255, 255, 255, .76)),
    url("../images/washi-hero-bg.png");
  background-repeat: repeat;
  background-size: 900px auto;
  border-top: 1px solid rgba(218, 204, 180, .65);
}

/* タブレット以下：縦並び */
@media (max-width: 900px) {
  .access-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .access-shop-photo {
    order: -1;
  }

  .access-shop-photo img {
    min-height: 260px;
    max-height: none;
    aspect-ratio: 16 / 10;
  }
}

/* スマホ：余白を少し抑える */
@media (max-width: 767px) {
  .access-detail-section {
    padding: 38px 0 44px;
  }

  .access-detail-layout {
    gap: 22px;
  }

  .access-shop-photo img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .access-shop-photo figcaption {
    font-size: .82rem;
    padding: 11px 14px 13px;
  }

  .access-detail-cards .ac-block-body {
    min-height: auto;
  }
}
/* =========================================================
   営業時間補足：売り切れ次第閉店の注意書き
========================================================= */

/* =========================================================
   営業時間補足：売り切れ次第閉店
========================================================= */

.business-note {
  display: block !important;
  margin-top: 10px !important;
  color: #8a6a35 !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  line-height: 1.8 !important;
}

@media (max-width: 767px) {
  .business-note {
    margin-top: 8px !important;
    font-size: 0.84rem !important;
    line-height: 1.75 !important;
  }
}
/* =========================================================
   営業時間補足：売り切れ次第閉店
========================================================= */

.business-note,
.note--closing {
  display: block;
  margin-top: 8px;
  color: #7b5f32;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .business-note,
  .note--closing {
    margin-top: 7px;
    font-size: 0.82rem;
    line-height: 1.7;
  }
}
/* =========================================================
   ヘッダー：Instagramアイコン
========================================================= */

.hdr-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--c-primary);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  transition: .2s;
  flex-shrink: 0;
}

.hdr-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hdr-instagram:hover {
  color: #fff;
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateY(-1px);
}

/* PC表示時：電話番号とInstagramを自然に横並び */
@media (min-width: 1024px) {
  .hdr-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .hdr-instagram {
    width: 34px;
    height: 34px;
  }
}

/* スマホ・タブレット表示時：ハンバーガー横にInstagramを表示 */
/* ヘッダー：Instagramアイコン */
.hdr-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--c-primary);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  transition: .2s;
  flex-shrink: 0;
}

.hdr-instagram svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hdr-instagram:hover {
  color: #fff;
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .hdr-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 8px !important;
  }

  .hdr-instagram {
    width: 34px;
    height: 34px;
  }
}

@media (max-width: 1023px) {
  .hdr-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .hdr-instagram {
    width: 42px;
    height: 42px;
    border-radius: var(--r);
  }

  .hdr-instagram svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 380px) {
  .hdr-actions {
    gap: 8px !important;
  }

  .hdr-instagram,
  .hamburger {
    width: 40px;
    height: 40px;
  }

  .hdr-instagram svg {
    width: 19px;
    height: 19px;
  }
}