@charset "UTF-8";

/* ======================================= */
/* 共通項目 */
/* ======================================= */

.profile,
.live,
.live_under,
.discography,
.discography_under,
.video,
.news,
.fortune {
    padding-top: 60px;
    padding-bottom: 100px;
    background-color: var(--main-bg-color);
}

/* 共通のインナー幅 */
.profile .inner,
.live .inner,
.live_under .inner,
.discography .inner,
.discography_under .inner,
.video .inner,
.news .inner,
.fortune .inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--contents-gutter);
}



/* セクションタイトル */
.profile .section-title,
.live .section-title,
.live_under .section-title,
.discography .section-title,
.discography_under .section-title,
.video .section-title,
.news .section-title,
.fortune .section-title {
    font-size: 3rem;
    font-family: var(--font-Jost);
    text-align: center;
    margin-bottom: var(--section-gutter);
    color: var(--text-color);
    letter-spacing: 0.2em;
    font-weight: 300;
}

/* --- 2. VIDEO ＆ LIVE用（PC2列 / SP1列） --- */

.video-item.reveal:nth-child(2n+1),
.live-item.reveal:nth-child(2n+1) {
    transition-delay: 0s;
}

.video-item.reveal:nth-child(2n),
.live-item.reveal:nth-child(2n) {
    transition-delay: 0.2s;
}





/*media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {

    .profile,
    .discography,
    .discography_under,
    .news,
    .fortune {
        margin-top: 20px;
        margin-bottom: var(--contents-gutter);
        padding: 20px 0 80px;
    }


    .profile .section-title,
    .discography .section-title,
    .discography_under .section-title,
    .news .section-title,
    .fortune .section-title {
        display: block;
        visibility: visible;
        font-size: 2rem;
        margin-bottom: 40px;
        position: static;
    }

    .video .inner,
    .live .inner,
    .live_under .inner {
        max-width: 100%;
    }

    .video .section-title,
    .live .section-title,
    .live_under .section-title {
        display: block;
        visibility: visible;
        font-size: 2rem;
        margin-bottom: 40px;
        position: static;
    }
}






/*media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {

    .video,
    .live,
    .live_under {
        margin-top: 20px;
        margin-bottom: var(--contents-gutter);
        padding: 20px 0 80px;
    }

    .live .section-title,
    .live_under .section-title,
    .video .section-title {
        display: block;
        visibility: visible;
        font-size: 2rem;
        margin-bottom: 40px;
        position: static;
    }


    /* --- 2. VIDEO ＆ LIVE用（PC2列 / SP1列） --- */
    .video-item.reveal:nth-child(n),
    .live-item.reveal:nth-child(n) {
        transition-delay: 0s;
    }

}







/* ======================================= */
/* Profileセクションのスタイル */
/* ======================================= */


/* メイン画像 */
.profile-main-visual {
    width: 100%;
    height: 650px;
    overflow: hidden;
    margin-bottom: 80px;
}

.profile-image {
    width: 100%;
    height: auto;
    display: block;
    object-position: top;
}

/* 下部コンテンツ（名前とテキストの横並び） */
.profile-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* 名前（左側） */
.profile-name-container {
    flex: 0 0 200px;
}

.profile-name {
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    font-weight: normal;
}

/* 本文テキスト（右側） */
.profile-text-container {
    flex: 1;

}

.profile-description p {
    font-size: 1.0rem;
    line-height: 2.0;
    margin-bottom: 2.5em;
    color: var(--text-color)
}



/*media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {


    /* 画像：高さを抑えて中央に配置 */
    .profile-main-visual {
        height: auto;
        margin-bottom: 50px;
    }

    /* 縦並びに切り替え */
    .profile .profile-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 25px;
    }

    /* 名前（中央揃え） */
    .profile-name-container {
        flex: none;
        width: 100%;
        text-align: left;
    }

    .profile-name {
        font-size: clamp(20px, 7vw, 1.6rem);
        letter-spacing: 0.4em;
        margin-bottom: 0;
    }

    /* 本文テキストエリア（左寄せ） */
    .profile-text-container {
        width: 100%;
        padding: 0;
    }

    .profile-description p {
        text-align: left;
        font-size: clamp(13px, 3.8vw, 0.95rem);
        line-height: 2.0;
        margin-bottom: 2em;
        word-break: normal;
        overflow-wrap: break-word;
    }
}


/* ======================================= */
/* Liveセクションのスタイル */
/* ======================================= */
.live-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;

}

/* 各アイテムのスタイル */
.live-item {
    text-align: center;
}

/* 画像部分（リンク） */
.live-img {
    display: block;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    margin: 0 auto 20px;
    overflow: hidden;
    max-width: 400px;
}

/* 画像本体の基本設定 */
.live-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: bottom;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* マウスを乗せた時の動き */
.live-img:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}


/* 日付 */
.live-date {
    font-size: 1rem;
    font-family: var(--font-Jost);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--text-color);
}

/* イベント名 */
.live-name {
    font-size: 1.1rem;
    font-weight: normal;
    color: var(--text-color);
}


/* media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
    .live-list {
        grid-template-columns: 1fr;
        /* 1列にする */
        gap: 10px;
    }

    .live-item {
        border-bottom: 1px solid #333;
        padding-bottom: 60px;
        margin-bottom: 50px;
        line-height: 1;
    }

    .live-name {
        margin-bottom: 0;
        line-height: 1.4;
    }

    /* 1番目のアイテム */
    .live-item:first-child {
        padding-top: 50px;
    }

    /* 一番最後の項目の線だけ消す */
    .live-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .live-img {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px;
    }

    .live-date {
        font-size: 0.9rem;
    }

    .live-img:hover img {
        transform: none !important;
        opacity: 1 !important;
    }

}


/* ======================================= */
/* Live詳細（Underページ）固有のスタイル */
/* ======================================= */
.live-list-under {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.live_under_item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* 画像のサイズ調整 */
.live_under_img {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 30px;
    background-color: #fff;
}

.live_under_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 詳細リストのスタイル */
.live-details {
    margin: 40px auto 0;
    display: inline-block;
    text-align: left;
    list-style: none;
    padding: 0;
}

.live-details li {
    font-size: 1rem;
    line-height: 3;
    color: var(--text-color);
    letter-spacing: 0.05em;
}

.live-details li:last-child {
    margin-bottom: 0;
}


.live-details .label {
    margin-right: 0.5em;
}



/* ======================================= */
/* ページネーション（下部ナビ） */
/* ======================================= */

.live-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 100px auto 0;
    padding-top: 40px;
    /* border-top: 1px solid #ccc; 必要であれば線を入れる */
}

.live-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    transition: opacity 0.3s;
}

.live-navigation a:hover {
    opacity: 0.6;
}

.nav-list {
    font-size: 1rem;
}

.first-live .nav-prev {
    visibility: hidden;
}

.last-live .nav-next {
    visibility: hidden;
}



/* media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {

    .live_under {
        padding-bottom: 60px;
    }

    /* 詳細アイテム（画像・タイトル含む）を中央へ */
    .live_under_item {
        align-items: center;
        width: 100%;
    }

    /* 日付とタイトルの余白 */
    .live-date {
        margin-top: 30px;
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

    .live-name {
        margin-bottom: 40px;
        font-size: 1.1rem;
    }

    .live-details {
        display: block;
        text-align: left;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        padding: 0;
        list-style: none;
    }


    .live-details li {
        font-size: clamp(13px, 3.8vw, 15px);
        line-height: 2.5;
        margin-bottom: 0.8em;
        word-break: break-all;
    }

    .live-navigation {
        margin-top: 60px;
        padding: 0 20px;
    }

    .live-navigation a {
        font-size: 0.8rem;
    }
}


/* ======================================= */
/* Discography */
/* ======================================= */


.disco-list {
    display: flex;
    flex-wrap: wrap;
    gap: 60px 4%;
    list-style: none;
    padding: 0;
}

.disco-item {
    width: 30.6%;
    /* 3列（(100% - 4%*2) / 3） */
    text-align: center;
}

.disco-img {
    margin-bottom: 20px;
    line-height: 0;
}

.disco-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.disco-type {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--text-color);
}

.disco-name {
    font-size: 1.2rem;
    color: var(--text-color);
}


/* media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {

    .disco-list {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 30px 15px;
        padding: 0 10px;
    }

    .disco-item {
        width: 100%;
        min-width: 0;
    }

    .disco-img {
        margin-bottom: 10px;
    }

    .disco-type {
        font-size: 0.7rem;
        /* 文字が入り切らない場合の対策 */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .disco-name {
        font-size: 0.85rem;
        line-height: 1.3;
        /* 長いタイトルを強制的に折り返す設定 */
        overflow-wrap: break-word;
        word-break: break-all;
    }
}


/* media Queries 500px〜480px以下の微調整
----------------------------------------------------*/
@media screen and (max-width: 480px) {
    .disco-list {
        gap: 20px 10px;
        padding: 0 5px;
    }

    .disco-name {
        font-size: 0.8rem;
    }

    /* 親要素の.innerに左右余白がある場合、それも削るとさらに広がります */
    .inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}





/* ======================================= */
/* Discography 詳細ページ (PC) */
/* ======================================= */

.disco-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

/* 上部レイアウト */
.disco-detail-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.disco-detail-img {
    width: 45%;
    max-width: 400px;
    display: flex;
    justify-content: flex-end;
}

.disco-detail-img img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.disco-detail-info {
    width: 45%;
    text-align: left;
    padding-top: 0;
}

.disco-detail-info .disco-type {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.disco-detail-info .disco-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.disco-detail-info .disco-date {
    font-size: 1.1rem;
    color: var(--text-color)
}

/* ボタンエリア */
.disco-detail-btn-wrap {
    text-align: center;
    margin-bottom: 180px;
    margin-top: 130px;
}

.btn-delivery {
    display: inline-block;
    background-color: #fff;
    color: var(--text-color);
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    border: 1px solid #eee;
    font-weight: 500;
}

.btn-delivery:hover {
    opacity: 0.7;
    transform: translateY(-2px);
}

/* 販売終了ボタン */
.btn-delivery.end {
    display: inline-block;
    background-color: var(--main-color);
    color: var(--text-color);
    border: 1px solid var(--text-color);
    ;
}

.btn-delivery:hover.end {
    opacity: 1;
    transform: translateY(0px)
}



/* ナビゲーション */
.disco-nav-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    border-top: 1px solid #ccc;
    padding-top: 60px;
    margin-top: 40px;
}

.disco-nav-list li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s;
    display: inline-block;
}

/* 一枚目はBackを隠して、最後はNextを隠す */
.disco-nav .first-disco .prev {
    visibility: hidden;
}

.disco-nav .last-disco .next {
    visibility: hidden;
}




/* ホバー時に少し浮き上がるような演出 */
.disco-nav-list li a:hover {
    color: #888;
    transform: translateY(-2px);
}

.disco-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 15px;
    transition: all 0.4s ease;
    border-radius: 8px;
    border: 1px solid transparent;
}

.disco-item a:hover {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.disco-img img {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* ======================================= */
/* 【アルバムの場合】トラックリスト全体のエリア */
/* ======================================= */

.disco-tracklist {
    max-width: 800px;
    margin: 0 auto 80px;
    padding-left: 5%;
}

.track-title {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--text-color);
}

.track-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-items li {
    font-size: 0.95rem;
    line-height: 2.0;
    color: var(--text-color);
}

.disco-detail-btn-wrap {
    text-align: center;
    margin-bottom: 180px;
}

/* ======================================= */
/* 楽曲説明エリア */
/* ======================================= */

.disco-description-area {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.disco-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: left;
}

.disco-credits dl {
    display: inline-block;
    text-align: left;
}

.disco-credits div {
    display: flex;
    gap: 1em;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.disco-credits dt {
    font-weight: bold;
    width: 4.5em;
    letter-spacing: 0.02em;
}

.disco-credits dd {
    font-family: sans-serif;
}

.is-album .disco-description-area {
    max-width: 800px;
    padding-left: 5%;
    margin-left: auto;
    margin-right: auto;
}

.is-album .disco-text {
    text-align: left;
}




/* media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {


    .disco-item a:hover {
        background-color: transparent;
        box-shadow: none;
        transform: none;
    }

    .disco-nav-list li a:hover {
        color: var(--text-color);
        transform: none;
    }


    /* 全体コンテナの余白調整 */
    .disco-detail-container {
        padding: 0 20px;
    }

    /* 1. 画像と情報のエリア（縦並び・中央寄せ） */
    .disco-detail-flex {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    /* 画像のサイズ調整 */
    .disco-detail-img {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        justify-content: center;
    }

    /* テキスト情報の中央寄せ */
    .disco-detail-info {
        width: 100%;
        text-align: center;
    }

    /* 文字サイズ等の微調整 */
    .disco-detail-info .disco-name {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .disco-detail-info .disco-type,
    .disco-detail-info .disco-date {
        font-size: 0.9rem;
    }

    /* 2. ボタンエリア（今回のご質問のメイン箇所） */
    .disco-detail-btn-wrap {
        margin-top: 60px;
        margin-bottom: 100px;
    }

    .btn-delivery {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    /* 3. ナビゲーション（横並びを維持） */
    .disco-nav-list {
        display: flex;
        justify-content: space-between;
        padding-top: 30px;
        margin-top: 0;
        border-top: 1px solid #ccc;
    }

    .disco-nav-list li a {
        font-size: 0.85rem;
    }

    .disco-description-area {
        width: 100%;
        text-align: center;
    }

    .disco-text {
        display: inline-block;
        text-align: left;
        max-width: 90%;
        font-size: 0.8rem;
        line-height: 1.8;
        margin-bottom: 30px;

        /* はみ出し防止 */
        word-break: keep-all;
        overflow-wrap: break-word;
    }

    .disco-credits dl {
        display: inline-block;
        /* 中央に配置 */
        text-align: left;
        /* 項目名は左揃え */
    }

    .disco-credits div {
        font-size: 0.85rem;
        /* ナビゲーション等のサイズに合わせる */
        gap: 1em;
        margin-bottom: 5px;
    }

    .disco-credits dt {
        width: 3.5em;
        /* 文字サイズに合わせて幅を微調整 */
    }
}


/* ======================================= */
/* 占うボタンのベース（buttonタグ） */
/* ======================================= */

/* 1. キラキラを「本当の背景」として body に設定 */
body.fortune-body,
body.is-result {

    background-image:
        radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 8px),
        radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 6px),
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 10px),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 7px),
        radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 9px),
        radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 5px),
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 6px);

    background-repeat: repeat;
    background-size: 600px 600px;
    background-attachment: fixed;
}




/* 「今、この瞬間に～」の文のスタイル */
.fortune-intro-text {
    font-size: 1.2rem;
    color: var(--text-color);
    letter-spacing: 0.03em;
    margin-top: 40px;
    margin-bottom: 150px;
}


.section-title {
    margin-bottom: 60px !important;
}

/* 結果画面の時だけ、Fortuneタイトルを控えめにする */
.is-result .section-title {
    display: none;
}



.fortune-submit-btn {
    /* 1. 基本の見た目（重複していたものを統合） */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    position: relative;
    width: 100%;
    max-width: 400px;
    filter: brightness(1.5) saturate(0.7) contrast(0.8) sepia(0.1);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
}

/* ボタン内の画像 */
.fortune-btn-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    transform: rotate(0deg);
    display: block;
    margin: 10px auto 40px;
    transition: filter 1.2s ease;
    opacity: 0.8;
}


/* マウスを乗せた時の演出（任意） */
.fortune-submit-btn:hover {
    transform: scale(1.1);
    opacity: 0.85;
}

/* 画像の方のホバーもこのすぐ下に並べておくと管理しやすいです */
.fortune-submit-btn:hover .fortune-btn-img {
    filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    transition: filter 1.2s ease;
}


/* 画像と文字を包む枠 */
.btn-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    margin-bottom: 40px;
}

/* 重ねる文字のスタイル */
.btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-Jost);
    font-size: 2.2rem;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    pointer-events: none;

}


/* クリックした瞬間（ここも少し滑らかに） */
.fortune-submit-btn:active {
    transform: scale(0.96);
    transition: transform 0.2s ease;
}



.fortune-intro-text {
    font-size: 1.2rem;
    color: var(--text-color);
    letter-spacing: 0.03em;
}

/* ======================================= */
/* 3. 結果画面：カード・画像関連 */
/* ======================================= */
.fortune-result-card {
    position: relative;
    z-index: 10;
}


/* 画像を包む枠の指定 */
.result-image-wrap {
    width: 400px;
    height: 400px;
    margin: 0 auto 40px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 内側の白いぼかしを弱める調整 */
.result-image-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 20px 15px rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.result-img {
    width: 112%;
    height: 112%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}


.animated-fade-in {
    animation:
        fortuneFadeUp 1.5s ease-out forwards,
        fortuneSparkleOnce 1.5s ease-in-out forwards;
}

@keyframes fortuneFadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* キラキラ：一回だけ発光して、少し明るい状態で落ち着く */
@keyframes fortuneSoftSparkle {
    0% {
        filter: saturate(100%) drop-shadow(0 0 0 rgba(255, 255, 255, 0));
    }

    50% {
        filter: brightness(1.2) saturate(130%) drop-shadow(0 0 10px rgba(173, 216, 230, 0.5));
    }

    100% {
        filter: brightness(1.05) saturate(110%);
    }
}


/* 親要素：タグとタイトルを横に並べる */
.title-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

/* 横並びの時のタグ（少しコンパクトに） */
.title-group .tag {
    margin-bottom: 0;
    padding: 2px 12px;
    font-size: 1rem;
}

/* 曲名 */
.result-song-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-color);
}

/* メッセージのスタイル */
.result-message {
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    line-height: 2.2;
    color: #555;
    margin: 35px auto;
    max-width: 85%;
}

/* --- 追加：占いメッセージ（intro）の箱 --- */
.result-intro-box {
    max-width: 85%;
    background-color: rgba(255, 255, 255, 0.3);
    padding: 35px 20px;
    margin: 20px auto 40px;
    border-radius: 10px;
    border: 1px solid rgba(159, 172, 234, 0.15);
    box-sizing: border-box;
}



.result-intro-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    display: inline-block;
}


/* --- 追加：楽曲解説（detail）の箱 --- */
.result-detail-box {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 30px;
    width: auto;
    max-width: 85%;
    margin: 40px auto;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px inset rgba(159, 172, 234, 0.2);
    text-align: left;
    word-break: normal;
    overflow-wrap: break-word;
}


.detail-label {
    display: block;
    text-align: center;
    font-family: var(--font-Jost);
    font-size: 0.9rem;
    color: #9facea;
    font-weight: 500;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
    margin-bottom: 20px;
    width: 100%;

}

.result-detail-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* --- 既存の result-message（msg）の微調整 --- */
.result-short-msg {
    font-size: 0.9rem;
    color: #999;
    letter-spacing: 0.2em;
    margin-top: 5px;
}

.result-action-lead {
    margin-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 0.3em;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

/* シェアする時のタグ全体の囲み */
.result-tags {
    margin: 8px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* 一つ一つのハッシュタグ */
.hash-item {
    font-size: 0.85rem;
    color: #888;
    /* 控えめなグレー */
    font-weight: 500;
    letter-spacing: 0.05em;
}





/* リンクエリアの共通設定 */
.link-area {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.link-area .btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    min-width: 140px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.link-area .btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: none;
}

.link-area .btn:hover::after {
    left: 120%;
    transition: all 0.6s ease-in-out;
}

/* Listen：Spotify風 */
.btn-listen {
    background-color: #fff;
    color: #1db954;
    border: 1.5px solid #1db954;
    animation: pulse-gentle 3s infinite;
}

@keyframes pulse-gentle {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.btn-listen:hover {
    background-color: #e8f5e9;
    color: #15883e;
}

/* Watch：YouTube */
.btn-watch {
    background-color: #e57373;
    color: #fff;
    border: 1.5px solid #e57373;
}

.btn-watch:hover {
    background-color: #ef5350;
    box-shadow: 0 4px 12px rgba(229, 115, 115, 0.3);
}

/* 「もう一度占う」ボタンの装飾 */
.retry {
    margin-top: 40px;
    margin-bottom: 150px;
}

.btn-retry {
    display: inline-block;
    padding: 8px 24px;
    font-size: 0.85rem;
    color: #999;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.btn-retry:hover {
    background-color: #f9f9f9;
    color: #666;
    border-color: #ccc;
    transform: scale(1.02);
}



/* タグ（Type）の装飾 */
.tag {
    display: inline-block;
    padding: 4px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    background-color: #9facea;
    border: 1px solid #ddd;
    border-radius: 20px;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    text-transform: uppercase;
}


.share-area {
    margin: 40px auto;
    text-align: center;
}

.share-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 15px;
}

.btn-twitter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: var(--text-color);
    /* 文字とアイコンを白に */
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;

    font-family: "Jost", "Noto Sans JP", sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-twitter .material-symbols-outlined {
    font-size: 1.1rem;
    font-variation-settings: 'wght' 300;
    /* 白文字の時は少し細めが綺麗です */
}

.btn-twitter:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}




/* media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {

    /* 3. もしスタート画面でも被るなら、ここも手前へ */
    .start-screen {
        position: relative;
        z-index: 10 !important;
    }

    /* 1. スタートボタン画像自体のサイズ調整 */
    .fortune-btn-img {
        width: 80%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* ホバー演出を完全に殺す */
    .fortune-submit-btn {
        transform: none !important;
        transition: none !important;
    }

    .fortune-submit-btn:hover {
        transform: none !important;
        opacity: 1 !important;
    }

    .fortune-submit-btn:hover .fortune-btn-img {
        filter: none !important;
    }

    .btn-listen:hover {
        background-color: #fff !important;
        color: #1db954 !important;
        transform: scale(1) !important;
    }

    .btn-watch:hover {
        background-color: #e57373 !important;
        color: #fff !important;
    }

    .fortune-btn-img {
        width: 80%;
        max-width: 300px;
        margin: 0 auto 40px;
    }

    /* 3. 「START」の文字も少し小さくしてバランスを取る */
    .btn-text {
        display: block;
        font-size: 1.5rem;
        margin-top: 10px;
        letter-spacing: 0.15em;
    }


    .result-intro-box {
        padding: 25px 20px;
    }


    /* スタート画面の導入文：サイズだけ上書き */
    .fortune-intro-text {
        font-size: 0.9rem;
        margin-top: 20px;
        word-break: keep-all;
    }


    .result-intro-text {
        font-size: 0.8rem;
        line-height: 1.6;
        padding: 0 15px;
        margin-top: 5px;
        text-align: left;
        word-break: normal;
    }

    /* 2. 詳細文（result-detail-text） */
    .result-detail-text {
        font-size: 0.8rem;
        line-height: 1.6;
        padding: 0 15px;
        color: #555;
        word-break: normal;
        text-align: left;
    }

    /* 3. ついでに「この続きは〜」のリード文も微調整 */
    .result-action-lead {
        font-size: 0.75rem;
        margin-top: 15px;
        color: #888;
    }

    /* 1. タイトルグループ（タグと曲名）を縦並びに。はみ出しを防止 */
    .title-group {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
        width: 100%;
    }

    /* 2. 曲名を画面幅に合わせて自動調整 */
    .result-song-title {
        font-size: 1.4rem;
        line-height: 1.4;
        width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
        padding: 0 10px;
    }

    /* 3. メッセージの幅をスマホに最適化 */
    .result-short-msg {
        font-size: 0.9rem;
        line-height: 1.8;
        max-width: 95%;
        margin: 10px auto 15px;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .result-image-wrap {
        width: 75vw;
        max-width: 320px;
        min-width: 240px;
        aspect-ratio: 1 / 1;
        height: auto;
        margin: 0 auto 30px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
    }

    /* --- 画像自体の位置を再調整（完璧な中央） --- */
    .result-img {
        width: 110%;
        height: 110%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }


    /* 4. ボタンエリアを縦に並べて押しやすく */
    .link-area {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

    .link-area .btn {
        width: 85%;
        max-width: 240px;
        min-width: 200px;
        padding: 12px 0;
        font-size: 0.9rem;
        margin: 0 auto;
    }

    /* 5. 「もう一度占う」の余白 */
    .retry {
        margin-top: 50px;
        margin-bottom: 80px;
    }

}







/* --------------------------------------- */
/* --- Videoリストのレイアウト (PC: 2列) --- */
/* --------------------------------------- */

.video-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
}

.video-item {
    text-decoration: none;
    color: var(--text-color);
    display: block;
    width: 100%;
    /* アイテム自体の幅を100%にして、gridの枠に任せる */
    min-width: 0;
}

/* サムネイルのコンテナ（角丸と比率） */
.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 15px;
    background-color: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* --- ホバー演出 --- */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* 薄暗くする */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-icon {
    color: #fff;
    font-size: 2rem;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 5px;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.05);
    /* 画像を少し大きく */
}



/* ビデオタイトルの見た目を調整 */
.video-text {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 10px;
    color: var(--text-color);
    text-align: left;
    letter-spacing: 0.03em;
    line-height: 1.5;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-all;
}




/* media Queries 767
----------------------------------------------------*/
@media screen and (max-width: 767px) {
    .video-text {
        font-size: 0.95rem;
        padding: 0 5px;
        overflow-wrap: break-word;
        /* 長い英単語なども強制改行 */
        word-break: break-all;
    }
}







/* media Queries 600
----------------------------------------------------*/
@media screen and (max-width: 600px) {


    .video {
        overflow: hidden;
        width: 100%;
    }

    .video .inner {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .video-grid-new {
        display: grid;
        grid-template-columns: 1fr;
        /* 1列に変更 */
        gap: 40px;
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
    }

    .video-item {
        /* display: block; */
        width: 100%;
        margin-bottom: 0px;
        box-sizing: border-box;
        text-align: center;
    }



    .video-thumbnail {
        width: 100% !important;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        margin: 0 auto 10px;
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-sizing: border-box;
    }

    .video-thumbnail img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: none;
    }


    .video-text {
        font-size: 0.95rem;
        padding: 0 5px;
        overflow-wrap: break-word;
        word-break: break-all;
    }

    .video-overlay {
        opacity: 1 !important;
        background-color: rgba(0, 0, 0, 0.2);
    }

    .video-item:hover .video-thumbnail img {
        transform: none !important;
    }
}


/* ======================================= */
/* News */
/* ======================================= */

/* --- ニュースリスト --- */
.news-list {
    margin-bottom: var(--section-gutter-pc);
}

.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    transition: background-color 0.3s;
}

/* 最後のアイテムの下に線を追加 */
.news-list .news-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* 1. マウスを乗せた時（hover）と、キーボードで選択した時（focus-visible）に色をつける */
.news-item:hover,
.news-item:focus-visible {
    background-color: var(--text-color);
    color: #ffffff !important;
    padding-left: 15px;
    padding-right: 15px;
    outline: none;
}

/* 2. 中のテキストも白くする */
.news-item:hover .news-date,
.news-item:hover .news-text,
.news-item:focus-visible .news-date,
.news-item:focus-visible .news-text {
    color: #ffffff !important;
}

/* 3.マウスでクリックした瞬間の色残りを防ぐ */
.news-item:focus:not(:focus-visible) {
    background-color: transparent;
    color: inherit;
}

/* 日付とテキストのスタイル */
.news-date {
    font-size: var(--size-sm);
    letter-spacing: 0.1em;
    flex-shrink: 0;
    margin-right: var(--side-gutter);

}

.news-text {
    font-size: var(--size-sm);
    text-align: left;
    width: 100%;
}



/*media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {

    .news-section {
        padding-top: 40px;
    }

    .news-section .section-title {
        font-size: 2.0rem;
        letter-spacing: 0.15em;
        margin-bottom: 32px;
    }

    .news-list {
        margin-bottom: 80px;
        padding: 0 var(--side-gutter);
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0;
    }

    /* 日付 */
    .news-date {
        margin-right: 0;
        margin-bottom: 12px;
        font-size: 0.9rem;
        opacity: 0.8;
    }

    /* 3. 本文のテキスト調整 */
    .news-text {
        font-size: 1rem;
        line-height: 1.6;
        width: 100%;
        /* &nbsp; があっても適切な位置で改行させる設定 */
        white-space: normal;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    /* スマホでタップした時にホバーの色が出ないように打ち消す */
    .news-item:hover {
        background-color: transparent !important;
        color: var(--text-color) !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 中のテキストの色残りも打ち消す */
    .news-item:hover .news-date,
    .news-item:hover .news-text {
        color: var(--text-color) !important;
    }


}

/* ======================================= */
/* News Detail (下層ページ固有) */
/* ======================================= */

.news-post {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.news-post-header {
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 30px;
}

.news-post-title {
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.news-post-date {
    font-size: var(--size-sm);
    letter-spacing: 0.1em;
    color: var(--text-color);
    opacity: 0.8;
}

/* 本文エリア */
.news-post-content {
    line-height: 2;
    font-size: var(--size-sm);
    letter-spacing: 0.05em;
}

.news-post-content p {
    margin-bottom: 0;
}

/* 戻るボタン */
.news-footer {
    margin-top: 100px;
    text-align: center;
}

.btn-back {
    font-size: var(--size-sm);
    text-decoration: none;
    color: var(--text-color);
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 5px;
    transition: opacity 0.3s;
}

.btn-back:hover {
    opacity: 0.6;
}

.handwritten-message {
    margin: 40px 0;
    text-align: left;
}

.handwritten-message img {
    max-width: 100%;
    height: auto;
}

/* テキストは画面には出さず、検索エンジン等に伝える場合 */
.is-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}



/*media Queries 959
----------------------------------------------------*/
@media screen and (max-width: 959px) {
    .news-post-header {
        margin-bottom: 40px;
        padding-bottom: 20px;
    }

    .news-post-date {
        display: block;
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .news-post-title {
        font-weight: normal;
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 12px;
        /* &nbsp; による突き抜けを防止し、自然に改行させる設定 */
        white-space: normal;
        word-break: break-all;
        overflow-wrap: break-word;
    }



    /* 手書きメッセージ画像の余白調整 */
    .handwritten-message {
        margin: 30px 0;
    }

    /* 戻るボタンの余白 */
    .news-footer {
        margin-top: 60px;
    }
}