/* RSK Terrasse eternell - TOP (mobile first) */

:root{
  --bg: #fff6f5;          /* 淡いピンク */
  --paper: #fff;          /* 白カード */
  --ink: #294b2d;          /* 濃いグリーン */
  --ink2:#3c6a3b;          /* 見出しグリーン */
  --muted:#5d6f5d;
  --accent:#2f6b38;        /* CTAグリーン */
  --accent2:#3e8347;
  --line:#e7ece6;
  --radius: 18px;

  --font: "Zen Maru Gothic","Noto Sans JP",system-ui,-apple-system,"Segoe UI",sans-serif;
  --serif:"Cormorant Garamond",serif;
}

*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family:var(--font);
  background:var(--bg);
  color:var(--ink);
  line-height:1.85;
  overflow-x:hidden;
}

/* ===== Header（添付と同じ見た目） ===== */
.header{
  position:fixed;
  inset:0 0 auto 0;
  height:56px;
  z-index:1000;
  overflow:hidden;
  background:#f4f0e6; /* 花柄の下地 */
}

.header::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("images/header-decoration.png") center/cover no-repeat; /* 全面敷き */
  opacity:1; /* 画像が濃い場合は 0.6〜0.85 に下げる */
  pointer-events:none;
  z-index:0;
}

.header-inner{
  position:relative;
  z-index:1;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:0 14px;
}

/* ロゴは中央固定 */
.logo{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  text-decoration:none;
  text-align:center;
  line-height:1;
  white-space:nowrap;
}
.logo-line1{
  display:block;
  font-family:var(--serif);
  font-size:18px;
  font-weight:600;
  letter-spacing:2px;
  color:#567a45;
  margin-bottom:2px;
}
.logo-line2{
  display:block;
  font-family:var(--serif);
  font-size:30px;
  font-weight:500;
  letter-spacing:1px;
  color:#567a45;
}

/* hamburger */
/* ===== menu icon : hamburger → X（確実版）===== */
.menu-toggle{
  position: relative;
  width: 44px;
  height: 44px;
}

/* 3本線を「中央基準」で固定 */
.menu-toggle span{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 2px;
  background: #6a6a6a;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: .25s ease;
}

/* 上・中・下の位置 */
.menu-toggle span:nth-child(1){
  transform: translate(-50%, calc(-50% - 8px));
}
.menu-toggle span:nth-child(2){
  transform: translate(-50%, -50%);
}
.menu-toggle span:nth-child(3){
  transform: translate(-50%, calc(-50% + 8px));
}

/* 開いたら「×」 */
.menu-toggle.active span:nth-child(1){
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
  opacity: 0;
}
.menu-toggle.active span:nth-child(3){
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* slide menu */
.nav-menu{
  position:fixed;
  top:0; right:-100%;
  width:min(86vw,340px);
  height:100vh;
  background:rgba(255,246,245,.98);
  backdrop-filter: blur(10px);
  padding:72px 18px 18px;
  box-shadow:-12px 0 30px rgba(0,0,0,.10);
  transition:right .35s ease;
  z-index:1000; /* ← 1001でもOK。overlayより上ならOK */
}
.nav-menu.active{right:0}
.nav-list{list-style:none;display:flex;flex-direction:column}
.nav-item{border-bottom:1px solid rgba(47,107,56,.12)}
.nav-link{
  display:block;
  padding:14px 10px;
  text-decoration:none;
  color:var(--ink);
  font-weight:600;
  font-size:14px;
}
.nav-link.active,
.nav-link:hover{
  background:rgba(47,107,56,.08);
  border-radius:12px;
}


.nav-contact{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(47,107,56,.18);
  display:grid;
  gap:10px;
}
.nav-tel{
  display:flex;align-items:center;justify-content:center;gap:8px;
  text-decoration:none;
  background:#fff;
  border-radius:14px;
  padding:12px;
  color:var(--accent);
  font-weight:700;
}
.nav-cta{
  text-decoration:none;
  background:var(--accent);
  color:#fff;
  border-radius:999px;
  padding:12px 14px;
  text-align:center;
  font-weight:800;
}
.nav-cta:hover{background:var(--accent2)}

.menu-overlay{
  position:fixed; inset:0;
  background:rgba(0,0,0,.25); /* ← 0.45 → 0.25 に */
  opacity:0; visibility:hidden;
  transition:.25s ease;
  z-index: 999;              /* ← nav-menu より下に */
  pointer-events:none;
}
.menu-overlay.active{
  opacity:1;
  visibility:visible;
}



/* ===== Main ===== */
/* ===== Main（ヘッダー固定の被り対策） ===== */
.main-content { padding-top: 56px; }  /* ←スマホのヘッダー高さ */

.main{padding-top:96px}

/* ===== HERO ===== */

/* ===== HERO（画像上にテキスト＋CTAを重ねる） ===== */

.hero-photo{
  position: relative;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

.hero-photo img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: brightness(90%);
}

/* 画像の上に重ねる（白帯なし） */
.hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 18px 18px 20px;
  background: transparent;
}

/* キャッチコピー（白文字＋影） */
.hero-overlay-title{
  margin: 0;
  font-family: var(--serif);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.5px;
  text-shadow:
    0 2px 10px rgba(0,0,0,.45),
    0 1px 2px rgba(0,0,0,.55);
}

/* CTAボタン */
.hero-btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

.hero-btn-primary{
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 18px rgba(0,0,0,.20);
}

/* レスポンシブ */
@media (min-width: 768px){
  .hero-photo img{ height: 300px; }
  .hero-overlay-title{ font-size: 34px; }
  .hero-btn{ font-size: 15px; padding: 16px 28px; }
  filter: brightness(90%);
}


.hero { position:relative; padding:0 }


.hero-bg{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(47,107,56,.06) 0%, transparent 70%);
  pointer-events:none;
}
.hero-wrap{
  position:relative;
  max-width:980px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

.hero-photo{
  border-radius: 0;
  overflow:hidden;
  box-shadow: none;
}
.hero-photo img{display:block;width:100%;height:210px;object-fit:cover}

.hero-panel{
  background:#fff;
  border: radius 0;
  padding:16px 16px 14px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.hero-kicker{
  font-size:12px;
  color:var(--muted);
  font-weight:700;
  margin-bottom:6px;
  letter-spacing:.5px;
}
.hero-title{
  font-family:var(--serif);
  color:var(--ink2);
  font-size:22px;
  line-height:1.35;
  margin-bottom:12px;
}
.hero-ctas{display:grid;gap:10px;margin:10px 0 6px}
.hero-note{
  margin-top:8px;
  background:rgba(47,107,56,.06);
  border-radius:16px;
  padding:10px 12px;
  font-size:12px;
  color:#2f4f33;
}

/* ===== Sections ===== */
.section{
  max-width:980px;
  margin:0 auto;
  padding:18px 0 6px;
}
.section-title{
  text-align:center;
  font-family:var(--serif);
  color:var(--ink2);
  font-size:22px;
  letter-spacing:1px;
  margin:8px 0 14px;
}

.section-title-wrap{
  display:flex;
  align-items:center;
  gap:14px;
}

.section-title{
  white-space: nowrap;
}

.title-logo{
  height:28px;
  width:auto;
}

/* archive - スクロール対応版 */
.archive-scroll-container {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}

.archive-list {
  display: grid;
  gap: 10px;
  max-height: 240px; /* 3件分の高さ（1件約80px × 3） */
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 8px; /* スクロールバー用の余白 */
  scrollbar-width: thin;
  scrollbar-color: rgba(47,107,56,.3) rgba(47,107,56,.1);
}

/* Webkit用スクロールバーカスタマイズ */
.archive-list::-webkit-scrollbar {
  width: 6px;
}

.archive-list::-webkit-scrollbar-track {
  background: rgba(47,107,56,.1);
  border-radius: 10px;
}

.archive-list::-webkit-scrollbar-thumb {
  background: rgba(47,107,56,.3);
  border-radius: 10px;
}

.archive-list::-webkit-scrollbar-thumb:hover {
  background: rgba(47,107,56,.5);
}

.archive-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.archive-item:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.archive-pill {
  font-size: 11px;
  font-weight: 800;
  color: #2f6b38;
  background: rgba(47,107,56,.10);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.archive-text {
  font-weight: 700;
  font-size: 13px;
}

/* スクロール矢印 */
.archive-scroll-btn {
  position: absolute;
  right: 12px;
  bottom: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(47,107,56,.3);
  transition: all 0.3s ease;
  z-index: 10;
}

.archive-scroll-btn:hover {
  background: var(--accent2);
  transform: translateY(2px);
  box-shadow: 0 6px 16px rgba(47,107,56,.4);
}

.archive-scroll-btn svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* PC時の調整 */
@media (min-width: 1024px) {
  .archive-scroll-container {
    max-width: 760px;
  }

  .archive-list {
    gap: 8px;
    max-height: 220px; /* PC用に微調整 */
  }

  .archive-item {
    padding: 10px 12px;
    border-radius: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,.05);
    gap: 12px;
  }

  .archive-pill {
    font-size: 10px;
    padding: 5px 9px;
    min-width: 78px;
  }

  .archive-text {
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* pricing */
.pricing-card{
  background:#fff;
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.pricing-main{display:grid;gap:8px;margin-bottom:14px}
.price{display:flex;align-items:baseline;gap:6px;justify-content:center}
.price-amount{font-family:var(--serif);font-size:44px;font-weight:700;color:var(--ink2)}
.price-unit{font-weight:900;color:var(--ink2)}
.price-sub{font-size:12px;color:var(--muted);margin-left:6px}
.pricing-note{text-align:center;color:var(--muted);font-size:12px}
.pricing-cta{display:grid;gap:10px;margin-top:10px}

/* space */
.space-grid{display:grid;gap:10px;margin-top:12px}
.space-card{
  background:rgba(255,255,255,.85);
  border:1px solid rgba(47,107,56,.10);
  border-radius:18px;
  padding:14px;
}
.space-title{color:var(--ink2);font-weight:900;margin-bottom:4px}
.space-desc{color:var(--muted);font-size:12px}

/* usecase */
/* ===== USECASE（活用例：写真カード） ===== */
/* ===== USECASE（活用例：写真カード） ===== */
.usecase-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.usecase-thumb{
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
}

.usecase-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スマホは横幅が狭い場合2列に落とす */
@media (max-width: 520px){
  .usecase-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  
}

.recommend{
  background:#fff;
  border-radius:22px;
  padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.recommend-title{
  text-align:center;
  font-weight:900;
  color:var(--ink2);
  margin-bottom:10px;
}
.recommend-list{list-style:none;display:grid;gap:10px}
.recommend-list li{
  background:rgba(47,107,56,.06);
  border-radius:16px;
  padding:12px 12px;
  font-size:12px;
  color:#2f4f33;
}
.recommend-foot{margin-top:10px;color:var(--muted);font-size:12px;text-align:center}

/* ===== About Page ===== */

.aboutp-titleband{
  background: #faf4ef;
  padding: 36px 16px 28px;
  text-align: center;
}

.aboutp-title{
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink2);
  margin-bottom: 8px;
  margin-top: 40px;
}

.aboutp-sub{
  font-size: 13px;
  color: var(--muted);
  margin-top: 0px;
}

.aboutp-paper{
  background: #fff7f5;
  padding: 28px 16px 40px;
}

.aboutp-paper-inner{
  max-width: 720px;
  margin: 0 auto;
}

.aboutp-block{
  margin-bottom: 32px;
}

.aboutp-h2{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap;
}

.aboutp-title-text{
  white-space:nowrap;
}

.aboutp-title-logo{
  height:35px;
  width:auto;
}

.aboutp-text{
  font-size: 14px;
  line-height: 2;
  color: var(--ink);
}

.aboutp-timeline{
  list-style: none;
  padding: 0;
  margin: 0;
}

.aboutp-timeline li{
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
  color: var(--ink);
}

.aboutp-timeline .year{
  font-weight: 700;
  margin-right: 8px;
  color: var(--accent);
}

.aboutp-cta{
  background: #fff;
  border-radius: 20px;
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.aboutp-cta-text{
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--ink2);
}

.aboutp-cta-actions{
  display: grid;
  gap: 10px;
}

/* 上釜地区の魅力 */

.aboutp-area-points{
  margin-top: 14px;
  padding-left: 18px;
  list-style: disc;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.9;
}

.aboutp-area-points li{
  margin-bottom: 6px;
}

@media (min-width: 768px){
  .aboutp-title{ font-size: 34px; }
  .aboutp-paper{ padding: 40px 24px 56px; }
  .aboutp-cta-actions{
    grid-template-columns: 1fr 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ===== Guide Page（運営者サイト風：スマホ最適化） ===== */

.g-hero{ padding: 14px 14px 8px; max-width: 980px; margin: 0 auto; }

/* Hero Photo */
.g-hero-media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
  background: #fff;
}

/* PC版で高さ制限を解除 */
/* PC版：ご利用案内のヒーロー画像をギャラリーと同じサイズに */
@media (min-width: 1024px) {
  .g-hero-media {
    height: 400px !important; /* ギャラリーと同じ高さに */
    min-height: auto;
  }
  
  .g-hero-img {
    height: 100% !important;
    width:120vh;
    object-fit: cover !important;
    object-position: center center !important;
  }
  
  /* オーバーレイの調整 */
  .g-hero-overlay {
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0,0,0,.70) 100%);
  }
}

/* 文字を読めるように暗幕 */
.g-hero-overlay{
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 16px 16px 14px;
  background: linear-gradient(180deg, transparent 0%, transparent 60%, rgba(0,0,0,.75) 100%);
}

.g-kicker{
  font-size: 12px;
  color: rgba(255,255,255,.85);
  font-weight: 800;
  letter-spacing: .05em;
}
.g-title{
  font-family: var(--serif);
  color: #fff;
  font-size: 30px;
  line-height: 1.15;
}
.g-lead{
  color: rgba(255,255,255,.92);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 700;
}

.g-cta{
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

/* Quick facts */
.g-quick{
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.g-qitem{
  background: #fff;
  border-radius: 18px;
  padding: 10px 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  display: grid;
  gap: 4px;
}
.g-qcap{
  font-size: 11px;
  color: var(--muted);
  font-weight: 900;
}
.g-qval{
  font-size: 12px;
  color: var(--ink2);
  font-weight: 900;
  line-height: 1.2;
}
.g-qsub{
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

/* Subtitle helper */
.g-subtitle{
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  margin: -6px 0 14px;
  line-height: 1.8;
}

/* Photo grid (recommended way) */
.g-photo-grid{
  display: grid;
  gap: 10px;
  text-align: center;
}
.g-photo{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.g-photo img{
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.g-photo figcaption{
  padding: 10px 12px 12px;
  font-weight: 900;
  color: var(--ink2);
  font-size: 12px;
}

/* Mobile friendly table */
.g-table{
  background:#fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.g-row{
  display: grid;
  grid-template-columns: 110px 1fr;
  border-top: 1px solid rgba(47,107,56,.10);
}
.g-row:first-child{ border-top:none; }
.g-th{
  background: rgba(47,107,56,.06);
  padding: 12px;
  font-weight: 900;
  color: var(--ink2);
  font-size: 12px;
}
.g-td{
  padding: 12px;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.85;
}

/* Steps */
.g-steps{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.g-step{
  background:#fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
}
.g-step-no{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}
.g-step-title{
  font-weight: 900;
  color: var(--ink2);
  margin-bottom: 2px;
  font-size: 14px;
}
.g-step-text{
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
  font-weight: 700;
}

/* Tags & list */
.g-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.g-tag{
  background: rgba(47,107,56,.10);
  color: var(--accent);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 999px;
}
.g-list{
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 800;
  font-size: 13px;
  line-height: 1.95;
}
.g-list li{ margin-bottom: 6px; }

/* Usecase */
.g-usecase-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.g-usecase-card{
  text-decoration: none;
  color: inherit;
  display: grid;
  gap: 10px;
}
.g-usecase-thumb{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.g-usecase-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.g-usecase-label{
  text-align: center;
  font-weight: 900;
  color: var(--ink2);
  font-size: 12px;
}

/* Notes */
.g-note{
  background:#fff;
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
.g-note-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  font-weight: 700;
}
.g-note-list li{ margin-bottom: 6px; }

/* FAQ */
.g-faq{
  display: grid;
  gap: 10px;
}
.g-faq-item{
  background:#fff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}
.g-faq-item summary{
  cursor: pointer;
  font-weight: 900;
  color: var(--ink2);
  font-size: 13px;
  list-style: none;
}
.g-faq-item summary::-webkit-details-marker{ display:none; }
.g-faq-item summary::after{
  content: "＋";
  float: right;
  color: var(--accent);
  font-weight: 900;
}
.g-faq-item[open] summary::after{ content:"－"; }
.g-faq-item p{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  font-weight: 700;
}

/* CTA row */
.g-mini-cta{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

/* Responsive */
@media (max-width: 520px){
  .g-usecase-grid{ grid-template-columns: repeat(2, 1fr); }
  
  }

@media (min-width: 768px){
  .g-hero-img{ height: 340px; }
  .g-title{ font-size: 40px; }
  .g-cta{ grid-template-columns: 1fr 1fr; max-width: 520px; }
  .g-photo-grid{ grid-template-columns: repeat(3, 1fr); }
  .g-photo img{ height: 220px; }
  .g-mini-cta{ grid-template-columns: 1fr 1fr; max-width: 520px; }
  .g-row{ grid-template-columns: 150px 1fr; }
}

/* gallery */
.gallery{display:grid;gap:10px}
.gallery-main{
  background:#fff;border-radius:22px;overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.gallery-main img{width:100%;height:200px;object-fit:cover;display:block}
.gallery-main figcaption{padding:10px 12px;font-weight:900;color:var(--ink2)}
.gallery-sub{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.gallery-sub figure{
  background:#fff;border-radius:18px;overflow:hidden;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}
.gallery-sub img{width:100%;height:120px;object-fit:cover;display:block}
.gallery-sub figcaption{padding:8px 10px;font-size:12px;font-weight:800;color:var(--ink2)}

/* access */
.info-card{
  background:#fff;border-radius:22px;padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.info-dl{display:grid;gap:10px}
.info-dl div{display:grid;grid-template-columns:90px 1fr;gap:10px}
dt{font-weight:900;color:var(--ink2);font-size:12px}
dd{color:var(--muted);font-size:12px}
dd a{color:var(--accent);font-weight:900;text-decoration:none}
.map{
  margin-top:12px;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.map iframe{width:100%;height:260px;border:0;display:block}

/* contact */
.contact-wrap{display:grid;gap:12px;max-width:600px;margin:0 auto}
.contact-card{
  background:#fff;border-radius:22px;padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.contact-lead{color:var(--muted);font-size:12px}
.contact-actions{display:grid;gap:10px;margin-top:12px}

/* form */
.form{
  background:#fff;border-radius:22px;padding:16px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  display:grid;gap:12px;
}
.form-row{display:grid;gap:6px}
label{font-weight:900;color:var(--ink2);font-size:12px}
label span{margin-left:8px;font-size:10px;color:#fff;background:var(--accent);padding:2px 8px;border-radius:999px}
input,select,textarea{
  width:100%;
  border:1px solid rgba(47,107,56,.16);
  border-radius:14px;
  padding:12px 12px;
  font-family:var(--font);
  font-size:14px;
  background:#fff;
}
textarea{resize:vertical}
.form-note{font-size:11px;color:var(--muted)}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  text-decoration:none;
  border-radius:999px;
  padding:12px 14px;
  font-weight:900;
  letter-spacing:.5px;
  border:0;
  cursor:pointer;
}
.btn-primary{background:var(--accent);color:#fff;box-shadow:0 10px 18px rgba(47,107,56,.22)}
.btn-primary:hover{background:var(--accent2)}
.btn-ghost{
  background:#fff;
  color:var(--accent);
  border:2px solid rgba(47,107,56,.25);
}
.center-cta{margin:14px 0 6px}

/* footer */
.footer{
  margin-top:20px;
  background:#f4f0e6;
  position:relative;
  overflow:hidden;
}
.footer::before{
  content:"";
  position:absolute; inset:0;
  background:url("images/header-decoration.png") center/cover no-repeat;
  opacity:.55;
  pointer-events:none;
}
.footer-inner{
  position:relative;
  z-index:1;
  max-width:980px;
  margin:0 auto;
  padding:18px 14px 80px; /* floating CTA分 */
  text-align:center;
}
.footer-name{
  font-family:var(--serif);
  color:var(--ink2);
  font-size:22px;
  font-weight:600;
}
.footer-meta{margin-top:6px;color:#355a37;font-weight:700;font-size:12px}
.footer-meta a{color:var(--accent);text-decoration:none}
.footer-sns{display:flex;gap:10px;justify-content:center;margin:12px 0 8px}
.sns-btn{
  text-decoration:none;
  background:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  color:var(--ink2);
  border:1px solid rgba(47,107,56,.18);
}
.footer-copy{font-size:11px;color:#476047;margin-top:10px}

/* ===== Footer SNS icons ===== */
.footer-sns{
  display:flex;
  justify-content:center;
  gap:14px;
  margin:12px 0 8px;
}

.sns-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(47,107,56,.18);
  transition:transform .2s ease, box-shadow .2s ease;
}

.sns-icon svg{
  width:20px;
  height:20px;
  fill:var(--ink2);
}

.sns-icon:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}

/* floating CTA（集客用：電話＋予約相談） */
.floating-cta{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:10px;
  width:min(520px, calc(100% - 20px));
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  z-index:1200;
}
.floating-btn{
  text-decoration:none;
  border-radius:16px;
  padding:12px 10px;
  font-weight:900;
  text-align:center;
  box-shadow:0 12px 22px rgba(0,0,0,.14);
}
.floating-btn.call{
  background:#fff;
  border:2px solid rgba(47,107,56,.25);
  color:var(--accent);
}
.floating-btn.reserva{
  background:var(--accent);
  color:#fff;
}

/* tablet/pc */
@media (min-width:768px){
  .hero-wrap{grid-template-columns:1.1fr .9fr;align-items:stretch}
  .hero-photo img{height:280px}
  .hero-panel{display:flex;flex-direction:column;justify-content:center}
  .hero-title{font-size:26px}
  .pricing-cta{grid-template-columns:1fr 1fr}
  .contact-actions{grid-template-columns:1fr 1fr}
  .contact-wrap{grid-template-columns:1fr;max-width:760px;margin:0 auto}
  .map iframe{height:320px}
}

/* ===== PC：ハンバーガーを消して横並びメニュー ===== */
@media (min-width: 1024px){
  .header{ height: 72px; }
  .main{ padding-top: 72px; }
  .main-content{ padding-top: 72px; }
 .hero { padding: 0; }
.hero-wrap { 
  max-width: 100%; 
  margin: 0; 
  grid-template-columns: 1fr;  /* ← 2カラムを1カラムに戻す */
}
.hero-photo { border-radius: 0; box-shadow: none; }
  .header-inner {
  justify-content: flex-start;
  gap: 80px;  /* ロゴとメニューの間隔 */
}

  .logo{ z-index: 2; }
  .logo {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
}

  /* ハンバーガーとオーバーレイを非表示 */
  .menu-toggle{ display:none; }
  .menu-overlay{ display:none !important; }

  /* nav をヘッダー内に横並び */
  .nav-menu{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding: 0;
    margin-left: auto;

    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    overflow: visible;
    transition: none;
    right: auto;
    top: auto;
    width: auto;
  }

  .nav-list{
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .nav-link{
    padding: 10px 12px;
    font-size: 13px;
    line-height: 1;
    border-radius: 12px;
    white-space: nowrap;
  }

 .nav-reserva .nav-link{
  background: var(--accent);
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(47,107,56,.35);
  border: 2px solid rgba(255,255,255,.25);
  letter-spacing: .5px;
}

.nav-reserva .nav-link:hover{
  background: var(--accent2);
  box-shadow: 0 6px 16px rgba(47,107,56,.45);
}

  
  .nav-contact{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .nav-tel{
    margin: 0;
    padding: 8px 12px;
    font-size: 12px;
  }

  .nav-cta{
    padding: 10px 14px;
    font-size: 12px;
  }

}

/* ===== Concept（4つの想い） ===== */
.section-subtitle{
  text-align:center;
  color: var(--muted);
  font-size: 12px;
  margin: -6px 0 14px;
}

.concept-grid{
  display:grid;
  gap: 12px;
  .concept-card:nth-child(2) .concept-image img{
    object-position: center 60% !important;
  }
  .concept-card:nth-child(4) .concept-image img{
    object-position: center 80% !important;
  }
}

.concept-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.concept-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.concept-image{
  width: 100%;
  height: 140px;
  overflow:hidden;
}

.concept-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.concept-content{
  padding: 14px 14px 16px;
}

.concept-label{
  display:inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--accent);
  background: rgba(47,107,56,.10);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.concept-title2{
  margin: 0 0 8px;
  color: var(--ink2);
  font-weight: 900;
  font-size: 15px;
  line-height: 1.55;
}

.concept-description{
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

/* タブレット以上で2列に */
@media (min-width: 768px){
  .concept-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .concept-image{ height: 150px; }
  .concept-title2{ font-size: 16px; }
  .concept-description{ font-size: 13px; }
  .concept-card:nth-child(4) .concept-image img{
    object-position: center 120% !important;
  }
}

@media (min-width: 1024px){
  .concept-image{
    height: 170px !important;
  }

  .concept-image img{
    height: 100% !important;
    width: 100%;
    object-fit: cover;
    object-position: center 30% !important;
    .concept-card:nth-child(4) .concept-image img{
    object-position: center 20% !important;
  }
  }
}

/* ===== Page Base ===== */
.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 14px 24px;
}

.page-hero {
  background: #fff;
  border-radius: 22px;
  padding: 18px 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.page-kicker{
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}

.page-title{
  font-family: var(--serif);
  color: var(--ink2);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.page-lead{
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.page-card{
  margin-top: 12px;
  background: #fff;
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.page-card h2{
  font-family: var(--serif);
  color: var(--ink2);
  font-size: 20px;
  margin-bottom: 10px;
}

.list{
  list-style: none;
  display: grid;
  gap: 10px;
}

.list li{
  background: rgba(47,107,56,.06);
  border-radius: 16px;
  padding: 12px;
  color: #2f4f33;
  font-size: 13px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(47,107,56,.10);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}

.btn-row{
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 768px){
  .page{ padding: 22px 18px 30px; }
  .page-title{ font-size: 32px; }
  .btn-row{ grid-template-columns: 1fr 1fr; }
}

/* ===== Access Hero：背景画像つき（access.html用） ===== */
.page-hero--photo{
  position: relative;
  overflow: hidden;
  color: #fff;                    /* 文字を白に */
  background: #000;               /* 万一画像が読めない時の下地 */
  padding: 22px 16px;             /* 既存より少し余裕 */
}

/* 背景画像（差し替えはここ） */
/* 変更後（ページごとに分ける） */
.page-hero--photo.access::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/access-hero.jpg") center/cover no-repeat;
  filter: saturate(1.05);
  transform: scale(1.02);
  z-index:0;
}

.page-hero--photo.gallery::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/gallery-hero.jpg") center/cover no-repeat;
  filter: saturate(1.05);
  transform: scale(1.02);
  z-index:0;
}

/* ===== Access hero：暗幕をほぼ無し（スマホ含む） ===== */
.page-hero--photo::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.00) 0%,
    rgba(0,0,0,.45) 70%,
    rgba(0,0,0,.55) 100%
  );
  z-index:1;
}

/* 中身を前面へ */
.page-hero--photo > *{
  position: relative;
  z-index:2;
}

/* 文字色を上書き（既存の色指定に勝つように） */
.page-hero--photo .page-kicker,
.page-hero--photo .page-title,
.page-hero--photo .page-lead{
  color:#fff;
}

/* 文字の視認性アップ */
.page-hero--photo .page-title{
  text-shadow: 0 2px 10px rgba(0,0,0,.45);
}
.page-hero--photo .page-lead{
  color: rgba(255,255,255,.92);
}

/* ===== PCのみ：Access heroの文字をGuideと同じ「下寄せ」配置に ===== */
@media (min-width: 1024px){
  .page-hero--photo{
    height: 340px;                 /* guideと同じ高さ */
    padding: 0;                    /* 高さズレ防止 */
    display: grid;
    align-content: end;            /* 下に寄せる（guideのoverlayと同じ） */
    gap: 10px;
    padding: 16px 16px 14px;       /* guideのg-hero-overlayに合わせる */
  }

  /* 3点セットの見た目（任意だけど揃う） */
  .page-hero--photo .page-kicker{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
  }
  .page-hero--photo .page-title{
    font-size: 40px;               /* guideのPC見出し感に寄せる */
    line-height: 1.15;
  }
  .page-hero--photo .page-lead{
    font-size: 13px;
    line-height: 1.9;
    font-weight: 700;
  }
}

/* ===== hamburger overlay fix（必ずstyle.cssの一番下に追記） ===== */

/* ヘッダー一式を最前面に */
.header{
  z-index: 3000;
}
.header-inner{
  position: relative;
  z-index: 3001;
}
.menu-toggle{
  position: relative;
  z-index: 3002; /* ← ハンバーガーが必ず押せる */
}

/* スライドメニューは overlay より上 */
.nav-menu{
  z-index: 2500;
}

/* overlay は nav-menu より下、暗さも弱め */
.menu-overlay{
  z-index: 2000;
  background: rgba(0,0,0,.18); /* ← 暗さ調整（0.10〜0.25で好みに） */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.menu-overlay.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* ← 背景クリックで閉じたいならON */
}

/* ===== FIX: about/galleryでハンバーガーが押せない問題（style.css末尾に追記） ===== */
.header{ z-index: 3000; }
.header-inner{ position: relative; z-index: 3001; }

/* ハンバーガーは常に最前面 */
.menu-toggle{ position: relative; z-index: 3002; }

/* メニューとオーバーレイの前後関係を固定 */
.nav-menu{ z-index: 3001; }
.menu-overlay{ z-index: 2500; }

/* ===== HERO slider（同じ場所でフェード切替）===== */
.hero-slider{
  position: relative;
  height: 240px;        /* 高さを固定（超重要） */
  overflow: hidden;
}

/* 全スライドを完全に重ねる */
.hero-slider .hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease; /* フェード時間 */
}

/* 表示中 */
.hero-slider .hero-slide.is-active{
  opacity: 1;
  z-index: 1;
}

/* 画像 */
.hero-slider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* オーバーレイは常に最前面 */
.hero-slider .hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* タブレット以上 */
@media (min-width: 768px){
  .hero-slider{ height: 300px; }
}

/* PC以上 */
@media (min-width: 1024px){
  .hero-slider{ height: 740px; }
}

/* ===== スマホ用メニューバー ===== */
.sp-menubar {
  display: flex;
  overflow-x: auto;          /* 横スクロール可能 */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;     /* スクロールバー非表示 */
  background: #fff;
  border-top: 1px solid rgba(47,107,56,.12);
  position: fixed;
  top: 56px;                 /* ヘッダーの高さ分下げる */
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 4px;
}

.sp-menubar::-webkit-scrollbar {
  display: none;             /* Chrome用スクロールバー非表示 */
}

.sp-menubar-item {
  flex-shrink: 0;
  padding: 10px 8px;   /* 左右を詰めた */
  font-size: 12px;     /* 小さくした */
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.sp-menubar-item:hover,
.sp-menubar-item.active {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* PCでは非表示 */
@media (min-width: 1024px) {
  .sp-menubar {
    display: none;
  }
}

/* ===== 予約ページ Hero ===== */
.page-hero--photo.reserva::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("images/reserva-hero.jpg") center 10%/cover no-repeat;
  /* ↑ 20% の数字を変えると表示位置が変わる（0%=上、50%=中央、100%=下） */
  filter: saturate(0.8);
  transform: scale(1.02);
  z-index:0;
}

.page-hero--photo.reserva::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.30) 60%,
    rgba(0,0,0,.30) 100%
  );
  z-index:1;
}

/* ===== 予約ボタン：スマホメニュー内でも目立たせる ===== */
.nav-reserva{
  margin-top: 0px;
}
.nav-reserva .nav-link{
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  text-align: center;
  box-shadow: 0 4px 14px rgba(47,107,56,.35);
  border: none;
}
.nav-reserva .nav-link:hover{
  background: var(--accent2) !important;
}

/* SEO説明セクション */
.seo-section{
  max-width:980px;
  margin:0 auto;
  padding:18px 0 6px;
}

.seo-section p{
  max-width:720px;
  margin:0 auto;
  line-height:1.9;
  font-size:14px;
  color:var(--ink);
}

/* ===== スクロールアニメーション ===== */
.fade-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-hidden.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== スマホのみ：ハンバーガーボタンとTOPメニューを非表示 ===== */
@media (max-width: 1023px) {

  /* ハンバーガーボタンを非表示 */
  .menu-toggle {
    display: none;
  }

  /* sp-menubar の「TOP」リンクを非表示 */
  .sp-menubar-item[href="index.html"] {
    display: none;
  }

}

/* ===== スマホのみ：ご利用案内 FV 上切れ修正 ===== */
@media (max-width: 1023px) {
  .g-hero {
    padding-top: 60px;
  }
  .g-hero-media {
    margin: 0 -14px; /* g-heroの左右padding分を打ち消す */
  }
  .g-hero-img {
    height: 300px;
    margin-top: -10px;
    object-fit: cover;
}

/* ===== PCのみ：ご利用案内 FV 修正 ===== */
@media (min-width: 1024px) 
  .g-hero-img {
    g-hero-img {
    height: 340px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* 画像モーダル */
.image-modal{
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  cursor: pointer;
}

.image-modal-content{
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.image-modal-close{
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.image-modal-close:hover{
  color: #ccc;
}