@charset "utf-8";

/* 担担麺専門店 千華 — UI参考: 【なべや えさき】https://www.nabeya-esaki.com/ （上品なクリーム調・縦構成・NEWS／Shop構成）*/

:root {
  --accent: #6b5344;
  --accent-soft: rgba(107, 83, 68, 0.12);
  --ink: #2a2623;
  --muted: #5c574f;
  --paper: #f7f6f4;
  --cream: #edeae4;
  --line: #e2ddd4;
  --hero-overlay: rgba(35, 32, 28, 0.45);
  --footer-bg: #2d2a26;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  line-height: 1.87;
  color: var(--ink);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  background-color: var(--paper);
}

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

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.82;
}

.mincyo {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", 游明朝, "Yu Mincho", serif;
}
.s_mincyo,
.s-mincyo {
  font-family: "Noto Serif JP", "Sawarabi Mincho", "Yu Mincho", serif;
}

.c_gara,
.c-gara {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.flex {
  display: flex;
}

.cmn980 {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 20px;
}

/* セクション共通（英字サブ見出し＋和文）*/
.cmntlt {
  text-align: center;
  margin-bottom: 40px;
}
.cmntlt h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  margin: 12px 0 0;
}
.cmntlt p,
.cmntlt .c_gara,
.cmntlt .c-gara {
  margin: 0 0 6px;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 12px;
  z-index: 100000;
}
.skip-link:focus {
  left: 8px;
}

/* --------- ヘッダー ---------- */
#header {
  margin: 0 auto;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(247, 246, 244, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 24px rgba(40, 35, 28, 0.04);
}

#header .cmn980 {
  position: relative;
}

.header-inner-ne {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px !important;
  flex-wrap: wrap;
}

.brand-link {
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 22px);
  letter-spacing: 0.12em;
}

.header-aside-ne {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.desktop-nav-ne {
  display: none;
  flex: 1;
  justify-content: center;
}
.desktop-nav-ne ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 28px);
  justify-content: center;
}
.desktop-nav-ne a {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.desktop-nav-ne a[aria-current="page"] {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 961px) {
  .desktop-nav-ne {
    display: flex;
  }
}

.logo {
  padding-top: 0;
  padding-bottom: 0;
}

.logo h1 {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.logo a {
  font-size: inherit;
}

.lang-dock {
  position: static;
  font-size: 11px;
  letter-spacing: 0.06em;
  display: flex;
  gap: 10px;
  align-items: center;
}
.lang-dock a[aria-current="page"] {
  text-decoration: underline;
  color: var(--accent);
}

@media (max-width: 960px) {
  .desktop-nav-ne {
    display: none !important;
  }
}

@media (max-width: 960px) {
  .brand-link-wrap {
    width: calc(100% - 76px);
  }
}

.btn-menu-ne {
  display: block;
}
@media (min-width: 961px) {
  .btn-menu-ne {
    display: none !important;
  }
}

/* --------- ドロワー ---------- */
.nav-overlay-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9450;
  background: rgba(18, 16, 14, 0.52);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s ease;
  pointer-events: none;
}
.nav-overlay-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* JA：ページリンクと言語を分離したドロワー */
#global-nav.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 92vw);
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 9500;
  pointer-events: none;
  visibility: hidden;
}
#global-nav.mobile-drawer.active {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer-sheet {
  position: absolute;
  inset: 0 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(35, 32, 28, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateX(100%);
  transition: transform 0.38s ease;
  padding: 64px 0 28px;
  box-sizing: border-box;
  overflow-y: auto;
}
#global-nav.mobile-drawer.active .mobile-drawer-sheet {
  transform: translateX(0);
}
.mobile-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0 32px;
  flex: 1 1 auto;
}
.mobile-drawer-links > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-drawer-links > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(247, 246, 244, 0.95);
  padding: 14px 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.mobile-drawer-lang {
  flex-shrink: 0;
  margin-top: 12px;
  padding: 20px 28px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-drawer-lang-label {
  margin: 0 0 14px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 246, 244, 0.52);
}
.mobile-drawer-lang-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.mobile-drawer-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.75rem;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(247, 246, 244, 0.94);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}
.mobile-drawer-lang-btn[aria-current="page"] {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.09);
}

.wrap ul {
  width: min(340px, 88vw);
  padding: 48px 32px 0;
  margin: 0;
  list-style: none;
}

.wrap li,
.mobile-drawer-links > li,
.ul-open-h > li,
.ul_open_h.open-1 > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.wrap li a,
.mobile-drawer-links > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(247, 246, 244, 0.95);
  padding: 14px 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.ul_open_h.open-1,
.ul-open-h {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 92vw);
  height: 100%;
  margin: 0;
  list-style: none;
  padding: 64px 32px 32px;
  transition: right 0.38s ease;
  z-index: 9500;
  background: rgba(35, 32, 28, 0.97);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.ul_open_h.open-1.active,
.ul-open-h.is-open {
  right: 0;
}

.btn {
  width: 48px;
  height: 48px;
  position: fixed;
  right: 12px;
  top: 14px;
  background: transparent;
  z-index: 9600;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0;
}

.btn::after,
.btn span {
  display: block;
  width: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  transition: transform 0.34s ease, opacity 0.24s ease;
}
.btn span {
  height: 2px;
  background: var(--ink);
  top: calc(50% - 1px);
}
.btn::before {
  content: "";
  top: calc(36% - 2px);
  border-top: 2px solid var(--ink);
}
.btn::after {
  content: "";
  bottom: calc(36% - 2px);
  border-bottom: 2px solid var(--ink);
}
.btn.on span {
  opacity: 0;
}
.btn.on::before {
  top: calc(50% - 1px);
  transform: rotate(315deg);
  border-top-color: var(--ink);
}
.btn.on::after {
  bottom: calc(50% - 1px);
  transform: rotate(-315deg);
  border-bottom-color: var(--ink);
}

.move-1.on.btn {
  position: fixed;
  right: 12px;
  top: 14px;
}

/* メニューボタンはヘッダー内。開いたときだけ画面上に固定 */
.header-inner-ne .btn {
  position: relative;
  right: auto;
  top: auto;
  flex-shrink: 0;
}

.header-inner-ne .btn.on {
  position: fixed;
  right: 12px;
  top: 14px;
}

/* メニューを開いたときは暗いレイヤーの上でも視認できるようラインだけ明るめに */
.btn.on {
  border-color: rgba(255, 248, 240, 0.55);
  background: rgba(28, 26, 24, 0.35);
}
.btn.on span,
.btn.on::before,
.btn.on::after {
  background-color: rgba(253, 250, 245, 0.95) !important;
  border-color: rgba(253, 250, 245, 0.95) !important;
}


/* --------- ヒーロー ---------- */
.hero-ne {
  position: relative;
  overflow: hidden;
}

.hero-ne #mainv {
  height: min(78vh, 760px);
  min-height: 420px;
  background-position: center 42%;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-ne-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(28, 26, 24, 0.72) 0%,
    rgba(28, 26, 24, 0.25) 45%,
    rgba(28, 26, 24, 0.12) 100%
  );
}

.hero-ne-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(36px, 8vw, 88px) 20px clamp(52px, 10vw, 100px);
  pointer-events: auto;
}

.hero-ne-kicker {
  margin: 0 0 8px;
  font-size: clamp(13px, 2vw, 15px);
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.88);
}

.hero-ne-title {
  margin: 0 0 12px;
  font-weight: 600;
  font-size: clamp(22px, 4.2vw, 36px);
  line-height: 1.38;
  color: #faf9f7;
}

.hero-ne-lede {
  margin: 0 0 8px;
  max-width: 38em;
  color: rgba(255, 250, 244, 0.92);
  font-size: clamp(13px, 1.85vw, 16px);
  line-height: 1.8;
}

.hero-ne-sub-en {
  margin: 0;
  font-size: clamp(12px, 1.8vw, 15px);
  letter-spacing: 0.34em;
  color: rgba(255, 255, 255, 0.65);
}

/* 単体運用ヒーロー（下層ページ）*/
#mainv {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: min(360px, 52vh);
  min-height: 220px;
}

/* --------- sec01 導入 ---------- */
.vert {
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
  text-orientation: mixed;
}

.sec01 {
  background-color: var(--paper);
  padding: clamp(48px, 8vw, 96px) 0;
}

.sec01-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.about-ne-visual {
  margin: 0;
}

@media (max-width: 768px) {
  .sec01-about-grid {
    grid-template-columns: 1fr;
  }
}

.section-label-ne {
  margin: 0 0 8px;
  font-size: clamp(13px, 1.9vw, 15px);
  letter-spacing: 0.38em;
  color: var(--muted);
}

.sec01-about-body h2 {
  margin: 0 0 16px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
}

.sec01-about-body h3.tagline-ne {
  margin: 16px 0 12px;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 600;
}

.sec01-about-body p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

.sec01-hero-img {
  width: 100%;
  max-width: none;
  box-shadow: 0 28px 60px rgba(35, 32, 28, 0.12);
}

.sec01-note {
  margin-top: clamp(40px, 7vw, 72px);
  width: min(880px, 100%);
  margin-inline: auto;
  background-color: var(--cream);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 44px);
  position: relative;
}

.sec01-note h3 {
  font-size: clamp(18px, 2.6vw, 24px);
  margin: 0 0 12px;
  font-weight: 600;
}

.sec01-note p {
  width: auto;
  text-align: left;
  margin: 0;
  color: var(--muted);
}

/* --------- sec02 人気 ----------- */
.sec02 {
  padding: clamp(72px, 10vw, 120px) 0;
  background: linear-gradient(180deg, #fffdfb 0%, var(--cream) 100%);
}

.sec02_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  margin-top: clamp(40px, 6vw, 72px);
  gap: clamp(20px, 4vw, 48px);
  max-width: 1100px;
  margin-inline: auto;
}

.sec02_wrap.is-first {
  margin-top: 0;
}

.sec02_wrap.alt {
  justify-content: space-between;
  margin-top: clamp(56px, 8vw, 88px);
  flex-direction: row-reverse;
}

.sec02_wrap .txt-area,
.sec02_wrap .img_area {
  width: 48%;
}

.sec02_wrap .img_area img {
  width: 100%;
  height: clamp(260px, 38vw, 420px);
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 20px 56px rgba(35, 32, 28, 0.1);
}

.sec02_in {
  width: 100%;
  max-width: 440px;
  padding: clamp(18px, 3vw, 28px);
  background: transparent;
}

.sec02_wrap.alt .txt-area .sec02_in {
  margin-left: auto;
  padding: clamp(18px, 3vw, 28px);
  background: transparent;
  text-align: left;
}

.sec02_wrap.alt .txt-area .sec02_in p.desc {
  margin-left: 0;
  text-align: left;
}

.sec02_wrap.alt .txt-area .sec02_in p.num {
  float: none;
}

.sec02_in p.num {
  line-height: 1.35;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  background: transparent;
  width: auto;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
}

.sec02_in h3 {
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 12px;
}

.sec02_in p.desc {
  width: auto;
  max-width: 40ch;
  margin-bottom: 24px;
  color: var(--muted);
}

.btn01 {
  display: inline-block;
  min-width: 220px;
  background: transparent;
  color: var(--ink) !important;
  text-align: center;
  padding: 12px 36px;
  border: 1px solid var(--accent);
  position: relative;
  z-index: 9;
  font-size: 13px;
  letter-spacing: 0.22em;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}
.btn01:hover {
  background: var(--accent);
  color: #fdfcfa !important;
  opacity: 1;
}

/* --------- sec03 カードメニュー --- */
.sec03 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px clamp(72px, 10vw, 120px);
  max-width: 1140px;
  margin: 0 auto;
  gap: 0;
}

.sec03_box {
  width: 32%;
  position: relative;
  text-align: center;
}

@media (max-width: 840px) {
  .sec03_box {
    width: 100%;
    margin-bottom: 40px;
  }
}

.sec03_box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-bottom: 16px;
  border: 1px solid var(--line);
}

.sec03_box::after {
  display: none;
}

.sec03_box h2 {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 600;
  margin: 0 0 6px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
}

.sec03_box span.badge {
  padding: 2px 8px;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-right: 0;
}

.sec03_box p {
  width: 90%;
  margin: auto;
  text-align: left;
  font-size: 14px;
  color: var(--muted);
}

a.btn02 {
  display: block;
  border: 1px solid var(--accent);
  text-align: center;
  background: transparent;
  color: var(--ink);
  width: min(620px, calc(100% - 40px));
  margin: clamp(56px, 8vw, 88px) auto 0;
  padding: clamp(22px, 4vw, 32px);
  font-size: 13px;
  letter-spacing: 0.38em;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}
a.btn02:hover {
  background: var(--accent);
  color: #fdfcfa;
  opacity: 1;
}

/* --------- sec04 二本リンク --------- */
.sec04 {
  display: flex;
  justify-content: center;
  margin-top: clamp(48px, 8vw, 80px);
  margin-bottom: clamp(48px, 8vw, 72px);
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 40px);
  padding-inline: 20px;
}
.sec04_box {
  width: min(470px, 100%);
}

.sec04_box img {
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.sec04_box p {
  text-align: center;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}

/* --------- NEWS ---------- */
.sec05 {
  margin: 0 auto clamp(72px, 10vw, 120px);
  max-width: 980px;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sec05 .cmn980.flex {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: clamp(26px, 4vw, 36px) 20px;
}
.sec05 h2.c_gara,
.sec05 h2.c-gara {
  font-size: clamp(15px, 2vw, 18px);
  padding: 0 24px 0 0;
  border-right: 1px solid var(--line);
  margin: 0;
  letter-spacing: 0.36em;
  color: var(--muted);
}

.sec05_in {
  flex: 1;
  min-width: 220px;
  font-size: 14px;
}

/* --------- ACCESS ---------- */
.sec06_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: clamp(72px, 10vw, 120px);
  flex-wrap: wrap;
  gap: 28px;
}
.sec06_box:nth-child(1) {
  width: 44%;
  min-width: 280px;
}

.sec06_box:nth-child(2) {
  width: 53%;
  flex: 1;
  min-width: 280px;
}

.sec06_box dl.flex {
  justify-content: flex-start;
  border-bottom: 1px dotted var(--line);
  padding: 13px 0;
  margin: 0;
  gap: 12px;
}
.sec06_box dl.flex dt {
  width: clamp(92px, 18%, 120px);
  flex-shrink: 0;
  color: var(--muted);
  font-size: 13px;
}

.sec06_box dl.flex dd {
  width: auto;
  margin: 0;
  flex: 1;
  font-size: 14px;
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 1px solid var(--line);
}

/* --------- フッター ---------- */
#footer {
  background: var(--footer-bg);
  text-align: left;
  color: rgba(246, 244, 240, 0.92);
  padding: clamp(36px, 6vw, 52px) 0;
}

#footer .cmn980.flex {
  align-items: flex-start;
  gap: 32px;
}
#footer strong {
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-size: 15px;
}
#footer p {
  margin: 0;
  line-height: 1.9;
  font-size: 13px;
  color: rgba(246, 244, 240, 0.78);
}

#footer a {
  color: rgba(246, 244, 240, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.copyright a,
.copyright p {
  display: block;
  padding: 10px 0;
  background: var(--footer-bg);
  text-align: center;
  color: rgba(246, 244, 240, 0.55);
  font-size: 11px;
  margin: 0;
  letter-spacing: 0.08em;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sp_btn_area {
  position: sticky;
  bottom: 0;
  z-index: 8000;
  background: rgba(35, 32, 28, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sp_btn_area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sp_btn_area a {
  display: block;
  text-align: center;
  padding: 13px 6px;
  color: rgba(247, 246, 244, 0.95) !important;
  font-size: 10px;
  letter-spacing: 0.06em;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.sp_btn_area li:last-child a {
  border-right: none;
}

/* --------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.82s ease,
    transform 0.95s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal-img {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition:
    opacity 0.92s ease,
    transform 1.05s ease;
}
.reveal-img.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media only screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }

  #mainv {
    min-height: 200px;
  }

  .hero-ne-inner {
    padding-bottom: clamp(44px, 12vw, 72px);
  }

  .cmntlt p,
  .cmntlt .c_gara,
  .cmntlt .c-gara {
    letter-spacing: 0.2em;
  }

  .sec02_wrap.alt {
    flex-direction: column-reverse;
    margin-top: 48px;
  }

  .sec02_wrap,
  .sec02_wrap.alt {
    flex-wrap: wrap;
    gap: 20px;
  }

  .sec02_wrap .txt-area,
  .sec02_wrap .img_area {
    width: 100%;
  }

  .sec05 h2.c_gara,
  .sec05 h2.c-gara {
    border-right: none;
    padding-right: 0;
    width: 100%;
  }

  .sec06_wrap {
    padding-bottom: 72px;
  }
  .sec06_box:nth-child(1),
  .sec06_box:nth-child(2) {
    width: 100%;
  }
  .map-embed iframe {
    height: 260px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --------- 下層ページ互換 ---------- */
#header .toolbar {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-bottom: 8px;
}
#header .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.logo-main {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Noto Serif JP", serif;
}
.logo-sub {
  font-size: 11px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}
.lang-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.06em;
}
.lang-inline a[aria-current="page"] {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sec01-intro {
  max-width: 800px;
  margin-inline: auto;
}

.breadcrumb-mini {
  max-width: 980px;
  margin: 0 auto;
  padding: 56px 20px 12px;
  font-size: 13px;
  color: var(--muted);
}
.breadcrumb-mini ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
}
.breadcrumb-mini li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-mini li:not(:last-child)::after {
  content: "›";
  margin-left: 8px;
  opacity: 0.45;
}
.breadcrumb-mini a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-hero-caption {
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 8px 20px 0;
}
.page-hero-caption h1 {
  font-size: clamp(21px, 3.4vw, 32px);
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.38;
}

.page-hero-caption .lede {
  margin: 0;
  font-size: 14px;
  line-height: 1.82;
  color: var(--muted);
}

.body-stack {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 20px 52px;
}
.body-stack h2 {
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 600;
  margin: 2em 0 0.58em;
}
.body-stack h2:first-child {
  margin-top: 0;
}
.body-stack p,
.body-stack li {
  margin: 0 0 1em;
  max-width: 68ch;
  color: var(--muted);
}
.body-stack ul {
  padding-left: 1.2em;
}

.shop-dl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 11px;
  padding-bottom: 11px;
  border-bottom: 1px dotted var(--line);
}
.shop-dl-row dt {
  flex: 0 0 min(132px, 32%);
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  color: var(--muted);
}
.shop-dl-row dd {
  flex: 1 1 200px;
  margin: 0;
  font-size: 14px;
}

.form-grid {
  margin-top: 12px;
}
.form-grid dl {
  display: grid;
  grid-template-columns: minmax(118px, 24%) 1fr;
  gap: 11px 18px;
  margin: 0;
}
.form-grid dt {
  margin: 0;
  padding-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}
.form-grid dd {
  margin: 0;
}
.form-grid input,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
  font: inherit;
}

.form-submit {
  margin-top: 12px;
  padding: 12px 28px;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #fdfcfa;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.form-submit:hover {
  opacity: 0.92;
}

@media only screen and (max-width: 640px) {
  .breadcrumb-mini {
    padding-top: 52px;
  }
  .form-grid dl {
    grid-template-columns: 1fr;
  }
  .shop-dl-row dt {
    flex: 0 0 100%;
  }
}
