@charset "UTF-8";

        .gkmas{
            padding:0;
            margin-bottom: 40px;
            background-color: #fff;
        }

        .gkmas-container {
            background-color: #FF6B00; 
            padding: 40px 20px;
        }

        @media screen and (max-width: 767px) {
        .gkmas-container {
            padding: 40px 10px;
            margin-bottom: 40px;
        }
    }


        /* セクション */

        .gkmas-container section {
        background: #fff;
        border-radius: 0 30px 0;
        box-shadow: 0 15px 0 rgba(0, 0, 0, 0.1);
        border: 6px solid #fff;
        padding: 60px 40px;
        margin-bottom: 40px;
        }


        @media screen and (max-width: 767px) {
        .gkmas-container section {
            padding: 40px 10px;
        }
    }


        /* --- 各パーツのデザイン --- */

        /* タイトル画像 */
        .hero {
            text-align: center;
            padding: 0;
        }
        .hero-img {
            width: 100%;
            height: auto;
        }


        /* どアニメロゴ */
    .jp-cmptemp-anime-logo {
        background-color: #d70e18;
        width: 100%;
        height: 65px;
        padding:0!important;
        text-align: center;
    }

    .jp-cmptemp-anime-logo img {
        width: 400px;
        padding-top: 10px;
        margin:auto;
    }


    @media screen and (max-width: 767px) {
        .jp-cmptemp-anime-logo {
            height: auto;
        }
        .jp-cmptemp-anime-logo img {
            width: 50%;
            padding: 8px 0 10px;
            margin:auto;
        }
    }


        h1{
          color: #fff;
          text-align: center;
          font-size: 1.8em;
          margin-bottom: 30px;
          padding:0 20px;
        }

        @media screen and (max-width: 767px) {
            h1{
          font-size: 1.6em;
        }
    }

        h2 {
            text-align: center;
            color: #00A0E9;
            font-size: 1.6em;
        margin-bottom: 30px;
        position: relative;
        display: block;
        }

        h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #FFD700;
    margin: 10px auto 0;
    }

        .gkmas-container p{
            font-size:16px;
        }




/* MVガラクタロード */

.mv-thum{
    text-align: center;
}

.thum-img {
        margin:0 auto;
            transition: transform 0.5s ease;
        }

        @media screen and (max-width: 767px) {
        .thum-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
    }



    /* アンケート */

    .anketitle{
            font-size:0.8em;
        }

        .anke p{
            text-align: center;
            padding-bottom: 10px;
        }

        .anke-box{
        text-align: center;
        }

        .anke-box p{
        font-size:1.4em;
        }

        .marker{
            background: linear-gradient(transparent 50%, #5ec2b2 50%);
             background-repeat: no-repeat;
            background-position: left bottom;
            background-size: 100% 50%;
            font-weight: bold;
        }


    .time{
        color:#f65400;
        text-align: center;
        margin-top: 20px;
        font-size:16px;
    }


    /* キャンペーン紹介 */
        .campaign-item {
            display: flex;
            gap: 30px;
            align-items: center;
            justify-content: space-evenly;
        }
        .campaign-thumb {
            width: 300px;
            object-fit: cover;
            box-shadow: 0 10 0px #ffb84d56;
        }

        .campaign-detail h3 {
            color: #333;
            margin-top: 0;
        }

        @media screen and (max-width: 767px) {
            .campaign-item {
                flex-direction: column;
                text-align: center;
            }
            .campaign-thumb {
                width: 100%;
                height: auto;
            }
        }


        /* --- 楽曲紹介セクション：1列レイアウト --- */
        .song-grid {
            display: flex;
            flex-direction: column; 
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .song-card a{
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .song-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #f65400;
            transform: translateX(8px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        /* MVサムネ画像 */
        .jacket-wrapper {
            height: 100px;
            flex-shrink: 0;
            margin-right: 40px;
            overflow: hidden;
            border: 1px solid #ff8a65;
        }

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

        .song-card:hover .jacket-img {
            transform: scale(1.1); /* ホバーでズーム */
        }

        /* 楽曲テキスト情報 */
        .song-info {
            /* flex-grow: 1; */
            overflow-wrap: anywhere; 
            word-break: normal;
        }

        .song-rank {
            display: block;
            font-size: 1.1em;
            color: #f65400;
            opacity: 0.8;
            line-height: 1.4;
            font-weight: bold;
        }

        .song-title {
            display: block;
            font-size: 1.3em;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            line-height: 1.4; /* 複数行になった時のために行間を調整 */
        }


        @media screen and (max-width: 767px) {
        .song-card a{
            display: block;
            padding: 30px 15px;
            box-shadow: 2px 2px 7px 1px #33333336;
        }

        .song-card :hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #f65400;
            transform: translateX(2px);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
        }

        .jacket-wrapper {
            height: auto;
            margin-right: 0; 
        }

        .song-info {
            margin-top:15px;
        }

        }



        /* ボタン */
.btn {
    display: inline-block;
    background: #FFD700;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 15px 40px;
    border-radius: 50px;
    border: 3px solid #333;
    box-shadow: 0 6px 0 #333;
    transition: all 0.2s ease;
    position: relative;
    top: 0;
    margin-top:30px;
}

.btn:hover {
    top: 3px;
    box-shadow: 0 3px 0 #333;
    background: #fff;
    color: #FF6B00;
}

.btn:active {
    top: 6px;
    box-shadow: none;
}

        .center {
            text-align: center;
        }


/* AppleMusic */
.music-embed {
    border: 0;
    border-radius: 12px;
    width: 100%;
    height: 450px;
    max-width: 660px;
    display: block;
    margin: 0 auto;
}



/* アニメバナー枠 */
.link-bnr{
  text-align: center;
}

.link-bnr p{
  font-weight: bold;
  padding-bottom: 10px;
  text-align: center;
}

.link-bnr img{
  margin:0 auto;
}


@media screen and (max-width: 767px) {
    .link-bnr p{
    font-size: 0.9em;
    }

    .link-bnr img{
    width: 90%;
  }

}


