/* BXI reset */
#contents_wrap {
  min-width: unset;
  padding-inline: var(--px);
}

header#global_header {
  min-width: unset;
}

footer#global_footer {
  background-color: unset;
}

@media (max-width:1200px){
  #contents {
    width: 100%;
  }
}

#main {
  width: 100%;
  float: none;
  font-size: 16px;
}

#main #col_main {
  width: 100%;
}


a:link {
  color: unset;
}
a:visited {
  color: unset;
}
a:hover,
a:active {
  color: unset;
}
a, button {
  -webkit-tap-highlight-color: rgba(0,0,0,0.1); /* 薄いグレーなど */
}

@media screen and (max-width: 468px) {
  #contents_wrap {
    padding-inline: 10px;
  }
  img.imgL {
      max-width: 100%;
  }
}

/* ===============================
   Base / Tokens
================================ */
*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0;scroll-behavior: smooth;}
:root{
  --c-text:#2b2b2b;
  --c-muted:#6f6f6f;
  --c-border:#e9e9e9;
  --c-bg:#ffffff;
  --c-header-bg:rgba(255,255,255,.30);
  --c-header-border:rgba(0,0,0,.06);
  --c-accent:#353535;
  --c-accent-dark:#202020;
  --c-soft:#ececec;
  --c-ghost:#ffffff;
  --c-ghost-border:rgba(255,255,255,.7);
  --c-blue:#306fa6;

  --ff-sans:"Noto Sans JP",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --ff-serif:"Shippori Mincho","Hiragino Mincho ProN","Yu Mincho",serif;

  --fz-hero:clamp(28px,4vw,44px);
  --fz-lead:clamp(14px,1.6vw,18px);
  --fz-h2:clamp(20px,1.8vw,24px);
  --fz-title:clamp(18px, 1.5vw, 20px);

  --max:1200px;
  --px:22px;
  --header-h:72px;
  --ease:cubic-bezier(.2,.7,.2,1);
}
body{font-family:var(--ff-sans); color:var(--c-text); background:var(--c-bg); line-height:1.75;}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin-inline:auto; padding-inline:var(--px)}
.sp-br{display:none}
@media (max-width:720px){ .sp-br{display:inline} }
@media (max-width:520px){ .sp_text_left div{text-align:left !important;} }
/* スキップリンク */
.skip-link{position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden}
.skip-link:focus{left:16px; top:16px; width:auto; height:auto; padding:8px 12px; background:#000; color:#fff; z-index:9999; border-radius:6px}

/* ===============================
   Header
================================ */
.site-header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:var(--c-header-bg);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid var(--c-header-border);
}
.header-inner{
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between; gap:20px;
}
.site-logo{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.06em}

/* ===============================
   Navi
================================ */
/* ===============================
   ナビゲーション一式
   PCナビ + モバイルドロワー + ドロップダウン/アコーディオン
================================== */

/* ---------------------------
   ハンバーガーのトグル（チェックボックス）
--------------------------- */
.nav-toggle {
  display: none;
}

/* ハンバーガーボタン（3本線/×） */
.nav-btn {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
.nav-btn span {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #444;
  transition:
    transform .3s var(--ease),
    top .3s var(--ease),
    opacity .3s var(--ease);
}
.nav-btn span:nth-child(1) { top: 12px; }
.nav-btn span:nth-child(2) { top: 19px; }
.nav-btn span:nth-child(3) { top: 26px; }

/* ---------------------------
   グローバルナビ本体
--------------------------- */
.global-nav {
  display: block;
}

/* メインのリスト */
.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative; /* ドロップダウン配置の基準にもなる */
}

/* リンク共通 */
.nav-list a {
  display: block;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: #333;
  white-space:nowrap;
}

.nav-link {
  position: relative;
  padding: 6px 0;
  opacity: .92;
  transition: opacity .2s var(--ease);
}

/* PC用 ホバー時の下線アニメーション */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0%;
  background: var(--c-accent);
  transition: width .35s var(--ease);
}
.nav-link:hover {
  opacity: 1;
}
.nav-link:hover::after {
  width: 100%;
}

/* ---------------------------
   SNSアイコン群
--------------------------- */
.nav-sns {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
}
.nav-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--c-soft);
  border: 1px solid rgba(0,0,0,.06);
  transition:
    transform .15s ease,
    filter .2s ease,
    background .2s ease;
}
.nav-sns a:hover {
  filter: brightness(.96);
  transform: translateY(-1px);
}
.nav-sns i {
  font-size: 15px;
  line-height: 1;
  color: var(--c-accent);
}

/* ===============================
   ドロップダウン用（MENU の子）
================================ */

/* サブメニューUL */
.dd_menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 80px; /* 必要に合わせて調整 */
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 8px 0;
  z-index: 99;
  list-style: none;
  min-width: 160px;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
}

.dd_menu li {
  padding: 8px 16px;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
}
.dd_menu li:hover {
  background: #f5f5f5;
}
.dd_menu li a {
  color: #333;
  text-decoration: none;
  display: block;
  width: 100%;
  border: 0;
}

/* ===============================
   PC表示 (981px以上)
   - ヘッダーは横並び
   - MENUはホバーでふわっと表示
   - MENU右に▼
================================ */
@media (min-width: 981px) {
  /* ハンバーガーは非表示のままでOK（デフォルトでdisplay:none） */

  /* MENUリンク右にFont Awesomeの▼（chevron-down） */
  .nav-link[href="menu.html"]::after {
    content: "\f078"; /* fa-chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 6px;
    font-size: 0.8em;
    vertical-align: middle;
    transition: transform 0.25s ease;
  }

  /* hoverでドロップダウンをフェード表示 */
  .nav-link[href="menu.html"]:hover + .dd_menu,
  .dd_menu:hover,
  .dd_menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* PCでは .dd_menu は position:absolute のまま重ね表示なので、
     displayは常にblockでOK */
  .dd_menu {
    display: block !important;
  }
  
  .toggle-icon {
    display: none;
  }
}

/* ===============================
   モバイル表示 (980px以下)
   - ハンバーガーで全体を開く
   - MENUはアコーディオン
   - ＋／− を右端に出す
   - PC用のhover下線は殺す
================================ */
@media (max-width: 980px) {

  /* 1) 全リンクからPC用の下線アニメーション疑似要素を撤去する */
  .nav-link::after {
    content: none !important;
  }

  /* 2) MENU行のベース調整（下線いらない、右端にアイコン置くためrelative） */
  .nav-link[href="menu.html"] {
    position: relative;
    padding: 12px 16px; /* SPのタップ領域は広く */
    width: 100%;
  }

  /* 3) MENU行だけ擬似要素を復活させ、+を出す */
  .nav-link[href="menu.html"]::after {
    content: "+";
    font-family: inherit;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1;
    color: #333;

    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);

    /* 念のため下線用プロパティ完全に潰す */
    height: auto;
    width: auto;
    background: none;
  }

  /* 4) activeのときは − に変える */
  .nav-link[href="menu.html"].active::after {
    content: "−";
    transform: translateY(-50%);
  }

  /* 5) ほかのリンク行の見た目 */
  .nav-link {
    border-bottom: 1px solid rgba(0,0,0,.3);
    opacity: 1;
    text-align: left;
    padding: 12px 16px;
    width: 100%;
  }

  /* 6) ドロワーメニュー表示系（ハンバーガー開閉） */
  .global-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    height: calc(100dvh - var(--header-h));
    background: rgba(255,255,255,.98);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity .25s var(--ease),
      transform .25s var(--ease);
    border-top: 1px solid var(--c-header-border);
    overflow-y: auto;
    z-index: 9999;
  }

  .nav-btn {
    display: block;
  }

  .nav-toggle:checked ~ .nav-btn span:nth-child(1) {
    top: 19px;
    transform: rotate(45deg);
  }
  .nav-toggle:checked ~ .nav-btn span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle:checked ~ .nav-btn span:nth-child(3) {
    top: 19px;
    transform: rotate(-45deg);
  }
  .nav-toggle:checked ~ .global-nav {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  /* 7) 全体の縦並び */
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    padding: 20px var(--px);
  }

  /* 8) サブメニュー（アコーディオン部分） */
  .dd_menu {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;

    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #f9f9f9;

    padding: 0;
    margin: 0;
    list-style: none;

    display: none; /* 閉じてる状態 */

    /* PC用フェードを無効化してSPでは通常DOMとして扱う */
    opacity: 1;
    visibility: visible;
    transform: none;
    min-width: auto;
  }
  .dd_menu.show {
    display: block;
    animation: fadeSlide 0.25s ease forwards;
  }

  .dd_menu li {
    border-top: 1px solid #e3e3e3;
    padding: 0 16px;
    width: 100%;
    background: #f9f9f9;
    color: #333;
  }

  @keyframes fadeSlide {
    0% {
      opacity: 0;
      transform: translateY(-5px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* 9) SNS行（下の丸アイコンたち） */
  .nav-sns {
    display: flex;
    gap: 12px;
    margin-left: 0;
    padding: 16px;
  }
}


/* ===============================
   Buttons
================================ */
.btn{
  display:inline-block; padding:12px 22px; font-weight:700; letter-spacing:.03em;
  transition:transform .08s ease, filter .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  will-change:transform, filter;border-radius: 4px;
}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--c-accent); color:#fff}
.btn--primary:hover{filter:brightness(.98); background:var(--c-accent-dark)}
.btn--ghost{background:transparent; color:#fff; border:1px solid var(--c-ghost-border); backdrop-filter:saturate(120%) blur(2px)}
.btn--ghost:hover{border-color:#fff}
.btn--outline{border:1px solid var(--c-accent); color:var(--c-accent); padding:10px 20px;}
.btn--outline:hover{background:var(--c-accent); color:#fff}
.btn--inverse{background:#2b2b2b; color:#fff; border:1px solid #2b2b2b}
.btn--inverse:hover{filter:brightness(1.1)}
.btn--white{background:#fff; color:#2b2b2b; border:1px solid #e6e6e6}
.btn--white:hover{filter:brightness(.98)}
.btn--entry{border:1px solid var(--c-accent); color:var(--c-accent); margin:20px auto; padding:15px 20px; width:220px;box-shadow: 0 4px 10px rgba(0,0,0,.08);}
.btn--entry:hover{background:var(--c-accent); color:#fff}


/* ===============================
   Hero 共通
================================ */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  color: #fff;
  min-height: 60vh; /* デフォルト値（TOPで上書き可能） */
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* 共通インナー */
.hero__inner {
  position: relative;
  z-index: 1;
  padding-block: min(12vh, 120px);
  padding-top: calc(var(--header-h, 80px) + 40px);
  padding-bottom: 40px;
}

/* ===============================
   TOPページ用
================================ */
.hero.is-home {
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.35)),
    url("/images/contents/hero.png") center/cover no-repeat;
  min-height: 85vh;
}

.hero.is-home .hero__overlay {
  background: radial-gradient(1600px 700px at 50% 30%, rgba(255,255,255,.2), transparent 70%);
}

.hero__title {
  margin:0 0 14px;
  font-family:var(--ff-serif);
  font-weight:700;
  line-height:1.35;
  font-size:var(--fz-hero);
  text-shadow:0 2px 12px rgba(0,0,0,.25);
}
.hero__lead {
  margin:0 0 26px;
  font-size:var(--fz-lead);
  color:rgba(255,255,255,.92);
}
.hero__cta {
  display:flex; gap:12px; flex-wrap:wrap;
}
.eyebrow {
  font-size:13px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.9;
  margin:0 0 10px;
}
/* ===============================
   下層ページ用
================================ */
.hero.is-page {
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.25)),
    url("/images/contents/hero.png") center/cover no-repeat;
  min-height: 25vh;
}

.hero.is-page .hero__overlay {
  background: radial-gradient(1200px 500px at 50% 10%, rgba(255,255,255,.15), transparent 60%);
}

.hero.is-page .page_title__title {
  margin: 0 0 14px;
  font-family: var(--ff-serif);
  font-weight: 700;
  line-height: 1.35;
  font-size: var(--fz-hero, clamp(28px, 4vw, 48px));
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* Eyebrow（ページサブタイトルなど） */
.hero.is-page .eyebrow {
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .9;
  margin: 0 0 10px;
}

.hero.is-page .hero__inner {position:relative; z-index:1; padding-block:min(12vh,120px); padding-top:calc(var(--header-h) + 40px);padding-bottom: 40px;}

/* ===============================
   Sections
================================ */
.section--soft{background:var(--c-soft)}
.section-title{text-align:center; font-family:var(--ff-serif); font-size:28px; margin-bottom:40px; letter-spacing:.05em}
.section-title::after{content:""; display:block; width:56px; height:3px; margin:10px auto 0; background:var(--c-accent); border-radius:999px}

/* ===============================
   Split（左右交互）: Flex版
================================ */
.split{
  display:flex; align-items:center; gap:60px;
  max-width:1200px; margin:60px auto; padding-inline:var(--px);
}
.split__img,.split__text{flex:1 1 0%}
.split--rev{flex-direction:row-reverse}
.split__img img{width:100%; border-radius:12px; box-shadow:0 6px 20px rgba(0,0,0,.08)}
.split__text h2{font-family:var(--ff-serif); font-size:26px; margin:0 0 18px}
.split__text h2::after{content:""; display:block; width:56px; height:3px; margin-top:10px; background:var(--c-accent); border-radius:999px}
.split__text p{margin-bottom:24px; color:#555; line-height:1.8}

/* ===============================
   パンくず
================================ */
#breadcrumbs {margin-top:10px; font-size:0.8em;}
#breadcrumbs ol{display:flex;flex-wrap:wrap;gap:.25em .5em;margin:0;padding:0;list-style:none}
#breadcrumbs li{display:inline-flex;align-items:center;color:var(--c-accent)}
#breadcrumbs a{color:var(--c-accent);text-decoration:none}
#breadcrumbs a:hover{text-decoration:underline}
#breadcrumbs li+li::before{content:"›";margin:0 .5em;color:var(--c-accent)}
#breadcrumbs [aria-current="page"]{max-width:60vw;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}


/* ===============================
   Content1
================================ */
.cont_flex1 {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-top: 80px;
  align-items: center;
}

.cont_flex1 div.box {
  flex: 1;
}

.cont_flex1 div.box a.btn--outline {
  color: var(--c-accent);
}

.cont_flex1 div.box a.btn--outline:hover {
  color: #FFF;
}

.cont_flex1 div.box a.btn--primary {
  color: #FFF;
}

.cont_flex1 h2 {font-family:var(--ff-serif); font-size:var(--fz-h2); font-weight: 700; margin:0 0 18px}
.cont_flex1 h2::after{content:""; display:block; width:56px; height:3px; margin-top:10px; background:var(--c-accent); border-radius:999px}

@media (max-width:720px){
  .cont_flex1 {
    flex-direction: column !important;
    gap: 30px;
    margin-top: 50px;
  }
  
  .cont_flex1.cont-rev {
    flex-direction: column-reverse !important;
  }
}


/* ===============================
   Gallery（フルブリード横スクロール / Flex）
================================ */
.gal-title h2 {
  font-family: var(--ff-serif);
  font-size:var(--fz-h2);
  margin: 0 0 18px;
  font-weight: 700;
}
.gal-title h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--c-accent);
  border-radius: 999px;
}

/* ギャラリー全体を画面幅いっぱいに */
#col_main .gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;             /* ← 横スクロールを許可 */
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 0 16px 12px;
  margin: 0 auto;
  width: 100vw;                 /* ← フルブリード */
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  justify-content: flex-start;  /* ← 中央寄せをやめて左詰めに変更 */
  flex-wrap: unset;
}

/* 横スクロールの挙動：スナップで心地よく止まる */
.gallery .box {
  flex: 0 0 clamp(200px, 28vw, 320px);
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
  transition: transform .3s ease;
}

/* hover時 */
.gallery .box:hover {
  transform: translateY(-2px);
}

/* 画像 */
.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}
.gallery img:hover {
  transform: scale(1.05);
  opacity: .9;
}

/* スクロールバーのデザイン */
.gallery::-webkit-scrollbar {
  height: 8px;
}
.gallery::-webkit-scrollbar-track {
  background: #f3f3f3;
  border-radius: 999px;
}
.gallery::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 999px;
}

/* モバイル調整 */
@media (max-width: 600px) {
  .gallery {
    padding: 0 10px 8px;
  }
  .gallery .box {
    flex-basis: clamp(140px, 60vw, 240px);
  }
}


/* ===============================
   News
================================ */
#news {
  margin: 100px auto;
  padding: 50px;
  max-width: 800px;
}

.news-list{
  max-width:700px; margin:0 auto; list-style:none; padding-right:10px;
  height:120px; overflow:auto;
}
.news-list li{border-bottom:1px solid #ddd; padding:14px 0; display:flex; gap:14px; align-items:center; font-size:15px; color:#444}
.news-list li span{color:var(--c-accent); font-weight:600; font-size:14px}

@media (max-width: 520px) {
  #news {
    margin: 50px auto;
    padding: 30px 15px;
  }
}

/* ===============================
   ABOUT（Flex）
================================ */
.section--about {
  background: #fff;
}

/* 全体：form_wrap と about-map の2カラム */
#about {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* 左カラム：form_wrap */
.form_wrap {
  flex: 1 1 50%;
  border: 1px solid transparent;
  padding: 24px 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}



/* 各行（dl） */
section div.form_wrap dl {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--c-border);
  margin: 0;
}
section div.form_wrap dl:last-child {
  border-bottom: none;
}

section div.form_wrap dl:last-of-type dt {
  border-bottom: none;
}

section div.form_wrap dl:last-of-type dd {
  border-bottom: none;
}

/* 見出し */
section div.form_wrap dl dt {
  flex: 0 0 180px;
  margin: 0;
  color: var(--c-accent);
  font-weight: 600;
  letter-spacing: .02em;
  display: flex;
  gap: 8px;
  align-items: center;
  border: none;
  background-color: unset;
}
.form_wrap dt i {
  color: #b98190;
  width: 18px;
  text-align: center;
}

/* 内容 */
section div.form_wrap dl dd {
  flex: 1 1 auto;
  margin: 0;
  color: #2b2b2b;
  line-height: 1.9;
  border: none;
  background-color: unset;
}
.about-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 6px;
  font-size: 14px;
  color: #7c4f5b;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-tel {
  font-weight: 700;
  letter-spacing: .02em;
}

/* チップ */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: var(--c-soft);
  color: var(--c-accent);
  font-size: 12px;
}
.chip--muted {
  background: #f2f2f2;
  color: #666;
}

/* SNSピル */
.sns-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--c-soft);
  border: 1px solid rgba(0, 0, 0, .05);
  margin-right: 8px;
}
.sns-pill i {
  color: var(--c-accent);
  font-size: 15px;
}

/* 右カラム：Google Map */
.about-map {
  flex: 1 1 45%;
}
.about-map .map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
  background: #eee;
}
.about-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.map-note {
  font-size: 13px;
  color: #666;
  margin: 10px 4px 0;
}

/* ===============================
   Responsive
================================ */
@media (max-width: 1024px) {
  .form_wrap dt {
    flex-basis: 140px;
  }
}

@media (max-width: 900px) {
  #about {
    flex-direction: row;
  }
  section div.form_wrap,
  .about-map {
    flex: 1 1 100%;
  }
  .about-map .map-embed {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 520px) {
  .form_wrap {
    padding: 10px 0;
  }
  section div.form_wrap dl {
    flex-direction: column;
    gap: 1px;
    padding: 10px 10px;
  }
  section div.form_wrap dt {
    flex-basis: auto;
  }
  
  section div.form_wrap dl dt {
    flex: 1;
  }
}

@media screen and (max-width: 468px) {
  section form div.form_wrap dl dt {
    border-right: none;
  }
}


/* ===============================
   Contact CTA（Flex）
================================ */

.section--cta {
  background: var(--c-soft); /* ピンク背景（変数に設定済み） */
  position: relative;
  width: 100vw;              /* ← 画面全幅に拡張 */
  left: 50%;
  transform: translateX(-50%); /* ← コンテンツ幅の中央揃えを保ちながら全幅化 */
  padding: 50px 0;
  box-sizing: border-box;
}

.contact-grid {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1120px;       /* コンテンツ幅を制限 */
  margin: 0 auto;
  padding: 0 24px;
}

.contact-left {
  flex: 1 1 420px;
  min-width: 320px;
  padding:0 20px;
}

.contact-right {
  flex: 0 0 auto;
  padding:0 20px;
}

.contact-right div {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-right a.btn--inverse {
  color: #fff;
}

.contact-left h2 {
  font-family: var(--ff-serif);
  font-size:var(--fz-h2);
  margin: 0 0 8px;
}
.contact-left h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  background: var(--c-accent);
  border-radius: 999px;
}

.contact-left div {
  margin-top: 10px;
  color: #555;
  line-height: 1.8;
}

.tel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
.tel-link {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: .04em;
}
.small {
  font-size: 12px;
  color: var(--c-muted);
}

@media (max-width: 900px) {
  .contact-grid {
    flex-direction: column;
    align-items: flex-center;
  }
  .section--cta {
    padding: 40px 0;
  }
  .contact-left,
  .contact-right {
    padding: 10px 0;
    flex: unset;
  }
}

@media (max-width: 480px) {
  .contact-right div a {
    width: 100%;
  }
}


/* ===============================
   Footer
================================ */
footer#global_footer {font-size: 16px; min-width: unset;}
.footer{border-top:1px solid var(--c-border); padding:28px 0 40px; color:#FFF; font-size:16px; background-color: #666666;}
.footer__links{display:flex; gap:18px; flex-wrap:wrap; justify-content:center; margin-bottom:8px}
.footer__links a{opacity:.9}
.footer__links a:hover{opacity:1; text-decoration:underline}
.footer__copy{text-align:center}


/* ==========================
   スマホ固定ボタン
========================== */
.fixed-contact {
  display: none; /* PCでは非表示 */
}

@media (max-width: 520px) {
  .fixed-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    opacity: 0.9;
  }

  .fixed-contact a {
    flex: 1;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 0;
    text-decoration: none;
  }

  .fixed-contact .btn-tel {
    background: var(--c-accent);
  }

  .fixed-contact .btn-contact {
    background: var(--c-blue);
  }

  /* iPhoneの下端セーフエリア対応 */
  .fixed-contact a {
    padding-bottom: calc(14px + env(safe-area-inset-bottom));
  }

  /* コンテンツと重ならないように余白確保 */
  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 520px) {
  .fixed-contact {
    animation: fadeUp 0.4s ease;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ===============================
   Animations
================================ */
@keyframes fadeUp{from{opacity:0; transform:translateY(14px)} to{opacity:1; transform:none}}
.fade-in-up{opacity:0; animation:fadeUp .8s var(--ease) forwards; animation-delay:var(--d,0ms)}
.fade-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-target.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion:reduce){
  .fade-in-up{animation:none; opacity:1}
  .fade-target{opacity:1; transform:none; transition:none}
}
/* フェード時も translateX を維持したまま Y だけ動かす */
.section--cta.fade-target{ transform:translateX(-50%) translateY(24px); }
.section--cta.fade-target.visible{ transform:translateX(-50%) translateY(0); }

/* 同様に fullbleed を使っているギャラリー等があれば */
.fullbleed{ width:100vw; position:relative; left:50%; transform:translateX(-50%); }
.fullbleed.fade-target{ transform:translateX(-50%) translateY(24px); }
.fullbleed.fade-target.visible{ transform:translateX(-50%) translateY(0); }

/* ===============================
   Utilities
================================ */
@media (max-width:720px){
  :root{ --header-h:64px }
  .hero{min-height:68vh}
}


/* ===============================
   pages
================================ */
.page_title{
  min-height:25vh;
  display:flex; align-items:center; position:relative; isolation:isolate;
  color:#fff;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.25)),
    url("/images/contents/hero.png") center/cover no-repeat;
}
.page_title__overlay{position:absolute; inset:0; background:radial-gradient(1200px 500px at 50% 10%, rgba(255,255,255,.15), transparent 60%); z-index:0; pointer-events:none}
.page_title__inner{position:relative; z-index:1; padding-block:min(12vh,120px); padding-top:calc(var(--header-h) + 40px);padding-bottom: 40px;}
.eyebrow{font-size:13px; letter-spacing:.22em; text-transform:uppercase; opacity:.9; margin:0 0 10px}
.page_title__title{margin:0 0 14px; font-family:var(--ff-serif); font-weight:700; line-height:1.35; font-size:var(--fz-hero); text-shadow:0 2px 12px rgba(0,0,0,.25)}



/* ===============================
   menu
================================ */
div.form_wrap.menu_cont1 {
  margin: 30px 0;
}
.menu_cont1 dd {
  text-align: right;
}
.section--menu {
  display: flex;
  flex-wrap: wrap;
}
.section--menu .menu_cont1 {
  flex: 1 1 calc(50% - 15px);
}

.section--menu .menu_cont1.mc_left {
  margin-right: 30px;
}

section div.form_wrap.menu_cont1 dl dt {
  flex: unset;
  text-align: left;
  align-items: unset;
}

section div.form_wrap.menu_cont1 dl dt small {
  font-size:0.8em;
}

.menu_cont1 img {
  margin: 30px 0;
}

@media (max-width:720px){
  .section--menu {
    flex-direction: column;
  }
  .section--menu .menu_cont1 {
    flex: 1;
  }
  
  .section--menu .menu_cont1.mc_left {
    margin-right: 0;
  }
  .section--menu.rev {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 520px) {
  section div.form_wrap.menu_cont1 dl dt,
  section div.form_wrap.menu_cont1 dl dd {
    width: 100% !important;
  }
  
  div.form_wrap.menu_cont1 {
    margin: 10px 0;
  }
}

@media screen and (max-width: 468px) {
  .menu_cont1 img {
    max-width: 100%;
  }
}

/* ===============================
   about
================================ */
section div.form_wrap.about_cont1 dl dt {
  flex: 0 0 30%;
  align-items: flex-start;
  padding-left: 3em;
}

@media (max-width:720px){
  section div.form_wrap.about_cont1 dl dt {
    flex: unset;
    padding: 8px;
  }
}

@media (max-width:520px){
  section div.form_wrap.about_cont1 dl dt,
  section div.form_wrap.about_cont1 dl dd{
    width: 100% !important;
  }
}

div.form_wrap.staff_cont1 {
  margin: 30px 0;
}

.section--staff {
  display: flex;
  flex-wrap: wrap;
}
.section--staff .staff_cont1 {
  flex: 1 1 calc(50% - 15px);
  align-content: center;
}

.section--staff .staff_cont1.mc_left {
  margin-right: 30px;
  max-width: 480px;
}

section div.form_wrap.staff_cont1 dl dt {
  flex: unset;
  text-align: left;
  align-items: unset;
}

section div.form_wrap.staff_cont1 dl dt small {
  font-size:0.8em;
}

.staff_cont1 img {
  margin: 30px 0;
}

.staff_cont1 h3 {
  font-size: var(--px);
  font-weight: 700;
  font-family: var(--ff-serif);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #CCC;
}

@media (max-width:720px){
  .section--staff {
    flex-direction: column;
  }
  .section--staff .staff_cont1 {
    flex: 3;
  }
  
  .section--staff .staff_cont1.mc_left {
    margin-right: 0;
    flex: 4;
  }
  .section--staff.rev {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 468px) {
  .staff_cont1 img {
    max-width: 100%;
  }
}

.shop_img {
  gap: 20px;
}

.shop_img div.box {
  width: calc(50% - 10px);
}

.shop_img div.box h3 {
  display: none;
}

/* ===============================
   contact
================================ */
section div.form_wrap.cta_form {
  max-width: 800px;
}


section div.form_wrap.cta_form .tel {
  flex-direction: row;
}

.bt_confirm {
  text-indent: 0 !important;
  background: unset;
  width: 200px;
  background-color: var(--c-accent);
  color: #FFF;
  font-weight: 700;
  padding: 15px;
  height: auto;
  border: 1px solid #FFF;
}

section p.annot, section form p.annot {
  color: var(--c-accent);
  max-width: 800px;
  margin: 0 auto;
}

section div.form_wrap dl dt label {
  color: var(--c-accent);
  margin:unset;
}

section div.form_wrap.cta_form dl dt {
  flex-direction: row;
  justify-content: flex-start;
}

h2.mail.title{display:none;}

@media (max-width:520px){
  section div.form_wrap.cta_form dl dt {
    width: 100% !important;
    align-items: flex-start;
  }
  
  section div.form_wrap.cta_form dl dd {
    width: 100% !important;
  }
  
  section div.form_wrap.cta_form .tel {
    flex-direction: column;
  }
}

/* ===============================
   追加コンテンツ
================================ */
.image_3_cont,
.image_4_cont {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.image_3_cont .box,
.image_4_cont .box{
  flex: 1;
  min-width: 260px;
}

.image_3_cont .box img,
.image_4_cont .box img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width:1144px){
  .image_4_cont .box {
    flex: 45%;
  }
}


/* ===============================
   shop
================================ */
.page-shop .hero.is-page .page_title__title {
  font-size: var(--fz-lead, clamp(28px, 4vw, 48px));
}

div.items {
  margin-left: 0;
  gap: 20px;
}

div.items > article {
  width: calc((100% / 4) - 20px);
  margin-left: 0;
}

div.items > article a.photo {
  width: 100%;
  height: unset;
  aspect-ratio: 1 / 1;
}

div.items > article p.summary {
  text-align: left;
}

div.item_view {
  margin-left: 35px;
  min-width: 420px;
  max-width: 420px;
}

.page-shop-purchase-cart #sumcart ul li a.name {
  font-size: var(--fz-title);
}

#sumcart div.sum > div > div:nth-child(2) {
  min-width: unset;
}


@media (max-width:980px){
    .page-shop div.photo {
    flex-direction: column;
  }
  
  div.photo div.small {
    min-width: 100%;
  }
  
  div.photo div.small ul li {
    flex:1;
  }
  
  div.photo div.small ul li img {
    aspect-ratio: 1 / 1;
  }
  
  div.item_view h2 {
    margin-top: 20px;
  }
}
  

@media (max-width:768px){
  div.items > article {
    width: calc((100% / 2) - 20px);
  }
  
  div.item_view {
    margin-left: 0;
    min-width: 100%;
    max-width: 100%;
  }
}

@media (max-width:640px){
  .page-shop-purchase-cart #sumcart ul li {
    flex-direction: column;
    gap: 20px;
  }
  
  #sumcart ul li div.count {
    min-width: 100%;
    max-width: 100%;
    justify-content: flex-end;
  }
}

@media (max-width:468px){
  div.item_view div.struct {
    flex-direction: column;
  }
  
  div.item_view div.sku {
    width: 100%;
  }
  
  div.item_view div.item_option {
    width: 100%;
  }
  
  div.items > article {
    width: 100%;
  }
  
  .page-shop div.photo {
    flex-direction: column;
  }
  
  div.photo div.small {
    min-width: 100%;
  }
  
  div.photo div.small ul li {
    flex:1;
  }
  
  div.photo div.small ul li img {
    aspect-ratio: 1 / 1;
  }
  
  div.item_view h2 {
    margin-top: 20px;
  }
}