@charset "UTF-8";

/* ====================================
   ベーススタイル
==================================== */
* {
    box-sizing: border-box;
    font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

body {
    font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
    background: #000;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

h2 {
    font-weight: bold;
    font-size: 36px;
}

/* ====================================
   Slick カスタマイズ
==================================== */
.slick-dots {
    bottom: 20px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: 0.5;
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1;
}

.slick-prev,
.slick-next {
    z-index: 10;
    width: 50px;
    height: 50px;
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
}

/* ====================================
   ヘッダー / ハンバーガーメニュー
==================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header-sns {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-sns li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.header-sns li a:hover {
    opacity: 0.7;
}

.header-sns img {
    width: 42px;
    height: 42px;
}

/* ハンバーガーボタン */
.hamburger {
    position: relative;
    width: 40px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* ハンバーガー開いた状態 */
.hamburger.is-active span {
    background: #fff;
}

.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* グローバルナビ */
.gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #333;
    transition: right 0.3s ease;
    z-index: 1000;
    opacity: 0;
}

.gnav.is-active {
    right: 0;
    opacity: 1;
}

.gnav-list {
    list-style: none;
    padding: 100px 40px 40px;
    margin: 0;
}

.gnav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.gnav-list li a {
    display: block;
    padding: 20px 0;
    color: #fff;
    font-size: 18px;
}

.gnav-list li a:hover {
    opacity: 0.7;
}

/* オーバーレイ */
.gnav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.gnav-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* body固定（メニューオープン時） */
body.is-menu-open {
    overflow: hidden;
}

/* ====================================
   固定CTA
==================================== */
.fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 900;
}

.fixed-cta-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 25px 15px 20px;
    background: #06c755;
    color: #fff;
    border-radius: 30px 0 0 0;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    width: 240px;
    height: 80px;
}
.fixed-cta-btn:hover {
    background: #06c755;
    color: #fff;
    opacity: 1;
    /* transform: translateY(-3px); */
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.fixed-cta-btn i {
    font-size: 14px;
}

.fixed-cta-text {
    display: flex;
    align-items: center;
}

.fixed-cta-text img {
    display: block;
    height: 20px;
    width: auto;
}

@media (max-width: 768px) {
    .fixed-cta {
        /* right: 0; */
        /* bottom: 0; */
    }

    .fixed-cta-btn {
        /* padding: 12px 20px; */
        /* font-size: 14px; */
    }
}

/* ====================================
   フォントサイズ
==================================== */
.fs-10 { font-size: 10px !important; }
.fs-12 { font-size: 12px !important; }
.fs-14 { font-size: 14px !important; }
.fs-16 { font-size: 16px !important; }
.fs-18 { font-size: 18px !important; }
.fs-20 { font-size: 20px !important; }
.fs-22 { font-size: 22px !important; }
.fs-24 { font-size: 24px !important; }
.fs-26 { font-size: 26px !important; }
.fs-28 { font-size: 28px !important; }
.fs-30 { font-size: 30px !important; }
.fs-32 { font-size: 32px !important; }
.fs-36 { font-size: 36px !important; }
.fs-40 { font-size: 40px !important; }
.fs-48 { font-size: 48px !important; }
.fs-56 { font-size: 56px !important; }
.fs-64 { font-size: 64px !important; }

/* ====================================
   マージン（上）
==================================== */
.mt-0 { margin-top: 0px !important; }
.mt-5 { margin-top: 5px !important; }
.mt-10 { margin-top: 10px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-25 { margin-top: 25px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }
.mt-60 { margin-top: 60px !important; }
.mt-70 { margin-top: 70px !important; }
.mt-80 { margin-top: 80px !important; }
.mt-90 { margin-top: 90px !important; }
.mt-100 { margin-top: 100px !important; }

/* ====================================
   マージン（下）
==================================== */
.mb-0 { margin-bottom: 0px !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-70 { margin-bottom: 70px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mb-90 { margin-bottom: 90px !important; }
.mb-100 { margin-bottom: 100px !important; }

/* ====================================
   マージン（左）
==================================== */
.ml-0 { margin-left: 0px !important; }
.ml-5 { margin-left: 5px !important; }
.ml-10 { margin-left: 10px !important; }
.ml-15 { margin-left: 15px !important; }
.ml-20 { margin-left: 20px !important; }
.ml-25 { margin-left: 25px !important; }
.ml-30 { margin-left: 30px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-50 { margin-left: 50px !important; }
.ml-60 { margin-left: 60px !important; }
.ml-70 { margin-left: 70px !important; }
.ml-80 { margin-left: 80px !important; }
.ml-90 { margin-left: 90px !important; }
.ml-100 { margin-left: 100px !important; }

/* ====================================
   マージン（右）
==================================== */
.mr-0 { margin-right: 0px !important; }
.mr-5 { margin-right: 5px !important; }
.mr-10 { margin-right: 10px !important; }
.mr-15 { margin-right: 15px !important; }
.mr-20 { margin-right: 20px !important; }
.mr-25 { margin-right: 25px !important; }
.mr-30 { margin-right: 30px !important; }
.mr-40 { margin-right: 40px !important; }
.mr-50 { margin-right: 50px !important; }
.mr-60 { margin-right: 60px !important; }
.mr-70 { margin-right: 70px !important; }
.mr-80 { margin-right: 80px !important; }
.mr-90 { margin-right: 90px !important; }
.mr-100 { margin-right: 100px !important; }

/* ====================================
   マージン（左右）
==================================== */
.mx-0 { margin-left: 0px !important; margin-right: 0px !important; }
.mx-5 { margin-left: 5px !important; margin-right: 5px !important; }
.mx-10 { margin-left: 10px !important; margin-right: 10px !important; }
.mx-15 { margin-left: 15px !important; margin-right: 15px !important; }
.mx-20 { margin-left: 20px !important; margin-right: 20px !important; }
.mx-25 { margin-left: 25px !important; margin-right: 25px !important; }
.mx-30 { margin-left: 30px !important; margin-right: 30px !important; }
.mx-40 { margin-left: 40px !important; margin-right: 40px !important; }
.mx-50 { margin-left: 50px !important; margin-right: 50px !important; }
.mx-60 { margin-left: 60px !important; margin-right: 60px !important; }
.mx-70 { margin-left: 70px !important; margin-right: 70px !important; }
.mx-80 { margin-left: 80px !important; margin-right: 80px !important; }
.mx-90 { margin-left: 90px !important; margin-right: 90px !important; }
.mx-100 { margin-left: 100px !important; margin-right: 100px !important; }

/* ====================================
   マージン（上下）
==================================== */
.my-0 { margin-top: 0px !important; margin-bottom: 0px !important; }
.my-5 { margin-top: 5px !important; margin-bottom: 5px !important; }
.my-10 { margin-top: 10px !important; margin-bottom: 10px !important; }
.my-15 { margin-top: 15px !important; margin-bottom: 15px !important; }
.my-20 { margin-top: 20px !important; margin-bottom: 20px !important; }
.my-25 { margin-top: 25px !important; margin-bottom: 25px !important; }
.my-30 { margin-top: 30px !important; margin-bottom: 30px !important; }
.my-40 { margin-top: 40px !important; margin-bottom: 40px !important; }
.my-50 { margin-top: 50px !important; margin-bottom: 50px !important; }
.my-60 { margin-top: 60px !important; margin-bottom: 60px !important; }
.my-70 { margin-top: 70px !important; margin-bottom: 70px !important; }
.my-80 { margin-top: 80px !important; margin-bottom: 80px !important; }
.my-90 { margin-top: 90px !important; margin-bottom: 90px !important; }
.my-100 { margin-top: 100px !important; margin-bottom: 100px !important; }

/* ====================================
   パディング（上）
==================================== */
.pt-0 { padding-top: 0px !important; }
.pt-5 { padding-top: 5px !important; }
.pt-10 { padding-top: 10px !important; }
.pt-15 { padding-top: 15px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-25 { padding-top: 25px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-50 { padding-top: 50px !important; }
.pt-60 { padding-top: 60px !important; }
.pt-70 { padding-top: 70px !important; }
.pt-80 { padding-top: 80px !important; }
.pt-90 { padding-top: 90px !important; }
.pt-100 { padding-top: 100px !important; }

/* ====================================
   パディング（下）
==================================== */
.pb-0 { padding-bottom: 0px !important; }
.pb-5 { padding-bottom: 5px !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-15 { padding-bottom: 15px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-25 { padding-bottom: 25px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-50 { padding-bottom: 50px !important; }
.pb-60 { padding-bottom: 60px !important; }
.pb-70 { padding-bottom: 70px !important; }
.pb-80 { padding-bottom: 80px !important; }
.pb-90 { padding-bottom: 90px !important; }
.pb-100 { padding-bottom: 100px !important; }

/* ====================================
   パディング（左）
==================================== */
.pl-0 { padding-left: 0px !important; }
.pl-5 { padding-left: 5px !important; }
.pl-10 { padding-left: 10px !important; }
.pl-15 { padding-left: 15px !important; }
.pl-20 { padding-left: 20px !important; }
.pl-25 { padding-left: 25px !important; }
.pl-30 { padding-left: 30px !important; }
.pl-40 { padding-left: 40px !important; }
.pl-50 { padding-left: 50px !important; }
.pl-60 { padding-left: 60px !important; }
.pl-70 { padding-left: 70px !important; }
.pl-80 { padding-left: 80px !important; }
.pl-90 { padding-left: 90px !important; }
.pl-100 { padding-left: 100px !important; }

/* ====================================
   パディング（右）
==================================== */
.pr-0 { padding-right: 0px !important; }
.pr-5 { padding-right: 5px !important; }
.pr-10 { padding-right: 10px !important; }
.pr-15 { padding-right: 15px !important; }
.pr-20 { padding-right: 20px !important; }
.pr-25 { padding-right: 25px !important; }
.pr-30 { padding-right: 30px !important; }
.pr-40 { padding-right: 40px !important; }
.pr-50 { padding-right: 50px !important; }
.pr-60 { padding-right: 60px !important; }
.pr-70 { padding-right: 70px !important; }
.pr-80 { padding-right: 80px !important; }
.pr-90 { padding-right: 90px !important; }
.pr-100 { padding-right: 100px !important; }

/* ====================================
   パディング（左右）
==================================== */
.px-0 { padding-left: 0px !important; padding-right: 0px !important; }
.px-5 { padding-left: 5px !important; padding-right: 5px !important; }
.px-10 { padding-left: 10px !important; padding-right: 10px !important; }
.px-15 { padding-left: 15px !important; padding-right: 15px !important; }
.px-20 { padding-left: 20px !important; padding-right: 20px !important; }
.px-25 { padding-left: 25px !important; padding-right: 25px !important; }
.px-30 { padding-left: 30px !important; padding-right: 30px !important; }
.px-40 { padding-left: 40px !important; padding-right: 40px !important; }
.px-50 { padding-left: 50px !important; padding-right: 50px !important; }
.px-60 { padding-left: 60px !important; padding-right: 60px !important; }
.px-70 { padding-left: 70px !important; padding-right: 70px !important; }
.px-80 { padding-left: 80px !important; padding-right: 80px !important; }
.px-90 { padding-left: 90px !important; padding-right: 90px !important; }
.px-100 { padding-left: 100px !important; padding-right: 100px !important; }

/* ====================================
   パディング（上下）
==================================== */
.py-0 { padding-top: 0px !important; padding-bottom: 0px !important; }
.py-5 { padding-top: 5px !important; padding-bottom: 5px !important; }
.py-10 { padding-top: 10px !important; padding-bottom: 10px !important; }
.py-15 { padding-top: 15px !important; padding-bottom: 15px !important; }
.py-20 { padding-top: 20px !important; padding-bottom: 20px !important; }
.py-25 { padding-top: 25px !important; padding-bottom: 25px !important; }
.py-30 { padding-top: 30px !important; padding-bottom: 30px !important; }
.py-40 { padding-top: 40px !important; padding-bottom: 40px !important; }
.py-50 { padding-top: 50px !important; padding-bottom: 50px !important; }
.py-60 { padding-top: 60px !important; padding-bottom: 60px !important; }
.py-70 { padding-top: 70px !important; padding-bottom: 70px !important; }
.py-80 { padding-top: 80px !important; padding-bottom: 80px !important; }
.py-90 { padding-top: 90px !important; padding-bottom: 90px !important; }
.py-100 { padding-top: 100px !important; padding-bottom: 100px !important; }

/* ====================================
   Bootstrapギャップ拡張（g-6以上）
==================================== */
.g-6 { --bs-gutter-x: 4rem; --bs-gutter-y: 4rem; }    /* 64px */
.g-7 { --bs-gutter-x: 5rem; --bs-gutter-y: 5rem; }    /* 80px */
.g-8 { --bs-gutter-x: 6rem; --bs-gutter-y: 6rem; }    /* 96px */
.g-9 { --bs-gutter-x: 7rem; --bs-gutter-y: 7rem; }    /* 112px */
.g-10 { --bs-gutter-x: 8rem; --bs-gutter-y: 8rem; }   /* 128px */

.gx-6 { --bs-gutter-x: 4rem; }
.gx-7 { --bs-gutter-x: 5rem; }
.gx-8 { --bs-gutter-x: 6rem; }
.gx-9 { --bs-gutter-x: 7rem; }
.gx-10 { --bs-gutter-x: 8rem; }

.gy-6 { --bs-gutter-y: 4rem; }
.gy-7 { --bs-gutter-y: 5rem; }
.gy-8 { --bs-gutter-y: 6rem; }
.gy-9 { --bs-gutter-y: 7rem; }
.gy-10 { --bs-gutter-y: 8rem; }

/* ====================================
   テキスト揃え
==================================== */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* ====================================
   フォントウェイト
==================================== */
.fw-100 { font-weight: 100 !important; }
.fw-200 { font-weight: 200 !important; }
.fw-300 { font-weight: 300 !important; }
.fw-400 { font-weight: 400 !important; }
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }
.fw-normal { font-weight: normal !important; }
.fw-bold { font-weight: bold !important; }

/* カラー */
.c-white { color: #fff !important; }

/* ====================================
   その他汎用クラス
==================================== */
.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.mw-100 { max-width: 100% !important; }
.mh-100 { max-height: 100% !important; }

.m-auto { margin: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* フルブリード（親要素のpadding/marginを無視して画面幅100%） */
.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* ====================================
   よく使う装飾
==================================== */

/* 波線アニメーション */
.c-textWaveline {
  position: relative;
  display: inline-block;
}

.c-textWaveline svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  overflow: visible;
}

.c-textWaveline svg path {
  fill: none;
  stroke: #ff6b6b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

/* アニメーションが発火したとき */
.c-textWaveline.is-active svg path {
  animation: waveline-draw 1.2s ease-out forwards;
}

/* 波線の色バリエーション */
.c-textWaveline--blue svg path {
  stroke: #4dabf7;
}

.c-textWaveline--green svg path {
  stroke: #51cf66;
}

.c-textWaveline--yellow svg path {
  stroke: #ffd43b;
}

.c-textWaveline--purple svg path {
  stroke: #a78bfa;
}

/* 波線の太さバリエーション */
.c-textWaveline--thin svg path {
  stroke-width: 1.5;
}

.c-textWaveline--thick svg path {
  stroke-width: 3;
}

/* アニメーション速度のバリエーション */
.c-textWaveline--slow.is-active svg path {
  animation-duration: 2s;
}

.c-textWaveline--fast.is-active svg path {
  animation-duration: 0.8s;
}

/* 波線描画アニメーションのキーフレーム */
@keyframes waveline-draw {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

/* ====================================
   花火ドット装飾（各所で再利用）
==================================== */
.fireworks-dots {
    display: block;
    pointer-events: none;
}

.fireworks-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.fireworks-group {
    transform-origin: 119.81px 120px;
}

/* 各ドットの初期状態 */
.fw-dot {
    fill: #fff;
    transform-origin: 119.81px 120px;
    opacity: 0;
}

/* アニメーション発火時 */
.fireworks-dots.is-active .fw-dot {
    animation: fw-explode 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* リングごとに遅延とアニメーションを変える */
.fireworks-dots.is-active .fw-ring-1 {
    animation-delay: 0s;
    animation-duration: 0.6s;
}

.fireworks-dots.is-active .fw-ring-2 {
    animation-delay: 0.05s;
    animation-duration: 0.8s;
}

.fireworks-dots.is-active .fw-ring-3 {
    animation-delay: 0.1s;
    animation-duration: 1s;
}

.fireworks-dots.is-active .fw-ring-4 {
    animation-delay: 0.15s;
    animation-duration: 1.1s;
}

.fireworks-dots.is-active .fw-ring-5 {
    animation-delay: 0.2s;
    animation-duration: 1.2s;
}

/* 花火爆発アニメーション - 中心から回転しながら広がる */
@keyframes fw-explode {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ====================================
   ユーティリティクラス
==================================== */
.tac {
    text-align: center;
}
.tal {
    text-align: left;
}
.tar {
    text-align: right;
}

/* ====================================
   PC/SP 出し分け
==================================== */
/* PC時のみ表示（SPで非表示） */
.pc-only {
    display: block;
}

/* SP時のみ表示（PCで非表示） */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
}
