@charset "UTF-8";

/* ==============================================
   共通カラー設定（CSS変数）
============================================== */
:root {
    --color-text: #242424;        /* 基本の文字色・枠線 */
    --color-white: #ffffff;       /* 白 */
    --color-pink: #FF7AAF;        /* アクセントカラー（ピンク） */
    --color-yellow: #FFFF9F;      /* アクセントカラー（黄色） */
    --color-nav-bg: #001A37;      /* ナビゲーションの紺色 */
    --color-nav-grad: #084c7c;    /* ナビゲーショングラデーションの色 */
}

/* ==============================================
   font
============================================== */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Antique+B1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');

/* ==============================================
   base
============================================== */
html, body {
    margin: 0;
    padding: 0;
}

body {
    color: var(--color-text);
    font-family: "Shippori Antique B1", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
    background-color: var(--color-white);
    overflow-x: hidden; 
}

.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0px 20px 40px 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
}

h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--color-pink);
    font-family: serif;
    display: table;
    margin: 0 auto 60px;
    border-bottom: 2px solid var(--color-yellow);
    padding-bottom: 0px;
}

.section-bg-dark h2 {
    color: var(--color-white);
}

.blue-text {
    color: #005EC8;
    font-weight: bold;
}

/* ==============================================
   背景パターン設定
============================================== */
.section-bg-dark {
    background-image: url(../img/bg_dark.png);
    background-repeat: repeat;
    color: var(--color-white);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
}

.section-bg-light {
    background-image: url(../img/bg_light.png);
    background-repeat: repeat;
    background-size: auto;
    background-color: #e0f7fa;
    position: relative;
    z-index: 1;
    padding-top: 0;
    padding-bottom: 0;
}

.section-bg-white {
    background-color: var(--color-white);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ==============================================
   装飾パーツ設定
============================================== */
.separator-box {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    position: relative; 
    z-index: 1;
}

.separator-img {
    width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.lace-horizontal-bottom {
    width: 100%;
    line-height: 0; 
    margin-bottom: -39px; 
    position: relative;
    z-index: 100; 
    pointer-events: none; 
}

.lace-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==============================================
   メインビジュアル
============================================== */
.main-visual-area {
    width: 100%;
    background-image: url(../img/bg_dark.png);
    background-repeat: repeat;
    height: auto;
    padding-bottom: 0;
}

.mv-content {
    width: 90%;
    max-width: 100%; 
    height: auto;
    margin: 0 auto;  
    position: relative;
    overflow: hidden;
    padding: 0;
}

.mv-img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-on-visual {
    position: absolute;
    bottom: 20px; 
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    line-height: 1;
    width: 780px; 
    max-width: 90%;
    border-bottom: none;
    padding-bottom: 0;
    display: block; 
}

.logo-on-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.6));
}

.mv-gradient {
    position: absolute;
    bottom: 0;
    left: 50%; 
    transform: translateX(-50%);
    width: 100%;
    height: 40%; 
    z-index: 5;
    pointer-events: none;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

/* ==============================================
   ナビゲーション
============================================== */
.menu-area {
    width: 100%;
    background-color: var(--color-nav-bg);
    padding: 0;
}

.nav-list {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    list-style: none;
    padding: 0;
    border-left: 1px solid var(--color-white); 
    box-sizing: border-box;
}

.nav-list li {
    flex: 1;
    border-right: 1px solid var(--color-white); 
    box-sizing: border-box;
}

.nav-list li:last-child {
    border-right: 1px solid var(--color-white);
}

.nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(100px, 12vw, 130px);
    text-decoration: none;
    background: linear-gradient(to top left, var(--color-nav-bg) 0%, var(--color-nav-grad) 100%);
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a:hover {
    filter: brightness(1.3);
}

.nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.nav-en {
    height: clamp(45px, 6vw, 60px);
    width: auto;
    display: block;
}

.nav-jp {
    font-family: "Shippori Antique B1", serif;
    font-size: clamp(16px, 1.5vw, 18px); 
    color: var(--color-white);
    margin-top: 10px;
    letter-spacing: 0.05em;
    font-weight: normal;
}

.nav-line {
    display: block;
    height: 2px;
    width: 0;
    background-color: var(--color-yellow);
    margin: 0 auto;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-list a:hover .nav-line {
    width: 80%;
}

/* ==============================================
   セクションタイトル画像調整
============================================== */
section h2 img {
    height: clamp(95px, 20vw, 150px);
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/* ==============================================
   ページ内リンク位置調整
============================================== */
#story, #comment {
    scroll-margin-top: -260px; 
}

@media (max-width: 1280px) {
    #story, #comment {
        scroll-margin-top: -180px; 
    }
}

/* ==============================================
   Movieセクション
============================================== */
#movie .inner {
    padding: 30px 20px;
}

.info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    font-family: "Shippori Antique B1", serif;
    margin-top: 20px;
    margin-bottom: 40px;
}

.fod-button {
    display: inline-block;
    background: var(--color-white);
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 15px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.15);
    transition: all 0.3s;
    line-height: 0;
}
.fod-button:hover {
    transform: translateY(2px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.fod-button img {
    height: 22px; 
    width: auto;
}

.info-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 0.05em;
}

.info-sns {
    display: flex;
    gap: 15px;
}
.info-sns img {
    height: 30px;
    width: auto;
    transition: opacity 0.3s;
}
.info-sns a:hover img {
    opacity: 0.7;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: clamp(320px, 100%, 1000px);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    box-sizing: border-box; 
    border: 4px solid var(--color-white);
    background: #000;
    padding-top: 0; 
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    vertical-align: top; 
    object-fit: cover;
}

/* ==============================================
   イントロダクション
============================================== */
.intro-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.intro-text {
    flex: 1;
    text-align: justify;
    line-height: 2;
}

.intro-text h3 {
    font-family: "Shippori Antique B1", serif;
    font-size: 34px;
    color: #FF7AAF;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.intro-text p {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 20px;
    font-family: "Shippori Mincho", serif;
    font-weight: normal;
    line-height: 2;
}

.intro-images {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ==============================================
   ストーリー
============================================== */
.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-card {
    display: block;
    background: var(--color-white);
    border: 1.5px solid var(--color-text);
    padding: 20px;
    text-align: center;
    color: var(--color-text);
    text-decoration: none;
    transition: opacity 0.3s, border-color 0.3s;
    height: 100%;
    box-sizing: border-box;
}

.story-card:hover {
    opacity: 0.8;
}

.story-ep {
    font-family: "Shippori Antique B1", serif;
    font-size: clamp(20px, 4vw, 24px); 
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.story-num {
    font-size: 1.8em;
    margin: 0 2px;
    vertical-align: -2px;
}

.story-thumb {
    width: 100%;
    margin-bottom: 10px;
}

.story-thumb img {
    width: 100%;
    border: 1.5px solid var(--color-text);
    height: auto;
    display: block;
}

.story-title {
    font-size: clamp(16px, 4.5vw, 20px); 
    color: var(--color-text);
    margin-bottom: 10px;
}

/* ==============================================
   出演者コメント
============================================== */
.comment-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 0;
    overflow: hidden;
}

.comment-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 30px 40px;
    border-bottom: 2px solid #4E606A;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-img {
    width: 180px; 
    flex-shrink: 0;
}
.comment-img img {
    width: 100%;
    height: auto;
    display: block;
    border:  1px var(--color-text) solid;
}

.comment-body {
    flex: 1;
    text-align: left;
}

.comment-name {
    font-size: clamp(18px, 5vw, 22px); 
    color: var(--color-white);
    font-weight: normal; 
    margin-bottom: 15px;
    font-family: "Shippori Antique B1", serif;
    line-height: 1.2;
}

.comment-text {
    font-size: clamp(15px, 4.5vw, 18px); 
    color: var(--color-white);
    line-height: 1.8;
    font-family: "Shippori Mincho", serif;
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==============================================
   相関図 セクション
============================================== */
#chart .inner {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
}

.chart-bg {
    width: 100% !important;
    height: auto;
    display: block;
}

.chart-area {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.char-pin {
    position: absolute;
    display: block;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	z-index: 50;
}

.char-pin:hover {
transform: translateY(-5px) scale(1.01);
    z-index: 100;
}

.char-pin img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}


/* ==============================================
   人物ポップアップ
============================================== */

.modal-overlay {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.is-active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.modal-overlay-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    cursor: pointer;
}

.modal-content {
    background: var(--color-white);
    width: 100%;
    max-width: 850px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    height: auto;
    max-height: none; 
    overflow: visible;
    padding: 50px 40px;
    box-sizing: border-box;
    position: relative;
}

.modal-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-height: 70vh;
    overflow-y: auto;
    padding-right: 15px; 
    -webkit-overflow-scrolling: touch; 
}

.modal-flex::-webkit-scrollbar { width: 8px; }
.modal-flex::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.modal-flex::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
.modal-flex::-webkit-scrollbar-thumb:hover { background: #aaa; }

.modal-left { width: 30%; flex-shrink: 0; }
.modal-main-img { width: 100%; height: auto; display: block; box-shadow: none; }
.modal-right { width: 70%; text-align: left; }
.modal-ruby { font-family: "Shippori Mincho B1", serif; font-size: 15px; margin: 0 0 8px 0; color: #666; }
.modal-char-name { font-family: "Shippori Antique B1", sans-serif; font-size: clamp(28px, 4vw, 36px); font-weight: bold; margin: 0 0 20px 0; line-height: 1.1; letter-spacing: 0.02em; color: #222; }
.modal-actor-area { margin-bottom: 30px; padding-bottom: 12px; border-bottom: 2px solid var(--color-yellow); width: 100%; display: block; }
.modal-actor-name { font-family: "Shippori Mincho B1", serif; font-size: 20px; margin: 0; font-weight: bold; }
.modal-desc { font-family: "Shippori Mincho B1", serif; font-size: 16px; line-height: 1.9; color: #444; text-align: justify; }

.modal-close {
    position: absolute;
    top: -50px;
    right: 0; 
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    z-index: 100;
    transition: transform 0.3s ease;
    color: transparent; 
}
.modal-close::before, .modal-close::after { content: ""; position: absolute; top: 50%; left: 50%; width: 100%; height: 3px; background-color: var(--color-yellow); border-radius: 2px; }
.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.modal-close:hover { transform: rotate(90deg); }
.actor-note-red { display: inline-block; color: var(--color-pink); font-size: 15px; margin-left: 15px; font-weight: bold; }

/* ==============================================
   Cast & Staff セクション
============================================== */
.cast-container {
    text-align: center;
    color: var(--color-text);
}

.cast-sub-title-img {
    display: block;
    margin: 40px auto 20px;
    width: 100px;
    height: auto;
}

.cast-group {
    margin-bottom: 25px; 
}

.cast-group p {
    margin: 0;
    line-height: 2.0; 
}

.cast-large p {
    font-family: "Shippori Mincho", serif;
    font-size: 19px;
    font-weight: normal;
}

.cast-normal p {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
}

.cast-staff p {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    line-height: 2.0;
}

/* ==============================================
   Music セクション
============================================== */
.music-card {
    background: var(--color-white);
    padding: 60px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 80px; 
}

.music-content {
    position: relative;
    z-index: 5; 
    text-align: center;
}

.music-artist {
    font-family: "Shippori Antique B1", serif;
    font-size: clamp(20px, 4vw, 24px); 
    margin-bottom: 30px;
    font-weight: normal;
}

.music-jacket {
    margin-bottom: 20px;
}

.music-jacket img {
    width: 250px;
    height: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.music-label {
    font-family: "Shippori Mincho", serif;
    font-size: 16px;
    margin-top: 10px;
}

.music-card .deco-05 {
    position: absolute;
    left: -80px; 
    top: auto;
    width: 320px;
    bottom: -30px; 
    z-index: 1; 
}

.banner-area {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.banner-link {
    display: block;
    max-width: 300px;
    border: 1px solid rgba(255,255,255,0.2);
}

.photo-line-area {
    width: 100%;
    line-height: 0;
    margin-top: 0;
    overflow: hidden;
}
.photo-line-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==============================================
   Newsセクション
============================================== */
.news-container {
    width: 100%;
    margin: 0 auto;
}

.mezamashi-btn-area {
    text-align: right;
    margin-bottom: 10px;
}

.btn_mezamashi-media {
    display: inline-flex;
    align-items: flex-end;
    text-decoration: none;
    color: var(--color-pink);
    font-weight: bold;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn_mezamashi-media:hover {
    opacity: 0.7;
}

.btn_mezamashi-media img {
    height: 20px;
    margin-left: 5px;
    vertical-align: bottom;
}

/* ==============================================
   共通パーツ (ボタンなど)
============================================== */

.btn-fod-small {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 110px;
    height: 44px;
    background: var(--color-white);
    border: 2px solid #ccc;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    box-sizing: border-box;
    padding: 10px 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.btn-fod-small img {
    height: 100%; width: auto; object-fit: contain; display: block;
}

.btn-fod-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-color: #E60012;
}


/* ==============================================
   上部 お知らせエリア（FOD ＆ 地上波）
============================================== */

/* --- FOD配信のお知らせ --- */
.mv-announcement {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 20px; 
    background: transparent; 
    text-decoration: none; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mv-announcement:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mv-announcement:hover .btn-fod-small {
    border-color: #E60012;
}

.mv-announcement .btn-fod-small {
    width: clamp(100px, 14vw, 140px);
    height: clamp(40px, 6vw, 54px);
    padding: 8px 18px;
}

.mv-announcement-text {
    font-size: clamp(16px, 4vw, 24px);
    font-weight: bold;
    color: var(--color-text);
    letter-spacing: 0.05em;
    line-height: 1.6;
}

.announcement-num {
    font-size: 1.6em;
    font-family: "Shippori Antique B1", serif;
    vertical-align: -2px;
    margin: 0 2px;
}

.announcement-light {
    font-weight: normal;
    font-family: "Shippori Mincho", serif;
    font-size: 0.95em;
    margin-left: 5px;
}

.announcement-light + .announcement-num { margin-left: 10px; }

.sp-br {
    display: none;
}


/* --- 地上波放送のお知らせ --- */
.tv-broadcast-info {
    text-align: center;
    margin: 40px 0 60px 0; 
}

.tv-broadcast-box {
    display: inline-block;
    background: var(--color-white);
    border: 2px solid var(--color-pink);
    border-radius: 8px;
    width: 100%;
    max-width: 800px; 
    padding: 30px 40px; 
    box-sizing: border-box;
    position: relative;
}

.tv-broadcast-box::before {
    content: "地上波放送";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-pink);
    color: var(--color-white);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.1em;
    padding: 6px 20px;
    border-radius: 20px;
}

.tv-small-note {
    display: block;
    font-size: clamp(14px, 3.5vw, 16px); 
    color: #555;
    margin-bottom: 12px;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
}

.tv-main-text {
    margin: 0;
    font-family: "Shippori Antique B1", serif;
    font-size: clamp(18px, 5vw, 26px); 
    color: var(--color-text);
    line-height: 1.7;
}

.highlight-date {
    color: var(--color-pink);
    font-size: clamp(24px, 6vw, 36px); 
    font-weight: bold;
    margin-right: 5px;
}


/* ==============================================
   VOD セクション（カード部分）
============================================== */
.vod-container-new {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 100px;
    display: flex;
    flex-direction: column;
    gap: 60px; 
    background: transparent;
    padding: 0;
    box-sizing: border-box;
}

.vod-title {
    text-align: center;
    margin-top: 0;
}

.vod-title img {
    height: clamp(100px, 20vw, 150px);
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.vod-card-new {
    width: 100%;
    background: transparent;
}

.vod-card-header {
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    box-sizing: border-box;
}

.header-pink { background-color: rgb(255 151 197 / 80%); }
.header-purple { background-color: rgb(178 180 255 / 65%); }

.vod-card-header h3 {
    margin: 0;
    color: var(--color-white);
    font-size: clamp(16px, 4vw, 32px); 
    font-family: "Shippori Antique B1", serif;
    font-weight: normal;
    line-height: 1.2;
}

.vod-card-body {
    background: var(--color-white);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.vod-left {
    width: 45%; 
    max-width: 400px;
    flex-shrink: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.vod-program-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.vod-action-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vod-action-text {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.vod-right { flex: 1; }

.vod-desc-text {
    font-size: 14px;
    line-height: 2.0;
    color: #666;
    margin: 0;
    text-align: left;
}


/* ==============================================
   セクション余白設定
============================================== */
#story .inner,
#comment .inner {
    padding-top: 0;
}
#cast .inner {
    padding-bottom: 80px;
}
#music .inner {
    padding-top: 140px; 
}
#news .inner{
    padding-top: 90px;
    padding-bottom: 100px;
}
#vod .inner{
    padding-top: 120px;
}


/* ==============================================
   装飾画像 (deco-img)
============================================== */
.deco-img {
    position: absolute;
    z-index: 1; 
    pointer-events: none;
    max-width: 100%;
    height: auto;
}
.deco-01 { bottom: 25px; left: 0; width: clamp(120px, 30vw, 480px);}
.deco-02 { bottom: 20px; left: 0; top: auto; width: clamp(100px, 25vw, 400px); mix-blend-mode: difference; z-index: 1; }
.deco-03 { bottom: -90px; right: 30px; width: clamp(100px, 25vw, 380px); }
.deco-04 { bottom: -20px; right: 20px; width: clamp(100px, 25vw, 380px); }
.deco-05 { left: 0; top: auto; width: clamp(100px, 22vw, 350px); bottom: 120px; z-index: 1; }


/* ==============================================
   2/22時点（COMING SOON）の設定　※あとで削除
============================================== */
.nav-list .nav-disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    height: clamp(100px, 12vw, 130px); 
    background: linear-gradient(to top left, var(--color-nav-bg) 0%, var(--color-nav-grad) 100%);
    cursor: default;
    opacity: 0.6;
}

.nav-soon-wrapper {
    position: relative;
    display: inline-block;
}

.nav-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--color-nav-bg); 
    color: var(--color-yellow); 
    border-bottom: 1.5px solid var(--color-yellow); 
    letter-spacing: 0.1em;
    padding: 2px 8px;
    font-family: "Times New Roman", "Shippori Mincho B1", serif; 
    font-weight: normal;
    font-size: 13px;
    white-space: nowrap;
}

.vod-right.temp-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}


/* ==============================================
   SP対応 (スマホ用設定まとめ)
============================================== */
@media (max-width: 768px) {
    /* --- 共通・パーツ --- */
    .lace-horizontal-bottom { margin-bottom: -59px; }
    #story, #comment { scroll-margin-top: -20px; }

    /* --- メインビジュアル --- */
    .mv-content { width: 100%; height: auto; }
    .logo-on-visual { bottom: 5px; width: 100%; }

    /* --- ナビゲーション --- */
    .nav-list { flex-wrap: wrap; border-left: none; }
    .nav-list li { width: 50%; flex: none; border-bottom: 1px solid var(--color-white); }
    .nav-list li:last-child { width: 100%; border-right: none; border-bottom: none; }
    .nav-list li:nth-child(2), .nav-list li:nth-child(4) { border-right: none; }

    /* --- Movie --- */
    .info-bar { flex-direction: column; gap: 15px; text-align: center; }
    .info-text { font-size: 1rem; }
    .video-wrapper { width: 100%; border: none; }

    /* --- イントロダクション --- */
    .intro-content { flex-direction: column; }
    .intro-images { flex-direction: row; width: 100%; justify-content: space-between; }
    .intro-images img { width: 32%; }

    /* --- ストーリー --- */
    .story-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 20px; }
    .story-card { padding: 16px; }
    .story-thumb { width: 60%; margin: 0 auto 30px auto; }

    /* --- コメント --- */
    .comment-item { flex-direction: column; align-items: center; text-align: center; gap: 20px; padding: 30px 20px; }
    .comment-body { text-align: center; }   
    .comment-img { width: 180px; margin: 0 auto; }
    .comment-name { font-size: 19px; font-weight: bold; color: #fff; margin-bottom: 15px; background-color: rgba(255,255,255,0.1); padding: 5px 10px; display: inline-block; }
    .comment-text { font-size: 14px; line-height: 1.8; color: #ddd; text-align: justify; }

/* --- 人物ポップアップ (Modal) --- */
	.modal-content { padding: 40px 25px; max-width: 95%; }
    .modal-flex { flex-direction: column; gap: 25px; max-height: 75vh; overflow-y: auto; padding-right: 0; -webkit-overflow-scrolling: touch; }
    .modal-left { width: 100%; }
    .modal-right { width: 100%; text-align: center; }
    .modal-main-img { width: 50%; margin: 0 auto; }
    .modal-desc { text-align: justify; padding-right: 15px; line-height: 1.6; font-size: 15px; }
    .modal-actor-area { margin: 0 auto 30px auto; max-width: 80%; }
    .modal-close { top: 15px !important; right: 15px; }
    .modal-close::before, .modal-close::after { background-color: #999; height: 2px; }
    .actor-note-red { font-size: 13px; margin-left: 10px; }
	

    /* --- Cast & Staff --- */
    .cast-list { grid-template-columns: 1fr; }
    .cast-sub-title-img { width: 80px; margin: 30px auto 15px; }

    /* --- Music --- */
    .music-card { padding: 40px 20px; margin-bottom: 50px; }
    .music-jacket img { width: 200px; }
    .music-card .deco-05 { width: 180px; bottom: -15px; left: -30px; }

    /* --- VOD --- */
    /*.vod-container-new { padding: 60px 20px 100px; gap: 40px; }
    .mv-announcement { flex-direction: column; gap: 10px; }*/
    .vod-container-new { padding: 0 20px 80px; gap: 40px; }   
    .mv-announcement { display: block; padding: 20px 10px; }
    /*.mv-announcement .btn-fod-small { width: 30%; height: 40px; padding: 8px 14px; }*/
    .mv-announcement .btn-fod-small { display: inline-flex; vertical-align: middle; margin-right: 5px; margin-bottom: 5px; }
    
    .vod-title { margin-bottom: 20px; }
    .vod-card-new { margin-top: 0; margin-bottom: 30px; }
    .vod-card-header { padding: 15px 10px; }
    .vod-card-body { display: flex; flex-direction: column; align-items: center; padding: 0px 10px 50px 10px; }
    .vod-left, .vod-right { width: 80%; }
    .vod-left { margin-bottom: 0px; }
    .vod-program-logo img { width: 80%; margin: 20px auto 0px; }
    .vod-desc-text { width: 100%; margin: 0; text-align: left; font-size: 16px; line-height: 1.6; } 

    /* --- 装飾画像 (Deco) --- */
    .deco-img { max-width: 150px; }
    .deco-01 { bottom: -30px; left: auto; right: 10px; }
    .deco-02 { bottom: 0px; }
    .deco-03 { bottom: -50px; right: 0; }
    .deco-04 { bottom: -30px; right: 0; }
    .deco-05 { bottom: 0px; }
    
    /* --- 上部 お知らせエリア --- */
    .tv-broadcast-info { padding: 0 10px; margin: 30px 0 50px 0; }
    .tv-broadcast-box { padding: 30px 15px 20px; width: 100%; box-sizing: border-box; }
    .mv-announcement { width: auto; max-width: 100%; box-sizing: border-box; margin-left: 10px; margin-right: 10px; }
    .mv-announcement-text { word-break: break-all; }
    .sp-br { display: block; }

    /* 2/22時点（COMING SOON）の設定　※あとで削除 */
    .vod-right.temp-center { margin-top: 10px; }
}