@charset "UTF-8";
/* ==========================================================================
   Font Variables
========================================================================== */
/* ==========================================================================
   Base & Parallax
========================================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
  color: #fff;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow-x: clip;
  width: 100%;
}

.c-sec-title__sub {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 400;
}

.p-contents__desc {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 400;
}

.c-sec-title__main {
  font-family: "helvetica-neue-lt-pro-cond", sans-serif;
  font-weight: 900;
}

/* 共通インナー幅 */
.l-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 960px) {
  .l-inner {
    max-width: 100%;
    padding: 0 8%;
  }
}

/* 共通セクション余白 */
.l-section {
  padding: 120px 0;
}

/* 共通タイトル */
.c-title {
  font-size: 40px;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

/* 共通ボタン */
.c-btn {
  display: inline-block;
  background-color: #8b0000;
  color: #fff;
  padding: 15px 40px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s;
}
.c-btn:hover {
  background-color: #580000;
}

/* 共通アニメーション */
.fade-up {
  opacity: 0;
  filter: blur(15px);
  transition: opacity 1s ease-out, filter 1s ease-out;
}
.fade-up.is-active {
  opacity: 1;
  filter: blur(0);
}

/* ==========================================================================
   共通レイアウト：2カラム・タイトル追従（テレコ対応）
========================================================================== */
.l-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}
.l-split__sticky {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
}
.l-split__sticky_r {
  width: 25%;
  position: -webkit-sticky;
  position: sticky;
  top: 200px;
}
.l-split__content {
  width: 75%;
  max-width: 930px;
}
.l-split--reverse {
  flex-direction: row-reverse;
}
.l-split--reverse .l-split__sticky {
  text-align: right;
}
@media screen and (max-width: 960px) {
  .l-split--reverse .l-split__sticky {
    text-align: center;
  }
}

/* ==========================================================================
   Smooth Scroll 
========================================================================== */
html {
  scroll-behavior: smooth;
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  html {
    font-size: 16px;
  }
}

[id] {
  scroll-margin-top: 0;
}
@media screen and (max-width: 960px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

#introduction {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 960px) {
  #introduction {
    scroll-margin-top: 60px;
  }
}

/* ==========================================================================
   Background Video
========================================================================== */
.l-bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: -1;
  overflow: hidden;
  background-color: #000;
}
.l-bg-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.4) blur(2px);
}

/* ==========================================================================
   Utility (PC/SP 表示切り替え)
========================================================================== */
/* PCのみ表示（スマホでは消す） */
.pc {
  display: block !important;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none !important;
  }
}

/* スマホのみ表示（PCでは消す） */
.sp {
  display: none !important;
}
@media screen and (max-width: 960px) {
  .sp {
    display: block !important;
  }
}

/* ==========================================================================
   Header
========================================================================== */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* 💡 ハンバーガーボタンのスタイル */
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  padding: 15px 0 0 30px;
  height: 100px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-header__inner {
    padding: 10px 0 0 15px;
    height: 70px;
  }
}
.l-header__logo {
  margin: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.l-header__logo.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.l-header__logo.is-always-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: none;
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  height: 70px;
  width: auto;
}
@media screen and (max-width: 960px) {
  .l-header__logo a img {
    height: 50px;
  }
}
.l-header__nav {
  margin: 0 30px 0 auto;
}
@media screen and (max-width: 960px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    margin: 0;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .l-header__nav.is-open {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__menu {
  display: flex;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .l-header__menu {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.l-header__menu li {
  margin: 0 10px;
}
@media screen and (max-width: 960px) {
  .l-header__menu li {
    margin: 0;
  }
}
.l-header__menu li:nth-child(1) a .en {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.l-header__menu li:nth-child(2) a .en {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.l-header__menu li:nth-child(3) a .en {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.l-header__menu li:nth-child(4) a .en {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
.l-header__menu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.l-header__menu li a:hover {
  color: #b28a04;
}
.l-header__menu li a:hover .ja {
  color: #b28a04;
}
.l-header__menu li a .en {
  font-family: "p22-typewriter", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  display: inline-block;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: headerTypeWipe 0.6s steps(10, end) forwards;
          animation: headerTypeWipe 0.6s steps(10, end) forwards;
}
@media screen and (max-width: 960px) {
  .l-header__menu li a .en {
    font-size: 24px;
    -webkit-clip-path: none;
            clip-path: none;
    -webkit-animation: none;
            animation: none;
  }
}
.l-header__menu li a .ja {
  font-size: 10px;
  margin-top: 5px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.3s;
}
.l-header__btn {
  position: absolute;
  top: clamp(40px, 5vw, 70px);
  right: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
@media screen and (max-width: 960px) {
  .l-header__btn {
    position: fixed;
    top: auto;
    bottom: clamp(10px, 4vw, 20px);
    right: 0;
    z-index: 110;
  }
}
.l-header__btn.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 960px) {
  .l-header__hamburger {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    z-index: 101;
  }
  .l-header__hamburger span {
    display: block;
    position: absolute;
    left: 7px;
    width: 30px !important;
    height: 2px !important;
    background-color: #fff !important;
    transition: all 0.3s ease-in-out;
  }
  .l-header__hamburger span:nth-child(1) {
    top: 11px;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 21px;
  }
  .l-header__hamburger span:nth-child(3) {
    top: 31px;
  }
  .l-header__hamburger.is-active span {
    background-color: #b28a04 !important;
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }
}

.c-btn-header {
  display: block;
  position: relative;
}
.c-btn-header:active {
  transform: scale(0.95);
}
.c-btn-header:hover .c-btn-header__img--default {
  opacity: 0;
}
.c-btn-header:hover .c-btn-header__img--hover {
  opacity: 1;
}
.c-btn-header img {
  display: block;
  height: clamp(60px, 8vw, 100px);
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.4));
}
.c-btn-header__img {
  transition: opacity 0.8s ease;
}
.c-btn-header__img--default {
  opacity: 1;
}
.c-btn-header__img--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.p-small {
  font-size: 12px;
  margin-bottom: 50px;
  line-height: 1.5rem;
}

.p-small-r {
  font-size: 12px;
  margin-bottom: 50px;
  line-height: 1.5rem;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-small-r {
    line-height: 1.2rem;
    font-size: 11px;
    margin-top: -15px;
  }
}

.p-small-contents {
  color: #000;
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.5rem;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .p-small-contents {
    line-height: 1.2rem;
    font-size: 11px;
    margin-top: 10px;
  }
}

/* ==========================================================================
   KV
========================================================================== */
.l-kv {
  position: relative;
  z-index: 20;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1920/1080;
  background-color: transparent;
}
@media screen and (max-width: 960px) {
  .l-kv {
    aspect-ratio: 750/1334;
  }
}
.l-kv__layer {
  position: absolute;
  line-height: 0;
  opacity: 0;
  -webkit-animation-fill-mode: forwards !important;
          animation-fill-mode: forwards !important;
}
.l-kv__layer img {
  width: 100%;
  height: auto;
  display: block;
}
.l-kv__layer--bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: kvBgFadeIn 1.2s ease-out;
          animation: kvBgFadeIn 1.2s ease-out;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.l-kv__layer--bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-kv__layer--illust01 {
  top: 0;
  left: 5%;
  width: 23%;
  -webkit-animation: kvFadeInBlur 0.6s ease-out;
          animation: kvFadeInBlur 0.6s ease-out;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
@media screen and (max-width: 960px) {
  .l-kv__layer--illust01 {
    top: 6%;
    left: 2%;
    width: 50%;
  }
}
.l-kv__layer--illust02 {
  top: 3.5%;
  left: 28.1%;
  width: 18%;
  -webkit-animation: kvFadeInBlur 0.6s ease-out;
          animation: kvFadeInBlur 0.6s ease-out;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media screen and (max-width: 960px) {
  .l-kv__layer--illust02 {
    top: 6%;
    right: 5%;
    left: auto;
    width: 43%;
  }
}
.l-kv__layer--illust03 {
  top: 46%;
  left: 27.8%;
  width: 18.8%;
  -webkit-animation: kvFadeInBlur 0.6s ease-out;
          animation: kvFadeInBlur 0.6s ease-out;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@media screen and (max-width: 960px) {
  .l-kv__layer--illust03 {
    top: auto;
    bottom: 21%;
    right: 6.9%;
    left: auto;
    width: 41%;
  }
}
.l-kv__layer--logo {
  top: 28%;
  right: 13%;
  width: 33%;
  -webkit-animation: kvMoyaIn 1.2s ease-out;
          animation: kvMoyaIn 1.2s ease-out;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
@media screen and (max-width: 960px) {
  .l-kv__layer--logo {
    top: 41%;
    right: 4%;
    width: 40%;
  }
}
.l-kv__layer--info {
  top: 70%;
  right: 15.4%;
  width: 28%;
  -webkit-animation: kvMoyaIn 1.2s ease-out;
          animation: kvMoyaIn 1.2s ease-out;
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}
@media screen and (max-width: 960px) {
  .l-kv__layer--info {
    top: auto;
    bottom: 7%;
    right: auto;
    left: 6%;
    width: 51%;
  }
}
.l-kv__scroll {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-kv__scroll {
    bottom: -20px;
    left: auto;
    right: 0;
  }
}
.l-kv__scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.6);
  margin: 10px auto 0;
  -webkit-animation: kvScrollLines 2s infinite ease-in-out;
          animation: kvScrollLines 2s infinite ease-in-out;
}
.l-kv__logo-left {
  position: absolute;
  top: clamp(10px, 1vw, 30px);
  left: clamp(10px, 3vw, 20px);
  z-index: 100;
  width: clamp(20px, 8vw, 50px);
}
.l-kv__logo-left a {
  display: block;
}
.l-kv__logo-left a img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   KV専用アニメーション
========================================================================== */
@-webkit-keyframes kvBgFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes kvBgFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@-webkit-keyframes kvFadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes kvFadeInBlur {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@-webkit-keyframes kvMoyaIn {
  0% {
    opacity: 0;
    filter: blur(25px) brightness(0.5);
  }
  40% {
    opacity: 0.6;
    filter: blur(10px) brightness(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}
@keyframes kvMoyaIn {
  0% {
    opacity: 0;
    filter: blur(25px) brightness(0.5);
  }
  40% {
    opacity: 0.6;
    filter: blur(10px) brightness(1.3);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
  }
}
@-webkit-keyframes headerTypeWipe {
  0% {
    /* 右側を100%切り抜く（見えない状態） */
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    /* 切り抜きを0にする（全て見える状態） */
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes headerTypeWipe {
  0% {
    /* 右側を100%切り抜く（見えない状態） */
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    /* 切り抜きを0にする（全て見える状態） */
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@-webkit-keyframes kvScrollLines {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
@keyframes kvScrollLines {
  0% {
    transform-origin: top;
    transform: scaleY(0);
  }
  45% {
    transform-origin: top;
    transform: scaleY(1);
  }
  55% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}
/* ==========================================================================
   Components (共通パーツ)
========================================================================== */
/* --- 1. セクションタイトル共通 --- */
.c-sec-title__main {
  font-family: "p22-typewriter", sans-serif;
  font-size: clamp(40px, 4vw, 60px);
  letter-spacing: 0.01em;
  margin: 0;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  position: relative;
  padding-right: 15px;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.c-sec-title__main .gold {
  color: #b28a04;
}
.c-sec-title__main.is-active {
  -webkit-animation: typing 1.2s steps(10) forwards;
          animation: typing 1.2s steps(10) forwards;
}
.c-sec-title__main.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  width: 2px;
  height: 80%;
  background-color: #b28a04;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  -webkit-animation: blink 0.8s infinite;
          animation: blink 0.8s infinite;
}
.c-sec-title__sub {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.2em;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 1.2s, transform 0.5s ease 1.2s;
}
@media screen and (max-width: 960px) {
  .c-sec-title__sub {
    font-size: 0.9rem;
    margin-top: 0;
  }
}
.c-sec-title__main.is-active + .c-sec-title__sub {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Keyframes (タイプライター用アニメーション)
========================================================================== */
@-webkit-keyframes typing {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* 隠していた部分を0%（全表示）にする */
  }
}
@keyframes typing {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0); /* 隠していた部分を0%（全表示）にする */
  }
}
@-webkit-keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ==========================================================================
   Keyframes (タイプライター＆グリッチ用アニメーション)
========================================================================== */
@keyframes typing {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* 15秒ループ */
@-webkit-keyframes glitch-anim {
  0%, 14.5%, 15.5%, 44.8%, 45.4%, 74%, 76%, 91.5%, 92.5%, 100% {
    text-transform: uppercase;
    transform: skew(0) translateX(0);
    filter: blur(0);
  }
  15% {
    text-transform: lowercase;
    transform: skew(-2deg) translateX(-1px);
    filter: blur(1.5px);
  }
  45% {
    text-transform: lowercase;
    transform: skew(3deg) translateX(1px);
    filter: blur(3px);
  }
  45.1% {
    text-transform: uppercase;
    transform: skew(-2deg) translateX(-1px);
    filter: blur(5px);
  }
  45.2% {
    text-transform: lowercase;
    transform: skew(2deg) translateX(1px);
    filter: blur(3px);
  }
  75% {
    text-transform: uppercase;
    transform: skew(0) translateX(0);
    filter: blur(3px);
  }
  92% {
    text-transform: lowercase;
    transform: skew(-2deg);
    filter: blur(5px);
  }
}
@keyframes glitch-anim {
  0%, 14.5%, 15.5%, 44.8%, 45.4%, 74%, 76%, 91.5%, 92.5%, 100% {
    text-transform: uppercase;
    transform: skew(0) translateX(0);
    filter: blur(0);
  }
  15% {
    text-transform: lowercase;
    transform: skew(-2deg) translateX(-1px);
    filter: blur(1.5px);
  }
  45% {
    text-transform: lowercase;
    transform: skew(3deg) translateX(1px);
    filter: blur(3px);
  }
  45.1% {
    text-transform: uppercase;
    transform: skew(-2deg) translateX(-1px);
    filter: blur(5px);
  }
  45.2% {
    text-transform: lowercase;
    transform: skew(2deg) translateX(1px);
    filter: blur(3px);
  }
  75% {
    text-transform: uppercase;
    transform: skew(0) translateX(0);
    filter: blur(3px);
  }
  92% {
    text-transform: lowercase;
    transform: skew(-2deg);
    filter: blur(5px);
  }
}
/* --- 2. ボタン共通 (ベース) --- */
.c-btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  box-sizing: border-box;
}
.c-btn::before {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: #9e803d;
  transition: transform 0.3s ease;
}
.c-btn::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 50%;
  width: 14px;
  height: 1px;
  background-color: #9e803d;
  transform-origin: right center;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .c-btn {
    max-width: 280px !important;
  }
  .c-btn::before {
    right: -15px;
    width: 40px;
  }
  .c-btn::after {
    right: -15px;
  }
}
.c-btn:hover::before {
  transform: translateY(-50%) translateX(10px);
}
.c-btn:hover::after {
  transform: translateY(-50%) translateX(10px) rotate(45deg);
}
.c-btn.is-disabled {
  pointer-events: none;
  opacity: 0.3;
  filter: grayscale(100%);
}
.c-btn--red {
  background-color: unset;
  max-width: 300px;
  padding: 20px 40px;
  background-image: url("../img/grange_red_s.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .c-btn--red {
    padding: 15px 20px;
  }
}
.c-btn--red:hover {
  opacity: 0.7;
  background-color: unset;
}
.c-btn--portal {
  background-color: unset;
  max-width: 550px;
  padding: 10px 40px;
  background-image: url("../img/grange_red_s.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin: 20px auto;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 768px) {
  .c-btn--portal {
    padding: 15px 20px;
    line-height: 1.5;
  }
}
.c-btn--portal:hover {
  opacity: 0.7;
  background-color: unset;
}
.c-btn--outline {
  background-color: transparent;
  border: 1px solid #9e803d;
  max-width: 200px;
}
.c-btn--outline:hover {
  background-color: rgba(158, 128, 61, 0.1);
}
.c-btn--contact {
  background-color: transparent;
  border: 1px solid #9e803d;
  max-width: 280px;
  padding: 20px 0;
}
.c-btn--contact::before, .c-btn--contact::after {
  background-color: #9e803d;
}
.c-btn--contact:hover {
  background-color: rgba(158, 128, 61, 0.1);
}
.c-btn--gold {
  background-color: transparent;
  background-image: url(../img/grange_gold.png);
  background-size: cover;
  max-width: 350px;
  padding: 20px 0;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.c-btn--gold:hover {
  opacity: 0.7;
  background-color: unset;
}
.c-btn--btn-before {
  pointer-events: none;
  opacity: 0.3;
  filter: grayscale(100%);
}
.c-btn--back {
  padding-left: 1.5em;
  padding-right: 1.5em;
  background-color: transparent;
  border: 1px solid #9e803d;
  max-width: 250px;
}
.c-btn--back:hover {
  background-color: rgba(158, 128, 61, 0.1);
}
.c-btn--back::before {
  right: auto;
  left: -30px;
  width: 70px;
}
.c-btn--back::after {
  right: auto;
  left: -30px;
  transform-origin: left center;
  transform: translateY(-50%) rotate(-45deg);
}
.c-btn--back:hover::before {
  transform: translateY(50%) translateX(-10px);
}
.c-btn--back:hover::after {
  transform: translateY(50%) translateX(-10px) rotate(-45deg);
}
@media (max-width: 768px) {
  .c-btn--back {
    max-width: 250px !important;
  }
  .c-btn--back::before {
    right: auto !important;
    left: -30px;
    width: 70px;
  }
  .c-btn--back::after {
    right: auto !important;
    left: -30px;
  }
}

/* --- 3. ユーティリティ (汎用クラス) --- */
.u-small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: normal;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ==========================================================================
   NEWS Section
========================================================================== */
.p-news {
  background-color: transparent;
  padding: 70px 0;
  /* 左側：タイトルエリア */
  /* 右側：コンテンツエリア */
}
@media screen and (max-width: 960px) {
  .p-news {
    padding: 50px 0 70px;
  }
}
.p-news__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .p-news__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.p-news__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex-shrink: 0;
  width: 250px;
}
@media screen and (max-width: 960px) {
  .p-news__head {
    width: 100%;
    align-items: center;
  }
}
.p-news__head .c-sec-title__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .p-news__head .c-sec-title__sub {
    font-size: 0.9rem;
  }
}
.p-news .c-title-gold {
  font-size: 42px;
  font-family: "p22-typewriter", sans-serif;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 0;
  font-weight: 700;
  color: #b28a04;
}
.p-news__content {
  flex: 1;
}
@media screen and (max-width: 960px) {
  .p-news__content {
    width: 100%;
  }
}
.p-news__block {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(217, 184, 115, 0.4);
}
@media screen and (max-width: 960px) {
  .p-news__block {
    flex-direction: column;
    padding: 15px 0;
  }
}
.p-news__block:first-child {
  padding-top: 0;
}
.p-news__block:last-child {
  border-bottom: none;
}
.p-news__date {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: "p22-typewriter", sans-serif;
  width: 140px;
  flex-shrink: 0;
  padding-top: 5px;
}
@media screen and (max-width: 960px) {
  .p-news__date {
    width: 100%;
    padding-top: 0;
    margin-bottom: 10px;
  }
}
.p-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.p-news__item {
  margin-bottom: 5px;
}
.p-news__item:last-child {
  margin-bottom: 0;
}
.p-news__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
.p-news__link:hover {
  color: #b28a04;
}
.p-news__link.u-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==========================================================================
   Marquee (無限ループする1枚絵の帯)
========================================================================== */
.c-marquee {
  overflow: hidden;
  width: 100%;
  background: transparent !important;
}
.c-marquee__inner {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-marquee img {
  display: block;
  height: clamp(120px, 18vw, 350px);
  width: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-marquee--top {
  position: absolute;
  top: calc(clamp(120px, 18vw, 350px) * -0.9);
}
.c-marquee--top .c-marquee__inner {
  -webkit-animation: marquee-slide 100s linear infinite;
          animation: marquee-slide 100s linear infinite;
}
.c-marquee--bottom {
  position: absolute;
  bottom: calc(clamp(120px, 18vw, 350px) * -0.9);
}
.c-marquee--bottom .c-marquee__inner {
  animation: marquee-slide 100s linear infinite reverse;
}

@-webkit-keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ==========================================================================
   INTRODUCTION Section
========================================================================== */
.p-introduction {
  position: relative;
  background-color: transparent;
  padding: clamp(80px, 12.1vw, 260px) 0;
  margin: clamp(40px, 1vw, 40px) 0 clamp(40px, 8vw, 80px);
  /* --- タイトルエリア --- */
  /* 💡 PC用：縦書きタイプライター（上から下へ表示） */
  /* 💡 スマホ用：横書きタイプライター（左から右へ表示） */
  /* --- テキストエリア --- */
}
@media screen and (max-width: 960px) {
  .p-introduction {
    padding: 50px 0;
  }
}
.p-introduction__body {
  background-color: #b0b4b8;
  background-image: url("../img/intro_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: clamp(60px, 10vw, 150px) 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-introduction__body {
    background-image: url("../img/intro_bg_sp.webp");
    background-repeat: no-repeat;
    background-position: right 15% bottom;
  }
}
.p-introduction__inner {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .p-introduction__inner {
    flex-direction: column;
    align-items: center;
  }
}
.p-introduction__title-area {
  display: flex;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .p-introduction__title-area {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}
.p-introduction__title-en {
  font-size: clamp(20px, 4vw, 50px);
  color: #000;
  font-family: "p22-typewriter", sans-serif;
  margin: 0;
  font-weight: normal;
  letter-spacing: 0.01em;
  /* PC：縦書き設定 */
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  display: inline-block;
  position: relative;
  padding-bottom: 15px;
  /* アニメーション発火 */
}
@media screen and (max-width: 960px) {
  .p-introduction__title-en {
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    padding-bottom: 0;
    padding-right: 15px;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    font-size: clamp(40px, 8vw, 40px);
  }
}
.p-introduction__title-en span {
  color: #b28a04;
  font-family: "p22-typewriter", sans-serif;
}
.p-introduction__title-en.is-active {
  -webkit-animation: typing-vertical 1.2s steps(12) forwards;
          animation: typing-vertical 1.2s steps(12) forwards;
}
@media screen and (max-width: 960px) {
  .p-introduction__title-en.is-active {
    -webkit-animation: typing 1.2s steps(12) forwards;
            animation: typing 1.2s steps(12) forwards;
  }
}
.p-introduction__title-en.is-active::after {
  content: "";
  position: absolute;
  background-color: #b28a04;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.6);
  -webkit-animation: blink 0.8s infinite;
          animation: blink 0.8s infinite;
  left: 10%;
  bottom: 0;
  width: 80%;
  height: 2px;
}
@media screen and (max-width: 960px) {
  .p-introduction__title-en.is-active::after {
    left: auto;
    right: 0;
    bottom: auto;
    top: 10%;
    width: 3px;
    height: 80%;
  }
}
.p-introduction__title-ja {
  font-size: 1rem;
  color: #000;
  font-weight: 900;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  text-orientation: sideways;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.5s ease 1.2s, transform 0.5s ease 1.2s;
}
@media screen and (max-width: 960px) {
  .p-introduction__title-ja {
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    text-orientation: mixed;
    margin-top: 5px; /* 英語との隙間 */
    transform: translateY(10px);
    font-size: 0.9rem;
  }
}
.p-introduction__title-en.is-active + .p-introduction__title-ja {
  opacity: 1;
  transform: translateX(0);
}
@media screen and (max-width: 960px) {
  .p-introduction__title-en.is-active + .p-introduction__title-ja {
    transform: translateY(0);
  }
}
@-webkit-keyframes typing-vertical {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes typing-vertical {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes typing {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.p-introduction__text-area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 2;
}
.p-introduction__catch {
  margin-bottom: 50px;
  transform: translateX(3rem);
}
@media screen and (max-width: 960px) {
  .p-introduction__catch {
    margin-top: 20px;
    transform: none;
  }
}
.p-introduction__catch img {
  width: 100%;
  width: clamp(280px, 70vw, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-introduction__catch img {
    width: 90%;
  }
}
.p-introduction__desc {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.08em;
  /* 💡 スマホ時は少し文字を小さめに調整 */
}
@media screen and (max-width: 960px) {
  .p-introduction__desc {
    font-size: 0.9rem;
    padding: 0;
    text-align: center;
    line-height: 2;
  }
}
.p-introduction__desc p {
  margin-bottom: 30px;
}
.p-introduction__desc p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   CONTENTS Section
========================================================================== */
/* 共通インナー幅 */
.l-contents-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 960px) {
  .l-contents-inner {
    padding: 0 20px;
  }
}

.p-contents {
  background-image: url("../img/contents_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  margin-top: calc(clamp(80px, 15vw, 200px) * -0.5);
  padding-top: clamp(60px, 12vw, 190px);
  padding-bottom: 150px;
}
@media screen and (max-width: 960px) {
  .p-contents {
    background-image: url("../img/contents_bg_sp.png");
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-contents__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .p-contents__head {
    margin-bottom: 40px;
  }
}
.p-contents__head .c-sec-title__main {
  color: #000;
}
.p-contents__head .c-sec-title__sub {
  color: #000;
  font-weight: 700;
}
.p-contents__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2%;
}
@media screen and (max-width: 960px) {
  .p-contents__list {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }
}
.p-contents__item {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  padding: 0 0 1%;
  height: auto;
}
@media screen and (max-width: 960px) {
  .p-contents__item {
    width: 100%;
    max-width: 450px;
    padding: 0 0 4%;
    height: auto;
  }
}
.p-contents__item_ttl {
  width: 50%;
  margin-top: -4%;
  margin-bottom: 6%;
}
@media screen and (max-width: 960px) {
  .p-contents__item_ttl {
    width: 40%;
    margin-top: 0;
    margin-bottom: 8%;
  }
}
.p-contents__item_ttl img {
  width: 100%;
  height: auto;
  display: block;
}
.p-contents__item_lead {
  color: #b28a04;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8%;
  font-size: clamp(16px, 1.8vw, 26px);
  min-height: clamp(50px, 6vw, 65px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .p-contents__item_lead {
    min-height: auto;
    font-size: 22px;
    margin-bottom: 5%;
  }
}
.p-contents__text {
  border-top: 1px solid #fff;
  width: 85%;
  padding-top: 5%;
  padding-bottom: 6%;
  color: #fff;
  text-align: left;
  line-height: 2;
  font-size: clamp(15px, 1.5vw, 17px);
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  .p-contents__text {
    font-size: 15px;
    padding-top: 8%;
    padding-bottom: 8%;
    flex-grow: 0;
  }
}
.p-contents__img {
  width: 94%;
  height: auto;
  display: block;
  margin-top: auto;
}

.p-contents__footer {
  text-align: center;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 960px) {
  .p-contents__footer {
    margin-top: 50px;
  }
}
.p-contents__footer p {
  display: inline;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1.8;
  background-image: url("../img/grange_red.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 5px 20px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 960px) {
  .p-contents__footer p {
    font-size: 1.2rem;
    padding: 4px 15px;
  }
}

/* ==========================================================================
   時間差フェードイン（順番にパララッ）と背景画像の設定
========================================================================== */
.item_01 {
  background-image: url("../img/contents_cont_01_bg.png");
  transition-delay: 0s !important;
  -webkit-animation-delay: 0s !important;
          animation-delay: 0s !important;
}

.item_02 {
  background-image: url("../img/contents_cont_02_bg.png");
  transition-delay: 0.2s !important;
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}

.item_03 {
  background-image: url("../img/contents_cont_03_bg.png");
  transition-delay: 0.4s !important;
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}

/* ==========================================================================
   TICKETS Section
========================================================================== */
.p-tickets {
  padding: 100px 0;
  /* --- 共通レイアウト --- */
  /* --- 上部タイトル --- */
  /* --- 特典グッズエリア --- */
  /* --- チケット情報ヘッダー --- */
  /* --- ブロック共通 --- */
  /* --- ボタンエリア --- */
  /* --- ガイド・注意事項のグレーボックス --- */
  /* --- テーブル --- */
  /* --- 価格・下部エリア --- */
}
@media screen and (max-width: 960px) {
  .p-tickets {
    padding: 40px 0 60px;
  }
}
@media screen and (max-width: 960px) {
  .p-tickets .l-split {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-tickets .l-split__sticky {
    position: relative;
    top: auto;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-tickets .l-split__content {
    width: 100%;
  }
}
.p-tickets__top-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.p-tickets__main-title {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin: 0;
  border-bottom: 1px solid #b28a04;
}
.p-tickets__eng-title {
  text-align: right;
}
.p-tickets__premium {
  margin-bottom: 80px;
}
.p-tickets__premium-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  .p-tickets__premium-title {
    font-size: 1.1rem;
    line-height: 1.5rem;
  }
}
.p-tickets__premium-img {
  margin-bottom: 30px;
}
.p-tickets__premium-img img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.p-tickets__premium-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}
.p-tickets__premium_caution {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}
.p-tickets__premium_caution li {
  font-size: 12px;
  line-height: 1.1rem;
  color: #fff;
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1em;
}
.p-tickets__premium_caution li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .p-tickets__premium_caution li {
    line-height: 1.3;
  }
}
.p-tickets__info-head {
  border-bottom: 1px solid #b28a04;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.p-tickets__section-title {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (max-width: 960px) {
  .p-tickets__section-title {
    font-size: 1.3rem;
  }
}
.p-tickets__warning {
  color: #b28a04;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.p-tickets__block {
  margin-bottom: 80px;
}
.p-tickets__banner {
  font-size: 18px;
  font-weight: bold;
  padding: 15px 20px;
  margin: 0 0 30px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .p-tickets__banner {
    font-size: 17px;
    line-height: 1.5rem;
  }
}
.p-tickets__banner--red {
  background-image: url("../img/grange_red.png");
  background-size: cover;
  color: #fff;
}
.p-tickets__banner--gold {
  background-image: url("../img/grange_gold.png");
  background-size: cover;
  color: #fff;
}
.p-tickets__lead {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.p-tickets__lead span {
  font-size: 1.1rem;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .p-tickets__lead span {
    font-size: 1rem;
  }
}
.p-tickets__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
.p-tickets__text strong {
  font-size: 1rem;
}
.p-tickets__btn-wrap {
  margin: 30px 0;
}
@media screen and (max-width: 960px) {
  .p-tickets__btn-wrap {
    text-align: center;
  }
  .p-tickets__btn-wrap .c-btn {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}
.p-tickets__guide-box {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid transparent;
}
.p-tickets__guide-box--red {
  border-color: #8b0000;
}
.p-tickets__guide-box--gray {
  /* 💡 修正：重複していた border-color の記述をスッキリまとめました */
  text-align: left;
  border-color: #b28a04;
}
.p-tickets__guide-text {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 15px;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .p-tickets__guide-text {
    font-size: 0.9rem;
  }
}
.p-tickets__guide-cont {
  margin-bottom: 30px;
}
.p-tickets__guide-text-ttl {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #5f5f5f;
  padding: 7px 0;
  margin: 20px auto;
}
.p-tickets__guide-link {
  font-size: 1rem;
  line-height: 1.5rem;
  word-break: break-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 960px) {
  .p-tickets__guide-link {
    font-size: 0.9rem;
    text-align: left;
  }
}
.p-tickets__guide-link span {
  font-size: 1rem;
}
.p-tickets__guide-p {
  font-size: 0.9rem;
}
@media screen and (max-width: 960px) {
  .p-tickets__guide-p {
    font-size: 0.9rem;
    text-align: left;
  }
}
.p-tickets__guide_caution {
  list-style: none;
  padding: 0;
  margin: 0 0 50px 0;
}
.p-tickets__guide_caution li {
  font-size: 12px;
  line-height: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1em;
}
.p-tickets__guide_caution li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .p-tickets__guide_caution li {
    line-height: 1.3;
    text-align: left;
  }
}
.p-tickets__guide-link_btn {
  margin: 10px auto;
}
.p-tickets__guide-link_btn a {
  display: inline;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.8;
  background-image: url(../img/grange_red.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 10px 20px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-decoration: none;
  transition: 0.3s;
}
.p-tickets__guide-link_btn a:hover {
  background-image: url(../img/grange_gold.png);
}
.p-tickets__notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.p-tickets__table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
}
.p-tickets__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  text-align: center;
  table-layout: fixed;
  /* colgroup用幅指定 */
}
@media screen and (max-width: 960px) {
  .p-tickets__table {
    min-width: 480px;
  }
}
.p-tickets__table .col-title {
  width: 18%;
}
@media screen and (max-width: 960px) {
  .p-tickets__table .col-title {
    width: 22%;
  }
}
.p-tickets__table .col-type-1 {
  width: 16%;
}
@media screen and (max-width: 960px) {
  .p-tickets__table .col-type-1 {
    width: 20%;
  }
}
.p-tickets__table .col-type-2 {
  width: 16%;
}
@media screen and (max-width: 960px) {
  .p-tickets__table .col-type-2 {
    width: 23%;
  }
}
.p-tickets__table th, .p-tickets__table td {
  padding: 20px 15px;
  border: none;
  border-bottom: 1px solid #9e803d;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  .p-tickets__table th, .p-tickets__table td {
    padding: 12px 6px;
  }
}
.p-tickets__table .has-v-line {
  border-right: 1px solid #9e803d;
}
.p-tickets__table thead th {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .p-tickets__table thead th {
    font-size: 12px;
    letter-spacing: 0;
    padding-left: 4px;
    padding-right: 4px;
    line-height: 1.4;
  }
}
.p-tickets__table tbody th {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  .p-tickets__table tbody th {
    font-size: 0.9rem;
  }
}
.p-tickets__table tbody td {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 960px) {
  .p-tickets__table tbody td {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 960px) {
  .p-tickets__table .u-small {
    font-size: 10px;
    display: block;
    margin-top: 3px;
  }
}
@media screen and (max-width: 960px) {
  .p-tickets .p-tickets__table-sp {
    min-width: 380px;
  }
}
.p-tickets__price {
  font-size: 1rem;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 4px;
}
@media screen and (max-width: 960px) {
  .p-tickets__price {
    font-size: 0.8rem;
    margin-bottom: 2px;
    letter-spacing: 0;
  }
}
.p-tickets__bottom {
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}
@media screen and (max-width: 960px) {
  .p-tickets__bottom {
    text-align: center;
    padding-top: 30px;
  }
}
@media screen and (max-width: 960px) {
  .p-tickets__bottom .c-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.p-tickets__bottom-text {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .p-tickets__bottom-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ==========================================================================
   OUTLINE Section
========================================================================== */
.p-outline {
  background-image: url("../img/outline_bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 10;
  padding: 120px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* 💡 追加：TICKETSと同じく、左右分割(l-split)を「縦積み」に変更！ */
  /* --- タイトルエリア（横書き） --- */
  /* --- リスト（表）部分 --- */
  /* --- 注意事項 --- */
  /* --- ボタン配置 --- */
}
@media screen and (max-width: 960px) {
  .p-outline {
    padding: 60px 0;
  }
}
@media screen and (max-width: 960px) {
  .p-outline .l-split {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-outline .l-split__sticky {
    position: relative;
    top: auto;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-outline .l-split__content {
    width: 100%;
  }
}
.p-outline__title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 20px;
}
@media screen and (max-width: 960px) {
  .p-outline__title-area {
    align-items: center; /* 左寄せに変更 */
    padding-right: 0;
  }
}
.p-outline__list {
  margin: 0 0 50px 0;
  border-top: 1px solid rgba(217, 184, 115, 0.4);
}
.p-outline__row {
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid rgba(217, 184, 115, 0.4);
}
@media screen and (max-width: 960px) {
  .p-outline__row {
    flex-direction: column;
    padding: 20px 0;
  }
}
.p-outline dt {
  width: 30%; /* 左側の項目幅 */
  font-size: 1rem;
  font-weight: bold;
  padding-right: 20px;
}
@media screen and (max-width: 960px) {
  .p-outline dt {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10px;
    color: #b28a04;
  }
}
.p-outline dd {
  width: 70%; /* 右側の内容幅 */
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-outline dd {
    width: 100%;
  }
}
.p-outline__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s;
  word-break: break-all;
}
.p-outline__link:hover {
  color: #d9b873;
}
.p-outline__notes {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}
.p-outline__btn-wrap {
  display: flex;
}
@media screen and (max-width: 960px) {
  .p-outline__btn-wrap {
    justify-content: center;
  }
}

/* X（旧Twitter）公式アカウント用ボタン */
.c-btn-x {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #9e803d;
  border: 1px solid #9e803d;
  color: #fff;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .c-btn-x {
    width: 100%;
    max-width: 280px;
    padding: 15px 20px;
  }
}
.c-btn-x:hover {
  background-color: rgba(158, 128, 61, 0.1);
}
.c-btn-x:hover::before {
  transform: translateY(-50%) translateX(10px);
}
.c-btn-x:hover::after {
  transform: translateY(-50%) translateX(10px) rotate(45deg);
}
.c-btn-x::before {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 960px) {
  .c-btn-x::before {
    right: -15px;
    width: 40px;
  }
}
.c-btn-x::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 14px;
  height: 1px;
  background-color: #fff;
  transform-origin: right center;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 960px) {
  .c-btn-x::after {
    right: -15px;
  }
}

/* ==========================================================================
   CONTACT Section
========================================================================== */
.p-contact {
  background-color: transparent;
  padding: 120px 0;
  /* 💡 追加：スマホ時は全体の上下余白を引き締める */
  /* 💡 追加：左右分割(l-split)を「縦積み」に変更！ */
  /* --- タイトルエリア --- */
  /* --- リード文 --- */
  /* --- 個人情報保護方針の枠 --- */
  /* --- 同意チェックボックス --- */
  /* --- ボタンエリア --- */
  /* --- 注記テキスト --- */
}
@media screen and (max-width: 960px) {
  .p-contact {
    padding: 60px 0;
  }
}
@media screen and (max-width: 960px) {
  .p-contact .l-split {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 960px) {
  .p-contact .l-split__sticky {
    position: relative;
    top: auto;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .p-contact .l-split__content {
    width: 100%;
  }
}
.p-contact__title-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 20px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  /* 💡 追加：スマホ時は左寄せにする */
}
@media screen and (max-width: 960px) {
  .p-contact__title-area {
    align-items: center;
    padding-right: 0;
  }
}
.p-contact__title-area.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.p-contact__lead {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  /* 💡 追加：スマホ時は文字を少しだけ小さく、下の余白も縮める */
}
@media screen and (max-width: 960px) {
  .p-contact__lead {
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.p-contact__privacy-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #9e803d;
  padding: 40px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 960px) {
  .p-contact__privacy-box {
    padding: 20px;
    font-size: 14px;
  }
}
.p-contact__privacy-box p {
  margin-bottom: 20px;
}
.p-contact__privacy-list {
  margin-bottom: 20px;
}
.p-contact__privacy-list li {
  margin-bottom: 10px;
  text-indent: -1em;
  padding-left: 1em;
}
.p-contact__privacy-info {
  margin-bottom: 20px;
}
.p-contact__privacy-info p {
  margin-bottom: 5px;
}
.p-contact__link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  word-break: break-all;
}
.p-contact__link:hover {
  color: #d9b873;
}
.p-contact__agreement {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .p-contact__agreement {
    margin-bottom: 30px;
  }
}
.p-contact__agreement input[type=checkbox] {
  margin-right: 15px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #9e803d;
}
.p-contact__agreement-text {
  font-size: 15px;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .p-contact__agreement-text {
    font-size: 14px;
  }
}
.p-contact__btn-wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .p-contact__btn-wrap {
    text-align: center;
    margin-bottom: 40px;
  }
  .p-contact__btn-wrap .c-btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.p-contact__notes {
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}
.p-contact__notes a {
  color: #fff;
}

/* ==========================================================================
   Footer
========================================================================== */
.l-footer {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.l-footer__logo {
  margin-bottom: 50px;
}
.l-footer__logo img {
  width: 100%;
  max-width: 100px;
  height: auto;
  display: inline-block;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2));
}
.l-footer__copyright {
  font-family: "p22-typewriter", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  line-height: 2.2;
}
.l-footer__copyright p {
  margin: 0;
}

/* ==========================================================================
   NOTES Section (注意事項ページ)
========================================================================== */
.notes {
  padding: 180px 0;
  max-width: 1200px;
  margin: 0 auto;
  /* --- h2: 大見出し（赤いグランジ座布団） --- */
  /* --- h3: 中見出し --- */
  /* --- リスト（箇条書きテキスト） --- */
}
@media screen and (max-width: 960px) {
  .notes {
    padding: 80px 0 0;
  }
}
.notes h1 {
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 60px;
}
@media screen and (max-width: 960px) {
  .notes h1 {
    font-size: 1.3rem;
    margin: 0 auto 40px;
  }
}
.notes-main-ttl {
  width: 100%;
  max-width: 90%;
  margin: 0 auto 60px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  background-image: url(../img/grange_red.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 5px 50px;
}
@media screen and (max-width: 960px) {
  .notes-main-ttl {
    font-size: 1.1rem;
    padding: 5px 20px;
    margin-bottom: 25px;
    width: 87%;
    line-height: 1.3;
  }
}
.notes-sect {
  width: 98%;
  margin: 0 auto 60px;
}
.notes-sect:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .notes-sect {
    margin-bottom: 40px;
  }
}
.notes-sub-ttl {
  font-size: 1.3rem;
  font-weight: bold;
  color: #b28a04;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  .notes-sub-ttl {
    font-size: 1.1rem;
  }
}
.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.notes-list li {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
  padding-left: 1.2em;
}
.notes-list li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
}
.notes-list li:last-child {
  margin-bottom: 0;
}
.notes-list li.is-note {
  padding-left: 2.2em;
  text-indent: -1em;
  font-size: 0.8rem;
  margin-top: -6px;
  line-height: 1.5;
}
.notes-list li.is-note::before {
  display: none;
}
@media screen and (max-width: 960px) {
  .notes-list li.is-note {
    font-size: 0.8rem;
    padding-left: 1.8em;
    margin-top: -4px;
  }
}
@media screen and (max-width: 960px) {
  .notes-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }
}
.notes .notes-date {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .notes .notes-date {
    font-size: 0.8rem;
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */