@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 1. ブラウザのデフォルトリセット */
body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

/* 2. サイト全体の基準サイズ（モバイルファースト） */
html {
  /* スマホ基準: 14px相当 (14 ÷ 16 = 0.875 -> 87.5%) */
  font-size: 87.5%;
  scroll-behavior: smooth;
  /* PC基準への引き上げ（画面幅 769px以上） */
}
@media screen and (min-width: 769px) {
  html {
    font-size: 100%;
    /* 16px */
  }
}

/* 3. 全体共通スタイル */
body {
  overflow-x: hidden;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  color: #333;
}

/* 4. フォーム要素の継承設定 */
input,
button,
textarea,
select {
  font-size: inherit;
  letter-spacing: inherit;
  font-family: inherit;
}

/* --- ヘッダー全体の固定と追従設定 --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px;
  /* ▽ デバイスの安全圏（ノッチなど）を考慮した余白 ▽ */
  padding-top: calc(env(safe-area-inset-top) + 16px);
  /* ドロワー(10001)より上に配置してハンバーガーを押せるようにする */
  z-index: 10002;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  /* ヘッダーの透明部分がクリックを邪魔しないように */
}
.site-header .site-logo,
.site-header .menu-toggle,
.site-header .main-navigation {
  pointer-events: auto;
  /* 子要素はクリック可能に戻す */
}
.site-header.is-light-theme .menu-toggle span {
  background-color: #666666;
}
.site-header.is-light-theme .site-logo img {
  /* もし黒ロゴ画像があるなら filter で色を変えるか画像を切り替える */
  /* filter: invert(1); などの工夫が必要になることもある */
}
.site-header {
  /* --- ロゴ領域 --- */
}
.site-header .site-logo {
  display: block;
  width: 48px;
}
.home .site-header .site-logo, .front-page .site-header .site-logo {
  display: none;
  /* トップページでは隠す設定を維持 */
}
.site-header .site-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.site-header {
  /* --- ハンバーガーボタン (デフォルトで表示) --- */
  /* --- ハンバーガーボタン (デフォルトで表示) --- */
}
.site-header .menu-toggle {
  margin-left: auto;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  width: 28px;
  /* 👈 元の28pxに戻す */
  height: 10px;
  /* 👈 元の10pxに戻す */
  display: flex !important;
  /* 👈 !importantで強制表示 */
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  position: relative;
  touch-action: manipulation;
  /* 当たり判定の拡張 */
}
.site-header .menu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  /* 👈 元の48pxに戻す */
  height: 48px;
}
.site-header .menu-toggle span {
  display: block;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.site-header .menu-toggle span:nth-child(1) {
  width: 100%;
}
.site-header .menu-toggle span:nth-child(2) {
  width: 65%;
}
.site-header .menu-toggle {
  /* ▼ ドロワー展開時(body.is-locked)に「×」にする指定 ▼ */
}
body.is-locked .site-header .menu-toggle {
  /* ▽ スマホ時は白背景に乗るので黒に変更、PC時は白のまま維持 ▽ */
}
body.is-locked .site-header .menu-toggle span {
  background-color: #333;
}
@media screen and (min-width: 769px) {
  body.is-locked .site-header .menu-toggle span {
    background-color: #fff;
  }
}
body.is-locked .site-header .menu-toggle span:nth-child(1) {
  /* translateYで中心に寄せ、rotateでクロスさせ、scaleXで長さを縮める */
  transform: translateY(4.5px) rotate(45deg) scaleX(0.75);
  /* 👈 0.75 = 元の75%の長さに */
}
body.is-locked .site-header .menu-toggle span:nth-child(2) {
  width: 100%;
  transform: translateY(-4.5px) rotate(-45deg) scaleX(0.75);
  /* 👈 0.75 = 元の75%の長さに */
}
.site-header {
  /* --- PC用ナビゲーション (デフォルトで非表示) --- */
}
.site-header .main-navigation {
  display: none !important;
  /* 👈 !importantで強制非表示 */
}
.site-header .main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.site-header .main-navigation a {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.3em;
  transition: opacity 0.3s ease;
}
.site-header .main-navigation a:hover {
  opacity: 0.6;
}
.site-header {
  /* ▼ 出し分けロジック: トップページのPCサイズのみ設定を逆転させる ▼ */
}
@media screen and (min-width: 769px) {
  .home .site-header .menu-toggle, .front-page .site-header .menu-toggle {
    display: none !important;
    /* 👈 PCトップではハンバーガーを強制非表示 */
  }
  .home .site-header .main-navigation, .front-page .site-header .main-navigation {
    display: block !important;
    /* 👈 PCトップでは画像2の固定ナビを強制表示 */
    position: absolute;
    top: 40px;
    right: 40px;
  }
}

/* --- ヒーローセクション内のロゴ位置調整 --- */
.hero-section {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-section .hero-logo,
.hero-section .hero-title {
  margin-top: -3dvh;
}
@media screen and (min-width: 769px) {
  .hero-section .hero-logo,
  .hero-section .hero-title {
    margin-top: 0;
  }
}

/* --- ドロワーメニュー全体 --- */
.global-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10001;
  visibility: hidden;
  transition: visibility 0.4s;
}
.global-drawer.is-active {
  visibility: visible;
}
.global-drawer.is-active .drawer-overlay {
  opacity: 1;
}
.global-drawer.is-active .drawer-content {
  transform: translateX(0);
  /* スマホ時のスライドイン完了 */
}
@media screen and (min-width: 769px) {
  .global-drawer.is-active .drawer-content {
    transform: translateY(0);
    /* PC時の上からのフェードイン完了 */
    opacity: 1;
  }
}

/* 背景のオーバーレイ */
.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

/* メニュー本体 */
.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  /* ▼ スマホのスタイル（右から出てくるバー） ▼ */
  width: 60px;
  /* 👈 56pxに変更済み */
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ▼ PCのスタイル（全画面をやめて、透過背景にする） ▼ */
}
@media screen and (min-width: 769px) {
  .drawer-content {
    width: auto;
    height: auto;
    top: 80px;
    /* ハンバーガーの下にくるように配置 */
    right: 40px;
    background: transparent !important;
    backdrop-filter: none;
    transform: translateY(-10px);
    /* フワッと降りてくる準備位置 */
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    align-items: flex-end;
  }
}

/* 閉じるボタン (ハンバーガーが×になるので不要) */
.drawer-close {
  display: none !important;
}

/* ナビゲーションリスト */
.drawer-nav-list {
  list-style: none;
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  /* ▼ スマホは縦並び ▼ */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  /* ▼ PCはトップページのナビと全く同じ仕様（横並び＋上辺揃え）に ▼ */
}
@media screen and (min-width: 769px) {
  .drawer-nav-list {
    flex-direction: row;
    margin-top: 0;
    gap: 30px;
    justify-content: flex-end;
    align-items: flex-start;
    /* テキストの上辺を揃える */
  }
}
.drawer-nav-list .drawer-nav-item {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .drawer-nav-list .drawer-nav-item {
    align-items: flex-start;
  }
}
.drawer-nav-list li a {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.4em;
  text-decoration: none;
  transition: opacity 0.3s;
  font-family: "Yu Mincho", "Zen Old Mincho", serif;
  /* PCの時はトップと色・サイズを合わせる */
}
@media screen and (min-width: 769px) {
  .drawer-nav-list li a {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: #fff !important;
    /* 確実に白にする */
  }
}
.drawer-nav-list li a:hover {
  opacity: 0.5;
}

/* 背景固定用（スクロール防止） */
body.is-locked {
  overflow: hidden;
}

.site-footer {
  background-color: #fff;
  padding-top: 8vh;
  color: #333;
}
@media screen and (min-width: 769px) {
  .site-footer {
    padding-top: 15vh;
  }
}
.site-footer .footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 769px) {
  .site-footer .footer-inner {
    padding: 0 40px 60px;
  }
}
.site-footer .footer-nav-vertical .vertical-menu {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  gap: 16px !important;
  width: 100% !important;
  /* 👈 親が狭いと広がれないので 100% 必須 */
  max-width: none !important;
  padding: 60px 0px !important;
  /* 上下の余白 */
  margin: 0 auto !important;
  list-style: none !important;
  gap: 0;
}
.site-footer .footer-nav-vertical .vertical-menu .footer-nav-item {
  margin: 0 !important;
}
.site-footer .footer-nav-vertical .vertical-menu .footer-nav-item a {
  display: block !important;
  writing-mode: vertical-rl !important;
  text-orientation: mixed !important;
  white-space: nowrap !important;
  /* 文字が勝手に改行されないように */
  font-size: 1rem !important;
  /* 16px */
  letter-spacing: 0.3em !important;
  /* 文字自体の上下の間隔 */
  line-height: 1 !important;
  /* 行間（縦書きなら横の厚み） */
  color: #333 !important;
  text-decoration: none !important;
}
.site-footer .footer-nav-vertical .vertical-menu li {
  margin-right: 16px;
}
.site-footer .footer-nav-vertical .vertical-menu li:last-child {
  margin-right: 0;
  /* 一番左端（最後）の要素は余白なし */
}
.site-footer .footer-nav-vertical .vertical-menu li a {
  display: block;
  flex-shrink: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  color: #333;
  font-size: 0.9375rem;
  /* ▽ 文字の間隔 ▽ */
  letter-spacing: 0.3em;
  /* ▽ letter-spacingによる「末尾の余白」を相殺して、垂直センターを出す ▽ */
  text-indent: 0.3em;
  transition: opacity 0.3s;
}
.site-footer .footer-nav-vertical .vertical-menu li a:hover {
  opacity: 0.5;
}
.site-footer {
  /* --- 以下、変更なし --- */
}
.site-footer .footer-bottom {
  border-top: 1px solid #ccc;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .site-footer .footer-bottom {
    padding: 30px 40px 40px;
    text-align: right;
  }
}
.site-footer .footer-links ul {
  list-style: none;
  margin: 0 0 15px 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  .site-footer .footer-links ul {
    justify-content: flex-end;
  }
}
.site-footer .footer-links ul li a {
  text-decoration: none;
  color: #666;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.site-footer .site-info {
  font-size: 0.6875rem;
  color: #999;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  top: 0;
  height: 100dvh;
}
@supports not (height: 100dvh) {
  .hero-section {
    height: 100vh;
  }
}
.hero-section .hero-slider,
.hero-section .hero-slider .swiper-wrapper,
.hero-section .hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-section .hero-slider .swiper-slide picture,
.hero-section .hero-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-section .hero-slider .swiper-slide .hero-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.05);
  transition: none;
  will-change: transform;
}
.hero-section .hero-slider .swiper-slide.swiper-slide-active .hero-image, .hero-section .hero-slider .swiper-slide.swiper-slide-duplicate-active .hero-image, .hero-section .hero-slider .swiper-slide.swiper-slide-prev .hero-image, .hero-section .hero-slider .swiper-slide.swiper-slide-duplicate-prev .hero-image {
  transform: scale(1);
  transition: transform 6s linear;
}
.hero-section {
  /* --- 共通の基本スタイル --- */
}
.hero-section .hero-center-content {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}
.hero-section .hero-center-content .hero-logo {
  width: clamp(50px, 18vw, 100px);
  height: auto;
}
.hero-section .hero-center-content .hero-page-title {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* ここは全ページ共通のデフォルトサイズ */
  font-size: clamp(28px, 6vw, 50px);
  letter-spacing: 0.3em;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  opacity: 0;
  animation: heroTitleFadeIn 1.5s ease 0.5s both;
}
.archive-items .hero-section .hero-center-content .hero-page-title {
  font-size: clamp(32px, 6vw, 50px);
}
.archive-story .hero-section .hero-center-content .hero-page-title {
  font-size: clamp(24px, 5vw, 40px);
}
.archive-event .hero-section .hero-center-content .hero-page-title {
  font-size: clamp(24px, 5vw, 40px);
}

@keyframes heroTitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.concept-top1-wrapper {
  position: relative;
  width: 100%;
  height: 150vh;
  max-height: 1800px;
}

.concept-top1 {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.concept-top1 .concept-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #111;
}
.concept-top1 .concept-bg img {
  position: absolute;
  top: 0;
  width: 130%;
  height: 100%;
  left: -20%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  animation: conceptBgSlideRight 20s ease-in-out infinite;
  will-change: transform, opacity;
}
.concept-top1 .concept-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
}
.concept-top1 .concept-text-inner {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 1.125rem;
  line-height: 3.2;
  height: 70vh;
  text-align: justify;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  letter-spacing: 0.4rem;
}
@media screen and (min-width: 769px) {
  .concept-top1 .concept-text-inner {
    line-height: 4;
    height: auto;
  }
}
.concept-top1 .concept-text-inner.is-visible {
  opacity: 1;
  visibility: visible;
}
.concept-top1 .concept-text-inner .line {
  display: block;
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 3s ease, transform 3s ease;
  will-change: opacity, transform;
  margin: 0 0 1.5em 0;
}
.concept-top1 .concept-text-inner .line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes conceptBgSlideRight {
  0% {
    transform: scale(1) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    transform: scale(1.15) translateX(20%);
    opacity: 0;
  }
}
.concept-top2 {
  position: relative;
  height: 500vh;
  background-color: #d1d8e0;
}
.concept-top2 .concept-top2-inner {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.concept-top2 .concept-flex-wrapper {
  display: flex;
  flex-direction: row-reverse;
  padding: 0;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-flex-wrapper {
    padding: 0 10vw;
  }
}
.concept-top2 .concept-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100vw;
  height: 100vh;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item {
    flex-direction: row;
    width: 90vw;
    height: 80vh;
    gap: 8vw;
  }
}
.concept-top2 .concept-item .concept-item-image,
.concept-top2 .concept-item .concept-item-text {
  opacity: 0;
  transform: translateY(5px);
  will-change: opacity, transform;
  transition: opacity 1.2s cubic-bezier(0.23, 1, 0.32, 1), transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item .concept-item-image,
  .concept-top2 .concept-item .concept-item-text {
    transform: translateY(50px);
  }
}
.concept-top2 .concept-item.is-animated .concept-item-image,
.concept-top2 .concept-item.is-animated .concept-item-text {
  opacity: 1;
  transform: translateY(0);
}
.concept-top2 .concept-item.is-animated .concept-item-text {
  transition-delay: 0.2s;
}
.concept-top2 .concept-item .concept-item-image {
  width: 80%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 4/5;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item .concept-item-image {
    flex: 0 0 50%;
    width: auto;
    max-width: none;
    height: 100%;
    aspect-ratio: auto;
  }
}
.concept-top2 .concept-item .concept-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}
.concept-top2 .concept-item .concept-item-text {
  writing-mode: horizontal-tb;
  text-align: center;
  font-size: 0.875rem;
  line-height: 2.2;
  color: #333;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item .concept-item-text {
    writing-mode: vertical-rl;
    text-align: left;
    font-size: 1.125rem;
    line-height: 2.5;
    letter-spacing: 0.3em;
  }
}
.concept-top2 .concept-item .concept-item-text p {
  margin: 0;
}

.items-slider-section {
  width: 100%;
  overflow: hidden;
}
.items-slider-section .swiper-wrapper {
  transition-timing-function: linear !important;
}
.items-slider-section .item-slide {
  width: 50%;
  margin-right: -1px;
}
@media screen and (min-width: 769px) {
  .items-slider-section .item-slide {
    width: 33.333%;
  }
}
.items-slider-section .item-image-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #fff;
}
.items-slider-section .item-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  backface-visibility: hidden;
}

.concept-top3 {
  position: relative;
  width: 100%;
  background-color: #000000;
}
.concept-top3 .concept-top3-bg-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.concept-top3 .concept-top3-bg-wrapper .item-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  visibility: hidden;
}
.concept-top3 .concept-top3-bg-wrapper .item-bg-image.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out;
}
.concept-top3 .concept-top3-bg-wrapper .item-bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-top3 .concept-top3-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
}
.concept-top3 .concept-top3-content-wrapper .top3-text-block {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5vw;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .concept-top3 .concept-top3-content-wrapper .top3-text-block {
    padding-right: 10vw;
    justify-content: flex-end;
  }
}
.concept-top3 .concept-top3-content-wrapper .item-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
  max-width: 80%;
}
@media screen and (min-width: 769px) {
  .concept-top3 .concept-top3-content-wrapper .item-content {
    max-width: 500px;
    align-items: flex-end;
  }
}
.concept-top3 .concept-top3-content-wrapper .item-text-image {
  width: auto;
  height: clamp(60px, 9vw, 90px);
}
.concept-top3 .concept-top3-content-wrapper .item-text-image img {
  height: 100%;
  width: auto;
}
.concept-top3 .concept-top3-content-wrapper .item-text {
  color: #fff;
  font-size: 1rem;
  line-height: 3;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .concept-top3 .concept-top3-content-wrapper .item-text {
    line-height: 2.5;
    text-align: right;
  }
}
.concept-top3 .concept-top3-content-wrapper .item-text p {
  margin: 0 0 1.5em 0;
}
.concept-top3 .concept-top3-content-wrapper .item-text p:last-child {
  margin-bottom: 0;
}

/* =========================================
   News Section
========================================= */
.front-news-section {
  background-color: #f7f3f4;
  padding: 80px 20px;
}
@media screen and (min-width: 769px) {
  .front-news-section {
    padding: 120px 40px;
  }
}
.front-news-section .news-container {
  max-width: 800px;
  margin: 0 auto;
}
.front-news-section .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e6e0e2;
}
.front-news-section .news-item {
  border-bottom: 1px solid #e6e0e2;
  /* --- アニメーションの初期状態 --- */
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
  /* --- アニメーション発火時 --- */
}
.front-news-section .news-item.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.front-news-section .news-item .news-link {
  display: block;
  padding: 24px 0;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}
.front-news-section .news-item .news-link:hover {
  opacity: 0.6;
}
.front-news-section .news-item .news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.front-news-section .news-item .news-date {
  color: #888;
}
.front-news-section .news-item .news-new {
  color: #a87b87;
  font-weight: 500;
}
.front-news-section .news-item .news-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.05em;
}
.front-news-section .news-more {
  margin-top: 60px;
  text-align: center;
}
.front-news-section .news-more a {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  transition: opacity 0.3s;
}
.front-news-section .news-more a:hover {
  opacity: 0.6;
}

.concept-top1-wrapper {
  position: relative;
  width: 100%;
  height: 150vh;
  max-height: 1800px;
}

.concept-top1 {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  max-height: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.concept-top1 .concept-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #111;
}
.concept-top1 .concept-bg img {
  position: absolute;
  top: 0;
  width: 130%;
  height: 100%;
  left: -20%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  animation: conceptBgSlideRight 20s ease-in-out infinite;
  will-change: transform, opacity;
}
.concept-top1 .concept-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
}
.concept-top1 .concept-text-inner {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff;
  font-size: 1.125rem;
  line-height: 3.2;
  height: 70vh;
  text-align: justify;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  letter-spacing: 0.4rem;
}
@media screen and (min-width: 769px) {
  .concept-top1 .concept-text-inner {
    line-height: 4;
    height: auto;
  }
}
.concept-top1 .concept-text-inner.is-visible {
  opacity: 1;
  visibility: visible;
}
.concept-top1 .concept-text-inner .line {
  display: block;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 3s ease, transform 3s ease;
  will-change: opacity, transform;
  margin: 0 0 1.5em 0;
}
.concept-top1 .concept-text-inner .line.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes conceptBgSlideRight {
  0% {
    /* 最初は等倍、移動なし */
    transform: scale(1) translateX(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    /* 1.15倍に拡大しながら、左へ20%流す（130%幅あるのでこれくらい動かしても切れない） */
    transform: scale(1.15) translateX(20%);
    opacity: 0;
  }
}
/* _front-page.scss (concept-top2 部分の修正版) */
.concept-top2 {
  position: relative;
  height: 500vh;
  background-color: #d1d8e0;
}
.concept-top2 .concept-top2-inner {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  /* ▽ ここにあった display: flex; や align-items は諸悪の根源なので完全削除！ ▽ */
}
.concept-top2 .concept-flex-wrapper {
  display: flex;
  flex-direction: row-reverse;
  /* ▽ 100%ではなく、絶対に画面いっぱいの高さを死守する ▽ */
  height: 100dvh;
  padding: 0;
  will-change: transform;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-flex-wrapper {
    padding: 0 10vw;
  }
}
.concept-top2 .concept-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ▽ スマホでもPCでも絶対に縦中央にする指定を追加 ▽ */
  justify-content: center;
  flex-shrink: 0;
  width: 100vw;
  /* ▽ ここも 100% ではなく 100dvh に強制固定 ▽ */
  height: 100dvh;
  padding-top: calc(env(safe-area-inset-top) + 10dvh);
  padding-bottom: calc(env(safe-area-inset-bottom) + 60px);
  box-sizing: border-box;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90vw;
    gap: 8vw;
    /* PCの余白リセットはそのまま */
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.concept-top2 .concept-item .concept-item-image {
  width: 75%;
  max-width: 320px;
  /* ▽ スマホで画像が場所を取りすぎないよう制限 ▽ */
  height: auto;
  max-height: 40dvh;
  aspect-ratio: 4/5;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item .concept-item-image {
    flex: 0 0 45%;
    width: auto;
    max-width: none;
    max-height: 70vh;
    height: auto;
  }
}
.concept-top2 .concept-item .concept-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-top2 .concept-item .concept-item-text {
  /* ▽ テキストがはみ出さないように ▽ */
  max-width: 85%;
  overflow: visible;
}
@media screen and (min-width: 769px) {
  .concept-top2 .concept-item .concept-item-text {
    max-width: none;
    writing-mode: vertical-rl;
  }
}

.items-slider-section {
  width: 100%;
  overflow: hidden;
}
.items-slider-section .swiper-wrapper {
  transition-timing-function: linear !important;
}
.items-slider-section .item-slide {
  width: 50%;
  margin-right: -1px;
}
@media screen and (min-width: 769px) {
  .items-slider-section .item-slide {
    width: 33.333%;
  }
}
.items-slider-section .item-image-wrapper {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #fff;
}
.items-slider-section .item-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.02);
  backface-visibility: hidden;
}

.concept-top3 {
  position: relative;
  width: 100%;
  transition: background-color 2s ease;
}
.concept-top3 .concept-top3-bg-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
.concept-top3 .concept-top3-bg-wrapper .item-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease-in-out;
  visibility: hidden;
}
.concept-top3 .concept-top3-bg-wrapper .item-bg-image.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out;
}
.concept-top3 .concept-top3-bg-wrapper .item-bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-top3 .concept-top3-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 100px;
}
.concept-top3 .concept-top3-content-wrapper .top3-text-block {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 5vw;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .concept-top3 .concept-top3-content-wrapper .top3-text-block {
    padding-right: 10vw;
    justify-content: flex-end;
  }
}
.concept-top3 .concept-top3-content-wrapper .item-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
  max-width: 80%;
}
@media screen and (min-width: 769px) {
  .concept-top3 .concept-top3-content-wrapper .item-content {
    max-width: 500px;
    align-items: flex-start;
    gap: 48px;
  }
}
.concept-top3 .concept-top3-content-wrapper .item-text-image {
  width: auto;
  height: clamp(60px, 9vw, 90px);
}
.concept-top3 .concept-top3-content-wrapper .item-text-image img {
  height: 100%;
  width: auto;
}
.concept-top3 .concept-top3-content-wrapper .item-text {
  color: #fff;
  font-size: 1rem;
  line-height: 3;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .concept-top3 .concept-top3-content-wrapper .item-text {
    line-height: 2.5;
  }
}
.concept-top3 .concept-top3-content-wrapper .item-text p {
  margin: 0 0 1.5em 0;
}
.concept-top3 .concept-top3-content-wrapper .item-text p:last-child {
  margin-bottom: 0;
}

/* =========================================
   News Section
========================================= */
.front-news-section {
  background-color: #f7f3f4;
  padding: 80px 20px;
}
@media screen and (min-width: 769px) {
  .front-news-section {
    padding: 120px 40px;
  }
}
.front-news-section .news-container {
  max-width: 800px;
  margin: 0 auto;
}
.front-news-section .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e6e0e2;
}
.front-news-section .news-item {
  border-bottom: 1px solid #e6e0e2;
  /* --- アニメーションの初期状態 --- */
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
  /* --- アニメーション発火時 --- */
}
.front-news-section .news-item.is-animated {
  opacity: 1;
  transform: translateY(0);
}
.front-news-section .news-item .news-link {
  display: block;
  padding: 24px 0;
  text-decoration: none;
  color: #333;
  transition: opacity 0.3s;
}
.front-news-section .news-item .news-link:hover {
  opacity: 0.6;
}
.front-news-section .news-item .news-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.front-news-section .news-item .news-date {
  color: #888;
}
.front-news-section .news-item .news-new {
  color: #a87b87;
  font-weight: 500;
}
.front-news-section .news-item .news-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.05em;
}
.front-news-section .news-more {
  margin-top: 60px;
  text-align: center;
}
.front-news-section .news-more a {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #888;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  transition: opacity 0.3s;
}
.front-news-section .news-more a:hover {
  opacity: 0.6;
}

.archive-story {
  background-color: #fff;
  padding-bottom: 120px;
}
.archive-story .hero-section {
  height: 100dvh;
  max-height: 800px;
  /* --- ▽ 上下左右中央配置の設定 ▽ --- */
  display: flex;
  justify-content: center;
  /* 水平中央 */
  align-items: center;
  /* 垂直中央 */
  position: relative;
  overflow: hidden;
  /* 
     もし見出しが <h1> や .hero-title なら、
     スマホで少し上に持ち上げると「視覚的な真ん中」に見えます
  */
}
.archive-story .hero-section h1,
.archive-story .hero-section .hero-title,
.archive-story .hero-section img {
  position: relative;
  /* 
     50%だとツールバーの影響で少し下がって見えるため、
     わずかに上にずらす調整（お好みで）
  */
  margin-top: -2dvh;
}
@media screen and (min-width: 769px) {
  .archive-story .hero-section h1,
  .archive-story .hero-section .hero-title,
  .archive-story .hero-section img {
    margin-top: 0;
  }
}

.story-concept-section {
  padding: 80px 20px;
  height: 80vh;
  max-height: 80vh;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) {
  .story-concept-section {
    padding: 150px 40px;
  }
}
.story-concept-section .story-concept-inner {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .story-concept-section .story-concept-inner {
    max-height: 600px;
  }
}
.story-concept-section .concept-title {
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  font-weight: 500;
  margin: 0 0 0 24px;
  color: #333;
}
@media screen and (min-width: 769px) {
  .story-concept-section .concept-title {
    font-size: 1.375rem;
    margin: 0 0 0 80px;
  }
}
.story-concept-section .concept-desc {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.2em;
  color: #444;
}
.story-concept-section .concept-desc p {
  margin: 0 0 0 2em;
  padding: 0;
}
.story-concept-section .concept-desc p:last-child {
  margin-left: 0;
}

.story-contents-section {
  /* --- 親幅を無視して100vwにする設定 --- */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  margin-top: 0;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .story-contents-section {
    margin-bottom: 150px;
    /* padding: 0 40px; は不要になるので削除 */
  }
}
.story-contents-section .story-contents-wrapper {
  display: flex;
  flex-direction: column;
  /* カード同士の上下の隙間（必要なら） */
  gap: 4px;
}
@media screen and (min-width: 769px) {
  .story-contents-section .story-contents-wrapper {
    gap: 0;
  }
}
.story-contents-section .story-cat-card {
  position: relative;
  width: 100%;
  /* 高さはclampで維持。お好みで調整してくれ */
  height: clamp(140px, 20vh, 300px);
  overflow: hidden;
  display: block;
}
.story-contents-section .story-cat-card .story-cat-link {
  display: block;
  width: 100%;
  height: 100%;
}
.story-contents-section .story-cat-card .story-cat-link:hover .story-cat-thumbnail img {
  transform: scale(1.05);
}
.story-contents-section .story-cat-card .story-cat-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.story-contents-section .story-cat-card .story-cat-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.story-contents-section .story-cat-card .story-cat-title {
  position: absolute;
  /* ▽ 上下左右中央にするための設定 ▽ */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  /* テキストを中央揃えにするために幅を確保 */
  text-align: center;
  /* 横方向のテキストセンター出し */
  /* ▽ 不要になるので削除またはコメントアウト ▽ */
  /* bottom: 30px; */
  /* right: 5vw; */
  /* ▽ 残りのスタイル ▽ */
  color: #fff;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.1em;
}
@media screen and (min-width: 769px) {
  .story-contents-section .story-cat-card .story-cat-title {
    font-size: 2.5rem;
  }
}

.story-telling-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .story-telling-section {
    margin-bottom: 150px;
    padding: 0 40px;
  }
}
.story-telling-section .story-telling-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media screen and (min-width: 769px) {
  .story-telling-section .story-telling-container {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
  }
}
.story-telling-section .story-telling-heading {
  /* ▽ 縦書き設定 ▽ */
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* ▽ デザイン調整 ▽ */
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  font-weight: 400;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .story-telling-section .story-telling-heading {
    font-size: 1.25rem;
    margin-left: 60px;
    letter-spacing: 0.5em;
  }
}
.story-telling-section .story-telling-inner {
  flex: 1;
  max-width: 600px;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.1em;
  color: #444;
}
.story-telling-section .story-telling-inner img {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) {
  .story-telling-section .story-telling-inner img {
    margin: 60px auto;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .story-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.story-grid .story-card .story-link {
  text-decoration: none;
  display: block;
  color: #333;
}
.story-grid .story-card .story-link:hover {
  opacity: 0.7;
}
.story-grid .story-card .story-thumbnail {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 15px;
}
.story-grid .story-card .story-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story-grid .story-card .story-title {
  font-size: 1.125rem;
  text-align: center;
}

.pagination-wrapper {
  margin-top: 80px;
  text-align: center;
}

.taxonomy-story .hero-section {
  height: 60vh;
  max-height: 800px;
}
.taxonomy-story .story-list-section {
  max-width: 1000px;
  margin: 0 auto 80px;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .taxonomy-story .story-list-section {
    margin-bottom: 150px;
    padding: 0 40px;
  }
}
.taxonomy-story .taxonomy-header {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .taxonomy-story .taxonomy-header {
    margin-bottom: 60px;
  }
}
.taxonomy-story .taxonomy-header .taxonomy-title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
}
@media screen and (min-width: 769px) {
  .taxonomy-story .taxonomy-header .taxonomy-title {
    font-size: 2rem;
  }
}
.taxonomy-story .story-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 769px) {
  .taxonomy-story .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
.taxonomy-story .story-grid .story-thumbnail {
  aspect-ratio: 16/9;
}
.taxonomy-story .story-grid .story-meta {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.taxonomy-story .story-grid .story-title {
  text-align: left;
  line-height: 1.6;
  font-weight: 400;
}
.taxonomy-story .view-more-wrapper {
  margin-top: 60px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .taxonomy-story .view-more-wrapper {
    margin-top: 80px;
  }
}
.taxonomy-story .view-more-wrapper a {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.taxonomy-story .view-more-wrapper a:hover {
  opacity: 0.6;
}

.single-story {
  background-color: #fff;
  padding-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .single-story {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}
.single-story .story-detail-container {
  max-width: 800px;
  margin: 0 auto;
}
.single-story .story-hero-image {
  width: 100%;
  margin: 0 0 40px 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .single-story .story-hero-image {
    margin-bottom: 60px;
  }
}
.single-story .story-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-story .story-content-inner {
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .single-story .story-content-inner {
    padding: 0 40px;
  }
}
.single-story .story-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .single-story .story-header {
    margin-bottom: 60px;
  }
}
.single-story .story-meta {
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.single-story .story-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .single-story .story-title {
    font-size: 1.25rem;
  }
}
.single-story .story-body {
  font-size: 1rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #444;
}
.single-story .story-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .single-story .story-body img {
    margin: 60px 0;
  }
}
.single-story .story-body img + img {
  margin-top: -20px;
}
.single-story .related-stories-section {
  max-width: 920px;
  margin: 80px auto 0;
  padding-top: 60px;
  border-top: 1px solid #eee;
}
@media screen and (min-width: 769px) {
  .single-story .related-stories-section {
    margin-top: 150px;
    padding-top: 80px;
  }
}
.single-story .related-stories-section .related-title {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  text-align: center;
  margin: 0 0 40px 0;
}
@media screen and (min-width: 769px) {
  .single-story .related-stories-section .related-title {
    font-size: 2rem;
    margin-bottom: 60px;
  }
}
.single-story .related-stories-section .story-grid {
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .single-story .related-stories-section .story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    margin-bottom: 80px;
  }
}
.single-story .related-stories-section .story-grid .story-thumbnail {
  aspect-ratio: 16/9;
}
.single-story .related-stories-section .story-grid .story-title {
  text-align: left;
}
.single-story .related-more {
  text-align: center;
}
.single-story .related-more .btn-more {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.single-story .related-more .btn-more:hover {
  opacity: 0.6;
}

.archive-event {
  background-color: #fff;
  padding-bottom: 120px;
}
.archive-event .hero-section {
  height: 100dvh;
  max-height: 800px;
  /* --- ▽ 上下左右中央配置の設定 ▽ --- */
  display: flex;
  justify-content: center;
  /* 水平中央 */
  align-items: center;
  /* 垂直中央 */
  position: relative;
  overflow: hidden;
  /* 
     もし見出しが <h1> や .hero-title なら、
     スマホで少し上に持ち上げると「視覚的な真ん中」に見えます
  */
}
.archive-event .hero-section h1,
.archive-event .hero-section .hero-title,
.archive-event .hero-section img {
  position: relative;
  /* 
     50%だとツールバーの影響で少し下がって見えるため、
     わずかに上にずらす調整（お好みで）
  */
  margin-top: -2dvh;
}
@media screen and (min-width: 769px) {
  .archive-event .hero-section h1,
  .archive-event .hero-section .hero-title,
  .archive-event .hero-section img {
    margin-top: 0;
  }
}

.event-content-inner,
.shop-content-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px 0;
}
@media screen and (min-width: 769px) {
  .event-content-inner,
  .shop-content-inner {
    padding: 120px 40px 0;
  }
}

.archive-header,
.shop-list-section .shop-section-title {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}

.archive-title,
.shop-section-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.125rem;
  letter-spacing: 0.4em;
  font-weight: 400;
  color: #333;
  margin: 0;
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
  }
}
.event-grid .event-card a {
  text-decoration: none;
  display: block;
  color: #333;
  transition: opacity 0.3s;
}
.event-grid .event-card a:hover {
  opacity: 0.7;
}

.event-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 20px;
}
.event-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-meta .event-title {
  order: 1;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
}
.event-meta .event-date {
  order: 2;
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.05em;
}

.shop-list-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.shop-list-container .shop-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 769px) {
  .shop-list-container .shop-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
  }
}
.shop-list-container .shop-item .shop-info-side {
  flex: 1;
  max-width: 100%;
}
@media screen and (min-width: 769px) {
  .shop-list-container .shop-item .shop-info-side {
    max-width: 400px;
  }
}
.shop-list-container .shop-item .shop-info-side .shop-name {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0 0 5px 0;
}
.shop-list-container .shop-item .shop-info-side .shop-kana {
  font-size: 0.6875rem;
  color: #999;
  letter-spacing: 0.1em;
  margin: 0 0 30px 0;
}
.shop-list-container .shop-item .shop-info-side .shop-details p {
  font-size: 1rem;
  line-height: 2.2;
  color: #444;
  letter-spacing: 0.05em;
}
.shop-list-container .shop-item .shop-info-side .shop-details a {
  color: #444;
  text-decoration: none;
  transition: opacity 0.3s;
}
.shop-list-container .shop-item .shop-info-side .shop-details a:hover {
  opacity: 0.6;
}
.shop-list-container .shop-item .shop-map-side {
  flex: 1;
  width: 100%;
}
.shop-list-container .shop-item .shop-map-side .shop-map-wrapper iframe {
  width: 100%;
  height: 250px;
  display: block;
  filter: grayscale(80%) contrast(90%);
}

.single-event {
  background-color: #fff;
  padding-bottom: 120px;
}
@media screen and (min-width: 769px) {
  .single-event {
    padding-top: 100px;
  }
}
.single-event .event-content-inner {
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .single-event .event-content-inner {
    padding: 0 40px;
  }
}
.single-event .event-meta {
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.1em;
}
.single-event .event-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0;
}
.single-event .related-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: #333;
  text-align: center;
  margin: 0 auto 60px;
}
.single-event .event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .single-event .event-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
.single-event .event-card a {
  text-decoration: none;
  display: block;
  color: #333;
  transition: opacity 0.3s;
}
.single-event .event-card a:hover {
  opacity: 0.7;
}
.single-event .event-card .story-title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
.single-event .story-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}
.single-event .story-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-detail-container {
  max-width: 800px;
  margin: 0 auto;
}

.event-hero-image {
  width: 100%;
  margin: 0 0 32px 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.event-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.event-header {
  margin-bottom: 24px;
}

.event-body {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #444;
}
.event-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 60px 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-events-section {
  max-width: 920px;
  margin: 150px auto 0;
  padding-top: 80px;
  border-top: 1px solid #eee;
}
.related-events-section .event-content-inner {
  padding: 0;
}

.related-more {
  text-align: center;
}
.related-more .btn-more {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.related-more .btn-more:hover {
  opacity: 0.6;
}

.archive-items {
  padding: 0;
  background-color: #fff;
}
.archive-items .item-category-section {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 40px;
  padding: 16px;
}
@media screen and (min-width: 769px) {
  .archive-items .item-category-section {
    padding: 100px 40px;
  }
}
.archive-items .category-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media screen and (min-width: 769px) {
  .archive-items .category-title {
    min-height: 150px;
  }
}
.archive-items .items-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.archive-items .items-grid .item-card {
  width: calc(50% - 4px);
}
@media screen and (min-width: 769px) {
  .archive-items .items-grid .item-card {
    width: 32%;
  }
}
.archive-items .items-grid .item-link {
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
.archive-items .items-grid .item-link:hover {
  opacity: 0.7;
}
.archive-items .items-grid .item-thumbnail {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.archive-items .items-grid .item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-items .items-grid .item-name {
  font-size: 0.875rem;
  color: #333;
  text-align: center;
}

/* =========================================
   商品詳細ページ
========================================= */
.single-item-page {
  background-color: #fff;
}
@media screen and (min-width: 769px) {
  .single-item-page {
    padding: 100px 0;
  }
}
.single-item-page .item-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  /* 基本の左右余白 */
}
@media screen and (min-width: 769px) {
  .single-item-page .item-detail-inner {
    padding: 0 40px;
  }
}
.single-item-page .item-detail-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (min-width: 901px) {
  .single-item-page .item-detail-main {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
  }
}
.single-item-page .item-detail-main {
  /* ギャラリーエリアの調整 */
}
.single-item-page .item-detail-main .item-gallery-area {
  /* 【スマホ】画面幅いっぱいにするための設定 */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  /* 【PC：901px以上】横並びになるので全幅設定を解除する */
}
@media screen and (min-width: 901px) {
  .single-item-page .item-detail-main .item-gallery-area {
    flex: 0 0 55%;
    max-width: 55%;
    width: auto;
    /* 全幅解除 */
    margin-left: 0;
    /* 余白解除 */
    margin-right: 0;
    /* 余白解除 */
  }
}
.single-item-page .item-detail-main .item-info-area {
  flex: 1;
  width: 100%;
}
.single-item-page .item-detail-main .item-info-area .item-title {
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 20px 0;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
  .single-item-page .item-detail-main .item-info-area .item-title {
    font-size: 1.625rem;
    margin-bottom: 30px;
  }
}
.single-item-page .item-detail-main .item-info-area .item-description {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.single-item-page .item-detail-main .item-info-area .item-description p {
  margin-bottom: 1.5em;
  /* 段落（Enter2回分）のあとの隙間 */
}
.single-item-page .item-detail-main .item-info-area .item-description p:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 769px) {
  .single-item-page .item-detail-main .item-info-area .item-description {
    margin-bottom: 40px;
  }
}
.single-item-page .item-detail-main .item-info-area .item-price {
  font-size: 1.3rem;
  margin-bottom: 30px;
  font-weight: 600;
}
@media screen and (min-width: 769px) {
  .single-item-page .item-detail-main .item-info-area .item-price {
    font-size: 1.375rem;
    margin-bottom: 40px;
  }
}
.single-item-page .item-detail-main .item-info-area .btn-purchase {
  display: block;
  width: 100%;
  background-color: #ede7e9;
  color: #333;
  text-align: center;
  padding: 18px 0;
  text-decoration: none;
  font-size: 1rem;
  margin-bottom: 40px;
}
.single-item-page .item-detail-main .item-info-area .item-extra-links {
  border: 1px solid #ddd;
  padding: 20px;
}
.single-item-page .item-detail-main .item-info-area .item-extra-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-item-page .item-detail-main .item-info-area .item-extra-links li {
  margin-bottom: 8px;
}
.single-item-page .item-detail-main .item-info-area .item-extra-links a {
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #333;
}
.single-item-page .item-detail-main .item-info-area .item-extra-links a::before {
  content: "▶";
  font-size: 8px;
  margin-right: 10px;
  color: #999;
}
.single-item-page .item-additional-sections {
  width: 100%;
  margin: auto;
  max-width: 880px;
}
.single-item-page .item-additional-sections .item-extra-section {
  padding: 24px 0;
}
.single-item-page .item-additional-sections .extra-section-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 16px;
  padding-bottom: 8px;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #B9B9B9;
}
.single-item-page .item-additional-sections .extra-section-content {
  font-size: 1rem;
  line-height: 2.2;
}
.single-item-page .item-additional-sections .extra-section-content a {
  color: #333333;
  text-decoration: underline;
}
.single-item-page .item-additional-sections .extra-section-content img {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .single-item-page .item-additional-sections .extra-section-content img {
    margin: 40px 0;
  }
}
.single-item-page .item-additional-sections .extra-section-content img + img {
  margin-top: 0;
}

/* --- 外に出したページネーションのスタイル --- */
.item-pagination {
  /* Swiperのデフォルト（absolute）を打ち消す */
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: 100% !important;
  /* 画像の下の余白調整 */
  margin: 8px 0 20px;
  text-align: center;
  line-height: 1;
  /* ドット自体のデザイン調整（必要なら） */
}
.item-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  margin: 0 5px !important;
  background: #ccc;
  opacity: 1;
}
.item-pagination .swiper-pagination-bullet-active {
  background: #333;
  /* アクティブなドットの色 */
}
.item-pagination {
  /* PCでは非表示（サムネイルがあるため） */
}
@media screen and (min-width: 769px) {
  .item-pagination {
    display: none;
  }
}

/* スライダー個別（画面いっぱいにする画像そのものの設定） */
.item-main-slider {
  width: 100%;
}
.item-main-slider img {
  width: 100%;
  height: auto;
}
.item-main-slider .swiper-pagination {
  bottom: 10px;
  /* 位置調整 */
}
@media screen and (min-width: 769px) {
  .item-main-slider .swiper-pagination {
    display: none;
  }
}
.item-main-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #333;
}

.item-thumb-slider {
  /* サムネイルは全幅にする必要がないので、paddingの内側に収まる */
  display: none;
}
@media screen and (min-width: 769px) {
  .item-thumb-slider {
    display: block;
    margin-top: 15px;
  }
}
@media screen and (min-width: 901px) {
  .item-thumb-slider {
    margin: 0;
  }
}
.item-thumb-slider .swiper-slide {
  width: calc(25% - 10px);
  cursor: pointer;
}
.item-thumb-slider img {
  width: 100%;
  aspect-ratio: 1/1.1;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.item-thumb-slider .swiper-slide-thumb-active img {
  opacity: 1;
}

.standard-page {
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (min-width: 769px) {
  .standard-page {
    padding-top: 150px;
  }
}
.standard-page .page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .standard-page .page-container {
    padding: 0 40px;
  }
}
.standard-page .page-hero-image {
  width: 100%;
  margin-bottom: 60px;
}
.standard-page .page-hero-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.standard-page .page-title-inner {
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .standard-page .page-title-inner {
    margin-bottom: 60px;
  }
}
.standard-page .page-title-inner .page-title {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #333;
  margin: 0;
}
.standard-page .breadcrumbs {
  font-size: 0.6875rem;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
.standard-page .breadcrumbs a {
  color: #999;
  text-decoration: none;
  transition: opacity 0.3s;
}
.standard-page .breadcrumbs a:hover {
  opacity: 0.6;
}
.standard-page .content-inner {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #555;
}
.standard-page .content-inner p {
  margin: 0 0 2.5em 0;
}
.standard-page .content-inner p:last-child {
  margin-bottom: 0;
}
.standard-page .content-inner h2 {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #333;
  margin: 32px 0 16px 0;
}
@media screen and (min-width: 769px) {
  .standard-page .content-inner h2 {
    margin-top: 80px;
  }
}
.standard-page .content-inner h2:first-child {
  margin-top: 0;
}
.standard-page .content-inner h3 {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 50px 0 20px 0;
}
.standard-page .content-inner ul,
.standard-page .content-inner ol {
  margin: 0 0 2.5em 0;
  padding-left: 1.5em;
}
.standard-page .content-inner li {
  margin-bottom: 0.5em;
}

.contact-page {
  background-color: #fff;
}

.contact-header-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
}

.contact-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: #333;
  margin: 0;
}

.contact-form-section {
  background-color: #e5e8eb;
  padding: 32px 24px;
}
@media screen and (min-width: 769px) {
  .contact-form-section {
    padding: 120px 40px;
  }
}

.contact-form-inner {
  max-width: 700px;
  margin: 0 auto;
}
.contact-form-inner .gform_wrapper .gform_heading,
.contact-form-inner .gform_wrapper .gfield_label,
.contact-form-inner .gform_wrapper .gfield_description {
  display: none !important;
}
.contact-form-inner .gform_wrapper input[type=text],
.contact-form-inner .gform_wrapper input[type=email],
.contact-form-inner .gform_wrapper textarea {
  width: 100% !important;
  padding: 8px 16px !important;
  border: none !important;
  background-color: #fff !important;
  font-family: inherit;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: #333;
  box-sizing: border-box;
  outline: none;
  border-radius: 3px !important;
  box-shadow: none !important;
}
.contact-form-inner .gform_wrapper input[type=text]::-moz-placeholder, .contact-form-inner .gform_wrapper input[type=email]::-moz-placeholder, .contact-form-inner .gform_wrapper textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
.contact-form-inner .gform_wrapper input[type=text]::placeholder,
.contact-form-inner .gform_wrapper input[type=email]::placeholder,
.contact-form-inner .gform_wrapper textarea::placeholder {
  color: #aaa;
  opacity: 1;
}
.contact-form-inner .gform_wrapper textarea {
  height: 250px !important;
  resize: vertical;
}
.contact-form-inner .gform_wrapper .gfield {
  margin-bottom: 0;
}
.contact-form-inner .gform_wrapper .gfield_checkbox {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.contact-form-inner .gform_wrapper .gfield_checkbox li {
  margin: 0;
}
.contact-form-inner .gform_wrapper .gfield_checkbox label {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.05em;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
}
.contact-form-inner .gform_wrapper .gform_footer {
  text-align: center;
  margin-top: 40px;
  padding: 0;
  display: flex;
  justify-content: center;
}
.contact-form-inner .gform_wrapper input[type=submit] {
  background-color: #82868b !important;
  color: #fff !important;
  border: none !important;
  text-align: center;
  padding: 8px 40px !important;
  font-size: 1rem !important;
  letter-spacing: 0.3em !important;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 0 !important;
  width: 100% !important;
}
.contact-form-inner .gform_wrapper input[type=submit]:hover {
  opacity: 0.7 !important;
}

/* ============================================================
   Gravity Forms 理想のデザイン スタイリング
   ============================================================ */
/* フォーム全体のコンテナ */
.gform_wrapper {
  padding: 32px 0;
  /* 全体に余白を追加 */
  box-shadow: none;
  /* 余計なシャドウを削除 */
  border: none;
  /* 余計なボーダーを削除 */
  border-radius: 0;
  /* 角丸を削除（理想のデザインに合わせて） */
}

/* フォームのタイトルを中央に */
.gform_wrapper .gform_heading {
  text-align: center;
  margin-bottom: 60px;
  /* タイトルとフィールドの間の余白 */
}

.gform_wrapper .gform_title {
  font-size: 32px;
  /* タイトルのフォントサイズ */
  font-weight: 500;
  color: #333;
  font-family: serif;
  /* Noto Serif JPなどの和文セリフ体 */
}

/* 各フィールドのコンテナ */
.gform_wrapper .gfield {
  margin-bottom: 25px;
  /* フィールド間の余白 */
  border: none;
  box-shadow: none;
}

/* 全体的に不要なラベルを非表示にする (外観設定で設定した場合は不要) */
.gform_wrapper .gfield_label {
  display: none !important;
}

/* 入力フィールドとテキストエリアのスタイル */
.gform_wrapper .gfield_input {
  width: 100% !important;
  background-color: #fff !important;
  /* 白背景 */
  border: 1px solid #e1e4e8 !important;
  /* 非常に薄いグレーのボーダー */
  border-radius: 4px;
  /* わずかな角丸 */
  padding: 15px !important;
  /* 内側の余白 */
  font-size: 16px;
  font-family: inherit;
  /* Noto Serif JPなどの和文セリフ体 */
  box-shadow: none;
  /* 余計なシャドウを削除 */
}

/* テキストエリアの高さ */
.gform_wrapper textarea.gfield_input {
  height: 180px !important;
}

/* プレースホルダーテキストのスタイル */
.gform_wrapper .gfield_input::-moz-placeholder {
  color: #999 !important;
  opacity: 1;
  /* Noto Serif JPのデフォルトが薄い場合 */
}
.gform_wrapper .gfield_input::placeholder {
  color: #999 !important;
  opacity: 1;
  /* Noto Serif JPのデフォルトが薄い場合 */
}

/* エラーメッセージ（必要な場合）を中央に */
.gform_wrapper .gform_validation_container {
  text-align: center;
  color: red;
  font-size: 14px;
  margin-top: 5px;
}

/* プライバシーポリシーのチェックボックスとラベルのスタイル */
.gform_wrapper .gfield_checkbox {
  text-align: center;
  /* 中央に配置 */
  margin-top: 40px;
  /* チェックボックスの上に余白 */
  margin-bottom: 40px;
  /* チェックボックスの下に余白 */
}

.gform_wrapper .gfield_checkbox li {
  display: inline-block;
  /* チェックボックスとラベルを横に並べる */
  margin-right: 15px;
  /* チェックボックスとラベルの間の余白 */
}

/* ラベルテキストのスタイル */
.gform_wrapper .gfield_checkbox label {
  font-size: 16px;
  color: #333;
  display: inline-block;
  cursor: pointer;
  text-align: left;
  /* テキスト自体は左寄せ */
}

/* プライバシーポリシーリンクのスタイル（ここが重要） */
.gform_wrapper .privacy-policy-link {
  color: inherit;
  /* 親のテキストカラーを継承 */
  text-decoration: underline !important;
  /* 下線を強制的に追加 */
  cursor: pointer;
}

/* ホバー時に色を少し変えるなど（お好みで） */
.gform_wrapper .privacy-policy-link:hover {
  color: #666;
}

/* 送信ボタンのスタイル */
.gform_wrapper .gform_footer {
  text-align: center;
  /* 中央に配置 */
}

.gform_wrapper .gform_button {
  background-color: #6c757d !important;
  /* 画像と同じ、グレーの背景色 */
  color: #fff !important;
  /* 白文字 */
  border: none !important;
  border-radius: 4px;
  /* わずかな角丸 */
  padding: 15px 40px !important;
  /* 内側の余白（横を広めに） */
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
  /* Noto Serif JPなどの和文セリフ体 */
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* わずかなシャドウを追加 */
  transition: background-color 0.3s ease;
}

/* ホバー時に色を濃くする */
.gform_wrapper .gform_button:hover {
  background-color: #5a6268 !important;
}

.gform_wrapper.gravity-theme input[type=color],
.gform_wrapper.gravity-theme input[type=date],
.gform_wrapper.gravity-theme input[type=datetime-local],
.gform_wrapper.gravity-theme input[type=datetime],
.gform_wrapper.gravity-theme input[type=email],
.gform_wrapper.gravity-theme input[type=month],
.gform_wrapper.gravity-theme input[type=number],
.gform_wrapper.gravity-theme input[type=password],
.gform_wrapper.gravity-theme input[type=search],
.gform_wrapper.gravity-theme input[type=tel],
.gform_wrapper.gravity-theme input[type=text],
.gform_wrapper.gravity-theme input[type=time],
.gform_wrapper.gravity-theme input[type=url],
.gform_wrapper.gravity-theme input[type=week],
.gform_wrapper.gravity-theme select,
.gform_wrapper.gravity-theme textarea {
  font-size: 1rem !important;
}

/* =========================================
   Single News (お知らせ詳細ページ)
========================================= */
.single-news {
  background-color: #fff;
  padding-bottom: 120px;
}
@media screen and (min-width: 769px) {
  .single-news {
    padding-top: 100px;
  }
}
.single-news .news-content-inner {
  padding: 0 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .single-news .news-content-inner {
    padding: 0 40px;
  }
}
.single-news .news-meta {
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.1em;
}
.single-news .news-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #333;
  margin: 0;
}
.single-news .related-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: #333;
  text-align: center;
  margin: 0 auto 60px;
}
.single-news .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) {
  .single-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
.single-news .news-card a {
  text-decoration: none;
  display: block;
  color: #333;
  transition: opacity 0.3s;
}
.single-news .news-card a:hover {
  opacity: 0.7;
}
.single-news .news-card .news-title {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
.single-news .news-thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 15px;
}
.single-news .news-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-detail-container {
  max-width: 800px;
  margin: 0 auto;
}

.news-hero-image {
  width: 100%;
  margin: 0 0 32px 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.news-hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.news-header {
  margin-bottom: 24px;
}

.news-body {
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #444;
}
.news-body img {
  width: 100%;
  height: auto;
  display: block;
  margin: 60px 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-news-section {
  max-width: 920px;
  margin: 150px auto 0;
  padding-top: 80px;
  border-top: 1px solid #eee;
}
.related-news-section .news-content-inner {
  padding: 0;
}

/* =========================================
   Archive News (お知らせ一覧ページ)
========================================= */
.archive-news-section {
  background-color: #fff;
  padding: 120px 20px 80px;
  /* 固定ヘッダー分の余白を下げる */
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  .archive-news-section {
    padding: 160px 40px 120px;
  }
}
.archive-news-section .news-container {
  max-width: 800px;
  margin: 0 auto;
}
.archive-news-section {
  /* --- ページタイトル --- */
}
.archive-news-section .archive-header {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .archive-news-section .archive-header {
    margin-bottom: 80px;
  }
}
.archive-news-section .archive-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #333;
  margin: 0;
}
.archive-news-section {
  /* --- ニュース一覧リスト --- */
}
.archive-news-section .news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee;
}
.archive-news-section .news-item {
  border-bottom: 1px solid #eee;
}
.archive-news-section .news-link {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  text-decoration: none;
  color: #333;
  transition: background-color 0.3s, opacity 0.3s;
  gap: 12px;
  /* PC時は日付とタイトルを横並びに */
}
@media screen and (min-width: 769px) {
  .archive-news-section .news-link {
    flex-direction: row;
    align-items: baseline;
    padding: 32px 16px;
    gap: 32px;
  }
}
.archive-news-section .news-link:hover {
  opacity: 0.7;
  /* PC時はホバーで少し背景色をつけるなどしても良い */
}
@media screen and (min-width: 769px) {
  .archive-news-section .news-link:hover {
    background-color: #fcfcfc;
  }
}
.archive-news-section {
  /* --- 日付とNewバッジ --- */
}
.archive-news-section .news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  /* PC時は幅を固定してタイトル位置を揃える */
}
@media screen and (min-width: 769px) {
  .archive-news-section .news-meta {
    flex-shrink: 0;
    width: 140px;
  }
}
.archive-news-section .news-date {
  font-size: 0.875rem;
  color: #999;
  letter-spacing: 0.1em;
}
.archive-news-section .news-new {
  font-size: 10px;
  color: #fff;
  background-color: #333;
  padding: 4px 8px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.archive-news-section {
  /* --- 記事タイトル --- */
}
.archive-news-section .news-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0;
}
.archive-news-section {
  /* --- 記事がない場合 --- */
}
.archive-news-section .no-news {
  text-align: center;
  font-size: 1rem;
  color: #666;
  padding: 60px 0;
}
.archive-news-section {
  /* --- ページネーション (WordPress標準クラス対応) --- */
}
.archive-news-section .news-pagination {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  .archive-news-section .news-pagination {
    margin-top: 80px;
  }
}
.archive-news-section .news-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.archive-news-section .news-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  text-decoration: none;
  color: #333;
  font-size: 0.875rem;
  border: 1px solid #ddd;
  transition: all 0.3s;
}
.archive-news-section .news-pagination .page-numbers:hover {
  background-color: #f5f5f5;
}
.archive-news-section .news-pagination .page-numbers.current {
  background-color: #333;
  color: #fff;
  border-color: #333;
  pointer-events: none;
}
.archive-news-section .news-pagination .page-numbers.dots {
  border: none;
  pointer-events: none;
  min-width: auto;
}/*# sourceMappingURL=style.css.map */