/* 校長ページ用 --- */
/* ==========================================================================
   MODULE: p-hero (Size Adjusted Edition)
   ========================================================================== */
:root {
    --it-blue: #0054a6;
    --it-cyan: #15c1ff;
    --it-bg-light: #f8fbff;
    --it-text: #2d3436;
    --it-text-sub: #636e72;
    --it-code-bg: #1a1a1a;
}

/* --- 2. Headers --- */
.it-sec-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.it-sec-label { 
    color: var(--it-blue); 
    font-weight: 800; 
    letter-spacing: 0.25em; 
    display: block; 
    margin-bottom: 12px; 
}

.p-hero {
    background-color: #ffffff;
    /* 上下の余白を100pxから75pxに詰め、ファーストビューの収まりを改善 */
    padding: 75px 0;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* 中央に寄せて余白の美しさを強調 */
    gap: 60px; /* 画像とテキストの間隔 */
}

/* --- 左側：ビジュアルエリア --- */
.p-hero-image {
    flex: 0 0 380px; /* 幅を380pxに固定。ノートPCでも圧迫感を与えないサイズ */
    position: relative;
}

.image-wrapper {
    position: relative;
    z-index: 2;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    /* 影を少しシャープにして浮き上がりを抑制 */
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08);
}

/* 装飾の青枠：画像に合わせて一回り小さく */
.decoration-box {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid #0054a6; /* メディアファイブカラー */
    z-index: 1;
    border-radius: 4px;
}

/* --- 右側：テキストエリア --- */
.p-hero-content {
    flex: 0 1 520px; /* テキストが横に伸びすぎないよう制限 */
}

.p-hero-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.p-hero-label .en {
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #0054a6;
}

.p-hero-label .line {
    width: 25px;
    height: 2px;
    background: #0054a6;
}

.p-title-sub {
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
}

.p-name-ja {
    /* 3.5remから2.8remへ。品格を保ちつつノートPCに最適化 */
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 5px 0;
    letter-spacing: 0.05em;
    color: #1a1a1a;
}

.p-name-en {
    color: #999;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
}

.p-intro-text {
    color: #444;
    margin-bottom: 30px;
}

/* SNSリンク：ボタンサイズも少しコンパクトに */
.p-hero-sns {
    display: flex;
    align-items: center;
    gap: 12px;
}

.p-sns-link {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.p-sns-link:hover {
    background: #0054a6;
    color: #fff;
    transform: translateY(-2px);
}

.p-sns-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #bbb;
    letter-spacing: 0.1em;
}

/* --- レスポンシブ：モバイル --- */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .p-hero-image {
        flex: 0 0 auto;
        max-width: 280px; /* スマホではさらに小さく */
        margin: 0 auto;
    }
    .p-hero-label {
        justify-content: center;
    }
    .p-hero-sns {
        justify-content: center;
    }
    .decoration-box {
        top: -10px;
        left: -10px;
    }
    .p-name-ja {
        font-size: 2.2rem;
    }
}
/* --- p-career: Business Career & Passion --- */

.p-career {
    background-color: #f8f9fa; /* 薄いグレー背景でHeroと区別 */
    padding: 100px 0;
}

.p-sec-header {
    text-align: center;
    margin-bottom: 70px;
}

.p-sec-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.p-sec-lead {
    font-size: 1rem;
    color: #0054a6;
    font-weight: 600;
}

.p-career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.p-content-label {
    font-size: 0.9rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* タイムラインのデザイン */
.p-timeline {
    position: relative;
    padding-left: 20px;
}

.p-timeline-item {
    position: relative;
    padding-bottom: 40px;
    border-left: 2px solid #ddd;
    padding-left: 30px;
}

.p-timeline-item:last-child {
    border-left: 2px solid transparent; /* 最後の線は消す */
}

.p-time-point {
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
}

.p-timeline-item.active .p-time-point {
    background: #0054a6;
    box-shadow: 0 0 0 5px rgba(0, 84, 166, 0.2);
}

.p-time-year {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
}

.p-time-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
}

/* 右側：情熱カードのデザイン */
.p-passion-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 5px solid #0054a6;
}

.p-passion-intro {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0054a6;
    line-height: 1.5;
    margin-bottom: 25px;
}

.p-passion-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .p-career-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .p-passion-card {
        padding: 30px;
    }
}


/* --- p-elip: Cyber Black Edition --- */

/* セクション全体の基盤：高さをしっかり確保 */
.p-elip {
    background-color: #1a1a1a;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}



/* コンテナを相対配置にして画像を自由に動かす */
.elip-container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

/* 左側：サイド情報 */
.elip-side-info { flex: 1.5; }
.elip-sub-title {
    display: inline-block;
    background: #ff007f; /* マゼンタ */
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.elip-desc-box {
    color: #ccc;
    border-left: 3px solid #00ffff; /* シアン */
    padding-left: 10px;
}

/* 中央：メインテキスト */
.elip-main-content { flex: 1.5; text-align: center; }
.elip-name {
    color: #00ffff !important; /* シアン */
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 10px;
}
.elip-name .en {
    color: #fff;
    vertical-align: middle;
    margin-left: 10px;
}
.elip-lead { margin-bottom: 40px; color: #ccc; }

/* ボタンデザイン */
.elip-btns { display: flex; justify-content: center; gap: 20px; }
.btn-cyan, .btn-magenta {
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
    border: 2px solid transparent;
}
.btn-cyan {
    background: #00ffff;
    color: #1a1a1a;
}
.btn-cyan:hover {
    background: transparent;
    color: #00ffff;
    border-color: #00ffff;
    box-shadow: 0 0 15px #00ffff;
}
.btn-magenta {
    background: #ff007f;
    color: #fff;
}
.btn-magenta:hover {
    background: transparent;
    color: #ff007f;
    border-color: #ff007f;
    box-shadow: 0 0 15px #ff007f;
}

/* テキスト側：左半分を専有し、画像に少し重ねる */
.elip-text-side {
    flex: 0 0 50%;
    position: relative;
    z-index: 10; /* 画像より上にくるように */
}

/* ビジュアル側： */
.elip-visual-area {
    z-index: 1;
}
/* --- 画像とフレームを包むラッパー --- */
.elip-image-wrapper {
    position: relative; /* フレームの基準点 */
    display: inline-block; /* 画像サイズにフィットさせる */
    width: 100%;
    line-height: 0; /* 下部の隙間を解消 */
}

.elip-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to left, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
    filter: brightness(0.9) contrast(1.1);
    position: relative;
    z-index: 1;
}
/* --- 画像を覆うサイバーフレーム --- */
.cyber-frame {
    position: absolute;
    /* 画像の端から少し外側に浮かせる（内側にしたい場合は正の値に変更） */
    top: -10px;
    left: 10px;
    right: -10px;
    bottom: 10px;
    
    border: 2px solid #00ffff;
    /* 画像（z-index: 1）よりも上に配置 */
    z-index: 5; 
    
    pointer-events: none; /* フレームがリンククリックの邪魔をしないように */
    opacity: 0.6;
    
    /* サイバー感を出すカッティング：右上と左下を斜めに削る */
    clip-path: polygon(
        0 0, 
        calc(100% - 30px) 0, 100% 30px, 
        100% 100%, 
        30px 100%, 0 calc(100% - 30px)
    );
    
    /* ぼんやり光らせる */
    box-shadow: inset 0 0 15px rgba(0, 255, 255, 0.3), 0 0 15px rgba(0, 255, 255, 0.3);
}

/* 商標表記（下部） */
.copyright-notice {
    position: relative;
    z-index: 3;
    margin-top: 50px;
    font-size: 10px;
    color: #888;
    line-height: 1.6;
}

/* レスポンシブ調整 */
@media (max-width: 992px) {
    .elip-container {
        flex-direction: column;
        text-align: center;
    }
    .elip-text-side {
        flex: 0 0 100%;
        margin-bottom: 40px;
    }
    .elip-visual-area {
        position: relative;
        right: 0;
        width: 100%;
        margin-top: 30px;
    }
    .elip-image-wrapper img {
        mask-image: none;
        -webkit-mask-image: none;
    }
}

/* --- p-philosophy: Philosophy & Message --- */

.p-philosophy {
    background-color: #0d1218; /* 非常に深い紺色（信頼と静寂） */
    color: #ffffff;
    padding: 120px 0;
    position: relative;
}

.p-philosophy-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* ヘッダー部分 */
.p-philosophy-header {
    text-align: center;
    margin-bottom: 80px;
}

.p-en-sub {
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #00ffff; /* シアン */
    display: block;
    margin-bottom: 20px;
}

.p-main-copy {
    color: #ffffff !important;
    letter-spacing: 0.1em;
}

/* メッセージ本文 */
.p-message-content {
    position: relative;
    padding: 0 40px;
}

.p-quote-mark {
    position: absolute;
    top: -40px;
    left: -10px;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    line-height: 1;
}

.p-text-body {
    line-height: 2.2;
    color: #cbd5e0; /* 少しだけ明るさを落とした白で読みやすく */
    text-align: justify;
}

.p-text-body p {
    margin-bottom: 2em;
}

/* 署名エリア */
.p-signature-area {
    margin-top: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 30px;
}

.p-sig-title {
    color: #999;
    margin-bottom: 10px;
}

.p-sig-name-ja {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.p-signature-img img {
    height: 60px; /* 署名画像の高さ調整 */
    width: auto;
    filter: brightness(0) invert(1); /* 黒背景用に白抜きにする */
    opacity: 0.8;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .p-philosophy {
        padding: 80px 0;
    }
    .p-main-copy {
        font-size: 2rem;
    }
    .p-text-body {
        font-size: 1.05rem;
        line-height: 2;
    }
    .p-message-content {
        padding: 0 10px;
    }
    .p-signature-area {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- p-social: Social Bridge --- */

.p-social {
    background-color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.p-social-header {
    margin-bottom: 60px;
}

.p-social-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #333;
    margin-bottom: 10px;
}

.p-social-lead {
    font-size: 1rem;
    color: #666;
}

/* SNSグリッドレイアウト */
.p-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.p-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.p-social-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    transition: 0.3s;
}

.p-social-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 10px;
}

.p-social-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* 各カードのホバー演出（サイバー感を少し継承） */
.p-social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.x-card:hover { border-bottom: 4px solid #0054a6; } /* ビジネスの青 */
.yt-card:hover { border-bottom: 4px solid #ff0000; } /* YTの赤 */
.ig-card:hover { border-bottom: 4px solid #e63946; } /* えりPのピンク/赤 */

/* 下部リンクボタン */
.p-page-back {
    margin-top: 40px;
}

.btn-page-link {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(90deg, #0054a6, #e63946); /* ビジネスとえりPの融合 */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-page-link .en {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 5px;
    opacity: 0.8;
}

.btn-page-link .ja {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-page-link:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .p-social-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px auto;
    }
}

/* ==========================================================================
   P-CAREER TIMELINE STYLE
   ========================================================================== */

.it-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    padding-left: 50px; /* 線を左に配置 */
}

/* 垂直の線 */
.it-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, 
        var(--it-blue) 0%, 
        var(--it-cyan) 50%, 
        transparent 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    text-align: left;
}

/* タイムラインの点 */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px; /* 線の上に配置 */
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--it-blue);
    z-index: 2;
}

.timeline-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
}

.timeline-year {
    font-weight: 800;
    color: var(--it-blue);
    line-height: 1;
}

.timeline-era {
    color: var(--it-text-sub);
    font-weight: bold;
}

.timeline-content {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 84, 166, 0.05);
    border: 1px solid rgba(0,0,0,0.03);
}

.timeline-content h3 {
    margin-bottom: 12px;
    color: var(--it-text);
}


/* 創業アイテムの特別装飾 */
.founding .timeline-item::before {
    background: var(--it-blue);
}

.founding-label {
    display: inline-block;
    background: var(--it-blue);
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .it-timeline {
        padding-left: 35px;
    }
    .it-timeline::before {
        left: 10px;
    }
    .timeline-item::before {
        left: -30px;
    }
    .timeline-content {
        padding: 20px;
    }
}

/* 現在のアイテムを少し強調 */
.timeline-item.current::before {
    background: var(--it-cyan);
    border-color: var(--it-blue);
    box-shadow: 0 0 15px var(--it-cyan);
    animation: pulse 2s infinite; /* 輝くようなアニメーション */
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.timeline-item.current .timeline-content {
    border: 1.5px solid var(--it-blue);
    background: linear-gradient(to bottom right, #fff, var(--it-bg-light));
}

.timeline-item.current .timeline-year {
    color: var(--it-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 最後のアイテムの線が飛び出ないように調整 */
.it-timeline .timeline-item:last-child {
    margin-bottom: 0;
}




.music-history-v2 {
    background: #fffcf5; /* 紙のような落ち着いた白 */
    padding: 100px 20px;
    font-family: "Noto Sans JP", sans-serif;
}

.music-history-v2 .music-history-inner {
    max-width: 850px;
    margin: 0 auto;
}

.music-history-v2 .music-history-intro {
    text-align: center;
    margin-bottom: 70px;
}

.music-history-v2 .music-history-sub {
    font-size: 14px;
    font-weight: 800;
    color: #dd2350; /* アクセントのピンク */
    letter-spacing: 0.2em;
    margin-bottom: 8px;
}

.music-history-v2 .music-history-title {
    font-size: 32px;
    color: #6135bf; /* ブランドカラーの紫 */
    font-weight: bold;
    margin: 0;
}

.music-history-v2 .music-timeline-container {
    position: relative;
}

/* 中央のライン */
.music-history-v2 .music-timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6135bf, #dd2350, #6135bf);
    transform: translateX(-50%);
}

.music-history-v2 .music-timeline-item {
    position: relative;
    width: 50%;
    margin-bottom: 40px;
    box-sizing: border-box;
}

/* 左右のレイアウト */
.music-history-v2 .music-timeline-item.m-left { left: 0; text-align: right; padding-right: 45px; }
.music-history-v2 .music-timeline-item.m-right { left: 50%; text-align: left; padding-left: 45px; }

.music-history-v2 .music-timeline-date {
    font-size: 16px;
    font-weight: 900;
    color: #dd2350;
    margin-bottom: 6px;
}

.music-history-v2 .music-timeline-content {
    background: #fff;
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: inline-block;
    transition: transform 0.3s ease;
}

.music-history-v2 .music-timeline-content:hover {
    transform: translateY(-3px);
}

.music-history-v2 .music-timeline-content h3 {
    font-size: 17px;
    margin: 0;
    color: #1a202c;
    line-height: 1.4;
    font-weight: bold;
}

/* 中央のマーカー */
.music-history-v2 .music-timeline-item::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #dd2350;
    border-radius: 50%;
    top: 25px;
    z-index: 1;
}

.music-history-v2 .music-timeline-item.m-left::after { right: -9px; }
.music-history-v2 .music-timeline-item.m-right::after { left: -9px; }

/* スマホ対応 */
@media screen and (max-width: 650px) {
    .music-history-v2 .music-timeline-line { left: 20px; }
    .music-history-v2 .music-timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding: 0 0 30px 50px; }
    .music-history-v2 .music-timeline-item::after { left: 11px !important; }
}


/* YouTube動画のレスポンシブ対応 */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9の比率 (9 ÷ 16 = 0.5625) */
    margin: 20px 0;      /* 上下に余白 */
    background: #000;    /* 読み込みまで黒背景を表示 */
    border-radius: 8px;  /* 角を少し丸く（お好みで） */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* 軽く影をつけて浮かせる */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* 動画下のキャプション（タイトル・日付）のデザイン */
.video-caption {
    margin-top: 15px;
    padding: 0 10px;
}

.video-caption h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 5px 0;
    color: #333;
}

.video-caption p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* セクション全体の装飾 */
.latest-video-section {
    padding: 60px 20px;
    background-color: #fcfcfc; /* ほんのりグレーで他のエリアと差別化 */
}

.section-inner {
    max-width: 800px; /* 動画が大きくなりすぎないように制限 */
    margin: 0 auto;
}

/* タイトル部分 */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub-title {
    display: block;
    font-size: 14px;
    color: #dd2350; /* アクセントカラー */
    font-weight: bold;
    letter-spacing: 0.1em;
}

.main-title {
    font-size: 28px;
    font-weight: bold;
    margin: 10px 0;
    color: #333;
}

/* 動画カード（枠線と影） */
/*
.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
*/

/* 動画情報エリア */
.video-info {
    padding: 25px;
}

.video-meta {
    display: flex;
    gap: 15px;          /* 日付とタグの間のスキマ */
    align-items: center;
    margin-bottom: 12px;
    /* justify-content: space-between; は削除またはコメントアウト */
}

.video-date {
    font-size: 14px;
    color: #888;
}

.video-tag {
    background: #dd2350;
    color: #fff;
    font-size: 10px;    /* 少し小さく */
    padding: 1px 8px;   /* 上下を少しタイトに */
    border-radius: 4px; /* 丸みをおさえて四角く（お好みで） */
    font-weight: bold;
    text-transform: uppercase;
}

.video-title {
    font-size: 20px;
    font-weight: bold;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* リンクボタン */
.yt-channel-link {
    display: inline-block;
    color: #dd2350;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    transition: opacity 0.3s;
}

.yt-channel-link:hover {
    opacity: 0.7;
}