```css
/* =========================================
   A Fu Hi Video Hero
   あふひ 固定窓 動画ヒーロー 完全版
   短い白い島版
========================================= */


/* =========================
   ヒーロー専用 断ち切りレール
========================= */

.c-afuhiHero.u-fullbleed {
  position: relative;
  left: 50%;
  right: 50%;

  width: 100vw;
  max-width: 100vw;

  margin-left: -50vw;
  margin-right: -50vw;

  box-sizing: border-box;

  overflow: hidden;
  clip-path: inset(0);

  background: #ffffff;
}


/* =========================
   ヒーロー本体
========================= */

.c-afuhiHero {
  position: relative;
  isolation: isolate;

  width: 100vw;
  max-width: 100vw;

  box-sizing: border-box;

  overflow: hidden;
  clip-path: inset(0);

  background: #ffffff;

  border: 0 !important;
  outline: 0 !important;
}

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

.c-afuhiHero img,
.c-afuhiHero video {
  display: block;
}


/* =========================
   固定背景動画
========================= */

.c-afuhiHero__video {
  position: fixed;
  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;
  height: 100svh;

  object-fit: cover;
  object-position: center center;

  z-index: 1;
  pointer-events: none;

  background: #000000;
}

.c-afuhiHero__video--pc {
  display: block !important;
}

.c-afuhiHero__video--sp {
  display: none !important;
}


/* =========================
   前面コンテンツ
========================= */

.c-afuhiHero__content {
  position: relative;
  z-index: 2;

  width: 100%;
  min-height: 100vh;
  min-height: 100svh;

  box-sizing: border-box;
}


/* =========================
   動画を見せる透明な窓
========================= */

.c-afuhiHero__visual,
.c-afuhiHero__photoSpace {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 640px;

  background: transparent;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;
}


/* =========================
   中央SVGロゴ
========================= */

.c-afuhiHero__logoWrap {
  position: relative;
  z-index: 10;

  width: min(22vw, 220px);
  max-width: 60%;

  margin: 0 auto;
  text-align: center;

  opacity: 0;
  transform: translateY(10px);

  animation: afuhiHeroLogoFade 2s ease-out forwards;
  animation-delay: 0.4s;
}

.c-afuhiHero__logo {
  display: block;

  width: 100%;
  height: auto;

  margin: 0 auto;

  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

@keyframes afuhiHeroLogoFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   短い白い島
   動画を閉じるための白い受け
========================= */

.c-afuhiHero__island {
  position: relative;
  z-index: 5;

  width: 100%;
  min-height: 28vh;

  margin: 0 !important;
  padding-top: 8vh !important;
  padding-bottom: 8vh !important;

  background: #ffffff !important;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;

  overflow: hidden;
}

/* 白い島の上端に白カバーをかぶせて境界線を消す */
.c-afuhiHero__island::before {
  content: "";

  position: absolute;
  left: 0;
  top: -12px;

  width: 100%;
  height: 24px;

  background: #ffffff;

  z-index: 1;
  pointer-events: none;
}

/* 短い白い幕なので、背景の葵マークは出さない */
.c-afuhiHero__island::after {
  display: none !important;
}


/* =========================
   白い島内レイアウト
========================= */

.c-afuhiHero__islandInner {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: none;

  min-height: 0 !important;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}


/* =========================
   旧コピー用CSSは無効化
   HTMLに残っていても表示させない
========================= */

.c-afuhiHero__lead,
.c-afuhiHero__leadTitle {
  display: none !important;
}


/* =========================
   ヒーロー直下テストブロック用
   使っていなければ残っていても害は少ない
========================= */

.c-afuhiAfterHeroTest {
  position: relative;
  z-index: 20;

  width: 100%;

  margin-top: -1px;
  padding: 16vh 24px;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
}

.c-afuhiAfterHeroTest::before {
  content: "";

  position: absolute;
  left: 0;
  top: -12px;

  width: 100%;
  height: 24px;

  background: #ffffff;

  z-index: 1;
  pointer-events: none;
}

.c-afuhiAfterHeroTest__inner {
  position: relative;
  z-index: 2;

  width: min(100%, 760px);
  margin: 0 auto;

  text-align: center;
}

.c-afuhiAfterHeroTest__label {
  margin: 0 0 18px;

  font-family: var(--font-en, sans-serif);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;

  color: #777777;
}

.c-afuhiAfterHeroTest__title {
  margin: 0 0 28px;

  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.08em;

  color: #222222;
}

.c-afuhiAfterHeroTest__text {
  margin: 0;

  font-size: 15px;
  line-height: 2.1;

  color: #444444;
}


/* =========================
   Smartphone
========================= */

@media screen and (max-width: 767px) {

  .c-afuhiHero__video--pc {
    display: none !important;
  }

  .c-afuhiHero__video--sp {
    display: block !important;
  }

  .c-afuhiHero__video {
    object-fit: cover;
    object-position: center center;
  }

  .c-afuhiHero__visual,
  .c-afuhiHero__photoSpace {
    height: 100svh;
    min-height: 520px;
  }

  .c-afuhiHero__logoWrap {
    width: min(34vw, 150px);
    max-width: 58%;
  }

  .c-afuhiHero__island {
    min-height: 18vh !important;

    padding-top: 6vh !important;
    padding-bottom: 6vh !important;

    background: #ffffff !important;
  }

  .c-afuhiHero__islandInner {
    width: min(88%, 520px) !important;
    max-width: 520px !important;

    min-height: 0 !important;

    display: block !important;

    margin: 0 auto !important;

    text-align: left !important;
  }

  .c-afuhiAfterHeroTest {
    padding: 14vh 22px;
  }

  .c-afuhiAfterHeroTest__title {
    font-size: 26px;
  }

  .c-afuhiAfterHeroTest__text {
    font-size: 14px;
    line-height: 2;
  }
}


/* =========================
   動きを減らす設定
========================= */

@media (prefers-reduced-motion: reduce) {
  .c-afuhiHero__logoWrap {
    opacity: 1;
    animation: none;
    transform: none;
  }
}


/* ======================================================
  あふひ 四季写真導入ブリッジ
  写真拡大 + 最後にコピー表示 完全版
====================================================== */

.c-afuhiGalleryHero,
.c-afuhiGalleryHero * {
  box-sizing: border-box;
}

.c-afuhiGalleryHero {
  --afuhi-header-offset: 60px;
  --afuhi-white: #f7f4ee;
  --afuhi-ink: #222222;

  position: relative;
  left: 50%;
  right: 50%;

  width: 100vw;
  max-width: 100vw;

  margin-left: -50vw;
  margin-right: -50vw;

  /*
    最後にコピーが出て少し余韻を作るため、
    コピーなし版より少し長め。
  */
  height: 270vh;
  height: 270svh;

  overflow: visible;
  background: #ffffff;

  font-family:
    var(--font-ja, "Noto Sans JP"),
    "Yu Gothic",
    "Hiragino Sans",
    sans-serif;
}


/* stickyステージ
------------------------------------------------------ */

.c-afuhiGalleryHero__stage {
  position: sticky;
  top: var(--afuhi-header-offset);

  width: 100%;

  height: calc(100vh - var(--afuhi-header-offset));
  height: calc(100svh - var(--afuhi-header-offset));

  min-height: 560px;

  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
}


/* 固定比率の配置キャンバス
------------------------------------------------------ */

.c-afuhiGalleryHero__layout {
  position: absolute;
  top: calc(50% + 18px);
  left: 50%;
  z-index: 2;

  width: 1440px;
  height: 960px;

  transform:
    translate(-50%, -50%)
    scale(1);

  transform-origin: center center;

  will-change:
    transform,
    opacity;
}


/* 写真共通
------------------------------------------------------ */

.c-afuhiGalleryHero__photo,
.c-afuhiGalleryHero__mainPhoto {
  position: absolute;

  margin: 0;
  padding: 0;

  aspect-ratio: 8 / 5;

  overflow: hidden;
  background: #e8e8e8;

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.08);
}

.c-afuhiGalleryHero__photo img,
.c-afuhiGalleryHero__mainPhoto img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* 中央メイン写真
------------------------------------------------------ */

.c-afuhiGalleryHero__mainPhoto {
  --afuhi-gallery-shade-opacity: 0;

  top: 225px;
  left: 360px;
  z-index: 5;

  width: 720px;
  height: 450px;

  transform: scale(1);
  transform-origin: center center;

  will-change:
    transform,
    border-radius;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.12);
}

.c-afuhiGalleryHero__mainPhoto::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 2;

  background: rgba(0, 0, 0, var(--afuhi-gallery-shade-opacity));

  pointer-events: none;
}

.c-afuhiGalleryHero__mainPhoto img {
  transform: scale(1.015);
  will-change: transform;
}


/* 左側・中
------------------------------------------------------ */

.c-afuhiGalleryHero__photo--leftMedium {
  top: 225px;
  left: 0;

  width: 340px;
  height: 212.5px;
}


/* 上右・小
------------------------------------------------------ */

.c-afuhiGalleryHero__photo--topRightSmall {
  top: 42.5px;
  left: 820px;

  width: 260px;
  height: 162.5px;
}


/* 右下・小
------------------------------------------------------ */

.c-afuhiGalleryHero__photo--rightBottomSmall {
  top: 512.5px;
  left: 1100px;

  width: 260px;
  height: 162.5px;
}


/* 下左・小
------------------------------------------------------ */

.c-afuhiGalleryHero__photo--bottomLeftSmall {
  top: 695px;
  left: 360px;

  width: 260px;
  height: 162.5px;
}


/* 下中央・中
------------------------------------------------------ */

.c-afuhiGalleryHero__photo--bottomMedium {
  top: 695px;
  left: 640px;

  width: 360px;
  height: 225px;
}


/* 最後に出るコピー
------------------------------------------------------ */

.c-afuhiGalleryHero__finalText {
  position: absolute;
  inset: 0;
  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2rem;

  pointer-events: none;

  opacity: 0;
  transform: translateY(14px);

  will-change:
    opacity,
    transform;
}

.c-afuhiGalleryHero__finalInner {
  width: min(86vw, 760px);
  margin: 0 auto;

  text-align: center;
}

.c-afuhiGalleryHero__finalLead {
  margin: 0;

  color: #ffffff;

  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 300;
  line-height: 2.25;
  letter-spacing: 0.12em;

  text-shadow:
    0 2px 18px rgba(0, 0, 0, 0.38);
}

.c-afuhiGalleryHero__finalLead span {
  display: block;
}


/* ======================================================
   Smartphone
====================================================== */

@media screen and (max-width: 767px) {

  .c-afuhiGalleryHero {
    --afuhi-header-offset: 0px;

    /*
      SPは長すぎると重く感じるので少し短め。
      ただし最後のコピー余韻は残す。
    */
    height: 235vh;
    height: 235svh;

    margin-top: 0 !important;

    overflow: visible;
  }

  .c-afuhiGalleryHero__stage {
    top: 0;

    height: 100vh;
    height: 100svh;

    min-height: 520px;
  }

  .c-afuhiGalleryHero__layout {
    top: 45%;
  }

  .c-afuhiGalleryHero__photo,
  .c-afuhiGalleryHero__mainPhoto {
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.08);
  }

  .c-afuhiGalleryHero__finalText {
    padding: 2rem 1.7rem;
  }

  .c-afuhiGalleryHero__finalInner {
    width: min(86vw, 420px);
  }

  .c-afuhiGalleryHero__finalLead {
    font-size: 14px;
    line-height: 2.25;
    letter-spacing: 0.06em;

    text-align: left;
  }

  .c-afuhiGalleryHero__finalLead span {
    display: block;
  }
}


/* ======================================================
   動きを減らす設定
====================================================== */

@media (prefers-reduced-motion: reduce) {
  .c-afuhiGalleryHero {
    height: auto;
  }

  .c-afuhiGalleryHero__stage {
    position: relative;
    top: auto;
  }

  .c-afuhiGalleryHero__layout,
  .c-afuhiGalleryHero__mainPhoto,
  .c-afuhiGalleryHero__mainPhoto img,
  .c-afuhiGalleryHero__finalText {
    transform: none !important;
    opacity: 1 !important;
  }
}


/* =========================================
Gallery Bridge 修正

1. ヒーローとの隙間・境界線を詰める
2. 最後のコピーを白文字に固定
   ========================================= */

/* PC：短い白い島をさらに詰める */
.c-afuhiHero .c-afuhiHero__island {
min-height: 8vh !important;
padding-top: 3vh !important;
padding-bottom: 3vh !important;
background: #ffffff !important;
}

/* PC：ギャラリーをヒーロー直下に密着 */
.c-afuhiGalleryHero {
margin-top: -1px !important;
background: #ffffff !important;
}

/* PC：ギャラリー内の写真群を少し上へ */
.c-afuhiGalleryHero__layout {
top: 42% !important;
}

/* 境界線・影の発生を抑える */
.c-afuhiGalleryHero__stage,
.c-afuhiHero__island {
border-top: 0 !important;
border-bottom: 0 !important;
box-shadow: none !important;
outline: 0 !important;
}

/* 最後に出るコピー：白文字固定 */
.c-afuhiGalleryHero__finalText,
.c-afuhiGalleryHero__finalText *,
.c-afuhiGalleryHero__finalLead,
.c-afuhiGalleryHero__finalLead span {
color: #ffffff !important;
}

/* 白文字を写真上で読ませるための影 */
.c-afuhiGalleryHero__finalLead {
text-shadow:
0 2px 18px rgba(0, 0, 0, 0.45),
0 0 42px rgba(0, 0, 0, 0.28) !important;
}

/* SP調整 */
@media screen and (max-width: 767px) {

.c-afuhiHero .c-afuhiHero__island {
min-height: 6vh !important;
padding-top: 2.5vh !important;
padding-bottom: 2.5vh !important;
}

.c-afuhiGalleryHero {
margin-top: -1px !important;
}

.c-afuhiGalleryHero__layout {
top: 42% !important;
}

.c-afuhiGalleryHero__finalText,
.c-afuhiGalleryHero__finalText *,
.c-afuhiGalleryHero__finalLead,
.c-afuhiGalleryHero__finalLead span {
color: #ffffff !important;
}

.c-afuhiGalleryHero__finalLead {
color: #ffffff !important;
text-shadow:
0 2px 16px rgba(0, 0, 0, 0.5),
0 0 36px rgba(0, 0, 0, 0.32) !important;
}
}



/* ======================================================
  あふひ：写真ギャラリーブリッジ 写真位置調整
  既存サイズ・隙間を保ったまま、周囲写真を平行移動
====================================================== */

/* 左側・中の写真
   もともと中央写真の左横にあった写真を、
   中央写真の左下へ平行移動
------------------------------------------------------ */
.c-afuhiGalleryHero__photo--leftMedium {
  top: 462.5px !important;
  left: 0 !important;

  width: 340px !important;
  height: 212.5px !important;
}

/* 上右・小の写真
   もともと中央写真の上にあった写真を、
   中央写真の上側・左寄りへ平行移動
------------------------------------------------------ */
.c-afuhiGalleryHero__photo--topRightSmall {
  top: 42.5px !important;
  left: 360px !important;

  width: 260px !important;
  height: 162.5px !important;
}

/* 右下・小の写真
   もともと中央写真の右下にあった写真を、
   中央写真の右上へ平行移動
------------------------------------------------------ */
.c-afuhiGalleryHero__photo--rightBottomSmall {
  top: 225px !important;
  left: 1100px !important;

  width: 260px !important;
  height: 162.5px !important;
}

/* 下左・小の写真
   下の2枚グループの左側。
   右端側へ平行移動
------------------------------------------------------ */
.c-afuhiGalleryHero__photo--bottomLeftSmall {
  top: 695px !important;
  left: 820px !important;

  width: 260px !important;
  height: 162.5px !important;
}

/* 下中央・中の写真
   下の2枚グループの右側。
   右端側へ平行移動
------------------------------------------------------ */
.c-afuhiGalleryHero__photo--bottomMedium {
  top: 695px !important;
  left: 1100px !important;

  width: 360px !important;
  height: 225px !important;
}

/* ======================================================
  あふひ：写真ギャラリーブリッジ Scrollボタン
  stage基準で配置し、PC/SPで安定表示
====================================================== */

.c-afuhiGalleryHero__skip {
  position: absolute;
  left: 50%;
  bottom: clamp(34px, 7vh, 72px);
  z-index: 40;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 0;
  border: 0;
  background: transparent;
  color: #222;

  font-family: "Times New Roman", serif;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: lowercase;

  cursor: pointer;
  transform: translateX(-50%);
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.c-afuhiGalleryHero__skipArrow {
  position: relative;
  display: block;
  width: 34px;
  height: 24px;
}

.c-afuhiGalleryHero__skipArrow::before,
.c-afuhiGalleryHero__skipArrow::after {
  content: "";
  position: absolute;
  left: 50%;

  width: 22px;
  height: 22px;

  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;

  transform: translateX(-50%) rotate(45deg);
}

.c-afuhiGalleryHero__skipArrow::before {
  top: -2px;
  opacity: 0.55;
}

.c-afuhiGalleryHero__skipArrow::after {
  top: 10px;
  opacity: 1;
}

.c-afuhiGalleryHero__skipText {
  display: block;
}

.c-afuhiGalleryHero__skip:hover {
  color: #c9a84c;
}

@media screen and (max-width: 767px) {
  .c-afuhiGalleryHero__skip {
    bottom: clamp(56px, 12vh, 110px);
    font-size: 14px;
  }

  .c-afuhiGalleryHero__skipArrow {
    width: 30px;
    height: 22px;
  }

  .c-afuhiGalleryHero__skipArrow::before,
  .c-afuhiGalleryHero__skipArrow::after {
    width: 20px;
    height: 20px;
  }
}

/* ======================================================
  あふひ 用途案内ブロック
  JSなし / 写真hoverのみ / 安定版
====================================================== */

.c-afuhiSceneGuide,
.c-afuhiSceneGuide * {
  box-sizing: border-box;
}

.c-afuhiSceneGuide {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fff;
  overflow: visible;
  color: #222;
  font-family:
    "Noto Sans JP",
    "Yu Gothic",
    "Hiragino Sans",
    sans-serif;
}

/* 念のため、以前のreveal系が残っていてもこのブロック内は表示する */
.c-afuhiSceneGuide .c-afuhiSceneGuide__sticky,
.c-afuhiSceneGuide .c-afuhiSceneGuide__label,
.c-afuhiSceneGuide .c-afuhiSceneGuide__title,
.c-afuhiSceneGuide .c-afuhiSceneGuide__lead,
.c-afuhiSceneGuide .c-afuhiSceneGuide__panel,
.c-afuhiSceneGuide .c-afuhiSceneGuide__body,
.c-afuhiSceneGuide .c-afuhiSceneGuide__num,
.c-afuhiSceneGuide .c-afuhiSceneGuide__body h3,
.c-afuhiSceneGuide .c-afuhiSceneGuide__body p,
.c-afuhiSceneGuide .c-afuhiSceneGuide__button {
  opacity: 1 !important;
  visibility: visible !important;
}

.c-afuhiSceneGuide__inner {
  width: min(88vw, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(56px, 6vw, 110px);
  align-items: stretch;
}

.c-afuhiSceneGuide__left {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}

.c-afuhiSceneGuide__sticky {
  position: sticky;
  top: 96px;
  padding: 18vh 0 0;
  padding-left: clamp(20px, 2.4vw, 52px);
}

.c-afuhiSceneGuide__label {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #7a7167;
}

/* 代表見出しの見た目は .c-afuhiSectionTitle に任せる */
.c-afuhiSceneGuide__title {
  max-width: 12em;
  margin-bottom: 28px;
}

.c-afuhiSceneGuide__lead {
  margin: 0;
  max-width: 34em;
  font-size: 15px;
  line-height: 2.25;
  letter-spacing: 0.05em;
  color: #3f3a34;
}

.c-afuhiSceneGuide__right {
  display: grid;
  gap: 24vh;
  padding: 18vh 0 24vh;
  min-width: 0;
}

.c-afuhiSceneGuide__panel {
  display: grid;
  grid-template-columns: 42% 1fr;
  min-height: 56vh;
  background: #fffdf8;
  border: 1px solid rgba(160, 132, 84, 0.2);
  box-shadow: 0 18px 48px rgba(52, 42, 28, 0.07);
  overflow: hidden;
}

.c-afuhiSceneGuide__image {
  margin: 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #eee8dc;
}

.c-afuhiSceneGuide__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 56vh;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.9s ease;
}

.c-afuhiSceneGuide__panel:hover .c-afuhiSceneGuide__image img {
  transform: scale(1.06);
}

.c-afuhiSceneGuide__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.c-afuhiSceneGuide__num {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.22em;
  color: #7a7167;
}

.c-afuhiSceneGuide__body h3 {
  margin: 0 0 22px;
  font-family:
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Yu Mincho",
    "YuMincho",
    serif !important;
  font-weight: 500 !important;
  font-size: clamp(25px, 1.9vw, 34px);
  line-height: 1.55;
  letter-spacing: 0.045em;
  color: #222;
}

.c-afuhiSceneGuide__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 2.1;
  letter-spacing: 0.045em;
  color: #565047;
}

.c-afuhiSceneGuide__button {
  align-self: flex-start;
  margin-top: 34px;
  padding: 13px 28px;
  border: 1px solid rgba(150, 120, 68, 0.55);
  color: #4b3b1f;
  background: transparent;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.c-afuhiSceneGuide__button:hover {
  background: #8e743d;
  border-color: #8e743d;
  color: #fff;
}

/* tablet */
@media (max-width: 1024px) {
  .c-afuhiSceneGuide__inner {
    width: min(90vw, 960px);
    grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
    gap: 44px;
  }

  .c-afuhiSceneGuide__sticky {
    top: 84px;
    padding-left: 0;
  }

  .c-afuhiSceneGuide__panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .c-afuhiSceneGuide__image img {
    height: 260px;
    min-height: 0;
  }

  .c-afuhiSceneGuide__body {
    padding: 34px 30px 38px;
  }
}

/* SP */
@media (max-width: 767px) {
  .c-afuhiSceneGuide {
    padding: 76px 0 86px;
  }

  .c-afuhiSceneGuide__inner {
    display: block;
    width: 88vw;
  }

  .c-afuhiSceneGuide__sticky {
    position: relative;
    top: auto;
    padding: 0;
  }

  .c-afuhiSceneGuide__label {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .c-afuhiSceneGuide__title {
    margin-bottom: 22px;
  }

  .c-afuhiSceneGuide__lead {
    font-size: 14px;
    line-height: 2.1;
  }

  .c-afuhiSceneGuide__right {
    display: grid;
    gap: 34px;
    padding: 48px 0 0;
  }

  .c-afuhiSceneGuide__panel {
    display: block;
    min-height: auto;
  }

  .c-afuhiSceneGuide__image {
    height: auto;
  }

  .c-afuhiSceneGuide__image img {
    width: 100%;
    height: 220px;
    min-height: 0;
  }

  .c-afuhiSceneGuide__body {
    display: block;
    padding: 28px 24px 30px;
  }

  .c-afuhiSceneGuide__num {
    margin-bottom: 16px;
  }

  .c-afuhiSceneGuide__body h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .c-afuhiSceneGuide__body p {
    font-size: 14px;
    line-height: 2;
  }

  .c-afuhiSceneGuide__button {
    display: block;
    margin-top: 26px;
    width: 100%;
    text-align: center;
  }
}

/* hover不可端末では拡大しない */
@media (hover: none) {
  .c-afuhiSceneGuide__panel:hover .c-afuhiSceneGuide__image img {
    transform: scale(1.01);
  }
}




/* ======================================================
  あふひ：季節のご案内 完全版
====================================================== */

.c-afuhiSeasonGuide,
.c-afuhiSeasonGuide * {
  box-sizing: border-box;
}

.c-afuhiSeasonGuide {
  --afuhi-guide-bg: #3b4139;
  --afuhi-guide-ink: #f7f4ee;
  --afuhi-guide-sub: rgba(247, 244, 238, 0.76);
  --afuhi-guide-gold: #c9a84c;
  --afuhi-guide-line: rgba(247, 244, 238, 0.24);

  position: relative;
  z-index: 1;

  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: clamp(88px, 10vw, 140px) 0;
  background: transparent !important;
  color: #222;

  transition:
    background-color 0.8s ease,
    color 0.8s ease;
}

body.is-afuhi-season-theme .c-afuhiSeasonGuide {
  background: var(--afuhi-guide-bg) !important;
  color: var(--afuhi-guide-ink) !important;
}

.c-afuhiSeasonGuide__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  background: transparent !important;
}

/* 見出し */
.c-afuhiSeasonGuide__header {
  margin-bottom: clamp(36px, 5vw, 56px);
  text-align: center;
}

.c-afuhiSeasonGuide__eyebrow {
  margin: 0 0 12px;
  font-family: "Times New Roman", serif;
  font-size: clamp(15px, 3.6vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.c-afuhiSeasonGuide__title {
  margin-bottom: 18px;
}

.c-afuhiSeasonGuide__lead {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 2;
}

/* 暗背景時の文字色 */
body.is-afuhi-season-theme .c-afuhiSeasonGuide__eyebrow,
body.is-afuhi-season-theme .c-afuhiSeasonGuide__lead,
body.is-afuhi-season-theme .c-afuhiSeasonGuide__meta,
body.is-afuhi-season-theme .c-afuhiSeasonGuide__excerpt,
body.is-afuhi-season-theme .c-afuhiSeasonGuide__miniDate {
  color: var(--afuhi-guide-sub) !important;
}

body.is-afuhi-season-theme .c-afuhiSeasonGuide__title,
body.is-afuhi-season-theme .c-afuhiSeasonGuide__cardTitle,
body.is-afuhi-season-theme .c-afuhiSeasonGuide__miniTitle {
  color: var(--afuhi-guide-ink) !important;
}

/* 上段カード */
.c-afuhiSeasonGuide__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 36px);
}

.c-afuhiSeasonGuide__cards--count1 {
  grid-template-columns: minmax(0, 350px);
}

.c-afuhiSeasonGuide__cards--count2 {
  grid-template-columns: repeat(2, minmax(0, 350px));
}

.c-afuhiSeasonGuide__card {
  overflow: hidden;
  padding: 18px 18px 24px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid var(--afuhi-guide-line) !important;
}

.c-afuhiSeasonGuide__link {
  display: block;
  color: inherit !important;
  text-decoration: none !important;
}

.c-afuhiSeasonGuide__image {
  margin: 0 0 22px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

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

.c-afuhiSeasonGuide__body {
  padding: 0 4px;
}

.c-afuhiSeasonGuide__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 12px;
}

.c-afuhiSeasonGuide__label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 10px;
  border: 1px solid rgba(201, 168, 76, 0.72);
  color: var(--afuhi-guide-gold) !important;
  font-size: 12px;
  line-height: 1.4;
  background: transparent;
}

.c-afuhiSeasonGuide__cardTitle {
  margin: 0;
  font-family:
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Yu Mincho",
    "YuMincho",
    serif !important;
  font-size: clamp(22px, 5.2vw, 25px);
  font-weight: 500 !important;
  line-height: 1.62;
  letter-spacing: 0.04em;
}

.c-afuhiSeasonGuide__excerpt {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.9;
}

/* 下段 */
.c-afuhiSeasonGuide__subArea {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: clamp(36px, 5vw, 56px);
  padding-top: 26px;
  border-top: 1px solid var(--afuhi-guide-line);
}

.c-afuhiSeasonGuide__miniList {
  display: grid;
  gap: 14px;
}

.c-afuhiSeasonGuide__miniLink {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 12px 16px;
  align-items: center;
  color: inherit !important;
  text-decoration: none !important;
}

.c-afuhiSeasonGuide__miniLabel {
  color: var(--afuhi-guide-gold) !important;
  font-size: 12px;
}

.c-afuhiSeasonGuide__miniTitle {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.c-afuhiSeasonGuide__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid rgba(201, 168, 76, 0.78);
  color: var(--afuhi-guide-gold) !important;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none !important;
}

/* スマホ */
@media (max-width: 900px) {
  .c-afuhiSeasonGuide__cards,
  .c-afuhiSeasonGuide__cards--count1,
  .c-afuhiSeasonGuide__cards--count2 {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .c-afuhiSeasonGuide__image {
    aspect-ratio: 16 / 10;
  }

  .c-afuhiSeasonGuide__subArea {
    grid-template-columns: 1fr;
  }

  .c-afuhiSeasonGuide__miniLink {
    grid-template-columns: auto auto;
  }

  .c-afuhiSeasonGuide__miniTitle {
    grid-column: 1 / -1;
  }

  .c-afuhiSeasonGuide__more {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .c-afuhiSeasonGuide {
    padding: 72px 0;
  }

  .c-afuhiSeasonGuide__inner {
    width: min(100% - 32px, 1120px);
  }

  .c-afuhiSeasonGuide__header {
    text-align: left;
  }

  .c-afuhiSeasonGuide__lead {
    margin-left: 0;
    margin-right: 0;
    font-size: 14px;
  }

  .c-afuhiSeasonGuide__card {
    padding: 14px 14px 20px !important;
  }

  .c-afuhiSeasonGuide__cardTitle {
    font-size: 23px;
  }

  .c-afuhiSeasonGuide__excerpt {
    font-size: 13px;
  }
}

/* 一覧を見るボタン hover */
.c-afuhiSeasonGuide__more:hover {
  background: var(--afuhi-guide-gold);
  border-color: var(--afuhi-guide-gold);
  color: var(--afuhi-guide-bg) !important;
}

/* 季節のご案内：リード文センター固定 */
.c-afuhiSeasonGuide .c-afuhiSeasonGuide__header {
  text-align: center !important;
}

.c-afuhiSeasonGuide .c-afuhiSeasonGuide__lead {
  max-width: 680px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 767px) {
  .c-afuhiSeasonGuide .c-afuhiSeasonGuide__header {
    text-align: left !important;
  }

  .c-afuhiSeasonGuide .c-afuhiSeasonGuide__lead {
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
}




/* ======================================================
  あふひ：フロント最終ブロック 想い＋MP4直置き動画 CSS
====================================================== */

.c-afuhiClosingMedia {
  padding: clamp(96px, 11vw, 150px) 0;
  background: #fff;
}

.c-afuhiClosingMedia__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.c-afuhiClosingMedia__message {
  width: 100%;
  min-width: 0;
  color: #302b25;
}

.c-afuhiClosingMedia__sub {
  margin: 0 0 18px;
  color: #9d8551;
  font-family: "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.post_content .c-afuhiClosingMedia .c-afuhiClosingMedia__title,
.entry-content .c-afuhiClosingMedia .c-afuhiClosingMedia__title,
.c-afuhiClosingMedia .c-afuhiClosingMedia__title {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 32px !important;
  color: #27231f !important;
  font-size: clamp(27px, 2.1vw, 34px) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  letter-spacing: 0.05em !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

.c-afuhiClosingMedia__titleLine {
  display: block !important;
  white-space: nowrap !important;
}

.c-afuhiClosingMedia__body {
  font-family:
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Yu Mincho",
    "YuMincho",
    serif;
  color: #302b25;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 2.25;
  letter-spacing: 0.06em;
}

.c-afuhiClosingMedia__body p {
  margin: 0;
}

.c-afuhiClosingMedia__body p + p {
  margin-top: 22px;
}

.c-afuhiClosingMedia__movie {
  width: 100%;
  min-width: 0;
}

.c-afuhiMovieCard {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.c-afuhiMovieCard__image,
.c-afuhiMovieCard__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.c-afuhiMovieCard__image img {
  object-fit: cover;
  transition: transform 0.7s ease;
}

.c-afuhiMovieCard__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.c-afuhiMovieCard__play {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 30px);
  letter-spacing: 0.04em;
}

.c-afuhiMovieCard__icon {
  font-size: 22px;
  line-height: 1;
}

.c-afuhiMovieCard:hover .c-afuhiMovieCard__image img {
  transform: scale(1.035);
}

/* modal
------------------------------------------------------ */

.c-afuhiMovieModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.c-afuhiMovieModal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.c-afuhiMovieModal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(247, 244, 238, 0.62) 0%,
      rgba(247, 244, 238, 0.86) 48%,
      rgba(225, 221, 211, 0.96) 100%
    );
}

.c-afuhiMovieModal__dialog {
  position: relative;
  z-index: 1;
  width: min(780px, 84vw);
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: center center;
  box-shadow:
    0 34px 86px rgba(31, 23, 19, 0.22),
    0 10px 28px rgba(31, 23, 19, 0.16);
  transition:
    transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-afuhiMovieModal.is-expanded .c-afuhiMovieModal__dialog {
  transform: scaleX(1);
}

.c-afuhiMovieModal__frame {
  width: 100%;
  height: 100%;
  background: #000;
}

.c-afuhiMovieModal__frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.c-afuhiMovieModal.is-playing .c-afuhiMovieModal__frame video {
  opacity: 1;
}

.c-afuhiMovieModal__close {
  position: absolute;
  right: 14px;
  top: -54px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.c-afuhiMovieModal.is-playing .c-afuhiMovieModal__close {
  opacity: 1;
}

@media (max-width: 767px) {
  .c-afuhiClosingMedia {
    padding: 80px 0 !important;
  }

  .post_content .c-afuhiClosingMedia__inner,
  .entry-content .c-afuhiClosingMedia__inner,
  .c-afuhiClosingMedia__inner {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
    align-items: stretch !important;
    gap: 38px !important;
    width: min(100% - 32px, 1120px) !important;
    margin: 0 auto !important;
  }

  .post_content .c-afuhiClosingMedia__movie,
  .entry-content .c-afuhiClosingMedia__movie,
  .c-afuhiClosingMedia__movie {
    order: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .post_content .c-afuhiClosingMedia__message,
  .entry-content .c-afuhiClosingMedia__message,
  .c-afuhiClosingMedia__message {
    order: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .post_content .c-afuhiMovieCard,
  .entry-content .c-afuhiMovieCard,
  .c-afuhiMovieCard {
    width: 100% !important;
  }

  .c-afuhiClosingMedia__sub {
    margin-bottom: 14px !important;
    font-size: 12px !important;
  }

  .post_content .c-afuhiClosingMedia .c-afuhiClosingMedia__title,
  .entry-content .c-afuhiClosingMedia .c-afuhiClosingMedia__title,
  .c-afuhiClosingMedia .c-afuhiClosingMedia__title {
    margin-bottom: 26px !important;
    font-size: 25px !important;
    line-height: 1.65 !important;
    letter-spacing: 0.035em !important;
  }

  .c-afuhiClosingMedia__body {
    font-size: 14px !important;
    line-height: 2.15 !important;
    letter-spacing: 0.045em !important;
  }
}