@charset "utf-8";
/* ==========================================================================
   page.css
   下層ページ共通スタイル（ページヒーロー／パンくず／タブ切替）
   ========================================================================== */

/* ---------------------------------
   PAGE HERO
--------------------------------- */
.page-hero {
  position: relative;
  padding: 110px 0 0px;
  background: url("../img/bk/beigu-bk.jpg");
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

.sub-top {
  height: 5vw;
  min-height: 80px;
}

.sub-top span {
  transform: scale(-1, 1);
}

.page-hero .leaves span {
  right: -4vw;
  top: -6vw;
  transform: scaleX(-1);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

/* ---------------------------------
   ページ上部の装飾（main直下、下層ページ共通）
   ヘッダー内には置かない（幅を変えた際に大見出しに
   かぶってしまうため main 側の装飾として独立させている）
--------------------------------- */
.hero-bk-dec-left {
  background: url("../img/bk/top-left-dec.png") top;
  background-size: cover;
  width: 50%;
  aspect-ratio: 1000 / 717;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.hero-bk-dec-right {
  background: url("../img/top/fv-dec-right.png") top;
  background-size: cover;
  width: 300px;
  aspect-ratio: 1 / 1;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-bk-dec-right {
    z-index: 1;
    width: 30vw;
  }

  .hero-bk-dec-left {
/*
    width: auto;
    z-index: -1;
    height: 100vw;
*/
  }
}

.page-hero-crumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #674629;
  margin-bottom: 18px;
}

.page-hero-crumb a:hover {
  color: var(--beige-500);
}

.page-hero-crumb span {
  color: var(--beige-400);
}

.page-hero-title {
  display: block;
  height: 100px;
  width: auto;
  margin: 20px auto 0;
  opacity: 0.85;
}

.page-hero-title-text {
  text-align: center;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 0 auto 30px;
  color: #000;
}

.page-hero-lead {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.9;
}

@media (max-width: 768px) {

  .page-hero-title {
    margin: 0 auto;
  }

  .sub-top {
    height: 50px;
    min-height: 50px;
  }
  
  .sub-top span {
    background: url(../img/bk/white-wave.png) center right;
    background-size: contain;
    position: relative;
    bottom: -1px;
  }

}

/* ---------------------------------
   セクション見出し（サブページ用）
--------------------------------- */

.scissor-left span{
  transform: scale(1,1);
}

.page-section {
  padding: 80px 0 ;
  background: linear-gradient(#fff, transparent);
}

.page-section + .page-section {
  padding-top: 0;
  background: url(../img/bk/beigu-bk.jpg);
  background-size: cover;
}

.section-title-row{
  text-align: center;
}

.section-title-row h2 {
  font-size: clamp(22px, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 0;
  line-height: 1.5;
  margin-bottom: 20px;
}

.section-title-row h2 .accent{
    font-weight: 400;
    color: var(--beige-500);
    font-size: 1.7em;
    margin: 0 5px;
    font-family: "Allura", cursive;
    font-style: normal;
}

@media (max-width: 768px) {
  .page-section {
    padding: 30px 0;
  }
  
  .news-pager{
    margin-bottom: 20px;
  }
}

/* ---------------------------------
   タブ切替（共通ボタン群）
--------------------------------- */
.tab-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 44px;
}

.tab-switch button,
.tab-switch a {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--text-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.tab-switch button:hover,
.tab-switch a:hover {
  transform: translateY(-2px);
  border-color: var(--beige-400);
}

.tab-switch button.is-active,
.tab-switch a.is-active {
  background: #8b5b27db;
  border-color: #8b5b27db;
  color: var(--bg);
}

@media (max-width: 768px) {
  .tab-switch {
    gap: 8px;
    margin-bottom: 32px;
  }

  .tab-switch button {
    padding: 9px 18px;
    font-size: 12px;
  }
}

/* ---------------------------------
   予約 CTA（サブページ下部共通）
--------------------------------- */
.page-cta {
  background: url("../img/bk/beigu-bk.jpg");
  background-size: cover;
  padding: 70px 0;
  text-align: center;
}

.page-cta h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  margin-bottom: 24px;
}

.page-cta .btn {
  justify-content: center;
}

/* ---------------------------------
   Reveal stagger 補助（グリッド用）
--------------------------------- */
.reveal-grid > * {
  opacity: 1;
  transform: none;
}

html.js-reveal .reveal-grid.is-visible > * {
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

html.js-reveal .reveal-grid > * {
  opacity: 0;
  transform: translateY(30px);
}

html.js-reveal .reveal-grid.is-visible > * {
  opacity: 1;
  transform: none;
}

html.js-reveal .reveal-grid.is-visible > *:nth-child(4n+1) { transition-delay: 0s; }
html.js-reveal .reveal-grid.is-visible > *:nth-child(4n+2) { transition-delay: 0.08s; }
html.js-reveal .reveal-grid.is-visible > *:nth-child(4n+3) { transition-delay: 0.16s; }
html.js-reveal .reveal-grid.is-visible > *:nth-child(4n+4) { transition-delay: 0.24s; }


.l-container{
  z-index: 3;
  position: relative;
}

#site-footer::before {
  z-index: 0;
}

#site-footer .l-container {
  position: relative;
  z-index: 2;
}