:root {}

*,
*::before,
*::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
}

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

.w80 {
        max-width: 1000px;
        width: 80%;
        margin: 0 auto;
}
body {
        background: #000000;
        font-size: 2rem;
        color: #333;
}

.contentsblow {
        background: #000000 url("../../../../../images/project/okcj/brother_toku/haikei.jpeg") repeat top center;
        background-size: cover;
        background-attachment: fixed;
}

.contentsblow2 {
        background: #000000 url("../../../../../images/project/okcj/mill/op-bg-sec-min.png") repeat top center;
        background-size: cover;
        background-attachment: fixed;
        padding: 2rem 0;
}

.header {
        border-bottom: 5px solid #ffffff;
}

.header img {
    opacity: 0.80;
    mix-blend-mode: normal;
}

.overlay-header {
    position: relative;
    display: inline-block;
}

.base-img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-img {
    position: absolute;
        left: 0;
        top: 0;
        height: auto;
        width: 100%;
        pointer-events: none;
        z-index: 10;
  opacity: 1 !important; /* 完全不透明にする */
  mix-blend-mode: normal !important; /* ブレンド効果を解除 */
}
.contents-flex {
        margin: 2rem auto;
        width: 80%;
        max-width: 1100px;
        display: flex;
        justify-content: center;
}

.main-column {
        width: 60%;
        margin: 0 1rem;
}

.main-column article {
        margin: 0rem auto 1rem;
        padding: 1rem;
        background: #141414d4;
}

.main-column article h2 {
        text-align: center;
        background: #fafafa;
        padding: 5px 3px;
        width: 95%;
        font-size: 2rem;
        margin: 0 auto;
        box-shadow: 0px 1px 0px 1px #f6f6f6;
        color: #fafafa;
        background-image: repeating-linear-gradient(45deg, hsla(64, 83%, 54%, 0.05) 0px, hsla(64, 83%, 54%, 0.05) 1px, transparent 1px, transparent 11px, hsla(64, 83%, 54%, 0.05) 11px, hsla(64, 83%, 54%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(90deg, hsla(64, 83%, 54%, 0.05) 0px, hsla(64, 83%, 54%, 0.05) 1px, transparent 1px, transparent 11px, hsla(64, 83%, 54%, 0.05) 11px, hsla(64, 83%, 54%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(0deg, hsla(64, 83%, 54%, 0.05) 0px, hsla(64, 83%, 54%, 0.05) 1px, transparent 1px, transparent 11px, hsla(64, 83%, 54%, 0.05) 11px, hsla(64, 83%, 54%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(135deg, hsla(64, 83%, 54%, 0.05) 0px, hsla(64, 83%, 54%, 0.05) 1px, transparent 1px, transparent 11px, hsla(64, 83%, 54%, 0.05) 11px, hsla(64, 83%, 54%, 0.05) 12px, transparent 12px, transparent 32px), linear-gradient(177deg, rgb(151 151 151), rgb(0 0 0));

}

.main_messsage_article {
        box-shadow: 0px 0px 5px 5px #ffffff82;
}


.side-column {
        width: 25%;
        margin: 0 1rem;
        background: #1b1b1b;
}

.side-column article {
        margin: 0rem auto 2rem;
        padding: 2rem 1rem;
        background: #1b1b1b;
}

.side-column article h2 {
        text-align: center;
        background: #fafafa;
        padding: 5px 3px;
        width: 95%;
        font-size: 2rem;
        margin: 0 auto;
        box-shadow: 0px 1px 0px 1px #f6f6f6;
}

/* スティッキーコンテナ */
.sticky-container {
        position: sticky;
}


.past-message-date {
        color: #fafafa;
        font-size: 1.5rem;
        padding: 0 0 0 10px;
}


.message_box {
        margin: 0px auto 10px;
        padding: .5rem 2rem;
        background: #fafafa;
        border-radius: 5px;
        box-shadow: 0px 0px 0px 1px #474747;
        color: #1b1b1b;
        font-weight: bold;
        transition: .2s;
}

.message_box:hover {
        background: #fff9b7;
        box-shadow: 0px 0px 0px 0px #474747;
}



/******CTAボタン******/
.btn_yellow {
        display: block;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        width: 80%;
        max-width: 500px;
        margin: 1rem auto;
        padding: 1rem 1rem;
        font-weight: 900;
        font-size: 40px;
        border: 2px solid rgb(255, 218, 68);
        background: rgb(255, 233, 55);
        background: linear-gradient(180deg, rgba(255, 233, 55, 1) 0%, rgba(255, 219, 15, 1) 69%, rgba(255, 199, 42, 1) 100%);
        color: #161616;
        border-radius: 100px;
        letter-spacing: -1px;
        transition: 0.9s;
        animation: move_yellow 2s infinite;
        box-shadow: 0 5px 0 #c09c0d;
        position: relative;
}

@keyframes move_yellow {
        0% {
                box-shadow: 0 5px 0 #c09c0d;
                top: 0px;
        }

        10% {
                box-shadow: 0 0 0 #c09c0d;
                top: 5px;
        }

        20% {
                box-shadow: 0 5px 0 #c09c0d;
                top: 0px;
        }

        30% {
                box-shadow: 0 0 0 #c09c0d;
                top: 5px;
        }

        40% {
                box-shadow: 0 5px 0 #c09c0d;
                top: 0px;
        }
}

.btn_yellow:hover {
        color: #ffffff;
        background: rgb(255, 233, 55);
        background: linear-gradient(180deg, rgb(96, 255, 93) 0%, rgb(106, 173, 20) 69%, rgb(3, 173, 34) 100%);
        border: 2px solid rgb(40, 158, 44);
        box-shadow: 0 0px 0 #0dc01f;
        top: 5px;
        animation: none;
}

.finger01 {
        width: 100%;
        max-width: 65px;
        position: absolute;
        top: 49px;
        right: 2px;
}

@media screen and (max-width: 768px) {
        .btn_yellow {
                font-size: 25px;
                width: 100%;
                max-width: 500px;
                padding: 6px;
        }

        .finger01 {
                width: 100%;
                max-width: 44px;
                position: absolute;
                top: 27px;
                right: -7px;
        }
}

/******CTAボタン_end******/

/******CTAボタン******/

.finger01 {
        width: 100%;
        max-width: 65px;
        position: absolute;
        top: 49px;
        right: 2px;
}

@media screen and (max-width: 768px) {

        .finger01 {
                width: 100%;
                max-width: 44px;
                position: absolute;
                top: 27px;
                right: -7px;
        }
}

/******CTAボタン_end******/

/******CTAボタン******/

/******CTAボタン_end******/

.mincho4 {
        font-family: 'Noto Serif JP', sans-serif;
        font-weight: 900;
        transform: rotate(0.03deg);
}

.gothic4 {
        font-family: 'M PLUS 1p', sans-serif;
        font-weight: 800;
        transform: rotate(0.03deg);
}


.subhead {
        padding: 2rem 0;
        max-width: 900px;
        background: linear-gradient(162deg, #ff1616, rgb(255 46 46));
        border: double 3px #7d0c0c;
        border-radius: 10px;
        box-shadow: 0px 4px 1px #5c0101;
        color: #fafafa;
        text-align: center;
        margin: 0 auto 1rem;
        font-size: 6rem;
        font-family: 'Noto Serif JP', sans-serif;
        font-weight: 900;
        transform: rotate(0.03deg);
}


section {
        color: white;
        padding: 1.5rem 0.75rem;
        max-width: 767px;
        margin: 0 auto;
}

.section2 {
        background-color: #fafafa;
        box-shadow: 0px 3px 6px 4px #745216;
        border-radius: 10px;
        color: #1b1b1b;
        padding: 1.5rem 4.75rem;
        max-width: 767px;
        margin: 0 auto;
}

.form-wrap02 {
        padding: 3rem 1rem 0;
        height: auto;
        border-radius: 1rem;
        background: #003f68;
        box-shadow: 0 0 0.5em 0 #4797ac;
        border: 2px solid #ffe170;
        background: #0e0101 url(../../../../../images/project/club-b/km_begin/money_bg01.png) no-repeat center;
        background-size: cover;
        color: white;
}

.inputholder {
        text-align: center;
}

.inputholder input {
        width: 100%;
        max-width: 600px;
        padding: 1rem;
        border-radius: 1rem;
        font-size: 16px;
        border: 3px groove #b38a10;
}

footer {
        border-top: 1px solid #fff;
        background: #1b1b1b;
        padding: 2rem 0.75rem 1rem;
        margin-top: 3rem;
}

footer ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75em;
        list-style: none;
        margin-bottom: 1rem;
}

.copy {
        text-align: center;
}

footer a {
        color: white;
}

footer>p {
        color: gray;
}



.bg-mill {
        width: 95%;
        color: white;
        padding: 1.5rem 0.75rem;
        max-width: 767px;
        margin: -6rem auto 0;
        padding: 7rem 1rem 1rem;
        border-radius: 1rem;
        background: #191919;
        box-shadow: 0 0 0.5em 0 #4797ac;
        color: white;
}

.m-minus {
        margin: -4rem auto 0;
}

.voice-iframe {
        position: relative;
        margin-inline: auto;
        margin: 1rem auto;
}

/* .voice-iframe iframe {
        height: 300px;
} */

.white {
        color: #fafafa;
}

.centerm {
        margin: 0 auto;
}


/**
 * ----------------------------------------
 * 横に流れる馬券
 * ----------------------------------------
 */
/* スライドする要素 */
ul {
        list-style: none;
}



.bg-yl-bg {
        background: #FDE079;

        box-shadow: 0px 2px 0px 0px #332b00;
        line-height: 2.2;
}


.gradation-txt {
        background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
        background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
}

.emerg-box {
        background: #f70303;
        padding: 1rem 1rem;
        margin: 0 .5rem;
        box-shadow: 0px 2px 0px 3px #332b00;
        text-align: center;
        color: #fafafa;
}

.count-down-box {
        border: solid 2px #cf7309;
        padding: 5px;
        max-width: 767px;
        width: 100%;
        margin: 0 auto;
        border-radius: 10px;
        color: #1b1b1b;
        background: #ffd03c;

}

.section2 {
        padding: 1.5rem 1.75rem;
        width: 98%;
}

.subhead {
        font-size: 3rem;
}


/**
 * ----------------------------------------
 * モーダル
 * ----------------------------------------
 */

a {
        text-decoration: none;
}

@media(min-width: 980px) {

        /* .contentswrap{
                display: flex;
        } */
        .contentsblow {
                flex: 0 0 60%;
        }

        .form-wrap02 {
                position: sticky;
                top: 1rem;
        }

}

@media(max-width: 450px) {


        footer {
                font-size: 1.5rem;
        }


}

/* ナビ全体を固定 */
.fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  z-index: 1000;
}

/* ナビ内部の構造 */
.nav-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* メニューリスト */
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* 各リンク */
.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: background 0.3s;
}

/* ホバー時 */
.nav-menu li a:hover {
  background-color: #444;
  border-radius: 4px;
}

/* NEWバッジ */
.badge.new {
  background-color: #ffcc00;
  color: #000;
  padding: 2px 6px;
  font-size: 10px;
  margin-right: 4px;
  border-radius: 3px;
  animation: flash 1s infinite alternate;
}

/* 点滅アニメーション */
@keyframes flash {
  from { opacity: 1; }
  to { opacity: 0.3; }
}

/* ページ上部の余白を確保（ヘッダーが隠さないように） */
body {
  padding-top: 60px; /* ヘッダーの高さに合わせて調整 */
}



.accordion-toggle {
    cursor: pointer;
    background: #333;
    color: #fff;
    padding: 0.75em 1em;
    font-size: 1.1em;
    margin-bottom: 0.5em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    border-radius: 5px;
  }

  .toggle-label {
    font-weight: bold;
  }

  .toggle-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
  }

  .accordion-toggle.open .toggle-icon {
    transform: rotate(180deg); /* ▼→▲ */
  }

.dual-banner-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 2rem auto;
}

.equal-height {
  flex: 1 1 48%;
  background: linear-gradient(to bottom right, #fff6c1, #ffe7a1);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
}
/* 背景の暗めオーバーレイ */
.superpass-banner::before {
  content: "";
  position: absolute;
  inset: 0;
    background: rgba(255, 255, 255, 0.6); /* ✅ 黒→白・やや薄めに変更 */
  z-index: 1;
  border-radius: 15px;
}

/* テキスト部分 */
.superpass-banner p {
  font-size: 25px !important;
  font-weight: bold;
  color: #111111; /* ✅ 白→黒系に変更 */
  line-height: 1.6;
  z-index: 2;
  position: relative;
}

.superpass-em {
  color: #d40000;
  font-size: 30px !important;
  font-weight: 900;
  display: inline-block;
  margin: 0.5rem 0;
  z-index: 2;
}
.superpass-banner {
  position: relative;
  flex: 1 1 48%;
  background: linear-gradient(145deg, #fff8d6, #ffecb3); /* 高級感ある金色調グラデ */
  border: 5px solid #d4af37; /* ゴールドの太枠 */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 15px #ffe98a; /* 外と内に豪華な影 */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  text-align: center;
}
/* 左ボックスの文字 */
.superpass-banner p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.6;
}

.superpass-em {
  color: #d40000;
  font-size: 2rem;
  font-weight: 900;
  display: inline-block;
  margin: 0.5rem 0;
}

/* 右ボックス内の構成 */
.participation-banner .text-block {
  width: 100%;
}

.participation-banner {
  flex: 1 1 48%;
  background: linear-gradient(145deg, #fff8d6, #ffecb3); /* 高級感ある金色調グラデ */
  border: 5px solid #d4af37; /* ゴールドの太枠 */
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3), inset 0 0 15px #ffe98a; /* 外と内に豪華な影 */
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  position: relative;
}
.appeal-head {
  font-size: 1rem;
  color: #d40000;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.appeal-main {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1b1b1b;
}

.emphasis {
  color: #d47c00;
  font-weight: 900;
}

.appeal-button {
  font-size: 1rem;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(to bottom, #fff700, #ffc400);
  border: 2px solid #f1b300;
  border-radius: 50px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 0 #d29e00;
  transition: all 0.2s ease-in-out;
}

.appeal-button:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 0 #b97c00;
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .dual-banner-wrapper {
    flex-direction: column;
  }

  .equal-height {
    width: 100%;
    margin-bottom: 1rem;
  }

  .sp-break {
    display: inline;
  }
}

.appeal-title {
  font-size:30px;
  font-weight: 900;
  color: #383bff;
  text-align: center;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* サブ本文 */
.appeal-sub {
  font-size:20px;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: bold;
}

/* 無敵ボタン：金属っぽい立体感＋大きめ */
.muteki-button {
  display: block;
  margin: 0 auto;
  padding: 1.2rem 3rem;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fdfdfd;
  background: linear-gradient(145deg, #7e7e7e, #4d4d4d);
  border: 3px solid #2c2c2c;
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 #b1b1b1,
    0 4px 0 #2c2c2c,
    0 8px 6px rgba(0, 0, 0, 0.4);
  text-shadow: 1px 1px 2px #000;
  cursor: pointer;
  transition: all 0.2s ease;
}

.muteki-button:hover {
  background: linear-gradient(145deg, #a0a0a0, #5e5e5e);
  transform: scale(1.05);
  box-shadow:
    inset 0 1px 0 #e0e0e0,
    0 3px 0 #1a1a1a,
    0 6px 5px rgba(0, 0, 0, 0.4);
}

/* 全体レイアウト（2カラム） */
.schedule-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  background: linear-gradient(to right, #330000, #660000);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  align-items: center;      /* ← 縦中央 */
}

/* 左側の各日程ボックス */
.schedule-left {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.day-box {
  background: #0a0a0a;
  color: #ffd700;
  padding: 1rem;
  font-weight: bold;
  font-size: 1.2rem;
  border-left: 5px solid #ff0000;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff000088;
  text-align: center;
  transition: transform 0.2s ease;
}
.day-box:hover {
  transform: scale(1.02);
}

/* 右側：最終日の強調エリア */
.schedule-final {
  flex: 1 1 48%;
  background: radial-gradient(circle at center, #4a148c, #12002b);
  color: #ffffff;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px #00e5ffaa;
    justify-content: center;  /* 縦中央 */
  align-items: center;      /* 横中央 */
}

/* 日付 */
.final-date {
  font-size: 30px;
  font-weight: bold;
  color: #fff176;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 3px #000;
}

/* 発表タイトル */
.final-title {
  font-size: 35px;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 5px #000;
}

/* 強調メッセージ */
.final-highlight {
  font-size: 25px !important;
  font-weight: 900;
  background: linear-gradient(to right, #ffee58, #ff8f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 6px #ff9800;
  margin-bottom: 2rem;
}

/* ロゴ画像 */
.final-logo {
  max-width: 220px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.accordion-wrapper {
  margin: 2rem auto;
  max-width: 1000px;
}

.accordion-toggle {
  background: linear-gradient(to right, #fbc02d, #ffa000);
  padding: 1rem;
  font-size: 25px;
  font-weight: bold;
  color: #1b1b1b;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  margin-bottom: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.accordion-content {
  display: none;
}


.day-box:hover {
  transform: scale(1.02);
}

.day-box {
  background: #0a0a0a;
  color: #ffd700;
  padding: 1rem 1.5rem;
  font-weight: bold;
  font-size: 1.2rem;
  border-left: 5px solid #ff0000;
  border-radius: 8px;
  box-shadow: 0 0 10px #ff000088;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  width: 100%;
  max-width: 460px;   /* 中央揃えの幅 */
  margin: 0 auto 1rem auto; /* 中央寄せ＋下余白 */

  transition: transform 0.2s ease;
}

.day-box:hover {
  transform: scale(1.02);
}

.day-left {
  text-align: left;
  line-height: 1.4;
  flex: 1;
  font-size: 15px !important;
}

.day-right {
  text-align: right;
  font-size: 25px;
  color: #f1efef !important;
  white-space: nowrap;
  min-width: 110px;
}

@media screen and (max-width: 768px) {
  .day-box {
    flex-direction: column;
    align-items: center;     /* ← 中央寄せに変更 */
    text-align: center;      /* テキストも中央に */
    padding: 1rem;
  }

  .day-left,
  .day-right {
    width: 100%;
    text-align: center !important;      /* テキスト中央 */
    margin: 0.25rem 0;
  }

  .day-right {
    font-size: 20px;
    color: #ffffff !important;
  }

  .day-left {
  text-align: left;
  line-height: 1.4;
  flex: 1;
  font-size: 15px !important;
}
  .accordion-wrapper {
  margin-top: 50px;
  max-width: 1000px;
}
.br-sp {
  display: inline;
}
}