@charset "UTF-8";
/*
Theme Name: TWJ2026
Theme URI: https://thewalkjapan.com/
Author: 戸田涼太
Description: 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-classic-theme
*/
/* --- 1. 基本設定の読み込み --- */
/* Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* 変数定義（これを追加すると便利です） */
/* --- 2. パーツ（モジュール）の読み込み --- */
/* ------------------------
   Variables & Settings
   ------------------------ */
:root {
  --header-h: 88px;
  --header-h-mobile: 64px;
  /* Colors */
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  /* Glassmorphism Settings */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-scrolled: rgba(255, 255, 255, 0.92);
  --glass-blur: 12px;
  --glass-border: rgba(255, 255, 255, 0.4);
  /* Fonts */
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  /* Z-index */
  --z-overlay: 999;
  --z-header: 1000;
  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ------------------------
   Header Layout
   ------------------------ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h-mobile);
  z-index: var(--z-header);
  /* GPUアクセラレーションのヒント */
  will-change: background-color, height, box-shadow;
  transition: background-color 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  background-color: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  /* レイアウトシフト防止 */
  contain: layout;
  /* ------------------------
     Logo
     ------------------------ */
  /* ------------------------
     PC Navigation
     ------------------------ */
  /* ------------------------
     Hamburger Button
     ------------------------ */
  /* ------------------------
     Overlay Menu
     ------------------------ */
  /* ------------------------
     Mobile Nav Items (修正箇所)
     ------------------------ */
  /* SNS Icons */
}
@media (min-width: 1024px) {
  .l-header {
    height: var(--header-h);
  }
}
.l-header.is-scrolled {
  background-color: var(--glass-bg-scrolled);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
@media (min-width: 1024px) {
  .l-header.is-scrolled {
    height: 72px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: calc(var(--z-header) + 1);
}
@media (min-width: 1024px) {
  .l-header__inner {
    padding: 0 4%;
  }
}
.l-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--c-black);
}
.l-header__logo .logo-img {
  height: 50px;
  width: auto;
  transition: height 0.3s var(--ease-out-expo);
  backface-visibility: hidden;
}
@media (min-width: 1024px) {
  .l-header__logo .logo-img {
    height: 50px;
  }
}
.l-header__logo .logo-text {
  font-family: var(--f-serif);
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .l-header__logo .logo-text {
    font-size: 2.2rem;
  }
}
.l-header__pc-nav {
  display: none;
}
@media (min-width: 1024px) {
  .l-header__pc-nav {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .l-header__pc-nav .pc-nav-list {
    display: flex;
    gap: 3.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .l-header__pc-nav .pc-nav-list a {
    text-decoration: none;
    color: var(--c-black);
    font-family: var(--f-serif);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    position: relative;
    padding: 8px 0;
    display: block;
  }
  .l-header__pc-nav .pc-nav-list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--c-red);
    transition: width 0.4s var(--ease-out-expo), left 0.4s var(--ease-out-expo);
  }
  .l-header__pc-nav .pc-nav-list a:hover {
    color: var(--c-red);
  }
  .l-header__pc-nav .pc-nav-list a:hover::after {
    width: 100%;
    left: 0;
  }
}
.l-header__hamburger {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: calc(var(--z-header) + 2);
  color: var(--c-black);
  min-width: 44px;
  min-height: 44px;
  justify-content: flex-end;
}
.l-header__hamburger .hamburger-label {
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media (max-width: 374px) {
  .l-header__hamburger .hamburger-label {
    display: none;
  }
}
.l-header__hamburger .hamburger-box {
  width: 32px;
  height: 14px;
  position: relative;
}
.l-header__hamburger .hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  right: 0;
  transition: transform 0.4s var(--ease-out-expo), width 0.4s var(--ease-out-expo), background-color 0.3s;
}
.l-header__hamburger .hamburger-line:nth-child(1) {
  top: 0;
  width: 100%;
}
.l-header__hamburger .hamburger-line:nth-child(2) {
  top: 6px;
  width: 70%;
}
.l-header__hamburger .hamburger-line:nth-child(3) {
  bottom: 0;
  width: 100%;
}
.l-header__hamburger:hover .hamburger-label {
  color: var(--c-red);
}
.l-header__hamburger:hover .hamburger-line:nth-child(2) {
  width: 100%;
}
.l-header__hamburger.is-active .hamburger-line {
  background-color: var(--c-black);
  width: 100%;
}
.l-header__hamburger.is-active .hamburger-line:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.l-header__hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}
.l-header__hamburger.is-active .hamburger-line:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}
.l-header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  content-visibility: auto;
  clip-path: circle(0% at 90% 5%);
  transition: clip-path 0.6s var(--ease-out-expo), opacity 0.4s;
  z-index: var(--z-overlay);
  display: grid;
  place-items: center;
  padding-top: var(--header-h-mobile);
}
.l-header__overlay.is-active {
  opacity: 1;
  visibility: visible;
  content-visibility: visible;
  clip-path: circle(150% at 90% 5%);
}
.l-header__overlay-bg-text {
  position: absolute;
  bottom: -2vh;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-sans-condensed);
  font-size: 28vw;
  font-weight: 700;
  line-height: 1;
  color: var(--c-red);
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
  white-space: nowrap;
  text-rendering: optimizeSpeed;
}
.l-header__overlay-content {
  width: 100%;
  max-width: 600px;
  padding: 20px;
  text-align: center;
  position: relative;
}
.l-header__mobile-nav {
  margin-bottom: 40px;
}
.l-header__mobile-nav .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: mobile-nav;
}
.l-header__mobile-nav .mobile-nav-list li {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px) skewY(2deg);
  transition: opacity 0.5s ease, transform 0.5s var(--ease-out-expo);
  counter-increment: mobile-nav;
  will-change: opacity, transform;
}
.is-active .l-header__mobile-nav .mobile-nav-list li {
  opacity: 1;
  transform: translateY(0) skewY(0);
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(1) {
  transition-delay: 0.28s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(2) {
  transition-delay: 0.36s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(3) {
  transition-delay: 0.44s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(4) {
  transition-delay: 0.52s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(5) {
  transition-delay: 0.6s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(6) {
  transition-delay: 0.68s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(7) {
  transition-delay: 0.76s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(8) {
  transition-delay: 0.84s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(9) {
  transition-delay: 0.92s;
}
.is-active .l-header__mobile-nav .mobile-nav-list li:nth-child(10) {
  transition-delay: 1s;
}
.l-header__mobile-nav a {
  display: inline-block;
  text-decoration: none;
  color: var(--c-black);
  font-family: var(--f-serif);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.3s;
  /* 修正後: :focus を :focus-visible に変更 */
}
.l-header__mobile-nav a::before {
  content: counter(mobile-nav, decimal-leading-zero);
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  color: var(--c-red);
  font-weight: 500;
  margin-bottom: -5px;
  opacity: 1;
  transform: translateY(0);
  transition: color 0.3s ease;
}
.l-header__mobile-nav a:hover, .l-header__mobile-nav a:focus-visible {
  color: var(--c-red);
  outline: none;
}
.l-header__mobile-nav a:hover::before, .l-header__mobile-nav a:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}
.l-header__sns {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s 0.8s ease;
}
.l-header__sns .sns-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.l-header__sns .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  color: var(--c-black);
  transition: all 0.3s var(--ease-out-expo);
  background: #fff;
}
.l-header__sns .sns-link svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5px;
}
.l-header__sns .sns-link:hover, .l-header__sns .sns-link:focus {
  background-color: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(211, 30, 26, 0.3);
}
.l-header__overlay.is-active .l-header__sns {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------
   Variables
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --c-gray-light: #f4f4f4;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------
   Footer Style
   ------------------------ */
.l-footer {
  position: relative;
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 80px 0 30px;
  margin-top: auto;
  border-top: 1px solid var(--c-black);
  /* Performance: オフスクリーン時のレンダリングをスキップ */
  content-visibility: auto;
  /* Performance: レイアウトの封じ込め */
  contain: content;
  /* --- Background Text (Watermark) --- */
  /* --- Page Top Button --- */
  /* --- Layout Container --- */
  /* --- Top Section --- */
  /* --- Brand Area --- */
  /* --- Navigation --- */
  /* --- Bottom Section --- */
  /* --- SNS Icons --- */
  /* --- Copyright --- */
}
@media (min-width: 1024px) {
  .l-footer {
    padding: 100px 0 40px;
  }
}
.l-footer__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  /* コンポジットレイヤーを作成しメインスレッド負荷軽減 */
  transform: translateZ(0);
}
.l-footer__bg-text {
  position: absolute;
  bottom: -2vw;
  left: -2vw;
  font-family: var(--f-sans-condensed);
  font-size: 18vw;
  font-weight: 700;
  line-height: 0.8;
  color: var(--c-black);
  opacity: 0.02;
  white-space: nowrap;
  /* テキストレンダリングの最適化 */
  text-rendering: optimizeSpeed;
}
.l-footer__page-top {
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 100px;
  background-color: var(--c-red);
  color: var(--c-white);
  text-decoration: none;
  z-index: 10;
  /* GPU使用のヒント */
  will-change: transform, background-color;
  transition: transform 0.3s var(--ease-dynamic), background-color 0.3s;
}
.l-footer__page-top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 100% 4px;
}
@media (min-width: 1024px) {
  .l-footer__page-top {
    right: 5%;
    width: 80px;
  }
  .l-footer__page-top:hover {
    transform: translateY(-10px);
    background-color: var(--c-black);
  }
}
.l-footer__page-top .arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 8px;
}
.l-footer__page-top .label {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.l-footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .l-footer__container {
    padding: 0 40px;
  }
}
.l-footer__top {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .l-footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
  }
}
.l-footer__brand .l-footer__logo-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--c-black);
}
.l-footer__brand .footer-logo-img {
  width: auto;
  height: 100px;
  display: block;
  /* CLS防止のため高さ固定重要 */
}
@media (min-width: 1024px) {
  .l-footer__brand .footer-logo-img {
    height: 100px;
  }
}
.l-footer__brand .footer-logo-text {
  font-family: var(--f-serif);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-footer__brand .l-footer__tagline {
  font-family: var(--f-sans-condensed);
  font-size: 2rem;
  line-height: 1.2;
  color: var(--c-red);
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.8;
}
.l-footer__nav {
  width: 100%;
}
@media (min-width: 1024px) {
  .l-footer__nav {
    width: auto;
    margin-top: 10px;
  }
}
.l-footer__nav .footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .l-footer__nav .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    column-gap: 60px;
    row-gap: 20px;
  }
}
.l-footer__nav .footer-nav-list li {
  position: relative;
}
.l-footer__nav .footer-nav-list a {
  text-decoration: none;
  color: var(--c-black);
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  transition: color 0.3s, transform 0.3s var(--ease-dynamic);
}
.l-footer__nav .footer-nav-list a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: var(--c-red);
  margin-right: 0;
  vertical-align: middle;
  transition: width 0.3s var(--ease-dynamic), margin-right 0.3s var(--ease-dynamic);
}
.l-footer__nav .footer-nav-list a:hover, .l-footer__nav .footer-nav-list a:focus {
  color: var(--c-red);
  transform: translateX(5px);
  outline: none;
}
.l-footer__nav .footer-nav-list a:hover::before, .l-footer__nav .footer-nav-list a:focus::before {
  width: 12px;
  margin-right: 8px;
}
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
}
@media (min-width: 1024px) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
  }
}
.l-footer__sns .sns-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.l-footer__sns .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--c-black);
  border-radius: 50%;
  color: var(--c-black);
  transition: all 0.3s var(--ease-dynamic);
  background: transparent;
}
.l-footer__sns .sns-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5px;
}
.l-footer__sns .sns-link:hover, .l-footer__sns .sns-link:focus {
  background-color: var(--c-black);
  color: var(--c-white);
  transform: scale(1.1);
  border-color: var(--c-black);
}
.l-footer__copyright {
  text-align: left;
}
.l-footer__copyright small {
  font-family: var(--f-sans-condensed);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #666;
}
@media (min-width: 1024px) {
  .l-footer__copyright {
    text-align: right;
  }
}

/* ------------------------
   Variables & Mixins
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a; /* アクセントカラー */
  --font-base: "Oswald", sans-serif;
  --font-jp: "Noto Serif JP", serif; /* 縦書き用の明朝体 */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --z-bg: 1;
  --z-media: 0;
  --z-content: 5;
  --z-ui: 10;
}

/* ------------------------
   Hero Section Layout
   ------------------------ */
.l-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh; /* Mobileブラウザのアドレスバー対策 */
  overflow: hidden;
  background-color: var(--c-black);
  color: var(--c-white);
  /* ------------------------
     1. Background Ticker (Design Accent)
     ------------------------ */
  /* 動画の上にうっすら重ねることで雑誌のような質感にする */
  /* ------------------------
     2. Main Media (Video)
     ------------------------ */
  /* ------------------------
     3. Video Control (Pause Button)
     ------------------------ */
  /* ------------------------
     4. Front Content (Typography)
     ------------------------ */
  /* Vertical Catchphrase (Japanese) */
  /* Sub Text & SNS (Bottom Left) */
  /* ------------------------
     5. Progress Line (Bottom)
     ------------------------ */
}
.l-hero__bg-text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%) rotate(-5deg); /* 大胆に斜め配置 */
  z-index: var(--z-bg);
  opacity: 0.2; /* 動画を邪魔しない薄さに調整 */
  pointer-events: none;
  mix-blend-mode: overlay; /* 動画の色味と馴染ませる */
}
.l-hero__bg-text .bg-text-wrap {
  display: flex;
  white-space: nowrap;
}
.l-hero__bg-text .bg-text-wrap span {
  font-family: var(--font-base);
  font-size: 15vh;
  font-weight: 900;
  line-height: 1;
  padding-right: 50px;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.8); /* 白抜き文字 */
  animation: tickerBg 40s linear infinite; /* ゆっくり流す */
}
.l-hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-media);
  /* 動画の上の黒フィルター（文字の可読性用：必要最低限に） */
}
.l-hero__media .hero-video,
.l-hero__media .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* フィルターを外し、素材の美しさをそのまま見せる */
}
.l-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
.l-hero .hero-control {
  position: absolute;
  /* 右下のスクロールサイン(約120px)と被らない高さに配置 */
  bottom: 180px;
  right: 0;
  background: var(--c-red);
  border: none;
  color: var(--c-white);
  padding: 12px 24px;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: var(--z-ui);
  transition: all 0.3s;
  /* 少し動きをつける */
}
.l-hero .hero-control:hover {
  background: var(--c-white);
  color: var(--c-red);
  padding-right: 30px; /* ホバーで少し伸びる */
}
.l-hero .hero-control:hover .control-line {
  background: var(--c-red);
}
.l-hero .hero-control .control-line {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--c-white);
  transition: background 0.3s;
}
.l-hero__front {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: var(--z-content);
  pointer-events: none; /* 動画をクリックしたい場合はnone推奨 */
}
.l-hero .hero-catch-vertical {
  position: absolute;
  top: 12%;
  right: 12%; /* 右側のボタン類と喧嘩しない位置 */
  writing-mode: vertical-rl; /* 縦書き */
  font-family: var(--font-jp);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin: 0;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.6); /* 映像が白っぽくても読めるように */
  /* Animation Initial State */
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.2s var(--ease-out);
  /* Mobile Adjustment */
}
.l-hero .hero-catch-vertical.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .l-hero .hero-catch-vertical {
    right: auto;
    left: 20px; /* スマホでは左上に配置して視線を誘導 */
    top: 90px;
    font-size: 3.2rem;
  }
}
.l-hero .hero-meta {
  position: absolute;
  bottom: 50px;
  left: 30px;
  pointer-events: auto; /* ここだけクリック可能に */
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.2s var(--ease-out);
}
.l-hero .hero-meta.delay {
  transition-delay: 0.3s;
}
.l-hero .hero-meta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.l-hero .hero-sub {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  /* 視認性を高めるためのラベルスタイル */
  background: var(--c-black);
  color: var(--c-white);
  display: inline-block;
  padding: 8px 14px;
}
.l-hero .hero-sns {
  display: flex;
  gap: 20px;
}
.l-hero .hero-sns .sns-link {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-white);
  text-decoration: none;
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 2px;
  transition: 0.3s;
}
.l-hero .hero-sns .sns-link:hover {
  color: var(--c-red);
  border-bottom-color: transparent;
}
.l-hero__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--c-red);
  z-index: var(--z-ui);
  transition: width 1.5s var(--ease-out);
}
.l-hero__line.is-visible {
  width: 100%;
}

/* ------------------------
   Scroll Indicator (Right Bottom)
   ------------------------ */
.scroll-sign {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px; /* クリック領域 */
  height: 120px; /* 縦の長さ */
  z-index: 20; /* 最前面 */
  overflow: hidden;
  pointer-events: none; /* 誤操作防止 */
  /* "SCROLL" Text */
  /* Vertical Line (Static) */
  /* Vertical Line (Moving) */
}
.scroll-sign .txt {
  display: block;
  color: var(--c-white);
  font-family: var(--font-base);
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  /* 縦向き配置 */
  position: absolute;
  top: 50%;
  right: 0; /* 線の位置に合わせる */
  transform: rotate(90deg) translateY(-50%);
  transform-origin: center;
  white-space: nowrap;
}
.scroll-sign::before {
  content: "";
  position: absolute;
  top: 0;
  right: 29px; /* 中央配置 */
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
}
.scroll-sign::after {
  content: "";
  position: absolute;
  top: -50%;
  right: 29px;
  width: 1px;
  height: 50%;
  background: var(--c-red);
  animation: dropLine 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

/* ------------------------
   Keyframes
   ------------------------ */
@keyframes tickerBg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes dropLine {
  0% {
    top: -50%;
  }
  100% {
    top: 100%;
  }
}
.news-section {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: var(--c-white);
  overflow: hidden;
}
.news-section .news-bg-decor {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.02;
}
.news-section .news-bg-decor .news-bg-text {
  font-family: var(--f-sans-condensed);
  font-size: 20vw;
  font-weight: 900;
  color: var(--c-black);
  white-space: nowrap;
  display: block;
}
.news-section .news-inner {
  position: relative;
  z-index: 1;
  max-width: 140rem;
  margin: 0 auto;
  padding-left: 2.4rem;
}
@media (min-width: 768px) {
  .news-section .news-inner {
    padding-left: 4rem;
  }
}
.news-section .news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
  padding-right: 2.4rem;
}
.news-section .news-header .section-title {
  text-align: left;
}
.news-section .news-header .section-title .en {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--c-black);
}
@media (min-width: 768px) {
  .news-section .news-header .section-title .en {
    font-size: 9rem;
  }
}
.news-section .news-header .section-title .jp {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  letter-spacing: 0.3em;
  margin-top: 1rem;
}
.news-section .news-header .news-view-all {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-black);
  letter-spacing: 0.1em;
  line-height: 1;
}
.news-section .news-header .news-view-all .txt {
  transition: color 0.3s ease;
}
.news-section .news-header .news-view-all .arrow {
  position: relative;
  width: 4rem;
  height: 1px;
  background: var(--c-black);
  transition: all 0.4s var(--ease-dynamic);
  flex-shrink: 0;
}
.news-section .news-header .news-view-all .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid var(--c-black);
  border-right: 1px solid var(--c-black);
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.4s var(--ease-dynamic);
}
.news-section .news-header .news-view-all:hover .txt {
  color: var(--c-red);
}
.news-section .news-header .news-view-all:hover .arrow {
  width: 6rem;
  background: var(--c-red);
}
.news-section .news-header .news-view-all:hover .arrow::after {
  border-color: var(--c-red);
}
.news-section .news-slider {
  display: flex;
  gap: 2.4rem;
  overflow-x: auto;
  padding: 2rem 2.4rem 4rem 0;
  margin-top: -2rem;
  scrollbar-width: none;
}
.news-section .news-slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .news-section .news-slider {
    gap: 4rem;
  }
}
.news-section .news-item {
  flex: 0 0 30rem;
}
@media (min-width: 768px) {
  .news-section .news-item {
    flex: 0 0 38rem;
  }
}
.news-section .news-item .news-link {
  text-decoration: none;
  display: block;
  height: 100%;
  background: #fcfcfc;
  border-radius: 1.2rem;
  overflow: hidden;
  transition: all 0.4s var(--ease-dynamic);
  border: 1px solid #f0f0f0;
}
.news-section .news-item .news-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.news-section .news-item .news-media .news-media__inner {
  width: 100%;
  height: 100%;
}
.news-section .news-item .news-media .news-media__inner .news-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.news-section .news-item .news-media .news-media__inner .news-img-placeholder {
  width: 100%;
  height: 100%;
  background: #eee;
}
.news-section .news-item .news-media .news-cat {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-sans-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  letter-spacing: 0.1em;
  z-index: 2;
}
.news-section .news-item .news-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.news-section .news-item .news-body .news-meta {
  margin-bottom: 2rem;
}
.news-section .news-item .news-body .news-meta .news-date {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
  font-family: var(--f-sans-condensed);
}
.news-section .news-item .news-body .news-meta .news-date .date-day {
  font-size: 4rem;
  font-weight: 800;
  color: var(--c-red);
}
.news-section .news-item .news-body .news-meta .news-date .date-month-year {
  display: flex;
  flex-direction: column;
}
.news-section .news-item .news-body .news-meta .news-date .date-month-year .month {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-black);
}
.news-section .news-item .news-body .news-meta .news-date .date-month-year .year {
  font-size: 1.2rem;
  color: #999;
}
.news-section .news-item .news-body .news-title {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-black);
  margin-bottom: 3rem;
  height: 5.7rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-section .news-item .news-body .news-item-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.news-section .news-item .news-body .news-item-footer .read-more {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.1em;
}
.news-section .news-item .news-body .news-item-footer .line {
  flex-grow: 1;
  height: 1px;
  background: #eee;
  transition: all 0.4s var(--ease-dynamic);
}
.news-section .news-item:hover .news-link {
  background: var(--c-white);
  transform: translateY(-1rem);
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.05);
  border-color: transparent;
}
.news-section .news-item:hover .news-img {
  transform: scale(1.1);
}
.news-section .news-item:hover .news-item-footer .line {
  background: var(--c-red);
  flex-grow: 2;
}
.news-section .news-item:hover .news-item-footer .read-more {
  color: var(--c-red);
}
.news-section .news-progress {
  max-width: 40rem;
  height: 2px;
  background: #f0f0f0;
  margin-top: 4rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.news-section .news-progress .news-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--c-red);
  transition: width 0.1s linear;
}

.js-anim {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.js-anim[data-anim=fade-up].is-active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}
.js-anim[data-anim=slide-right] {
  transform: translateX(-40px);
}
.js-anim[data-anim=slide-right].is-active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: var(--delay, 0s);
}
.js-anim[data-anim=pop] {
  transform: scale(0.5);
}
.js-anim[data-anim=pop].is-active {
  opacity: 1;
  transform: scale(1);
  transition-delay: var(--delay, 0s);
}
.js-anim[data-anim=bg-fade] {
  transform: scale(0.95);
}
.js-anim[data-anim=bg-fade].is-active {
  transform: scale(1);
  opacity: 0.03;
}
@media (min-width: 768px) {
  .js-anim[data-anim=bg-fade].is-active {
    opacity: 0.02;
  }
}
.js-anim[data-anim=fade] {
  transform: scale(0.95);
}
.js-anim[data-anim=fade].is-active {
  opacity: 1;
  transform: scale(1);
  transition-delay: var(--delay, 0s);
}

.tournament-section {
  background-color: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tournament-section {
    padding: 120px 0 140px;
  }
}
.tournament-section .tournament-bg-text {
  position: absolute;
  top: 5%;
  left: -5%;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  font-size: 25vw;
  line-height: 1;
  color: #000000;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .tournament-section .tournament-bg-text {
    font-size: 18vw;
  }
}
.tournament-section .tournament-bg-light {
  position: absolute;
  bottom: -10%;
  right: -20%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(211, 30, 26, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .tournament-section .tournament-bg-light {
    width: 50vw;
    height: 50vw;
    filter: blur(80px);
  }
}
.tournament-section .tournament-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.tournament-section .tournament-header {
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .tournament-section .tournament-header {
    margin-bottom: 60px;
  }
}
.tournament-section .tournament-header .section-label {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d31e1a;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.tournament-section .tournament-header .section-heading {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.9;
  margin: 0;
  color: #000000;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .tournament-section .tournament-header .section-heading {
    font-size: 6rem;
    line-height: 1;
  }
}
.tournament-section .tournament-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (min-width: 900px) {
  .tournament-section .tournament-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    min-height: 600px;
  }
}
.tournament-section .tournament-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: -40px;
}
@media (min-width: 900px) {
  .tournament-section .tournament-visual {
    width: 60%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    margin-bottom: 0;
  }
}
.tournament-section .tournament-visual .visual-inner {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.1);
  background: #eee;
}
@media (min-width: 900px) {
  .tournament-section .tournament-visual .visual-inner {
    aspect-ratio: auto;
    height: 100%;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
  }
}
.tournament-section .tournament-visual .visual-inner .visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.tournament-section .tournament-visual:hover .visual-inner .visual-img {
  transform: scale(1.05);
}
.tournament-section .tournament-visual .status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000000;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.tournament-section .tournament-visual .status-badge.is-entry {
  background: #d31e1a;
}
@media (min-width: 768px) {
  .tournament-section .tournament-visual .status-badge {
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }
}
.tournament-section .tournament-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 40px 24px;
}
@media (min-width: 900px) {
  .tournament-section .tournament-content {
    width: 50%;
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  }
}
.tournament-section .event-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px;
  color: #000000;
}
@media (min-width: 768px) {
  .tournament-section .event-title {
    font-size: 2.8rem;
    margin-bottom: 24px;
  }
}
.tournament-section .event-desc {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  text-align: justify;
}
.tournament-section .event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
  border-top: 1px solid #eee;
  padding-top: 25px;
}
@media (min-width: 600px) {
  .tournament-section .event-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding-top: 30px;
  }
}
.tournament-section .event-grid .cell-label {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.tournament-section .event-grid .date-display {
  display: flex;
  align-items: baseline;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #000000;
}
.tournament-section .event-grid .date-display .date-big {
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-right: 10px;
}
.tournament-section .event-grid .date-display .date-big .accent {
  color: #d31e1a;
}
@media (min-width: 768px) {
  .tournament-section .event-grid .date-display .date-big {
    font-size: 5rem;
    margin-right: 12px;
  }
}
.tournament-section .event-grid .date-display .date-meta {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 700;
  color: #888;
  line-height: 1.2;
}
.tournament-section .event-grid .time-display {
  margin-top: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d31e1a;
  font-family: "Oswald", sans-serif;
}
.tournament-section .event-grid .place-name {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 4px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .tournament-section .event-grid .place-name {
    font-size: 1.8rem;
  }
}
.tournament-section .event-grid .place-addr {
  display: block;
  font-size: 1.2rem;
  color: #777;
  line-height: 1.5;
}
.tournament-section .event-grid .map-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.2rem;
  color: #000000;
  text-decoration: underline;
  transition: color 0.3s;
}
.tournament-section .event-grid .map-link:hover {
  color: #d31e1a;
}
.tournament-section .tournament-action {
  width: 100%;
}
.tournament-section .btn-ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 64px;
  padding: 0 24px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .tournament-section .btn-ticket {
    height: 70px;
    padding: 0 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
}
.tournament-section .btn-ticket .btn-text {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 2;
}
@media (min-width: 768px) {
  .tournament-section .btn-ticket .btn-text {
    font-size: 1.6rem;
  }
}
.tournament-section .btn-ticket .btn-sub {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-left: 10px;
  margin-right: auto;
  z-index: 2;
  display: none;
}
@media (min-width: 400px) {
  .tournament-section .btn-ticket .btn-sub {
    display: inline-block;
  }
}
.tournament-section .btn-ticket .btn-icon {
  font-size: 1.6rem;
  transition: transform 0.3s;
  z-index: 2;
}
@media (min-width: 768px) {
  .tournament-section .btn-ticket .btn-icon {
    font-size: 1.8rem;
  }
}
.tournament-section .btn-ticket::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #d31e1a;
  transition: width 0.4s ease;
  z-index: 1;
}
.tournament-section .btn-ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(211, 30, 26, 0.3);
  padding-right: 20px;
}
@media (min-width: 768px) {
  .tournament-section .btn-ticket:hover {
    padding-right: 25px;
  }
}
.tournament-section .btn-ticket:hover::before {
  width: 100%;
}
.tournament-section .btn-ticket:hover .btn-icon {
  transform: translateX(5px);
}
.tournament-section .btn-ticket.disabled {
  background: #eee;
  color: #aaa;
  pointer-events: none;
  box-shadow: none;
  justify-content: center;
}
.tournament-section .btn-ticket.disabled .btn-sub,
.tournament-section .btn-ticket.disabled .btn-icon, .tournament-section .btn-ticket.disabled::before {
  display: none;
}

.movie-section {
  background-color: #ffffff;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .movie-section {
    padding: 120px 0 140px;
  }
}
.movie-section .movie-bg-text {
  position: absolute;
  top: 5%;
  right: -5%;
  font-family: "Oswald", sans-serif;
  font-weight: 900;
  font-size: 25vw;
  line-height: 1;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .movie-section .movie-bg-text {
    font-size: 20vw;
    color: rgba(0, 0, 0, 0.02);
    top: 10%;
  }
}
.movie-section .movie-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
.movie-section .movie-header {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .movie-section .movie-header {
    margin-bottom: 40px;
  }
}
.movie-section .movie-header .section-label {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #d31e1a;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.movie-section .movie-header .section-heading {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  color: #000000;
}
@media (min-width: 768px) {
  .movie-section .movie-header .section-heading {
    font-size: 6rem;
  }
}
.movie-section .movie-slider-wrapper {
  position: relative;
  width: 100%;
}
.movie-section .movie-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 40px;
  scrollbar-width: none;
}
.movie-section .movie-slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .movie-section .movie-slider {
    gap: 40px;
  }
}
.movie-section .movie-card {
  flex: 0 0 85%;
  max-width: 340px;
  scroll-snap-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .movie-section .movie-card {
    flex: 0 0 35%;
    max-width: 480px;
    scroll-snap-align: start;
  }
}
.movie-section .movie-card:hover .play-button {
  background: #d31e1a;
  border-color: #d31e1a;
  transform: translate(-50%, -50%) scale(1.1);
}
.movie-section .movie-card:hover .play-button svg {
  fill: #ffffff;
}
.movie-section .movie-card:hover .facade-img {
  transform: scale(1.05);
}
.movie-section .movie-card:hover .movie-num {
  color: #d31e1a;
}
.movie-section .video-facade {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .movie-section .video-facade {
    margin-bottom: 20px;
  }
}
.movie-section .video-facade .facade-inner {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.movie-section .video-facade .facade-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.movie-section .video-facade .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
  color: #ffffff;
}
.movie-section .video-facade .play-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
  margin-left: 3px;
}
.movie-section .video-facade iframe.active-iframe {
  width: 100%;
  height: 100%;
}
.movie-section .movie-meta {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.movie-section .movie-num {
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 0.9;
  color: rgba(0, 0, 0, 0.1);
  transition: color 0.3s;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .movie-section .movie-num {
    font-size: 4rem;
  }
}
.movie-section .movie-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding-top: 5px;
}
@media (min-width: 768px) {
  .movie-section .movie-title {
    font-size: 1.6rem;
  }
}
.movie-section .movie-progress {
  width: 100%;
  height: 2px;
  background: #f0f0f0;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .movie-section .movie-progress {
    margin-top: 30px;
  }
}
.movie-section .movie-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #d31e1a;
  transition: width 0.1s linear;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0s);
}

.js-anim {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}

.js-anim[data-anim=text-reveal] {
  opacity: 1;
  clip-path: inset(100% 0 0 0);
  transform: translateY(20px);
  transition: clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.js-anim[data-anim=text-reveal].is-active {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}

.js-anim[data-anim=curtain-reveal] {
  opacity: 1;
  overflow: hidden;
  position: relative;
}
.js-anim[data-anim=curtain-reveal] .visual-inner {
  opacity: 0;
  transition: opacity 0.1s;
}
.js-anim[data-anim=curtain-reveal]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #d31e1a;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 5;
  will-change: transform;
}
.js-anim[data-anim=curtain-reveal].is-active::after {
  animation: curtainSwipe 1.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.js-anim[data-anim=curtain-reveal].is-active .visual-inner {
  opacity: 1;
  transition-delay: 0.6s;
}

@keyframes curtainSwipe {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  45% {
    transform: scaleX(1);
    transform-origin: left;
  }
  55% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.js-anim[data-anim=fade-slide] {
  transform: translateX(30px);
}
@media (max-width: 767px) {
  .js-anim[data-anim=fade-slide] {
    transform: translateY(30px);
  }
}

.js-anim[data-anim=pop] {
  transform: scale(0);
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-section {
  background-color: #ffffff;
  padding: 100px 0 160px;
  position: relative;
  overflow: hidden;
}
.about-section .page-line {
  position: absolute;
  top: 0;
  left: 20px;
  width: 1px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  z-index: 0;
}
@media (min-width: 768px) {
  .about-section .page-line {
    left: 50%;
  }
}
.about-section .about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.about-section .about-header {
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .about-section .about-header {
    margin-bottom: 140px;
  }
}
.about-section .about-header .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  line-height: 1;
}
.about-section .about-header .section-title .en-huge {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: block;
}
@media (min-width: 768px) {
  .about-section .about-header .section-title .en-huge {
    font-size: 10rem;
  }
}
.about-section .about-header .section-title .jp-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: -10px;
  background: #ffffff;
  padding: 5px 20px;
  position: relative;
  z-index: 2;
  color: #d31e1a;
  display: inline-block;
}
.about-section .about-header .lead-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.about-section .about-header .lead-wrapper .lead-line {
  display: block;
  width: 40px;
  height: 2px;
  background: #d31e1a;
  margin: 0 auto 20px;
  transform: scaleX(0);
  transition: transform 0.6s ease;
}
.about-section .about-header .lead-wrapper.is-active .lead-line {
  transform: scaleX(1);
}
.about-section .about-header .lead-wrapper .about-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 2.2;
  color: #000000;
  text-align: justify;
  font-weight: 400;
}
.about-section .about-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 768px) {
  .about-section .about-content {
    gap: 160px;
  }
}
.about-section .about-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .about-section .about-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.about-section .about-visual {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .about-section .about-visual {
    width: 55%;
  }
}
.about-section .about-visual .visual-inner {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}
.about-section .about-visual .visual-inner .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
  filter: contrast(1.05);
}
.about-section .about-visual .visual-inner .visual-num {
  position: absolute;
  top: 0;
  left: 0;
  background: #000000;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 10px 20px;
  letter-spacing: 0.1em;
  z-index: 3;
}
.about-section .about-visual:hover .about-img {
  transform: scale(1.03);
}
.about-section .about-text {
  width: 92%;
  margin: -50px 0 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .about-section .about-text {
    width: 40%;
    margin: 0;
  }
}
.about-section .about-text .text-inner {
  background: #ffffff;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #d31e1a;
}
@media (min-width: 768px) {
  .about-section .about-text .text-inner {
    padding: 50px;
  }
}
.about-section .about-text .item-header {
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}
.about-section .about-text .item-header .item-title-en {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #000000;
  line-height: 1.1;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .about-section .about-text .item-header .item-title-en {
    font-size: 4.5rem;
  }
}
.about-section .about-text .item-header .item-title-jp {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #d31e1a;
  letter-spacing: 0.05em;
  display: block;
}
.about-section .about-text .item-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333333;
  text-align: justify;
  margin-bottom: 0;
}
.about-section .about-text .read-line {
  display: block;
  width: 100%;
  height: 1px;
  background: transparent;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about-section .about-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .about-section .about-item:nth-child(even) .about-text {
    transform: translateX(-30px);
  }
  .about-section .about-item:nth-child(even) .about-text .text-inner {
    border-left: none;
    border-right: 4px solid #d31e1a;
  }
}

.js-anim {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.js-anim[data-anim=fade] {
  transform: scale(0.95);
}
.js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.js-anim[data-anim=fade].is-active {
  opacity: 0.03;
  transform: scale(1);
}

.area-section {
  background-color: #ffffff;
  padding: 10rem 0 12rem;
  position: relative;
  overflow: hidden;
}
.area-section .area-bg-light {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(211, 30, 26, 0.03) 0%, transparent 70%);
  filter: blur(8rem);
  z-index: 0;
  pointer-events: none;
}
.area-section .area-bg-decoration {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}
.area-section .area-bg-decoration .bg-text {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 18vw;
  font-weight: 700;
  line-height: 0.8;
  color: #000000;
  text-align: center;
  white-space: nowrap;
}
.area-section .area-container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 0 0 2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .area-section .area-container {
    padding: 0 0 0 4rem;
  }
}
.area-section .area-header {
  margin-bottom: 6rem;
  padding-right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.area-section .area-header .section-title .en {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #000000;
  line-height: 0.9;
  display: block;
  letter-spacing: 0.02em;
}
@media (min-width: 768px) {
  .area-section .area-header .section-title .en {
    font-size: 9rem;
  }
}
.area-section .area-header .section-title .jp {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #d31e1a;
  letter-spacing: 0.2em;
  margin-top: 1rem;
  display: block;
}
.area-section .area-header .scroll-indicator {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.area-section .area-header .scroll-indicator .txt {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: #aaa;
}
.area-section .area-header .scroll-indicator .line {
  width: 6rem;
  height: 0.1rem;
  background: #eee;
}
.area-section .area-slider {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: 2rem 2rem 4rem 0;
  margin-top: -2rem;
  contain: layout paint;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.area-section .area-slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .area-section .area-slider {
    gap: 5rem;
  }
}
.area-section .area-card {
  flex: 0 0 30rem;
  display: flex;
  flex-direction: column;
  position: relative;
  scroll-snap-align: start;
  backface-visibility: hidden;
}
@media (min-width: 768px) {
  .area-section .area-card {
    flex: 0 0 38rem;
  }
}
.area-section .area-card .card-inner {
  background: #f9f9f9;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.02);
  border: 1px solid transparent;
}
.area-section .area-card.is-entry .card-inner {
  background: rgba(211, 30, 26, 0.02);
  border: 1px solid rgba(211, 30, 26, 0.1);
}
.area-section .area-card.is-entry .status-tag {
  background: #d31e1a;
  color: #ffffff;
}
.area-section .area-card.is-entry .action-btn {
  background: linear-gradient(135deg, #d31e1a 0%, #a81815 100%);
  color: #ffffff;
  box-shadow: 0 1rem 2rem rgba(211, 30, 26, 0.15);
}
.area-section .area-card.is-report .status-tag {
  background: #000000;
  color: #ffffff;
}
.area-section .area-card.is-report .action-btn {
  background: #000000;
  color: #ffffff;
}
.area-section .area-card.is-soon {
  opacity: 0.5;
}
.area-section .area-card.is-soon .card-inner {
  background: #f2f2f2;
}
.area-section .area-card .card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.area-section .area-card .card-visual .visual-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.area-section .area-card .card-visual .visual-inner .area-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}
.area-section .area-card .card-visual .visual-inner .visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
}
.area-section .area-card .card-visual .visual-date {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  z-index: 2;
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.area-section .area-card .card-visual .visual-date .date-top {
  margin-bottom: 0.4rem;
}
.area-section .area-card .card-visual .visual-date .date-top .year {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  opacity: 0.8;
}
.area-section .area-card .card-visual .visual-date .date-main {
  display: flex;
  align-items: baseline;
}
.area-section .area-card .card-visual .visual-date .date-main .month,
.area-section .area-card .card-visual .visual-date .date-main .day {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.area-section .area-card .card-visual .visual-date .date-main .slash {
  font-size: 2.5rem;
  margin: 0 0.4rem;
  font-weight: 300;
  opacity: 0.6;
}
.area-section .area-card .card-visual .status-tag {
  position: absolute;
  top: 0;
  right: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border-bottom-left-radius: 1.5rem;
  z-index: 2;
  letter-spacing: 0.05em;
}
.area-section .area-card .card-content {
  padding: 3rem 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.area-section .area-card .card-content .info-group {
  margin-bottom: 2rem;
}
.area-section .area-card .card-content .wday {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  color: #bbb;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.area-section .area-card .card-content .area-name {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.8rem 0 1.2rem;
  letter-spacing: 0.02em;
  color: #000000;
}
.area-section .area-card .card-content .location-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #777;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.area-section .area-card .card-content .location-row .icon-pin {
  width: 1.6rem;
  height: 1.6rem;
  color: #ccc;
}
.area-section .area-card .card-content .entry-period-row {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: #000000;
  background: rgba(249, 249, 249, 0.5);
  padding: 0.6rem 1.2rem;
  border-radius: 0.4rem;
  border: 1px solid #eee;
}
.area-section .area-card .card-content .entry-period-row .label {
  font-weight: 700;
  color: #d31e1a;
}
.area-section .area-card .card-content .entry-period-row .val {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.area-section .area-card .card-content .area-sns-wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  margin-top: auto;
}
.area-section .area-card .card-content .area-sns-wrap .sns-text-link {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #aaa;
  text-decoration: none;
  position: relative;
  padding-left: 2rem;
  transition: 0.3s;
}
.area-section .area-card .card-content .area-sns-wrap .sns-text-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 0.1rem;
  background: #ddd;
  transition: 0.3s;
}
.area-section .area-card .card-content .area-sns-wrap .sns-text-link:hover {
  color: #000000;
  padding-left: 2.5rem;
}
.area-section .area-card .card-content .area-sns-wrap .sns-text-link:hover::before {
  width: 1.2rem;
  background: #d31e1a;
}
.area-section .area-card .card-content .area-sns-wrap .sns-text-link:hover.insta {
  color: #e1306c;
}
.area-section .area-card .card-content .area-sns-wrap .sns-text-link:hover.line {
  color: #06c755;
}
.area-section .area-card .card-content .card-action {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.area-section .area-card .card-content .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  height: 6rem;
  border-radius: 5rem;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  transition: 0.4s;
}
.area-section .area-card .card-content .action-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}
.area-section .area-card .card-content .action-btn.disabled {
  background: #f0f0f0;
  color: #ccc;
  pointer-events: none;
}
.area-section .area-card .card-content .ticket-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: 5rem;
  border: 1px solid #ddd;
  border-radius: 5rem;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #000000;
  background: #ffffff;
  transition: all 0.3s;
}
.area-section .area-card .card-content .ticket-btn .ticket-icon {
  width: 1.6rem;
  height: 1.6rem;
  color: #000000;
}
.area-section .area-card .card-content .ticket-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
  transform: translateY(-2px);
}
.area-section .area-card .card-content .ticket-btn:hover .ticket-icon {
  color: #ffffff;
}
.area-section .area-card:hover .card-inner {
  transform: translateY(-1rem);
  background: #ffffff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.06);
}
.area-section .area-card:hover .area-img {
  transform: scale(1.1);
}
.area-section .area-progress {
  position: relative;
  width: 100%;
  max-width: 40rem;
  height: 0.2rem;
  background: #f0f0f0;
  margin: 2rem 0 0;
  border-radius: 1rem;
  overflow: hidden;
  z-index: 5;
}
@media (min-width: 768px) {
  .area-section .area-progress {
    margin: 4rem 0 0;
  }
}
.area-section .area-progress .progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #d31e1a;
  transition: width 0.1s ease-out;
}

.js-anim {
  opacity: 0;
  transition: opacity 0.8s var(--ease-dynamic), transform 0.8s var(--ease-dynamic);
  will-change: opacity, transform;
}
.js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.js-anim[data-anim=bg-fade] {
  transform: scale(0.95);
}
.js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.js-anim.is-active[data-anim=bg-fade] {
  opacity: 0.02;
  transform: scale(1);
}

.gp-section {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: var(--c-white);
  overflow: hidden;
}
.gp-section .gp-bg-text {
  position: absolute;
  top: 5%;
  left: -2%;
  font-family: var(--f-sans-condensed);
  font-size: 20vw;
  font-weight: 900;
  color: var(--c-black);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}
.gp-section .gp-header {
  text-align: center;
  margin-bottom: 6rem;
  padding: 0 2.4rem;
  position: relative;
  z-index: 2;
}
.gp-section .gp-header .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.2rem;
}
.gp-section .gp-header .section-title .en {
  font-family: var(--f-sans-condensed);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--c-black);
}
@media (min-width: 768px) {
  .gp-section .gp-header .section-title .en {
    font-size: 9rem;
  }
}
.gp-section .gp-header .section-title .jp {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  letter-spacing: 0.3em;
  margin-top: 0.8rem;
}
.gp-section .gp-header .gp-tab-nav {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}
.gp-section .gp-header .gp-tab-list {
  display: flex;
  gap: 0.8rem;
  list-style: none;
  padding: 0.6rem;
  background: #f8f8f8;
  border-radius: 5rem;
}
@media (max-width: 768px) {
  .gp-section .gp-header .gp-tab-list {
    gap: 0.4rem;
    padding: 0.4rem;
  }
}
.gp-section .gp-header .gp-tab-btn {
  padding: 1.2rem 2.8rem;
  border-radius: 4rem;
  border: none;
  background: transparent;
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  transition: all 0.4s var(--ease-dynamic);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .gp-section .gp-header .gp-tab-btn {
    padding: 1rem 1.6rem;
    font-size: 1.2rem;
  }
}
.gp-section .gp-header .gp-tab-btn.is-active {
  background: var(--c-black);
  color: var(--c-white);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}
.gp-section .gp-header .gp-tab-btn:hover:not(.is-active) {
  color: var(--c-black);
  background: rgba(0, 0, 0, 0.05);
}
.gp-section .gp-dept-content {
  display: none;
}
.gp-section .gp-dept-content.is-active {
  display: block;
}
.gp-section .gp-container {
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.gp-section .gp-slider-wrapper {
  position: relative;
  width: 100%;
}
.gp-section .gp-slider {
  display: flex;
  gap: 3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 2.4rem 5rem;
  margin-top: -2rem;
  scrollbar-width: none;
}
.gp-section .gp-slider::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .gp-section .gp-slider {
    gap: 5rem;
    padding-left: 10vw;
    padding-right: 10vw;
  }
}
.gp-section .gp-card {
  flex: 0 0 75vw;
  scroll-snap-align: center;
  max-width: 32rem;
  transition: transform 0.4s var(--ease-dynamic);
}
@media (min-width: 768px) {
  .gp-section .gp-card {
    flex: 0 0 30rem;
    scroll-snap-align: start;
  }
}
.gp-section .gp-card .gp-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: #f2f2f2;
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.08);
}
.gp-section .gp-card .gp-visual .gp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.gp-section .gp-card .gp-visual .gp-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c-red);
  color: var(--c-white);
  padding: 1rem 1.8rem;
  z-index: 2;
  border-bottom-right-radius: 1.2rem;
}
.gp-section .gp-card .gp-visual .gp-badge .gp-year-val {
  font-family: var(--f-sans-condensed);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.gp-section .gp-card .gp-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, transparent 40%);
  pointer-events: none;
}
.gp-section .gp-card .gp-info {
  padding: 2.4rem 0.5rem;
  text-align: left;
}
.gp-section .gp-card .gp-info .gp-name {
  margin: 0 0 0.8rem;
}
.gp-section .gp-card .gp-info .gp-name .name-jp {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-black);
  display: block;
  letter-spacing: 0.05em;
}
.gp-section .gp-card .gp-info .gp-award-title {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.gp-section .gp-card .gp-info .gp-award-title::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--c-red);
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .gp-section .gp-card:hover {
    transform: translateY(-1rem);
  }
  .gp-section .gp-card:hover .gp-img {
    transform: scale(1.1);
  }
}
.gp-section .gp-progress {
  width: 20rem;
  height: 0.2rem;
  background: #eee;
  margin: 2rem auto 0;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .gp-section .gp-progress {
    width: 15rem;
  }
}
.gp-section .gp-progress .gp-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--c-red);
  transition: width 0.2s ease-out;
}

.nc-section {
  position: relative;
  padding: 12rem 0;
  background-color: var(--c-black);
  overflow: hidden;
}
.nc-section .nc-fixed-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.nc-section .nc-fixed-bg .nc-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.nc-section .nc-fixed-bg .nc-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--c-white-rgb), 0.95) 0%, rgba(var(--c-white-rgb), 0.8) 50%, rgba(var(--c-white-rgb), 0.4) 100%);
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
}
.nc-section .nc-bg-decor {
  position: absolute;
  bottom: -5%;
  left: -2%;
  z-index: 1;
  pointer-events: none;
}
.nc-section .nc-bg-decor .nc-bg-text {
  font-family: var(--f-sans-condensed);
  font-size: 22vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  line-height: 0.8;
  white-space: nowrap;
}
.nc-section .nc-container {
  position: relative;
  z-index: 2;
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}
.nc-section .nc-header {
  margin-bottom: 8rem;
}
.nc-section .nc-header .section-title .en {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: clamp(6rem, 10vw, 12rem);
  font-weight: 800;
  line-height: 0.9;
  color: var(--c-black);
}
.nc-section .nc-header .section-title .jp {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.6rem;
  color: var(--c-red);
  letter-spacing: 0.3em;
  margin-top: 2rem;
  font-weight: 600;
}
.nc-section .nc-header .section-title .jp::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--c-red);
  vertical-align: middle;
  margin-right: 1.5rem;
}
.nc-section .nc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .nc-section .nc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 8rem;
  }
}
.nc-section .nc-card .nc-card-inner {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 5rem 4rem;
  border-radius: 0.2rem;
  height: 100%;
  transition: all 0.6s var(--ease-dynamic);
  border-top: 4px solid var(--c-black);
}
.nc-section .nc-card .nc-number {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 3rem;
  font-weight: 800;
  color: var(--c-red);
  margin-bottom: 1.5rem;
}
.nc-section .nc-card .nc-item-title {
  font-family: var(--f-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 3rem;
  line-height: 1.3;
}
.nc-section .nc-card .nc-item-desc {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  margin-bottom: 4rem;
}
.nc-section .nc-card .nc-card-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nc-section .nc-card .nc-card-footer .nc-line {
  flex-grow: 1;
  height: 1px;
  background: #ddd;
  position: relative;
  overflow: hidden;
}
.nc-section .nc-card .nc-card-footer .nc-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--c-red);
  transition: transform 0.6s var(--ease-dynamic);
}
.nc-section .nc-card .nc-card-footer .nc-more {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #999;
}
.nc-section .nc-card:hover .nc-card-inner {
  background: var(--c-white);
  transform: translateY(-1rem);
  border-top-color: var(--c-red);
  box-shadow: 0 4rem 8rem rgba(0, 0, 0, 0.1);
}
.nc-section .nc-card:hover .nc-line::after {
  transform: translateX(100%);
}
.nc-section .nc-card:hover .nc-more {
  color: var(--c-red);
}
@media (min-width: 768px) {
  .nc-section .nc-card:nth-child(even) {
    margin-top: 8rem;
  }
}

.org-section {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: var(--c-white);
  overflow: hidden;
}
.org-section .org-bg-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.02;
}
.org-section .org-bg-decor .org-bg-text {
  font-family: var(--f-sans-condensed);
  font-size: 15vw;
  font-weight: 900;
  color: var(--c-black);
  white-space: nowrap;
  display: block;
}
.org-section .org-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.4rem;
  position: relative;
  z-index: 1;
}
.org-section .org-header {
  margin-bottom: 8rem;
  text-align: center;
}
.org-section .org-header .section-title .en {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--c-black);
}
@media (min-width: 768px) {
  .org-section .org-header .section-title .en {
    font-size: 8rem;
  }
}
.org-section .org-header .section-title .jp {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  letter-spacing: 0.3em;
  margin-top: 1rem;
}
.org-section .org-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .org-section .org-layout {
    flex-direction: row;
    justify-content: center;
    gap: 10rem;
    align-items: stretch;
  }
}
.org-section .org-visual {
  flex-shrink: 0;
  width: 100%;
  max-width: 36rem;
}
@media (max-width: 768px) {
  .org-section .org-visual {
    max-width: 24rem;
  }
}
.org-section .org-visual .org-logo-frame {
  aspect-ratio: 1/1;
  background: var(--c-white);
  border: 1px solid #f0f0f0;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  transition: all 0.5s var(--ease-dynamic);
}
.org-section .org-visual .org-logo-frame::before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 5rem;
  height: 5rem;
  border-top: 2px solid var(--c-red);
  border-left: 2px solid var(--c-red);
  border-top-left-radius: 1rem;
}
.org-section .org-visual .org-logo-frame .org-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.5s var(--ease-dynamic);
}
.org-section .org-info {
  flex-grow: 1;
  max-width: 60rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.org-section .org-info .org-name {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--c-black);
  position: relative;
  padding-bottom: 1.5rem;
}
.org-section .org-info .org-name::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 1px;
  background: var(--c-red);
}
.org-section .org-info .org-desc {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  margin-bottom: 3.2rem;
  text-align: justify;
}
.org-section .org-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 2.4rem;
  background: var(--c-black);
  color: var(--c-white);
  text-decoration: none;
  border-radius: 0.4rem;
  font-family: var(--f-sans-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-dynamic);
}
.org-section .org-link-btn .btn-icon {
  width: 1.4rem;
  height: 1.4rem;
  transition: transform 0.3s;
}
.org-section .org-link-btn:hover {
  background: var(--c-red);
  transform: translateY(-0.3rem);
}
.org-section .org-link-btn:hover .btn-icon {
  transform: translate(0.2rem, -0.2rem);
}
.org-section:hover .org-logo-frame {
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.org-section:hover .org-logo-frame .org-logo {
  transform: scale(1.05);
}

.msg-section {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: var(--c-white);
  overflow: hidden;
}
.msg-section .msg-bg-decor {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
}
.msg-section .msg-bg-decor .msg-bg-text {
  font-family: var(--f-sans-condensed);
  font-size: 20vw;
  font-weight: 900;
  color: var(--c-black);
  line-height: 1;
  white-space: nowrap;
  display: block;
}
.msg-section .msg-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.4rem;
  position: relative;
  z-index: 1;
}
.msg-section .msg-layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: center;
}
@media (min-width: 768px) {
  .msg-section .msg-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 10rem;
  }
}
.msg-section .msg-visual {
  width: 100%;
  max-width: 250px;
}
@media (min-width: 768px) {
  .msg-section .msg-visual {
    width: 35%;
    max-width: none;
    position: sticky;
    top: 12rem;
  }
}
.msg-section .msg-visual .msg-img-wrap {
  position: relative;
  border-radius: 0.4rem;
}
.msg-section .msg-visual .msg-img-wrap .msg-img-line {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 6rem;
  height: 6rem;
  border-bottom: 2px solid var(--c-red);
  border-left: 2px solid var(--c-red);
  z-index: 2;
}
.msg-section .msg-visual .msg-img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
}
.msg-section .msg-content {
  width: 100%;
}
@media (min-width: 768px) {
  .msg-section .msg-content {
    width: 65%;
  }
}
.msg-section .msg-content .msg-header {
  margin-bottom: 4rem;
}
.msg-section .msg-content .msg-header .msg-label-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.msg-section .msg-content .msg-header .msg-label-wrap .msg-label-en {
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-red);
}
.msg-section .msg-content .msg-header .msg-label-wrap .msg-label-jp {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0.1em;
}
.msg-section .msg-content .msg-header .msg-catch {
  font-family: var(--f-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-black);
}
@media (min-width: 768px) {
  .msg-section .msg-content .msg-header .msg-catch {
    font-size: 3.6rem;
  }
}
.msg-section .msg-content .msg-main-text {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  line-height: 2.2;
  color: #333;
  margin-bottom: 5rem;
  text-align: justify;
}
.msg-section .msg-content .msg-author {
  margin-bottom: 6rem;
}
.msg-section .msg-content .msg-author .msg-author-inner {
  display: inline-block;
  border-right: 4px solid var(--c-red);
  padding-right: 3rem;
}
.msg-section .msg-content .msg-author .msg-post {
  font-family: var(--f-sans-condensed);
  font-size: 1.3rem;
  font-weight: 700;
  color: #666;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.msg-section .msg-content .msg-author .msg-name .name-jp {
  font-family: var(--f-serif);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--c-black);
}
.msg-section .msg-content .msg-profile-box {
  border-top: 1px solid #eee;
  padding-top: 3rem;
}
.msg-section .msg-content .msg-profile-box .msg-profile-toggle {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.msg-section .msg-content .msg-profile-box .msg-profile-toggle .toggle-label {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #999;
  transition: color 0.3s;
}
.msg-section .msg-content .msg-profile-box .msg-profile-toggle .toggle-icon {
  width: 3rem;
  height: 1px;
  background: #eee;
  position: relative;
  transition: background 0.3s;
}
.msg-section .msg-content .msg-profile-box .msg-profile-toggle:hover .toggle-label {
  color: var(--c-red);
}
.msg-section .msg-content .msg-profile-box .msg-profile-toggle:hover .toggle-icon {
  background: var(--c-red);
}
.msg-section .msg-content .msg-profile-box .msg-profile-content {
  margin-top: 2rem;
}
.msg-section .msg-content .msg-profile-box .msg-profile-content .profile-text {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  line-height: 1.8;
  color: #777;
}

.sdgs-section {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: var(--c-white);
  overflow: hidden;
}
.sdgs-section .sdgs-bg-decor {
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.02;
}
.sdgs-section .sdgs-bg-decor .sdgs-bg-text {
  font-family: var(--f-sans-condensed);
  font-size: 20vw;
  font-weight: 900;
  color: var(--c-black);
  line-height: 1;
  white-space: nowrap;
  display: block;
}
.sdgs-section .sdgs-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.4rem;
  position: relative;
  z-index: 1;
}
.sdgs-section .sdgs-header {
  text-align: center;
  margin-bottom: 8rem;
}
.sdgs-section .sdgs-header .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.sdgs-section .sdgs-header .section-title .en {
  font-family: var(--f-sans-condensed);
  font-size: 6rem;
  font-weight: 800;
  line-height: 0.9;
  color: var(--c-black);
}
@media (min-width: 768px) {
  .sdgs-section .sdgs-header .section-title .en {
    font-size: 9rem;
  }
}
.sdgs-section .sdgs-header .section-title .jp {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  letter-spacing: 0.3em;
  margin-top: 1rem;
}
.sdgs-section .sdgs-header .sdgs-intro-text {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  line-height: 2;
  color: #666;
  max-width: 70rem;
  margin: 0 auto;
}
.sdgs-section .sdgs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .sdgs-section .sdgs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem 4rem;
  }
}
.sdgs-section .sdgs-card {
  transition: transform 0.6s var(--ease-dynamic);
}
@media (min-width: 768px) {
  .sdgs-section .sdgs-card.is-shifted {
    margin-top: 4rem;
  }
}
.sdgs-section .sdgs-card .sdgs-card-inner {
  background: #fcfcfc;
  padding: 4rem 3rem;
  border-radius: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-dynamic);
  border: 1px solid #f0f0f0;
}
.sdgs-section .sdgs-card .sdgs-visual {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.sdgs-section .sdgs-card .sdgs-visual .sdgs-icon-box {
  width: 8rem;
  height: 8rem;
  flex-shrink: 0;
}
.sdgs-section .sdgs-card .sdgs-visual .sdgs-icon-box .sdgs-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 1.2rem;
  filter: grayscale(0.2);
  transition: filter 0.4s;
}
.sdgs-section .sdgs-card .sdgs-visual .sdgs-count {
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 0.4rem;
}
.sdgs-section .sdgs-card .sdgs-info {
  flex-grow: 1;
}
.sdgs-section .sdgs-card .sdgs-info .sdgs-goal-title {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  color: var(--c-black);
}
.sdgs-section .sdgs-card .sdgs-info .sdgs-goal-desc {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  margin: 0;
}
.sdgs-section .sdgs-card .sdgs-card-footer {
  margin-top: 3rem;
}
.sdgs-section .sdgs-card .sdgs-card-footer .sdgs-line {
  display: block;
  width: 3rem;
  height: 1px;
  background: #ddd;
  transition: width 0.6s var(--ease-dynamic), background 0.3s;
}
.sdgs-section .sdgs-card:hover .sdgs-card-inner {
  background: var(--c-white);
  box-shadow: 0 2.5rem 5rem rgba(0, 0, 0, 0.05);
  transform: translateY(-0.8rem);
}
.sdgs-section .sdgs-card:hover .sdgs-logo {
  filter: grayscale(0);
}
.sdgs-section .sdgs-card:hover .sdgs-line {
  width: 100%;
  background: var(--c-red);
}

.sp-section {
  position: relative;
  padding: 10rem 0 12rem;
  background-color: var(--c-white);
  overflow: hidden;
}
.sp-section .sp-bg-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0.02;
}
.sp-section .sp-bg-decor .sp-bg-text {
  font-family: var(--f-sans-condensed);
  font-size: 22vw;
  font-weight: 900;
  color: var(--c-black);
  white-space: nowrap;
  display: block;
}
.sp-section .sp-container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}
.sp-section .sp-header {
  text-align: center;
  margin-bottom: 6rem;
}
.sp-section .sp-header .section-title .en {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 6rem;
  font-weight: 800;
  color: var(--c-black);
  line-height: 0.9;
}
@media (min-width: 768px) {
  .sp-section .sp-header .section-title .en {
    font-size: 8rem;
  }
}
.sp-section .sp-header .section-title .jp {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  letter-spacing: 0.3em;
  margin-top: 1rem;
}
.sp-section .sp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .sp-section .sp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.sp-section .sp-item .sp-link,
.sp-section .sp-item .sp-no-link {
  display: block;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 3rem 2rem;
  border-radius: 0.2rem;
  transition: all 0.4s var(--ease-dynamic);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sp-section .sp-item .sp-link,
  .sp-section .sp-item .sp-no-link {
    padding: 5rem 4rem;
  }
}
.sp-section .sp-item .sp-logo-inner {
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .sp-section .sp-item .sp-logo-inner {
    height: 11rem;
  }
}
.sp-section .sp-item .sp-logo-inner .sp-logo {
  max-width: 90%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform 0.5s var(--ease-dynamic);
}
.sp-section .sp-item .sp-hover-decor {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: hidden;
}
.sp-section .sp-item .sp-hover-decor .sp-line {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--c-red);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease-dynamic);
}
.sp-section .sp-item:hover .sp-link,
.sp-section .sp-item:hover .sp-no-link {
  border-color: #eee;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.05);
  transform: translateY(-0.4rem);
}
.sp-section .sp-item:hover .sp-logo {
  transform: scale(1.06);
}
.sp-section .sp-item:hover .sp-line {
  transform: translateX(0);
}
.sp-section .sp-item .sp-name-text {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #999;
  line-height: 1.4;
}

.vogue-runway {
  background-color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  contain: paint layout;
  content-visibility: auto;
}
.vogue-runway__inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vogue-runway .center-line {
  position: absolute;
  top: -50%;
  left: 50%;
  width: 1px;
  height: 200%;
  background-color: #000000;
  opacity: 0.2;
  transform: translateX(-50%);
  z-index: 0;
}
.vogue-runway .text {
  display: block;
  white-space: nowrap;
  line-height: 1;
  will-change: transform;
}
.vogue-runway .layer-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 100%;
}
.vogue-runway .layer-bg .text {
  font-family: "Oswald", sans-serif;
  font-weight: 800;
  font-size: clamp(8rem, 25vw, 30rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.05em;
  text-align: center;
}
.vogue-runway .layer-fg {
  position: relative;
  z-index: 2;
  mix-blend-mode: multiply;
}
.vogue-runway .layer-fg .text {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(6rem, 18vw, 22rem);
  color: #d31e1a;
  letter-spacing: 0.05em;
}

/* ------------------------
   Variables
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --f-oswald: "Oswald", sans-serif;
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------
   Hero Slider Styles
   ------------------------ */
.hero-slider {
  position: relative;
  width: 100%;
  background-color: var(--c-black);
  margin-bottom: 80px;
  overflow: hidden;
}
.hero-slider .slider-container {
  position: relative;
  width: 100%;
}
.hero-slider .slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.hero-slider .slider-track::-webkit-scrollbar {
  display: none;
}
.hero-slider .slider-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.hero-slider .slider-item {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  scroll-snap-align: start;
  overflow: hidden;
}
.hero-slider .slider-item .img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slider .slider-item .slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.hero-slider .slider-item .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.3));
  pointer-events: none;
}
.hero-slider .slider-controls {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 40px);
  max-width: 200px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-slider .slider-controls {
    bottom: 50px;
    left: 50px;
    max-width: 300px;
  }
}
.hero-slider .progress-bar {
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.hero-slider .progress-bar .progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--c-red);
  transition: width 0.3s ease-out;
}
.hero-slider .slide-counter {
  font-family: var(--f-oswald);
  font-weight: 700;
  color: var(--c-white);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  display: flex;
  align-items: baseline;
  gap: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-slider .slide-counter .current {
  font-size: 3rem;
  line-height: 1;
  color: var(--c-white);
}
.hero-slider .slide-counter .divider {
  font-size: 1.2rem;
  opacity: 0.7;
  color: var(--c-red);
}
.hero-slider .slide-counter .total {
  font-size: 1.4rem;
  opacity: 0.7;
}

/* ------------------------
   Variables (共通変数)
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --c-gray-bg: #f9f9f9;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------
   Animation Settings
   ------------------------ */
.js-anim {
  opacity: 0;
  transition: opacity 0.8s var(--ease-dynamic), transform 0.8s var(--ease-dynamic);
  will-change: opacity, transform;
}
.js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.js-anim[data-anim=fade] {
  transform: translate(-50%, -50%) scale(0.95);
}
.js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.js-anim.is-active[data-anim=fade] {
  opacity: 0.03;
  transform: translate(-50%, -50%) scale(1);
}

/* ------------------------
   Archive Page Styles
   ------------------------ */
.archive-main {
  background-color: var(--c-white);
  padding-bottom: 120px;
  overflow: hidden;
  /* --- 共通コンテナ --- */
}
.archive-main .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.4rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .archive-main .container {
    padding: 0 4rem;
  }
}
.archive-main .archive-header {
  position: relative;
  padding: 140px 0 100px;
  background-color: var(--c-gray-bg);
  margin-bottom: 80px;
  overflow: hidden;
  text-align: center;
}
.archive-main .archive-header__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--f-sans-condensed);
  font-size: 25vw;
  font-weight: 900;
  color: var(--c-black);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.archive-main .archive-header .archive-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.archive-main .archive-header .archive-title .en {
  font-family: var(--f-sans-condensed);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  color: var(--c-black);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.archive-main .archive-header .archive-title .jp {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 1.5rem;
  display: inline-block;
  position: relative;
}
.archive-main .archive-header .archive-title .jp::before, .archive-main .archive-header .archive-title .jp::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--c-red);
  vertical-align: middle;
  margin: 0 15px;
  transform: scaleX(0);
  transition: transform 0.6s var(--ease-dynamic) 0.4s;
}
.archive-main .archive-header .archive-title .jp::before {
  transform-origin: right;
}
.archive-main .archive-header .archive-title .jp::after {
  transform-origin: left;
}
.archive-main .archive-header .archive-title.is-active .jp::before,
.archive-main .archive-header .archive-title.is-active .jp::after {
  transform: scaleX(1);
}
.archive-main .archive-header .archive-desc {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.archive-main .archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 100px;
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}
@media (min-width: 768px) {
  .archive-main .archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .archive-main .archive-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.archive-main .news-card .card-link {
  display: block;
  text-decoration: none;
  color: var(--c-black);
  group: true;
}
.archive-main .news-card .card-visual {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}
.archive-main .news-card .card-visual .visual-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.archive-main .news-card .card-visual .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-dynamic);
}
.archive-main .news-card .card-visual .card-cat {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-sans-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 15px;
  z-index: 2;
  transition: background-color 0.3s;
}
.archive-main .news-card .card-body {
  padding: 0 5px;
}
.archive-main .news-card .card-meta {
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.archive-main .news-card .card-meta .card-date {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-family: var(--f-sans-condensed);
  color: var(--c-black);
}
.archive-main .news-card .card-meta .card-date .day {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--c-red);
}
.archive-main .news-card .card-meta .card-date .month-year {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
}
.archive-main .news-card .card-meta .card-date .month-year .year {
  color: #999;
}
.archive-main .news-card .card-title {
  font-family: var(--f-serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.archive-main .news-card .card-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}
.archive-main .news-card .card-footer .read-more {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #bbb;
  transition: color 0.3s;
}
.archive-main .news-card .card-footer .line {
  flex-grow: 1;
  height: 1px;
  background: #eee;
  position: relative;
  overflow: hidden;
}
.archive-main .news-card .card-footer .line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--c-red);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease-dynamic);
}
.archive-main .news-card:hover .card-img {
  transform: scale(1.1);
}
.archive-main .news-card:hover .card-cat {
  background-color: var(--c-red);
}
.archive-main .news-card:hover .card-title {
  color: var(--c-red);
}
.archive-main .news-card:hover .card-footer .read-more {
  color: var(--c-red);
}
.archive-main .news-card:hover .card-footer .line::after {
  transform: translateX(0);
}
.archive-main .pagination-wrapper {
  margin-top: 80px;
}
.archive-main .pagination-wrapper ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.archive-main .pagination-wrapper ul.page-numbers li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border: 1px solid #eee;
  background: var(--c-white);
  text-decoration: none;
  color: var(--c-black);
  font-family: var(--f-sans-condensed);
  font-weight: 700;
  font-size: 1.4rem;
  transition: all 0.3s;
}
.archive-main .pagination-wrapper ul.page-numbers li .page-numbers.current {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.archive-main .pagination-wrapper ul.page-numbers li .page-numbers:hover:not(.current) {
  background: var(--c-red);
  color: var(--c-white);
  border-color: var(--c-red);
  transform: translateY(-3px);
}
.archive-main .pagination-wrapper ul.page-numbers li .page-numbers.prev, .archive-main .pagination-wrapper ul.page-numbers li .page-numbers.next {
  padding: 0 20px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
.archive-main .pagination-wrapper ul.page-numbers li .page-numbers.prev .arrow, .archive-main .pagination-wrapper ul.page-numbers li .page-numbers.next .arrow {
  margin: 0 5px;
}

/* ------------------------
   Variables
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --c-gray-bg: #f9f9f9;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ------------------------
   Single Page Styles
   ------------------------ */
.single-main {
  background-color: var(--c-white);
  padding-bottom: 120px;
  position: relative;
  /* --- Header --- */
  /* --- Eyecatch --- */
  /* --- Body Layout (Grid) --- */
  /* --- Sidebar (Sticky) --- */
  /* --- Post Content (Block Editor Styles) --- */
  /* --- Bottom Share --- */
  /* --- Related Posts --- */
  /* --- Animation Utils --- */
}
.single-main .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 1001;
  pointer-events: none;
}
.single-main .scroll-progress .bar {
  height: 100%;
  background: var(--c-red);
  width: 0%;
  transition: width 0.1s linear;
}
.single-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .single-main .container {
    padding: 0 40px;
  }
}
.single-main .single-header {
  padding: 120px 0 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.single-main .single-header .header-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.single-main .single-header .header-meta .post-cat {
  font-family: var(--f-sans-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--c-black);
  color: var(--c-white);
  padding: 4px 12px;
  letter-spacing: 0.1em;
}
.single-main .single-header .header-meta .post-date {
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.05em;
}
.single-main .single-header .post-title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  feature-settings: "palt";
}
.single-main .single-header .header-sub {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0.1em;
}
.single-main .single-header .header-sub .author-label {
  display: flex;
  gap: 8px;
}
.single-main .single-header .header-sub .author-label .name {
  color: var(--c-black);
  font-weight: 700;
  border-bottom: 1px solid var(--c-red);
}
.single-main .single-header .header-sub .read-time {
  display: flex;
  align-items: center;
  gap: 5px;
}
.single-main .post-eyecatch {
  width: 100%;
  margin-bottom: 80px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
}
.single-main .post-eyecatch .img-wrapper {
  width: 100%;
  height: 100%;
}
.single-main .post-eyecatch .eyecatch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-main .single-body-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .single-main .single-body-wrapper {
    grid-template-columns: 240px 1fr;
    gap: 80px;
    align-items: start;
  }
}
.single-main .single-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .single-main .single-sidebar {
    display: block;
  }
}
.single-main .single-sidebar .sidebar-sticky {
  position: sticky;
  top: 120px;
}
.single-main .single-sidebar .toc-container {
  margin-bottom: 40px;
}
.single-main .single-sidebar .toc-container .toc-title {
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 5px;
  display: inline-block;
}
.single-main .single-sidebar .toc-container .toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.6;
}
.single-main .single-sidebar .toc-container .toc-list li {
  margin-bottom: 10px;
}
.single-main .single-sidebar .toc-container .toc-list a {
  text-decoration: none;
  color: #666;
  transition: color 0.3s;
}
.single-main .single-sidebar .toc-container .toc-list a:hover {
  color: var(--c-red);
}
.single-main .single-sidebar .toc-container .toc-list li.h3 {
  margin-left: 15px;
  font-size: 1.2rem;
}
.single-main .single-sidebar .sidebar-share .share-label {
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #aaa;
}
.single-main .single-sidebar .sidebar-share .icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 50%;
  color: var(--c-black);
  margin-bottom: 10px;
  transition: all 0.3s;
  cursor: pointer;
  background: #fff;
}
.single-main .single-sidebar .sidebar-share .icon-link:hover {
  background: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.single-main .single-sidebar .sidebar-share .icon-link.copy:hover {
  background: var(--c-red);
  border-color: var(--c-red);
}
.single-main .post-content {
  font-size: 1.6rem;
  line-height: 2;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* --- 基本要素 --- */
  /* 見出し H2 */
  /* 見出し H3 */
  /* 見出し H4 - H6 */
  /* 段落 */
  /* リンク */
  /* --- リスト --- */
  /* --- 引用 (Quote) --- */
  /* --- テーブル (Table) --- */
  /* --- 画像 (Image) --- */
  /* --- ギャラリー (Gallery) --- */
  /* --- ボタン (Buttons) --- */
  /* --- カラム (Columns) --- */
  /* --- コード・整形済みテキスト --- */
  /* --- セパレーター (Separator) --- */
  /* --- 動画・埋め込み (Embeds) --- */
  /* --- カバー (Cover) --- */
}
.single-main .post-content > * {
  margin-bottom: 2em;
}
.single-main .post-content h2 {
  font-family: var(--f-serif);
  font-size: 2.6rem;
  font-weight: 700;
  margin: 60px 0 30px;
  line-height: 1.4;
  position: relative;
  padding-bottom: 15px;
  color: var(--c-black);
}
.single-main .post-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--c-red);
}
.single-main .post-content h3 {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  margin: 50px 0 25px;
  padding-left: 15px;
  border-left: 4px solid var(--c-black);
  line-height: 1.5;
}
.single-main .post-content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 40px 0 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.single-main .post-content h5 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 30px 0 15px;
}
.single-main .post-content p {
  margin-bottom: 2em;
}
.single-main .post-content a {
  color: var(--c-red);
  text-decoration: underline;
  transition: opacity 0.3s;
}
.single-main .post-content a:hover {
  opacity: 0.7;
}
.single-main .post-content ul,
.single-main .post-content ol {
  margin: 30px 0;
  padding-left: 2em;
}
.single-main .post-content ul li,
.single-main .post-content ol li {
  margin-bottom: 0.5em;
}
.single-main .post-content ul ul,
.single-main .post-content ul ol,
.single-main .post-content ol ul,
.single-main .post-content ol ol {
  margin: 10px 0;
}
.single-main .post-content ul {
  list-style: disc;
}
.single-main .post-content ol {
  list-style: decimal;
}
.single-main .post-content blockquote,
.single-main .post-content .wp-block-quote {
  background: var(--c-gray-bg);
  padding: 40px;
  margin: 40px 0;
  border-left: 4px solid var(--c-red);
  font-style: italic;
  color: #555;
  position: relative;
}
.single-main .post-content blockquote cite,
.single-main .post-content .wp-block-quote cite {
  display: block;
  margin-top: 15px;
  font-size: 1.2rem;
  font-style: normal;
  color: #999;
  text-align: right;
  font-family: var(--f-sans-condensed);
  letter-spacing: 0.1em;
}
.single-main .post-content blockquote cite::before,
.single-main .post-content .wp-block-quote cite::before {
  content: "― ";
}
.single-main .post-content .wp-block-table {
  margin: 40px 0;
  overflow-x: auto;
}
.single-main .post-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
.single-main .post-content .wp-block-table table th,
.single-main .post-content .wp-block-table table td {
  padding: 15px;
  border: 1px solid #ddd;
  font-size: 1.4rem;
  line-height: 1.6;
}
.single-main .post-content .wp-block-table table th {
  background-color: #f9f9f9;
  font-weight: 700;
  color: var(--c-black);
  white-space: nowrap;
}
.single-main .post-content .wp-block-table table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: #fcfcfc;
}
.single-main .post-content .wp-block-image {
  margin: 40px 0;
}
.single-main .post-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.single-main .post-content .wp-block-image figcaption {
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  margin-top: 10px;
}
.single-main .post-content .wp-block-image.aligncenter {
  text-align: center;
}
.single-main .post-content .wp-block-image.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
}
.single-main .post-content .wp-block-image.alignwide {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.single-main .post-content .wp-block-gallery {
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}
.single-main .post-content .wp-block-gallery .wp-block-image {
  margin: 0;
}
.single-main .post-content .wp-block-gallery .wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.single-main .post-content .wp-block-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.single-main .post-content .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}
.single-main .post-content .wp-block-buttons.is-content-justification-right {
  justify-content: flex-end;
}
.single-main .post-content .wp-block-button .wp-block-button__link {
  display: inline-block;
  background-color: var(--c-black);
  color: var(--c-white);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--f-sans-condensed);
  letter-spacing: 0.1em;
  transition: all 0.3s var(--ease-dynamic);
  border: 1px solid var(--c-black);
}
.single-main .post-content .wp-block-button .wp-block-button__link:hover {
  background-color: var(--c-red);
  border-color: var(--c-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.single-main .post-content .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  color: var(--c-black);
}
.single-main .post-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: var(--c-black);
  color: var(--c-white);
  border-color: var(--c-black);
}
.single-main .post-content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px 0;
}
.single-main .post-content .wp-block-columns .wp-block-column {
  flex: 1;
  min-width: 280px;
}
@media (max-width: 767px) {
  .single-main .post-content .wp-block-columns {
    flex-direction: column;
  }
}
.single-main .post-content pre,
.single-main .post-content .wp-block-code {
  background: #2d2d2d;
  color: #ccc;
  padding: 20px;
  border-radius: 4px;
  overflow-x: auto;
  font-family: monospace;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 40px 0;
}
.single-main .post-content hr.wp-block-separator {
  border: none;
  border-top: 1px solid #eee;
  margin: 60px 0;
}
.single-main .post-content hr.wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
}
.single-main .post-content hr.wp-block-separator.is-style-dots::before {
  content: "···";
  font-size: 3rem;
  letter-spacing: 1em;
  color: #ccc;
}
.single-main .post-content hr.wp-block-separator.is-style-wide {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.single-main .post-content .wp-block-embed,
.single-main .post-content .wp-block-video {
  margin: 40px 0;
}
.single-main .post-content .wp-block-embed iframe,
.single-main .post-content .wp-block-embed video,
.single-main .post-content .wp-block-video iframe,
.single-main .post-content .wp-block-video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
}
.single-main .post-content .wp-block-cover {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin: 40px 0;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.single-main .post-content .wp-block-cover.has-background-dim::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.single-main .post-content .wp-block-cover .wp-block-cover__inner-container {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.single-main .post-content .wp-block-cover .wp-block-cover__inner-container p,
.single-main .post-content .wp-block-cover .wp-block-cover__inner-container h2,
.single-main .post-content .wp-block-cover .wp-block-cover__inner-container h3 {
  color: #fff;
  margin-bottom: 0;
}
.single-main .bottom-share {
  margin-top: 80px;
  padding: 60px 0;
  border-top: 1px solid #eee;
  text-align: center;
}
.single-main .bottom-share .share-msg {
  font-family: var(--f-sans-condensed);
  font-size: 1.4rem;
  color: var(--c-red);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.single-main .bottom-share .share-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.single-main .bottom-share .share-buttons .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 50px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: var(--f-sans-condensed);
  letter-spacing: 0.1em;
  transition: transform 0.3s;
}
.single-main .bottom-share .share-buttons .share-btn.x {
  background: #000;
}
.single-main .bottom-share .share-buttons .share-btn.fb {
  background: #1877f2;
}
.single-main .bottom-share .share-buttons .share-btn.line {
  background: #06c755;
}
.single-main .bottom-share .share-buttons .share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.single-main .related-area {
  margin-top: 100px;
}
.single-main .related-area .section-head {
  text-align: center;
  margin-bottom: 40px;
}
.single-main .related-area .section-head .en {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-black);
}
.single-main .related-area .section-head .jp {
  display: block;
  font-size: 1.2rem;
  color: #999;
  margin-top: 5px;
}
.single-main .related-area .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .single-main .related-area .related-grid {
    grid-template-columns: 1fr;
  }
}
.single-main .related-area .related-grid .related-card {
  text-decoration: none;
  color: var(--c-black);
  group: true;
}
.single-main .related-area .related-grid .related-card .card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}
.single-main .related-area .related-grid .related-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.single-main .related-area .related-grid .related-card .card-thumb .no-img {
  width: 100%;
  height: 100%;
  background: #eee;
  display: grid;
  place-items: center;
  color: #aaa;
}
.single-main .related-area .related-grid .related-card .card-date {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: 1.2rem;
  color: #aaa;
  margin-bottom: 5px;
}
.single-main .related-area .related-grid .related-card .card-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  transition: color 0.3s;
}
.single-main .related-area .related-grid .related-card:hover .card-thumb img {
  transform: scale(1.1);
}
.single-main .related-area .related-grid .related-card:hover .card-title {
  color: var(--c-red);
}
.single-main .js-anim {
  opacity: 0;
  transition: 0.8s var(--ease-dynamic);
}
.single-main .js-anim[data-anim=fade-up] {
  transform: translateY(30px);
}
.single-main .js-anim[data-anim=text-reveal] {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transition: 1s var(--ease-dynamic);
}
.single-main .js-anim[data-anim=curtain-reveal] {
  opacity: 1;
  overflow: hidden;
}
.single-main .js-anim[data-anim=curtain-reveal]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-red);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s 0.2s var(--ease-dynamic);
  z-index: 2;
}
.single-main .js-anim[data-anim=curtain-reveal] .img-wrapper {
  opacity: 0;
  transition: opacity 0s 0.8s;
}
.single-main .js-anim.is-active {
  opacity: 1;
  transform: translateY(0);
}
.single-main .js-anim.is-active[data-anim=text-reveal] {
  clip-path: inset(0 0 0 0);
}
.single-main .js-anim.is-active[data-anim=curtain-reveal]::after {
  transform: scaleX(0);
}
.single-main .js-anim.is-active[data-anim=curtain-reveal] .img-wrapper {
  opacity: 1;
}

/* ------------------------
   Variables
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --c-gray-bg: #f9f9f9;
  --c-border: #e0e0e0;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-main {
  background-color: var(--c-white);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  /* 共通コンテナ */
  /* 背景装飾 */
  /* --- Page Header --- */
  /* --- Contact Form Section Style --- */
  /* --- Animation Util --- */
}
.contact-main .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .contact-main .container {
    padding: 0 40px;
  }
}
.contact-main .contact-bg-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-sans-condensed);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.contact-main .page-header {
  padding: 140px 0 80px;
  text-align: center;
}
.contact-main .page-header .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.contact-main .page-header .page-title .en {
  font-family: var(--f-sans-condensed);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--c-black);
}
.contact-main .page-header .page-title .jp {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact-main .page-header .header-lead {
  font-size: 1.5rem;
  line-height: 2;
  color: #333;
}
.contact-main .contact-form-section {
  margin-bottom: 80px;
}
.contact-main .contact-form-section .form-header {
  text-align: center;
  margin-bottom: 50px;
}
.contact-main .contact-form-section .form-header .form-title {
  font-family: var(--f-sans-condensed);
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.contact-main .contact-form-section .form-header .form-note {
  font-size: 1.3rem;
  color: var(--c-red);
  line-height: 1.6;
}
.contact-main .contact-form-section .cf7-wrapper p {
  margin-bottom: 0;
}
.contact-main .js-anim {
  opacity: 0;
  transition: opacity 0.8s var(--ease-dynamic), transform 0.8s var(--ease-dynamic);
}
.contact-main .js-anim[data-anim=fade] {
  transform: translateX(-50%) scale(0.95);
}
.contact-main .js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.contact-main .js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.contact-main .js-anim.is-active[data-anim=fade] {
  opacity: 0.02;
  transform: translateX(-50%) scale(1);
}

/* ----------------------------------
   Form Styles (Optimized & SP Fixed 320px)
---------------------------------- */
/* 変数定義 */
/* --- Form Container --- */
.form_container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  will-change: transform, opacity;
  contain: layout;
}
.form_container .section_sub_title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: #111;
}
.form_container .form_intro {
  text-align: center;
  margin-bottom: 50px;
  color: #666;
  font-size: 1.4rem;
  line-height: 1.8;
}
.form_container .form_intro .required {
  color: #c90017;
  font-weight: bold;
}

/* 表示・非表示切り替え用ブロック */
.form_block {
  display: block;
  contain: content;
}
.form_block.is-active {
  display: block;
  animation: fadeIn 0.6s ease-out;
}

/* --- CF7 Structure Overrides --- */
.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* フォームセクション (グルーピング) */
.form-section {
  margin-bottom: 60px;
  contain: content;
}
.form-section .form-section-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  border-bottom: 2px solid #c90017;
  padding-bottom: 10px;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}
.form-section .form-note {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 20px;
}

/* グリッドレイアウト */
.form-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}
.form-grid.col-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .form-grid.col-2 {
    grid-template-columns: 1fr;
  }
}
.form-grid.col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 768px) {
  .form-grid.col-3 {
    grid-template-columns: 1fr;
  }
}

/* 各入力グループ */
.form-group {
  margin-bottom: 24px;
  contain: layout;
  /* 入力フィールド共通 */
  /* テキストエリア */
  /* セレクトボックス */
  /* ファイルアップロードボックス */
}
.form-group label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
  letter-spacing: 0.05em;
}
.form-group label .required {
  color: #c90017;
  font-size: 1.2rem;
  margin-left: 4px;
}
.form-group input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.6rem;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #000;
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}
.form-group input:not([type=submit]):not([type=checkbox]):not([type=radio])::placeholder,
.form-group textarea::placeholder,
.form-group select::placeholder {
  color: #ccc;
}
.form-group textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group.file-upload-box {
  overflow: hidden;
  width: 100%;
}
.form-group.file-upload-box input[type=file] {
  padding: 30px 20px;
  background: #fafafa;
  border: 2px dashed #ccc;
  text-align: center;
  cursor: pointer;
  height: auto;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
}
@media (max-width: 600px) {
  .form-group.file-upload-box input[type=file] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 15px 5px;
    font-size: 1.1rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.form-group.file-upload-box input[type=file]:hover {
  background: #f0f0f0;
  border-color: #999;
}

/* フッターエリア（同意・送信） */
.form-footer {
  text-align: center;
  margin-top: 40px;
  /* 送信ボタン */
}
.form-footer .wpcf7-acceptance-wrapper {
  margin-bottom: 40px;
}
.form-footer .wpcf7-acceptance-wrapper label {
  font-size: 1.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.form-footer .wpcf7-acceptance-wrapper label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #c90017;
  margin: 0;
}
.form-footer .wpcf7-acceptance-wrapper a {
  color: #c90017;
  text-decoration: underline;
}
.form-footer .wpcf7-acceptance-wrapper a:hover {
  text-decoration: none;
}
.form-footer .wpcf7-submit {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background: #111;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  border-radius: 99px;
  cursor: pointer;
  letter-spacing: 0.1em;
  transition: background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}
.form-footer .wpcf7-submit:hover {
  background: #c90017;
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(201, 0, 23, 0.2);
}
.form-footer .wpcf7-submit:disabled {
  background: #ccc;
  transform: none;
  box-shadow: none;
}

/* Turnstile */
.wpcf7-turnstile {
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
}

/* Spinner Hidden */
.wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* --- Response Output --- */
.wpcf7-response-output {
  margin: 40px 0 0 !important;
  padding: 24px !important;
  border: none !important;
  border-radius: 12px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInResponse 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok {
  display: block !important;
  background-color: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0 !important;
}
.wpcf7-response-output.wpcf7-display-none.wpcf7-mail-sent-ok::before {
  content: "✓";
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
  color: #22c55e;
}
.wpcf7-response-output.wpcf7-validation-errors, .wpcf7-response-output.wpcf7-acceptance-missing {
  background-color: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca !important;
}
.wpcf7-response-output.wpcf7-validation-errors::before, .wpcf7-response-output.wpcf7-acceptance-missing::before {
  content: "!";
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 1.4rem;
}
.wpcf7-response-output.wpcf7-spam-blocked, .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a !important;
}

@keyframes fadeInResponse {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------------------
   Variables
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --c-gray-bg: #f9f9f9;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

.privacy-main {
  background-color: var(--c-white);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  /* 共通コンテナ */
  /* 背景装飾 */
  /* --- Page Header --- */
  /* --- Content Style --- */
  /* --- Animation Util --- */
}
.privacy-main .container {
  max-width: 800px; /* 読みやすさ重視の幅 */
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .privacy-main .container {
    padding: 0 40px;
  }
}
.privacy-main .privacy-bg-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-sans-condensed);
  font-size: 22vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.privacy-main .page-header {
  padding: 140px 0 80px;
  text-align: center;
}
.privacy-main .page-header .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.privacy-main .page-header .page-title .en {
  font-family: var(--f-sans-condensed);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--c-black);
  letter-spacing: 0.02em;
}
.privacy-main .page-header .page-title .jp {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.privacy-main .privacy-content {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 2;
  font-size: 1.5rem;
  /* リード文 */
  /* 各セクション */
  /* 最終更新日 */
}
.privacy-main .privacy-content .lead-text {
  font-weight: 500;
  margin-bottom: 60px;
}
.privacy-main .privacy-content .policy-section {
  margin-bottom: 50px;
}
.privacy-main .privacy-content .policy-section h2 {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 4px solid var(--c-red);
  line-height: 1.4;
}
.privacy-main .privacy-content .policy-section p {
  margin-bottom: 0;
  text-align: justify;
}
.privacy-main .privacy-content .policy-updated {
  text-align: right;
  font-size: 1.2rem;
  color: #888;
  margin-top: 60px;
  font-family: var(--f-serif);
}
.privacy-main .js-anim {
  opacity: 0;
  transition: opacity 0.8s var(--ease-dynamic), transform 0.8s var(--ease-dynamic);
}
.privacy-main .js-anim[data-anim=fade] {
  transform: translateX(-50%) scale(0.95);
}
.privacy-main .js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.privacy-main .js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.privacy-main .js-anim.is-active[data-anim=fade] {
  opacity: 0.02;
  transform: translateX(-50%) scale(1);
}

/* ----------------------------------
   Variables
---------------------------------- */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------
   404 Page Styles (2026 Edition)
---------------------------------- */
#page_404 {
  background-color: var(--c-white);
  color: var(--c-black);
  min-height: 80vh; /* フッターと被らないよう確保 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  /* Performance: レイアウト封じ込め */
  contain: layout;
  /* --- Background Decoration --- */
  /* --- Container --- */
  /* --- Content Typography --- */
  /* --- Runway Line (Divider) --- */
  /* --- Action Button --- */
  /* --- Animations --- */
}
#page_404 .error-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-sans-condensed);
  font-size: 35vw; /* 画面いっぱいの巨大文字 */
  font-weight: 900;
  line-height: 0.8;
  color: rgba(0, 0, 0, 0.02); /* 薄いグレー */
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  /* 0だけ赤くするアクセント */
}
#page_404 .error-bg-text .red {
  color: rgba(211, 30, 26, 0.03);
}
#page_404 .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
  text-align: center;
}
#page_404 .error-title {
  margin-bottom: 30px;
}
#page_404 .error-title .en {
  display: block;
  font-family: var(--f-sans-condensed);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
#page_404 .error-title .jp {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.1em;
}
#page_404 .error-desc {
  font-size: 1.5rem;
  line-height: 2;
  color: #666;
  margin-bottom: 50px;
  font-feature-settings: "palt";
}
#page_404 .runway-line {
  width: 2px;
  height: 80px;
  background-color: var(--c-red);
  margin: 0 auto 50px;
  transform-origin: top;
}
#page_404 .error-actions .btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 240px;
  height: 60px;
  background-color: var(--c-black);
  color: var(--c-white);
  text-decoration: none;
  border-radius: 50px;
  font-family: var(--f-sans-condensed);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--ease-dynamic);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#page_404 .error-actions .btn-home .arrow {
  transition: transform 0.4s var(--ease-dynamic);
}
#page_404 .error-actions .btn-home:hover {
  background-color: var(--c-red);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(211, 30, 26, 0.2);
}
#page_404 .error-actions .btn-home:hover .arrow {
  transform: translateX(5px);
}
#page_404 .js-anim {
  opacity: 0;
  transition: 1s var(--ease-dynamic);
  will-change: opacity, transform;
}
#page_404 .js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
#page_404 .js-anim[data-anim=scale-x] {
  opacity: 1; /* ラインは不透明 */
  transform: scaleY(0); /* 縦に伸びる */
}
#page_404 .js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
#page_404 .js-anim.is-active[data-anim=scale-x] {
  transform: scaleY(1);
}

/* ------------------------
   Variables
   ------------------------ */
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-red: #d31e1a;
  --c-gray-bg: #f9f9f9;
  --f-serif: "Noto Serif JP", serif;
  --f-sans-condensed: "Oswald", sans-serif;
  --ease-dynamic: cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-main {
  background-color: var(--c-white);
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  /* 共通コンテナ */
  /* 背景装飾 */
  /* --- Page Header --- */
  /* --- Select Filter (New) --- */
  /* --- FAQ Section (Animation Support) --- */
  /* --- Accordion Item --- */
  /* --- Footer CTA --- */
  /* --- Animation Util --- */
}
.faq-main .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .faq-main .container {
    padding: 0 40px;
  }
}
.faq-main .faq-bg-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-sans-condensed);
  font-size: 25vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.faq-main .faq-header {
  padding: 140px 0 60px;
  text-align: center;
}
.faq-main .faq-header .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-main .faq-header .page-title .en {
  font-family: var(--f-sans-condensed);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.faq-main .faq-header .page-title .jp {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--c-red);
  font-weight: 500;
  letter-spacing: 0.1em;
}
.faq-main .faq-filter {
  position: sticky;
  top: 20px;
  z-index: 10;
  margin-bottom: 80px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.faq-main .faq-filter .select-wrapper {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}
.faq-main .faq-filter .select-wrapper select {
  width: 100%;
  padding: 15px 50px 15px 25px;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--f-sans-condensed);
  color: var(--c-black);
  appearance: none;
  cursor: pointer;
  outline: none;
}
.faq-main .faq-filter .select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid var(--c-black);
  border-right: 2px solid var(--c-black);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  transition: transform 0.3s;
}
.faq-main .faq-filter .select-wrapper:focus-within {
  border-color: var(--c-black);
}
.faq-main .faq-filter .select-wrapper:focus-within .select-arrow {
  transform: translateY(-20%) rotate(225deg);
}
.faq-main .faq-section {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
  display: none;
}
.faq-main .faq-section.is-active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
@noscript {
  .faq-main .faq-section {
    display: block !important;
    opacity: 1;
    transform: none;
  }
}
.faq-main .faq-section .section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.faq-main .faq-section .section-header .cat-title {
  font-family: var(--f-sans-condensed);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.faq-main .faq-section .section-header .line {
  flex-grow: 1;
  height: 1px;
  background: var(--c-black);
  opacity: 0.2;
}
.faq-main .faq-item {
  border-bottom: 1px solid #eee;
}
.faq-main .faq-item[open] .toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-main .faq-item[open] .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-main .faq-item .faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  transition: color 0.3s;
}
.faq-main .faq-item .faq-q::-webkit-details-marker {
  display: none;
}
.faq-main .faq-item .faq-q .q-label {
  font-family: var(--f-sans-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-red);
  line-height: 1;
  flex-shrink: 0;
}
.faq-main .faq-item .faq-q .q-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  flex-grow: 1;
  padding-top: 2px;
}
.faq-main .faq-item .faq-q .toggle-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 5px;
}
.faq-main .faq-item .faq-q .toggle-icon::before, .faq-main .faq-item .faq-q .toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-black);
  transition: transform 0.3s var(--ease-dynamic);
}
.faq-main .faq-item .faq-q .toggle-icon::before {
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
}
.faq-main .faq-item .faq-q .toggle-icon::after {
  width: 2px;
  height: 100%;
  transform: translate(-50%, -50%);
}
.faq-main .faq-item .faq-q:hover .q-text {
  color: var(--c-red);
}
.faq-main .faq-item .faq-a-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-dynamic);
}
.faq-main .faq-item[open] .faq-a-wrapper {
  grid-template-rows: 1fr;
  padding-bottom: 25px;
}
.faq-main .faq-item .faq-a {
  overflow: hidden;
}
.faq-main .faq-item .faq-a .a-inner {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--c-gray-bg);
  border-radius: 8px;
}
.faq-main .faq-item .faq-a .a-inner .a-label {
  font-family: var(--f-sans-condensed);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-black);
  line-height: 1;
  flex-shrink: 0;
}
.faq-main .faq-item .faq-a .a-inner .a-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555;
}
.faq-main .faq-footer {
  margin-top: 120px;
  text-align: center;
  background: #fff;
  border: 1px solid #eee;
  padding: 60px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.faq-main .faq-footer .footer-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.faq-main .faq-footer .footer-desc {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}
.faq-main .faq-footer .footer-btns {
  display: flex;
  justify-content: center;
}
.faq-main .faq-footer .footer-btns .btn-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 60px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--f-sans-condensed);
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  transition: all 0.3s var(--ease-dynamic);
  background: var(--c-black);
  color: var(--c-white);
}
.faq-main .faq-footer .footer-btns .btn-action:hover {
  background: var(--c-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(211, 30, 26, 0.2);
}
.faq-main .js-anim {
  opacity: 0;
  transition: opacity 0.8s var(--ease-dynamic), transform 0.8s var(--ease-dynamic);
}
.faq-main .js-anim[data-anim=fade] {
  transform: translateX(-50%) scale(0.95);
}
.faq-main .js-anim[data-anim=fade-up] {
  transform: translateY(40px);
}
.faq-main .js-anim.is-active {
  opacity: 1;
  transform: none;
  transition-delay: var(--delay, 0s);
}
.faq-main .js-anim.is-active[data-anim=fade] {
  opacity: 0.02;
  transform: translateX(-50%) scale(1);
}

/* --- 3. メインコンテンツのスタイル --- */
html {
  background-color: #ffffff; /* #111から変更: ホワイトベース */
  color: #000000; /* 文字色を黒に */
  font-size: clamp(55.5%, 1.2vw, 62.5%);
  height: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Serif JP", sans-serif; /* sansのsは大文字推奨 */
  font-weight: normal;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em; /* 少し詰め気味の方が今っぽいです */
  color: #000;
}

main {
  padding-top: 80px; /* ヘッダーの高さに合わせる */
}