/*! -----------------------------
  common
----------------------------- */

/* ========================================
  ページロードアニメーション 初期状態
  body.is-page-loading は DOMContentLoaded で即削除 + GSAPが引き継ぐ
======================================== */
body.is-page-loading .header {
  opacity: 0;
  transform: translateY(-60px);
}
body.is-page-loading .hero-anniversary__logo,
body.is-page-loading .hero-anniversary__lead,
body.is-page-loading .hero-anniversary__countdown {
  opacity: 0;
  transform: translateY(30px);
}
body.is-page-loading .kv-swiper {
  opacity: 0;
}
body.is-page-loading .scroll-down {
  opacity: 0;
}

/* ========================================
  FOUC防止: JS初期化前の崩れ防止
======================================== */

/* Swiper: 初期化前にスライドが積み重なって表示されるのを防ぐ */
.js-interview-swiper:not(.swiper-initialized) {
  visibility: hidden;
}

/* history-sliderはoverflow:visibleのため、JSのinitコールバックで制御する */
.js-history-slider.is-loading {
  visibility: hidden;
}

/* カルーセル: window.load後にGSAPが制御するまでちらつきを防ぐ */
.js-carousel-left,
.js-carousel-right {
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* モザイクギャラリー: GSAPがopacity:0をセットする前のフラッシュを防ぐ */
.js-mosaic-wrap .mosaic-card {
  opacity: 0;
}


/* ページ本体はスクロールさせない */
/* 外側はスクロールさせない */
html{
  box-sizing: border-box;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 62.5%;
  font-weight: normal;
  /* clip は overflow-y を auto に変えずスクロールコンテナ化しないため、モバイルの縦タッチスクロールを壊さずに横はみ出しのみ抑止する（hidden は縦スクロールを壊す） */
  overflow-x: clip;
  scrollbar-gutter: stable;
}
/* iOS Safariでも効く範囲での対策 */
html, body { overscroll-behavior: none; }      /* 新しめのiOSで有効 */
.your-scroll { overscroll-behavior: contain; }
/* lenis.css の .lenis-stopped { overflow:hidden } を上書き
   スクロールロックは body[position:fixed] で管理するため不要 */
html.lenis.lenis-stopped { overflow: initial; }
*, *::before, *::after{
  box-sizing: inherit;
}
/* ノッチ分の安全領域を考慮 */
.app-root {
padding-top: env(safe-area-inset-top);
padding-bottom: env(safe-area-inset-bottom);
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
*{
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-feature-settings: "palt";
font-kerning: normal; /* カーニング有効 */
letter-spacing: 0;
}
/*! -----------------------------
セレクタ　リセット
----------------------------- */
body{
  position: relative;
  -webkit-text-size-adjust: 100%;
  color: #222222;
  overflow-x: clip;
}
body.-fixed{
  overflow: hidden;
  position: fixed;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0;
}
img{
  width: 100%;
  height: auto;
  object-fit: contain;
  vertical-align: bottom;
}
a{
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  /* iOS: 連打時のダブルタップズームを無効化（タップ遅延もなくなる） */
  touch-action: manipulation;
}
a[href^="tel:"] {
  text-decoration: none;
}
button {
  cursor: pointer;
  display: block;
  outline: none;
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  /* iOS: 連打時のダブルタップズームを無効化（タップ遅延もなくなる） */
  touch-action: manipulation;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 0;
}
tbody {
  display: block;
  width: 100%;
}
th,td{
  text-align: left;
}
::-webkit-input-placeholder,
:-moz-placeholder {
  color: #CCC9C4;
}
/*! -----------------------------
フォームタグ　リセット
----------------------------- */
input,
textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0;
  border: unset;
  border-width: 0;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
}
input[type="button"],input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],input[type="image"],textarea{
  -webkit-appearance: none;
  border-radius: 0;
}
input[type="text" i] {
  padding: 0;
}
input:focus-visible,
textarea:focus-visible {
  outline: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #f4f0eb inset;
  -webkit-text-fill-color: #222;
}
select {
  border-width: 0px;
  border: none;
  color: #242424;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

/* クリック/タップ時のハイライトも含めて視覚的フォーカスを全消し */
:focus,
:focus-visible,
:focus-within {
outline: none !important;
box-shadow: none !important;
}

a, button, [tabindex], input, select, textarea {
outline: none !important;
box-shadow: none !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
}

* {
-webkit-tap-highlight-color: transparent; /* iOS/Android */
}


/*! -----------------------------
  共通
----------------------------- */
.section-inr{
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
}
.news-inr{
  width: 90%;
  max-width: 90rem;
  margin: 0 auto;
}
.-en{
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
/* タイトル */
.section-head{

}
.section-head__text{
  font-size: 1.7rem;
  color: #c3a569;
  margin-bottom: 0.5rem;
}
.section-head__title{
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.section-head__title-small{
  font-size: 3.8rem;
  margin-left: 1.2rem;
}
.section-head__contents-text{
  font-size: 1.7rem;
  line-height: 2;
}
.section-head__contents-text + .section-head__contents-text{
  margin-top: 2.5rem;
}
.ly-interview .section-head__contents{
  margin-top: 2rem;
}
.-color-gray{
  color: #888888;
}
.-color-gray .js-line-inner{
  padding-left: 1em;
  text-indent: -1em;
}
.js-line{
  display: block;
}

/* ボタン */
.c-button-wrap {
  margin-top: 4rem;
}
.c-button-wrap.-center{
  text-align: center;
}

.c-button {
  position: relative;
  display: inline-flex;
  align-items: normal;
  justify-content: space-between;
  min-width: 18rem;
  padding-bottom: 0.6rem;
}
.c-button.-back{
  flex-direction: row-reverse;
}
.c-button.-back .c-button__arw{
  transform: rotate(180deg);
  margin-left: 0;
}

.c-button.-diagonal .c-button__arw{
  transform: rotate(-45deg);
}
.c-button::before{
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eee;
}
.c-button::after{
  transition: .4s;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #222222;
}
.c-button__link{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 1.6rem;
  color: #222;
  font-weight: bold;
}
.c-button__arw {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: 10px;
  overflow: hidden;
  border-radius: 50%;
  flex-shrink: 0;
}

.c-button__arw::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #f9f9f9;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-button__arw-inner {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  z-index: 1;
}

.c-button__arw-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #222;
  stroke-miterlimit: 10;
  transform-origin: 50% 50%;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    stroke 0.3s ease;
}

/* 初期位置 */
.c-button__arw-icon--first {
  transform: translateX(0) rotate(0deg);
  opacity: 1;
}
.c-button__arw-icon--second {
  transform: translateX(-140%) rotate(0);
  opacity: 0;
}

/* hover時 */
@media (hover: hover) {
  .c-button:hover::after{
    width: 100%;
  }
  .c-button:hover .c-button__arw::before {
    transform: scale(1);
  }
  .c-button:hover .c-button__arw-icon--first,
  .c-button__link:hover + .c-button__arw .c-button__arw-icon--first {
    transform: translateX(140%) rotate(0);
    opacity: 0;
  }

  .c-button:hover .c-button__arw-icon--second,
  .c-button__link:hover + .c-button__arw .c-button__arw-icon--second {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

.-pc{
  display: block;
}
.tab-pc{
  display: block;
}
.-tab-sp{
  display: none;
}
.-sp{
  display: none;
}
@media screen and (max-width: 1000px){
  .-pc{
    display: none;
  }
  .-tab-sp{
    display: block;
  }
  .section-head__title-small{
    font-size: 2.9rem;
    display: block;
    margin-left: 0;
  }
  .section-head__title{
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 750px){
  .-tab-pc{
    display: none;
  }
  .-sp{
    display: block;
  }
  .section-head__title{
    font-size: 3.4rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
  .c-button{
    min-width: 20rem;
  }
  .section-head__contents-text{
    font-size: 1.6rem;
  }
}

/* =============
  ヘッダー
============= */
.header{
  z-index: 999;
  position: fixed;
  width: 100%;
  top: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 2rem 0;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, width 0.3s ease;
}
.header.is-scrolled {
  top: 2rem;
  width: 94%;
  background-color: #fff;
  box-shadow: 0 0 12px rgba(0, 0, 0, .08);
}
.header__inner{
  width: 94%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.header__logo{
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.header__logo a{
  transition: .3s;
}
.header__logo a:hover{
  opacity: 0.7;
}
.header__images{
  width: 20rem;
}
.header__text{
  border: 1px solid #c3a569;
  color: #c3a569;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 1rem 0.6rem;
}
/* ハンバーガーボタン */
.header-hum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header-hum-in {
  width: 4rem;
  height: 1.6rem;
  position: relative;
}

.header-hum-span {
  position: absolute;
  width: 100%;
  right: 0;
  height: 1px;
  background: #222;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease, width 0.3s ease, background-color 0.3s ease;
}

/* トップページ: スクロール前・メニュー未開時は白 */
body.is-top .js-menu-open .header-hum-span {
  background: #fff;
}

/* スクロール後は黒に戻す */
body.is-top .header.is-scrolled .js-menu-open .header-hum-span {
  background: #222;
}

/* メニューオープン中は黒に戻す */
body.is-top.is-locked .js-menu-open .header-hum-span {
  background: #222;
}

/* ホバー */
@media (hover: hover) {
  .js-menu-open:hover .header-hum-span {
    opacity: 0.6;
  }
}

.header-hum-span:nth-child(1) {
  top: 0;
  transform: translateY(0) rotate(0);
}

.header-hum-span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(0);
}

.header-hum-span:nth-child(3) {
  bottom: 0;
  top: auto;
  transform: translateY(0) rotate(0);
}
/* 開いた時にバツ */
.hum-menu.is-active .header-hum-span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

.hum-menu.is-active .header-hum-span:nth-child(2) {
  opacity: 0;
  width: 70%;
}

.hum-menu.is-active .header-hum-span:nth-child(3) {
  top: 50%;
  bottom: auto;
  width: 100%;
  transform: translateY(-50%) rotate(-20deg);
}

/* ハンバーガーメニュー */
.header-hum {
  cursor: pointer;
}

@media screen and (max-width: 1000px){
  .header{
    padding: 1.5rem 0;
  }
  body.is-top .js-menu-open .header-hum-span{
    background: #222;
  }
}

@media screen and (max-width: 750px){
  .header__images{
    width: 6.5rem;
  }
  .header__text{
    font-size: 1.1rem;
  }
  .header.is-scrolled{
    top: 0rem;
    width: 100%;
    border-radius: 0px;
  }
}



/* =============
  Menu
============= */
body.is-locked {
  overflow: hidden;
}

.hum-menu.is-active {
  height: 100dvh;
}

.hum-menu {
  position: fixed;
  z-index: 999;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
}
.hum-menu.is-active{
  visibility: visible;
  pointer-events: auto;
}
.hum-menu.is-active .hum-menu__block{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hum-menu::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hum-menu.is-active::before {
  opacity: 1;
}

/* =============
  Menu block
============= */
.hum-menu__block {
  position: relative;
  z-index: 2;
  width: 94%;
  opacity: 0;
  /* min-height: calc(100vh - 4rem); */
  margin: 2rem auto 0;
  padding: 8rem;
  background: #fff;
  border-radius: 5px;
  overflow: auto;
  max-height: calc(100dvh - 4rem);
  touch-action: pan-y;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: .4s
}

.hum-menu__inner {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 4.5rem;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.hum-menu.is-active .hum-menu__inner {
  opacity: 1;
  transform: translateY(0);
}

.hum-menu__block .header-hum {
  position: absolute;
  top: 2rem;
  right: 3rem;
  z-index: 99;
}

@media screen and (max-width: 1000px){
  .hum-menu__inner{
    flex-direction: column-reverse;
  }
  .hum-menu__block{
    padding: 5rem 3rem 3rem;
  }
}

/* =============
  Menu layout
============= */
.hum-menu__slider {
  width: 40%;
  max-width: 39rem;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 39/59;
}
.hum-menu-swiper{
  width: 100%;
  height: 100%;
}
.hum-menu-swiper__slide {
  height: 100%;
  overflow: hidden;
}
.hum-menu-swiper__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hum-menu__links {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 2.5rem 4.5rem;
  padding: 3rem 0;
}

.hum-menu__link{
  position: relative;
  display: flex;
  align-items: self-end;
  justify-content: space-between;
  transition: .4s;
  padding-bottom: 1.5rem;
  gap: 1.5rem;
}

.hum-menu__link.-center{
  align-items: anchor-center;
}

.hum-menu__link::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}

.hum-menu__link::after {
  transition: .4s;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #222222;
}

@media (hover: hover) {
  .hum-menu__link:hover::after{
    width: 100%;
  }
}
.hum-menu__item.-current .hum-menu__link::after{
  width: 100%;
}

.hum-menu__column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc(50% - 4.5rem);
}



/* =============
  Menu text
============= */
.hum-menu__en {
  font-size: 1.5rem;
  font-weight: 500;
  color: #c3a569;
  line-height: 1.4;
}

.hum-menu__title-main {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}

.hum-menu__title-sub {
  display: block;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.2;
  transform-origin: top left;
  margin-top: 0.5rem;
}

.hum-menu__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f9f9f9;
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}
@media (hover: hover) {
  .hum-menu__link:hover .hum-menu__arrow::before {
    transform: scale(1);
  }
}
/* 矢印 */
.hum-menu__arrow{
  transition: .4s;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.hum-menu__arrow svg{
  width: 1rem;
  height: 1rem;
}
.hum-menu__arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
  stroke: #222;
}
.hum-menu__arrow svg line {
  fill: none;
  stroke: #222;
  stroke-width: 2;
  stroke-miterlimit: 10;
  transition: 0.3s ease;
}

/* =============
  KV セクション
============= */
.home-kv{
  display: flex;
  align-items: center;
}
.hero-anniversary{
  width: 35%;
  min-width: 40rem;
}
.kv-slider {
  position: relative;
  width: 65%;
}

.kv-slider__wrap,
.kv-swiper {
  width: 100%;
  height: 100vh;
  max-height: 110rem;
}

.kv-swiper__slide,
.kv-slider__slide {
  overflow: hidden;
}
.kv-swiper__slide img,
.kv-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* カウント */
.hero-anniversary__logo{
  width: 26rem;
  margin: 0 auto 5rem;
}
.hero-anniversary__lead{
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #c3a569;
  margin-bottom: 2rem;
}
.hero-anniversary__countdown{
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.countdown__label{
  font-size: 2.6rem;
  font-weight: bold;
  color: #c3a569;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-right: 1rem;
}
.countdown__digits{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  line-height: 0.85;
}
.countdown__digit{
  display: block;
  font-size: 7rem;
  font-weight: bold;
  color: #c3a569;
  border: 1px solid #eeeeee;
  border-radius: 5px;
  padding: 0.5rem 1.4rem 1.5rem;
}
.countdown__unit{
  font-size: 3.5rem;
  font-weight: bold;
  color: #c3a569;
  margin-left: 1rem;
}
.scroll-down{
  position: absolute;
  z-index: 99;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  right: 4rem;
  bottom: 2.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .scroll-down:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1360px){
  .hum-menu__column{
    width: 100%;
  }
}

@media screen and (max-width: 1000px){
  .home-kv{
    flex-direction: column-reverse;
    padding-top: 6rem;
  }
  .kv-slider{
    width: 100%;
    overflow: hidden;
  }
  .kv-slider__wrap, .kv-swiper{
    height: 100%;
    max-height: 60rem;
    aspect-ratio: 360/370;
  }
  .hero-anniversary{
    margin-top: 4rem;
  }
  .hum-menu__links{
    width: 100%;
    padding: 0;
  }
  .hum-menu__slider{
    width: 100%;
    max-width: 100%;
    /* aspect-ratio: 280/520; */
  }
}

@media screen and (max-width: 750px){
  .hero-anniversary__logo{
    width: 20rem;
    margin-bottom: 3rem;
  }
  .hum-menu__column{
    gap: 1.8rem;
  }
  .hero-anniversary__countdown {
    align-items: end;
}
  .hum-menu__title-main{
    font-size: 2.4rem;
  }
  .hero-anniversary__lead{
    font-size: 1.8rem;
  }
  .countdown__label{
    font-size: 2.1rem;
    padding-bottom: 1.5rem;
  }
  .countdown__digit{
    font-size: 6.3rem;
    padding: 0.3rem 1rem 1.2rem;
  }
  .countdown__unit{
    font-size: 2.7rem;
    margin-left: 0.8rem;
    padding-bottom: 0.8rem;
  }
  .scroll-down{
    right: 1rem;
    bottom: 1rem;
  }
}

/* =============
  message 
============= */
.anniversary-message {
  padding: 11rem 0 17.5rem;
}

.anniversary-message__inner {
  display: flex;
  flex-direction: row-reverse; /* 右から左へ並べる */
  align-items: flex-start;
  gap: 7rem;
  max-width: 900px;
  margin: 0 auto;
}

/* 右端のタイトルエリア */
.anniversary-message__lead {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.anniversary-message__lead-sub {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #c3a569;
  margin-left: 1rem;
  padding-top: 1.5rem;
}

.anniversary-message__lead-title {
  margin: 0;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  letter-spacing: 0.04em;
}

/* 本文の縦組み列 */
.anniversary-message__columns {
  display: flex;
  flex-direction: row-reverse; /* 縦書きの列を右から左へ */
  gap: 4rem;
  align-items: flex-start;
  padding-top: 6rem;
}

.anniversary-message__column {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.8rem;
  line-height: 1.83;
  letter-spacing: 0.08em;
  color: #222;
  max-height: 65rem; /* 1列の高さ制御 */
}

@media screen and (max-width: 1000px){
  .anniversary-message__lead{
    writing-mode: lr;
  }
  .anniversary-message__inner{
    flex-direction: column;
    width: 90%;
    display: none;
  }
  .anniversary-message__columns{
    display: block;
    padding-top: 0;
  }
  .anniversary-message__column{
    writing-mode: lr;
  }
  .anniversary-message__column + .anniversary-message__column{
    margin-top: 3rem;
  }
  .anniversary-message__lead-sub{
    margin: 0 0 0.5rem;
  }
  .anniversary-message__lead-title{
    line-height: 1.5;
  }
}
@media screen and (max-width: 750px){
  .anniversary-message{
    padding: 8rem 0;
  }
  .anniversary-message__column{
    font-size: 1.5rem;
  }
  .anniversary-message__lead-title{
    font-size: 3rem;
  }
}

/* =============
  ヒストリー
============= */
.home-history{
  padding:10rem 0 12rem;
  border-top: 1px solid #eeeeee;
  overflow-x: clip;
}
.history-slider {
  opacity: 0;
  margin-top: 5rem;
  overflow: visible;
  touch-action: pan-y;
}

.history-slider__wrapper {
  align-items: stretch;
}

.history-slider__slide {
  height: auto;
  /* スライド間の余白を左右paddingで作る（spaceBetween:0 と対）。
     隙間部分もスライド本体に含まれるためスワイプ可能になる。
     SP: 左右8px = 隙間16px相当 */
  box-sizing: border-box;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}

@media (min-width: 768px) {
  .history-slider__slide {
    /* 左右12px = 隙間24px相当 */
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .history-slider__slide {
    /* 左右20px = 隙間40px相当 */
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.history-slider__link {
  display: block;
  color: inherit;
  text-decoration: none;
}


.history-slider__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}
.history-slider__visual::before{
  position: absolute;
  z-index: 1;
  display: block;
  content: "";
  width: 100%;
  height: 25rem;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.history-slider__poster,
.history-slider__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.history-slider__video {
  position: absolute;
  inset: 0;
  /* タップ/クリックの確実な当たり先（カード全体のハンドラへバブル）。
     videoは<button>と違いSwiperのスワイプ/ドラッグを妨げない */
  pointer-events: auto;
}

.history-slider__play {
  position: absolute;
  inset: 0;
  /* ぼかしオーバーレイ(.history-slider__media::after, z-index:2)より前面に出し、
     再生ボタン・矢印アイコンがbackdrop-filterの対象にならないようにする */
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  /* フルカバーのボタンを当たり判定にするとSwiperのドラッグと競合するため none に戻す。
     中央寄せはSwiperのslideToClickedSlideに任せ、再生は矢印アイコン(auto)で行う */
  pointer-events: none;
}

.history-slider__play-icon {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  width: 8rem;
  height: 8rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.history-slider__play-circle {
  fill: #222;
  opacity: 0.6;
  transition: .4s;
}
.history-slider__play-triangle {
  fill: #fff;
  opacity: 0.8;
  transition: .4s;
}

.history-slider__body {
  position: absolute;
  z-index: 999;
  bottom: 2rem;
  left: 2.5rem;
  color: #fff;
}

.history-slider__meta {
  margin: 15px 0 0;
  font-size: 14px;
  line-height: 1.7;
  border: 1px solid #fff;
  padding: 0 1em;
}

.history-slider__position {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.history-slider__name {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.history-slider__date {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.6;
}

.history-slider__footer {
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-top: 40px;
  width: 90%;
  max-width: 1000px;
  margin: 4rem auto 0;
}
.history-slider__nav {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.history-slider__progressbar {
  height: 1px;
  flex: 1;
  position: relative;
  background: #f6f1e8;
}
.history-slider__progress-thumb {
  position: absolute;
  top: 0;
  left: var(--progress-left, 0%);
  width: var(--progress-width, 10%);
  height: 100%;
  background: #c3a569;
  transition: left 0.5s ease;
}

.history-slider__nav-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: #222;
  cursor: pointer;
}

.history-slider__nav-button:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f9f9f9;
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}

@media (hover: hover) {
  .history-slider__nav-button:hover:before {
    transform: scale(1);
  }
}

.history-slider__nav-icon {
  width: 3.2rem;
  height: 3.2rem;
}

.history-slider__media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: auto;
}

.history-slider__youtube {
  position: absolute;
  inset: 0;
  z-index: 10;
  /* display:none だと寸法0になり YT.Player が正常初期化できないため visibility で制御 */
  visibility: hidden;
  pointer-events: none;
  background: #000;
}

.history-slider__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* YT.Player が生成する div ラッパーをコンテナいっぱいに広げる */
/* pointer-events: none を明示（親の none は子に自動継承されないため iframe がタッチを吸い取る） */
.history-slider__youtube > div {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Shorts は 9:16 なのでコンテナ（9:16）にそのまま 100% 表示。拡大不要でコントロールも見切れない */
.history-slider__youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

/* 上部グラデーション（YouTube タイトル隠し） */
.history-slider__youtube::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.history-slider__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 11;
  display: none;
  width: 2.4rem;
  height: 2.4rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  cursor: pointer;
}

.history-slider__card{
  transition: .4s;
  overflow: hidden;
  position: relative;
}
@media (hover: hover) {
  .history-slider__card:hover{
    border-radius: 0.5rem;
  }
  /* PC: カード全面がクリック可能（JS側もカード全体にクリックを付与済み）。
     grabCursorのgrab表示を上書きし、ポインターで「クリックできる」ことを明示する。 */
  .history-slider__card{
    cursor: pointer;
  }
}
.history-slider__position,
.history-slider__name,
.history-slider__date{
  display: table;
  position: relative
}

.history-slider__position::after,
.history-slider__name::after,
.history-slider__date::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .history-slider__card:hover .history-slider__position::after,
  .history-slider__card:hover .history-slider__name::after,
  .history-slider__card:hover .history-slider__date::after{
    transform: scaleX(1);
  }
}

.history-slider__media{
  transition: .4s;
}
/* hover時のぼかしは <video> に filter を直接かけるとChrome/Edgeで
   再生フレームが白飛びして残るバグがあるため、backdrop-filterのオーバーレイで実現する */
.history-slider__media::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: opacity .4s ease;
}
@media (hover: hover) {
  .history-slider__card:hover .history-slider__media::after{
    opacity: 1;
  }

  .history-slider__card:hover .history-slider__play-circle{
    fill: #fff;
  }
  .history-slider__card:hover .history-slider__play-triangle{
    fill: #222;
  }
}

.history-slider__card.is-playing .history-slider__youtube,
.history-slider__card.is-playing .history-slider__youtube > div,
.history-slider__card.is-playing .history-slider__youtube iframe {
  visibility: visible;
  pointer-events: auto;
}

.history-slider__card.is-playing .history-slider__media,
.history-slider__card.is-playing .history-slider__play,
.history-slider__card.is-playing .history-slider__body {
  display: none;
}

.history-slider__card.is-playing .history-slider__close {
  display: block;
}

.history-slider__card.is-playing .history-slider__visual::before {
  display: none;
}

.history-slider__iframe-close {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: none;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.history-slider__card.is-playing .history-slider__iframe-close {
  display: block;
}
.history-slider__card.is-playing .history-slider__youtube iframe{
  pointer-events: auto;
}
@media screen and (max-width: 1000px) {
  .home-history{
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 750px) {
  /* SP: 左右の見切れを出すため全幅にし、slidesPerView(1.24)側でカード幅を制御 */
  .history-slider {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }

  .history-slider__footer {
    gap: 20px;
    margin-top: 28px;
    width: 90%;
  }

  .history-slider__name {
    font-size: 20px;
  }

  .history-slider__nav-button {
    width: 48px;
    height: 48px;
  }

  .history-slider__nav-icon {
    width: 28px;
    height: 28px;
  }

  /* SP: bodyを画像の下に配置し、白背景・ダーク文字に変更 */
  .history-slider__card {
    background: #fff;
  }

  /* iOS Safari対策: Swiperがtransformでスライドを動かす瞬間にページが再合成され、
     独立した合成レイヤーを持たない重なり要素（再生ボタン/カード文字/見出し）が
     一瞬描画から外れてちらつく。各要素を自前のレイヤーに昇格させて巻き添え再描画を防ぐ。 */
  .history-slider__body,
  .home-history .section-head {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .history-slider__play-icon {
    /* 既存の中央寄せ(translate -50%,-50%)を保持したままレイヤー昇格 */
    transform: translate(-50%, -50%) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

/* =============
  インタビュー
============= */
.home-interview{
  padding: 10rem 0 12rem;
  border-top: 1px solid #eeeeee;
  overflow: hidden;
}
.interview-block{
  position: relative;
  width: calc(100% - 20rem);
  flex: 1;
}
.interview-block:before{
  display: block;
  content: "";
  width: 50vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: -50vw;
  background: #fff;
  z-index: 9;
}
.home-interview__inner{
  display: flex;
  gap: 5rem;
}
.interview__lead{
  margin-bottom: 5rem;
}
.interview__lead-text{
  font-size: 1.7rem;
  line-height: 2;
}
.interview__lead-text.-color-gray{
  text-indent: -1em;
  padding-left: 1em;
}
.home-interview .home-news__lead{
  width: 15rem;
}

.interview__slider {
  overflow: visible;
  touch-action: pan-y;
}

.interview-card {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  padding-right: 5rem;
  margin-right: 5rem;
  border-right: 1px solid #eeeeee;
}

.interview-card__number {
  position: absolute;
  color: #eeeeee;
  right: 2rem;
  bottom: -0.6rem;
  font-size: 4rem;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
}

.interview-card__figure {
  margin-bottom: 16px;
}

.interview-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  transition: .4s;
}

.interview-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  transition: .4s;
}

.interview-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.interview-card__play-icon {
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.interview-card__play-circle {
  fill: #222;
  opacity: 0.6;
  transition: .4s;
}

.interview-card__play-triangle {
  fill: #fff;
  opacity: 0.8;
  transition: .4s;
}

.interview-card__meta {
  display: inline-block;
  border: solid 1px #222;
  font-size: 1.3rem;
  line-height: 1.6;
  font-weight: 500;
  padding: 0.1rem 0.8rem 0.2rem;
  margin-bottom: 1rem;
}

.interview-card__position {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.interview-card__name {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: bold;
}

.interview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 4rem;
}

.interview-card__position,
.interview-card__name,
.interview-card__date{
  display: table;
  position: relative;
}

.interview-card__position::after,
.interview-card__name::after,
.interview-card__date::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .interview-card:hover .interview-card__position::after,
  .interview-card:hover .interview-card__name::after,
  .interview-card:hover .interview-card__date::after{
    transform: scaleX(1);
  }

  .interview-card:hover .interview-card__image{
    border-radius: 5px;
  }
  .interview-card:hover .interview-card__image img{
    transform: scale(1.05);
    filter: blur(10px);
  }

  .interview-card:hover .interview-card__play-circle{
    fill: #ffffff;
  }
  .interview-card:hover .interview-card__play-triangle{
    fill: #222222;
  }
}

/* プログレスバー */
.interview__progressbar {
  height: 1px;
  flex: 1;
  position: relative;
  background: #f6f1e8;
}
.interview__progress-thumb {
  position: absolute;
  top: 0;
  left: var(--progress-left, 0%);
  width: var(--progress-width, 10%);
  height: 100%;
  background: #c3a569;
  transition: left 0.5s ease;
}

.interview__nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.interview__nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.interview__nav-button:before{
  content: "";
  position: absolute;
  inset: 0;
  background: #f9f9f9;
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}
@media (hover: hover) {
  .interview__nav-button:hover {
    opacity: 0.7;
  }
  .interview__nav-button:hover:before{
    transform: scale(1);
  }
}

.interview__nav-button svg {
  width: 3.2rem;
  height: 3.2rem;
}

.interview-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.interview-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  display: flex;
  align-items: center;
}

.interview-modal__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.interview-modal__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 960px);
  margin: 10rem auto;
}

.interview-modal__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.interview-modal__close .header-hum-span {
  background: #fff;
}

.interview-modal__close .header-hum-span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

.interview-modal__close .header-hum-span:nth-child(2) {
  opacity: 0;
}

.interview-modal__close .header-hum-span:nth-child(3) {
  top: 50%;
  bottom: auto;
  width: 100%;
  transform: translateY(-50%) rotate(-20deg);
}

.interview-modal__movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.interview-modal__movie iframe {
  pointer-events: all!important;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1000px){
  .home-interview__inner{
    flex-direction: column;
    gap: 0;
  }
  .home-interview .home-news__lead{
    width: 100%;
  }
  .interview-block{
    width: 100%;
  }
  .interview {
    padding: 3rem 0 0;
  }
}

@media screen and (max-width: 750px) {
  .home-interview{
    padding: 7.5rem 0 8rem;
  }
  .interview__lead{
    margin-bottom: 3.5rem;
  }
  .interview__footer {
    gap: 3rem;
  }
  .interview__nav-button {
    width: 48px;
    height: 48px;
  }
  .interview__nav-button svg{
    width: 2.8rem;
    height: 2.8rem;
  }
  .interview-card__name {
    font-size: 1.8rem;
  }
  .interview-card__play-icon{
    width: 7rem;
    height: 8rem;
  }
  /* SP: スライダーのはみ出しを防止 */
  .interview__slider {
    overflow: hidden;
  }
  .interview-card__number{
    right: 0;
  }
  /* SP: カード全体をタップでモーダルを開く。ただし最下部20pxは誤タップ防止で除外。
     <a>自体はpointer-events:noneにし、下20pxを除いた領域を覆う透明オーバーレイ(::after)
     だけをタップ可能にする。オーバーレイのクリックは<a>にバブリングしてモーダルが開く。 */
  .interview-card {
    pointer-events: none;
  }
  .interview-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 20px;
    left: 0;
    z-index: 5;
    pointer-events: auto;
  }
  .interview-modal__close{
    top: 1rem;
    right: 1rem;
  }
  .interview__lead-text{
    font-size: 1.6rem;
  }
}

/* =============
  ギャラリー
============= */
.mosaic{
  padding: 10rem 0 12rem;
  border-top: 1px solid #eeeeee;
}
.section-head + .mosaic-wrap{
  margin-top: 6rem;
}
.mosaic-wrap + .more-button-wrap{
  margin-top: 7.5rem;
}
.mosaic-wrap{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mosaic-block{
  display: flex;
  justify-content: space-between;
}
.mosaic__list--sm{
  width: calc(54.6% - 1rem);
}
.mosaic__list--lg{
  width: calc((45.4% - 1rem));
}

.mosaic-block.is-hidden {
  display: none;
}

.mosaic-card {
  overflow: hidden;
}

.mosaic-card__media {
  overflow: hidden;
}

/* ４つ */
.mosaic__list--sm{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.mosaic__item{
  position: relative;
  overflow: hidden;
  transition: .4s;
}
.mosaic__item--sm{
  width: calc((100% - 2rem) / 2);
}
.mosaic__item--sm{
  aspect-ratio: 270 / 180;
}
.mosaic__item--lg{
  aspect-ratio: 460 / 380;
}

.mosaic-card__media{
  height: 100%;
  will-change: transform;
}
.mosaic-card__media img{
  transition: .4s;
}
@media (hover: hover) {
  .mosaic__item:hover{
    border-radius: 5px;
  }
  .mosaic__item:hover .mosaic-card__media img{
    transform: scale(1.1);
  }

  .mosaic__item:hover .mosaic-card__overlay{
    opacity: 1;
    transition: .4s;
  }
}
.mosaic-card__overlay{
  transition: .4s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.mosaic-card__caption{
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  font-weight: bold;
  padding: 2rem 2rem;
}

.mosaic-card__arrow{
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  content: "";
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background: url(../images/common/arrow.png)no-repeat;
  background-size: cover;
}

.mosaic__item--lg .mosaic-card__caption{
  font-size: 1.8rem;
}

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

@media screen and (max-width: 1000px){
  .mosaic-block{
    flex-direction: column;
    gap: 2rem;
  }
  .mosaic-block:nth-child(2n){
    flex-direction: column-reverse;
  }
  .mosaic__list--lg{
    width: 100%;
  }
  .mosaic__list--sm{
    width: 100%;
  }
}
@media screen and (max-width: 1000px){
  .mosaic-card__caption,
  .mosaic-card__arrow{
    display: none;
  }
}

/* =============
  future 
============= */
#home-future{
  border-top: 1px solid #eeeeee;
  padding: 10rem 0;
}
.future-figure{
  max-width: 120rem;
  margin: 5rem auto 0;
}
#home-future .c-button-wrap{
  margin-top: 7rem;
}
.future-figure-sp-wrap{
  margin-top: 3rem;
}
.future-figure-sp-sec{
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.future-figure-sp-sec__item{
  width: calc((100% - 3rem)/2);
}

@media screen and (max-width: 750px){
  #home-future{
    padding: 7.5rem 0 8rem;
  }
  .future-figure-sp-sec{
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
  }
  .future-figure-sp-sec__item{
    width: 100%;
  }
}

/* =============
  ニュース
============= */
.home-news{
  border-top: 1px solid #eeeeee;
  padding: 10rem 0 11rem;
}
.home-news__inner{
  display: flex;
  gap: 3rem 4.5rem;
}
.home-news__lead {
  position: relative;
  z-index: 99;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  align-items: flex-start;
  gap: 12px;
  flex-shrink: 0;
}

.home-news__lead-sub {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #c3a569;
  margin-left: 1rem;
}

.home-news__lead-title {
  margin: 0;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  letter-spacing: 0.04em;
}
.news-list-wrap{
  width: 100%;
}
.news-list-wrap .c-button-wrap{
  margin-top: 7rem;
  text-align: center;
}
.news-list{
  width: 100%;
}
.ly-news-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2.4rem;
  max-width: 100%;
}

.ly-news-list .news-list__item + .news-list__item {
  margin-top: 0;
}

.ly-news-list .news-card {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
}

.ly-news-list .news-card__body {
  flex-direction: column;
  gap: 1.2rem;
}

.ly-news-list .news-card__thumb {
  width: 100%;
}

.ly-news-list .news-card__content {
  padding-top: 1.2rem;
}

.ly-news-list .news-card__arrow {
  width: 4rem;
  height: 4rem;
  margin-top: 1rem;
  align-self: flex-end;
}
.news-card{
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: center;
  padding-bottom: 2rem;
  transition: .4s;
}
.news-list__item + .news-list__item{
  margin-top: 2rem;
}
.news-list__item.--border .news-card__thumb{
  border: 1px solid #eeeeee;
}
.news-card:before{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #eeeeee;
  bottom: 0;
  left: 0;
}
.news-card:after{
  position: absolute;
  display: block;
  content: "";
  width: 0%;
  height: 1px;
  background: #222222;
  bottom: 0;
  left: 0;
  transition: .4s;
}
.news-card__body{
  display: flex;
  gap: 2rem 4rem;
}
.news-card__thumb{
  width: 15rem;
  overflow: hidden;
  transition: .4s;
}
.news-card .news-card__thumb img{
  transition: .4s;
}
.news-card__content{
  padding-top: 1.5rem;
}
.news-card__title{
  font-size: 2rem;
  font-weight: 500;
}
.news-card__date{
  font-size: 1.4rem;
  color: #888888;
  margin-top: 1.5rem;
}
@media (hover: hover) {
  .news-card:hover:after{
    width: 100%;
  }
  .news-card:hover .news-card__thumb{
    border-radius: 5px;
    transition: .4s;
  }
  .news-card:hover .news-card__thumb img{
    transform: scale(1.08);
    transition: .4s;
  }
}

.news-card__arrow {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.news-card__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f9f9f9;
  border-radius: inherit;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.4s ease;
  z-index: -1;
}
@media (hover: hover) {
  .news-card:hover .news-card__arrow::before {
    transform: scale(1);
  }
}
/* 矢印 */
.news-card__arrow{
  transition: .4s;
  width: 7rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.news-card__arrow svg{
  width: 3rem;
  height: 2.5rem;
}
.news-card__arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
  stroke: #222;
}
.news-card__arrow svg line {
  fill: none;
  stroke: #222;
  stroke-miterlimit: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 1000px){
  .home-news__inner{
    flex-direction: column;
  }
  .home-news__lead{
    writing-mode: lr;
  }
  .home-news__lead-sub{
    margin-left: 0;
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1000px){
  .home-news{
    padding: 8rem 0 10rem;
  }
  .news-card{
    display: block;
  }
  .news-card__content{
    padding-top: 0;
  }
  .news-card__body{
    gap: 2rem;
  }
  .news-card__arrow{
    width: auto;
    height: auto;
    justify-content: right;
    border-radius: 0;
  }
  .home-news__lead-title{
    font-size: 3.4rem;
  }
  .news-card__title{
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1000px) and (hover: hover) {
  .news-card:hover .news-card__arrow::before {
    transform: scale(0);
  }
}

@media screen and (max-width: 750px) {
  .ly-news-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.6rem;
  }
  .home-news__lead-title{
    line-height: 1.3;
  }
  .news-card__content{
    flex: 1;
  }
}
/*! -----------------------------
  ロゴマークについて
----------------------------- */
.home-logomark{
  padding: 17rem 0;
  position: relative;
  overflow: hidden;
}
.home-logomark:before{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
}
.logomark-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.logomark-parallax__img {
  display: block;
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.08);
}
.home-logomark-contents{
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  padding: 6rem 8rem 8rem;
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 5px;
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
  flex: 1;
}

.home-logomark-logo{
  border-radius: 5px;
  width: 30rem;
}

@media screen and (max-width: 1000px){
  .home-logomark-contents{
    flex-direction: column-reverse;
    padding: 3rem 3rem 6rem;
    gap: 3rem;
  }
  .home-logomark-logo{
    margin: 0 auto;
  }
  .home-logomark-contents .c-button-wrap{
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 750px){
  .home-logomark{
    padding: 4rem 0;
  }
  .home-logomark-logo{
    width: 100%;
  }
}

/*! -----------------------------
  募金について
----------------------------- */
.home-donations{
  padding: 11.5rem 0 5rem;
}
.home-donations .section-inr{
  position: relative;
}
.home-donations .section-head{
  position: absolute;
  top: 0;
  z-index: 1;
}
.parallax-wrap{
  display: flex;
  gap: 3rem;
  width: 60%;
  min-width: 60rem;
  margin-right: 0;
  margin-left: auto;
}
.parallax-left{
  width: calc(35% - 1.5rem);
  margin-top: 15vw;
}
.parallax-right{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: calc(65% - 1.5rem);
}
.parallax01 {
  overflow: hidden;
  -webkit-mask-image: url("../images/top/parallax01-bg.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/top/parallax01-bg.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}
.parallax02 {
  overflow: hidden;
  -webkit-mask-image: url("../images/top/parallax02-bg.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/top/parallax02-bg.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}
.parallax03 {
  overflow: hidden;
  width: 56%;
  -webkit-mask-image: url("../images/top/parallax03-bg.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-image: url("../images/top/parallax03-bg.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 100% 100%;
}
.parallax__image{
  display: block;
  width: 100%;
  height: 110%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1.02);
}
@media screen and (max-width: 1000px){
  .home-donations{
    padding: 7rem 0 0;
  }
  .home-donations .section-head{
    position: relative;
  }
}
@media screen and (max-width: 750px){
  .parallax-wrap{
    margin-top: 5rem;
    width: 104%;
    min-width: 100%;
    padding-left: 5%;
    gap: 1.2rem;
  }
  .parallax-left{
    margin-top: 22vw;
  }
  .parallax-right{
    gap: 1.2rem;
  }
}
/*! -----------------------------
  カルーセル
----------------------------- */
.home-carousel {
  display: grid;
  overflow: hidden;
  padding: 10rem 0 15rem;
}

.home-carousel__lane {
  position: relative;
  overflow: hidden;
}

.home-carousel__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  will-change: transform;
}

.home-carousel__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.home-carousel__title {
  margin: 0;
  font-size: 13rem;
  line-height: 1.4;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto;
  color: #c3a569;
}

.home-carousel__figures {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.home-carousel__image {
  display: block;
  width: 150px;
  height: 100px;
  object-fit: cover;
  flex: 0 0 auto;
}

/* 左レーン：文字 → 画像 */
.home-carousel__lane--left .home-carousel__item {
  flex-direction: row;
}

/* 右レーン：画像 → 文字 */
.home-carousel__lane--right .home-carousel__item {
  flex-direction: row;
}

/* 端の見切れを少し自然にしたい時 */
/* .home-carousel__lane::before,
.home-carousel__lane::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 80px;
  height: 100%;
  pointer-events: none;
} */
/* 
.home-carousel__lane::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.home-carousel__lane::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
} */

.home-carousel-bottom__title{
  color: #c3a569;
  font-weight: bold;
  font-size: 4rem;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 1000px) {
  .home-carousel__track {
    gap: 24px;
  }

  .home-carousel__item {
    gap: 18px;
  }

  .home-carousel__figures {
    gap: 10px;
  }

  .home-carousel__lane::before,
  .home-carousel__lane::after {
    width: 56px;
  }
  .home-carousel__title{
    font-size: 7.6rem;
  }
  .home-carousel__image{
    width: 9rem;
    height: 5.8rem;
  }
}

@media screen and (max-width: 750px) {
  .home-carousel {
    padding: 8rem 0 12rem;
  }

  .home-carousel__track {
    gap: 18px;
  }

  .home-carousel__item {
    gap: 14px;
  }

  .home-carousel__figures {
    gap: 8px;
  }

  .home-carousel__lane::before,
  .home-carousel__lane::after {
    width: 32px;
  }
  .home-carousel-bottom__title{
    font-size: 2.4rem;
  }
}

/*! -----------------------------
  矢印
----------------------------- */
.circle-arrow {
  position: absolute;
  top: -8rem;
  right: 3rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  color: #fff;
  text-decoration: none;
  opacity: 1;
  pointer-events: auto;
  transition: color 0.4s ease;
  backface-visibility: hidden;
}

.circle-arrow__icon {
  display: block;
  width: 100%;
  height: 100%;
}

.circle-arrow__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.circle-arrow__circle {
  fill: #c3a569;
  stroke: #c3a569;
  stroke-width: 1;
  stroke-miterlimit: 10;
  transition:
    fill 0.4s ease,
    stroke 0.4s ease;
}

.circle-arrow__arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-miterlimit: 10;
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
  transform-box: view-box;
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.circle-arrow__arrow--first {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.circle-arrow__arrow--second {
  transform: translate3d(0, 32px, 0);
  opacity: 0;
}

@media (hover: hover) {
  .circle-arrow:hover {
    color: #c3a569;
  }

  .circle-arrow:hover .circle-arrow__circle {
    fill: #fff;
    stroke: #c3a569;
  }

  .circle-arrow:hover .circle-arrow__arrow--first {
    transform: translate3d(0, -32px, 0);
    opacity: 0;
  }

  .circle-arrow:hover .circle-arrow__arrow--second {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/*! -----------------------------
  フッター
----------------------------- */
.footer{
  position: relative;
  border-top: 1px solid #eeeeee;
  padding-top: 4rem;
}
.footer-inr{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-contents{
  display: flex;
  gap: 2.6rem 3rem;
  justify-content: space-between;
  padding-bottom: 7rem;
}
.footer-l{
  display: flex;
  gap: 2rem 4rem;
}
.footer-logo{
  max-width: 13rem;
}
.footer-addr__title{
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-addr__text{
  font-size: 1.5rem;
}

.footer-button .c-button{
  gap: 0 2rem;
}

.footer-button__link {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 1rem;
}
.footer-button__link::before,
.footer-button__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
}
.footer-button__link::before {
  background: #cfcfcf;
}
.footer-button__link::after {
  background: #c3a569;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}
@media (hover: hover) {
  .footer-button__link:hover {
    color: #c3a569;
  }
  .footer-button__link:hover::after {
    transform: scaleX(1);
  }
}
.footer-button__arw {
  position: relative;
  display: flex;
  align-items: center;
  width: 1rem;
  height: 1rem;
  overflow: hidden;
}

.footer-button__arrow-set {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.footer-button__arrow-set--first {
  transform: translateY(0);
  opacity: 1;
}

.footer-button__arrow-set--second {
  transform: translateY(-140%);
  opacity: 0;
}

.footer-button__arw svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-button__arw svg path,
.footer-button__arw svg line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}
.footer-button__arw .cls-1 {
  fill: none;
  stroke-miterlimit: 10;
}

@media (hover: hover) {
  .footer-button__link:hover .footer-button__arrow-set--first {
    transform: translateY(140%);
    opacity: 0;
  }

  .footer-button__link:hover .footer-button__arrow-set--second {
    transform: translateY(0);
    opacity: 1;
  }
}
.footer-copy__text{
  padding-bottom: 1.5rem;
  text-align: right; 
}
.footer-copy__text small{
  font-size: 1.1rem;
}


@media screen and (max-width: 1000px){
  .footer-addr__text span{
    display: block;
    line-height: 2;
  }
}
@media screen and (max-width: 750px){
  .circle-arrow{
    right: 2rem;
    width: 5rem;
    height: 5rem;
  }
  .footer{
    padding-top: 3.5rem;
  }
  .footer-logo{
    width: 9rem;
  }
  .footer-l{
    flex-direction: column;
  }
  .footer-contents{
    flex-direction: column;
    padding-bottom: 9rem;
  }
}




.js-char-wrap {
  display: inline-block;
  overflow: hidden;
}

.js-char {
  display: inline-block;
  will-change: transform, opacity;
}

.js-line-inner {
  display: inline-block;
  will-change: transform, opacity;
}

.js-message-column {
  overflow: hidden;
}

.js-message-column-inner {
  display: inline-block;
  will-change: transform, opacity;
}

.js-message-line{
  display: block;
}


.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  /* iOS: モーダル内でのダブルタップズームを無効化（スワイプは可能なまま） */
  touch-action: manipulation;
}

.gallery-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.4s ease, visibility 0s linear 0s;
}

.gallery-modal__bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, .8);
  transition: opacity 0.4s;
}

.gallery-modal.is-active .gallery-modal__bg {
  opacity: 1;
}

/* ─── inner: 全画面を占有し、padding で矢印の領域を確保 ─── */
.gallery-modal__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 13rem;
}

.gallery-modal__panel {
  position: relative;
  width: 100%;
  max-width: 90rem;
  background: #fff;
  border-radius: 0.4rem;
  overflow: visible;
  padding: 1.5rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.gallery-modal__media {
  overflow: hidden;
  border-radius: 0.2rem;
}

/* ─── パネル内ナビ wrapper ─── */
.gallery-modal__panel-nav {
  /* display: none; */
}

.gallery-modal__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}

.gallery-modal__caption {
  padding: 1.5rem 2rem 1rem;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: center;
  background: #fff;
}

/* ─── 閉じるボタン: inner 基準で右上 ─── */
.gallery-modal__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  width: 4rem;
  height: 3.5rem;
  border: 0;
  background: none;
  cursor: pointer;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal__close .header-hum-span {
  background: #fff;
}

.gallery-modal__close .header-hum-span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(20deg);
}

.gallery-modal__close .header-hum-span:nth-child(2) {
  opacity: 0;
}

.gallery-modal__close .header-hum-span:nth-child(3) {
  top: 50%;
  bottom: auto;
  width: 100%;
  transform: translateY(-50%) rotate(-20deg);
}

/* ─── ナビボタン: panel 基準で左右中央 ─── */
.gallery-modal__nav {
  position: absolute;
  top: 50%;
  width: 6.4rem;
  height: 6.4rem;
  border: none;
  border-radius: 50%;
  background: none;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 4;
  padding: 0;
}

.gallery-modal__nav--prev {
  left: -12rem;
}

.gallery-modal__nav--next {
  right: -12rem;
}

.gallery-modal__nav-icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-modal__nav-icon--normal {
  opacity: 1;
}

.gallery-modal__nav-icon--hover {
  opacity: 0;
}

@media (hover: hover) {
  .gallery-modal__nav:hover .gallery-modal__nav-icon--normal {
    opacity: 0;
  }

  .gallery-modal__nav:hover .gallery-modal__nav-icon--hover {
    opacity: 1;
  }
}

/* ─── SP ─── */
@media screen and (max-width: 750px) {
  .gallery-modal__inner {
    padding: 0 1.5rem 3rem;
    margin-top: 0;
    align-items: center;
    overflow-y: auto;
  }
  .gallery-modal__panel {
    max-width: 100%;
    padding: 1rem;
  }

  .gallery-modal__media img {
    max-height: 70vw;
  }

  .gallery-modal__caption {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.4rem;
  }

  .gallery-modal__close {
    top: 1rem;
    right: 1rem;
    width: 4.5rem;
    height: 4.5rem;
  }

  /* PC の絶対配置ナビを非表示 */
  .gallery-modal__nav {
    display: none;
  }

  .modal__panel-nav{
    position: absolute;
    bottom: -4rem;
    width: 100%;
  }
  /* SP: パネル下部の左右に表示 */
  .gallery-modal__panel-nav {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0 0.4rem;
    left: -1rem;
  }
  .gallery-modal__panel-nav .gallery-modal__nav {
    display: inline-flex;
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 5rem;
    height: 5rem;
  }
  .gallery-modal__nav--next{
    right: 0!important;
    top: 0!important;
    left: auto!important;
  }

  #home-gallery .mosaic__inner{
    width: 100%;
  }
  #home-gallery .section-head{
    width: 90%;
    margin: 0 auto;
  }
  .section-head + .mosaic-wrap{
    margin-top: 3.5rem;
  }
  .mosaic-wrap{
    width: 100%;
    padding: 0 1rem;
    gap: 1rem;
  }
  .mosaic__item--sm {
      width: calc((100% - 1rem) / 2);
  }
  .mosaic__list--sm{
    gap: 1rem;
  }
  .mosaic-block{
    gap: 1rem;
  }
}


/* もっと見るボタン */
.more-button-wrap{
  text-align: center;
}
.more-button {
  display: inline-block;
}

.more-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6rem;
  color: #222;
  font-weight: bold;
  text-decoration: none;
  padding:0 0.5rem 1.2rem;
  transition: .4s;
}

.more-button__link:before{
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #eeeeee;
}
.more-button__link::after{
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #c3a569;
  transition: .4s;
}

.more-button__text {
  font-size: 1.7rem;
  line-height: 1.4;
}

.more-button__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: solid 1px #000;
  transition: .4s;
}

.more-button__circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.more-button__circle-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.more-button__arrow {
  position: relative;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  overflow: hidden;
}

.more-button__arrow-inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.more-button__arrow-set {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.more-button__arrow-set--first {
  top: 0;
  transform: translateY(0);
  opacity: 1;
}

.more-button__arrow-set--second {
  top: 0;
  transform: translateY(-140%);
  opacity: 0;
}

.more-button__arrow-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.85rem;
  height: 1px;
  background: currentColor;
  transform: translateY(-50%);
}

.more-button__arrow-head {
  position: absolute;
  top: 50%;
  right: 0.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (hover: hover) {
  .more-button__link:hover{
    color: #c3a569;
  }
  .more-button__link:hover::after{
    width: 100%;
  }

  .more-button__link:hover .more-button__icon{
    background: #c3a569;
    border: 1px solid #c3a569;
  }

  .more-button__link:hover .more-button__arrow-set--first {
    transform: translateY(140%);
    opacity: 0;
  }

  .more-button__link:hover .more-button__arrow-set--second {
    transform: translateY(0);
    opacity: 1;
  }
}


.more-arw-b {
  fill: none;
  stroke: #222;
  stroke-miterlimit: 10;
}

.more-arw-w {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
}


/*! -----------------------------
  下層ページ
----------------------------- */
.ly-block{
  padding-top: 24rem;
}
.ly-block .section-head{
  margin-bottom: 5rem;
}
.ly-block .section-head__text{
  font-size: 2rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.ly-block .section-head__title{
  font-size: 4.8rem;
  margin-bottom: 0;
}
.interview-category{
  position: relative;
  margin-top: 7rem;
}
.interview-category:before{
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
.interview-category__list{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.interview-category__item{
  position: relative;
  font-size: 1.6rem;
  padding: 0 1em 1.6rem;
  color: #888888;
  transition: .4s;
}
.interview-category__item:before{
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #c3a569;
  transition: .4s;
}
.interview-category__item::after{
  position: absolute;
  display: block;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
@media screen and (max-width: 1000px) {
  .ly-block{
    padding-top: 15rem;
  }
  .ly-block .section-head__title{
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .ly-block .section-head{
    margin-bottom: 4rem;
  }
  .ly-block .section-head__text{
    font-size: 1.5rem;
  }
}
/* アクティブ */
.interview-category__item--active{
  color: #c3a569;
  font-weight: bold;
}
.interview-category__item--active:before{
  width: 100%;
}
/* ホバー */
@media (hover: hover) {
  .interview-category__item:hover{
    color: #c3a569;
    font-weight: bold;
  }
  .interview-category__item:hover:before{
    width: 100%;
  }
}

/* インタビュー */
.interview-contents{
  margin-top: 6rem;
}
.interview-cards__track{
  display: flex;
  gap: 6rem 2.5rem;
  flex-wrap: wrap;
}
.interview-cards .interview-cards__item{
  position: relative;
  width: calc((100% - 5rem)/3);
  padding-bottom: 5.5rem;
  border-bottom: 1px solid #eeeeee;
}
.interview-cards .interview-card{
  padding-right: 0;
  margin-right: 0;
  border: none;
}
.interview-cards .interview-card__number{
  right: 0;
  bottom: -4rem;
  pointer-events: none;
}
.interview-card__body{
  margin-top: 1.7rem;
}
.interview-card__date{
  color: #888888;
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.interview-contents + .more-button-wrap{
  margin-top: 8rem;
}
.news-list + .more-button-wrap {
  margin-top: 6rem;
}
@media screen and (max-width: 1000px) {
  .interview-cards__track{
    gap: 6rem 2.5rem;
  }
  .interview-cards .interview-cards__item{
    width: calc((100% - 2.5rem)/2);
    padding-bottom: 5.5rem;
  }
}
@media screen and (max-width: 750px) {
  .interview-cards .interview-cards__item{
    width: 100%;
    padding-bottom: 5.5rem;
  }
  .interview-card{
    padding-right: 0;
    margin-right: 0;
    border-right:none;
  }
  #home-interview  .interview-card__body{
    padding-bottom: 5rem;
  }
  /* SP・トップ: カード下端ではなく「日付の直下」までをタップ可能にする。
     body の padding-bottom:5rem ぶんの空白余白(下部)はタップ不可にして誤タップを防ぐ。
     （共有の .interview-card::after は bottom:20px だが、トップは下に5remの余白があるため上書き） */
  #home-interview .interview-card::after {
    bottom: 5rem;
  }
  .interview-category__item{
    width: 50%;
  }
  .interview{
    padding-top: 2rem;
  }
}


.js-carousel-left,
.js-carousel-right {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}


/* =============
  シングルページ
============= */
.single-head{
  margin-top: 24rem;
  margin-bottom: 6rem;
}
.single-head__meta{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  gap: 1rem 2rem;
}
.single-head__cate{
  font-size: 2rem;
}
.single-head__date{
  font-size: 1.8rem;
  color: #888888;
}
.single-head__title{
  font-size: 4.8rem;
  font-weight: bold;
}
.p-single__contents-inner{
  max-width: 100%;
}

@media screen and (max-width: 1000px){
  .single-head__cate{
    font-size: 1.8rem;
  }
  .single-head__date{
    font-size: 1.6rem;
  }
  .single-head{
    margin-top: 16rem;
    margin-bottom: 3.5rem;
  }
  .single-head__title{
    font-size: 3.6rem;
  }
}