@charset "utf-8";


/* --------------------------
基本設定
----------------------------- */


.container {
    width: 90%;

    margin: 0 auto;
}

.content-item {
    width: 100%;
    max-width: 900px;

    margin: 5rem auto ;
}

/* --------------------------
タイトルとぱん
----------------------------- */

.date-title {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    
    margin: 0 0 1rem 2rem;
}

.date-title h2 {
    font-family: "caraque-melted", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 4rem;
    letter-spacing: 2px;

}
.h2-sub {
    font-size: 2.5rem;
    margin: 0 0 0 1rem;
}

.rec-pan ul {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;

    font-size: .9rem;
    color: #bbb;

    margin: 2rem 2rem 0 0 ;
}

.date-now {
    color: #D4849A;
}

/* --------------------------
アイテムBOX
----------------------------- */

/*---- 親要素の指定：parent--------------------------------- */
.item-box .box-parent {
    position: relative;
    border-radius: 50px;
}
/*---- バックの設定：back--------------------------------- */
.item-box .box-back {
    top: 10px;
    left: 10px;

    background: #945d6b;
}
/*---- ベースの設定：base--------------------------------- */
.item-box .box-base {
    display: flex;
    flex-direction: column;
    padding: 2rem;

    font-family: "Avenir Next", "Segoe UI", "Calibri", sans-serif;

}

/* --------------------------
ホバーアクション
----------------------------- */
.box-parent {
    transform-origin: top center;
}
.box-parent:hover,
.box-parent:active {
    animation: slidehop .5s ease-in;
}

@keyframes slidehop {
    0% {
        transform: none;
    }
    25% {
        transform: rotate(2deg);
    }
    50% {
        transform: rotate(1deg);
    }
    75% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(0);
    }
}
/* --------------------------
穴
----------------------------- */
/* 背景 */
.item-box .box-base::before {
    content: '';
    display: block;

    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);

    width: 200px;
    height: 30px;

    background: #945d6b;
    border: 3px solid #222;
    border-radius: 50px;
}
/* 白 */
.item-box .box-base::after {
    content: '';
    display: block;

    position: absolute;
    top: 40px;
    left: calc(50% + 5px);
    transform: translateX(-50%);

    width: 190px;
    height: 20px;

    background: #fff;
    border: 3px solid #222;
    border-radius: 50px;
}

/* 棒 */
.item-box .key {
    content: '';
    display: block;

    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);

    width: 30px;
    height: 65px;

    background: #dddddd;
    border: 3px solid #222;
    border-radius: 10px 10px 5px 5px;
    
    z-index: 10;
}
/* --------------------------
上エリア
----------------------------- */
.top-area {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;

    margin: 5rem 0 0 ;
}
/*---- 画像エリア--------------------------------- */
.top-area img {
    width: 35%;
    max-width: 260px;
}
/*---- テキストエリア--------------------------------- */
.top-area .text-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
    padding: 5rem 0 0 0;
}

/* レコードタイトル */
.text-area h3 {
    width: 70%;
    font-size: 1.5rem;
    font-weight: bold;
}
/* アーティスト名 */
.text-area .name {
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;

    width: 70%;

    margin: 0 0 1rem;
}

/* リリース日 */
.release {
    color: #D4849A;
}


/* --------------------------
レコード説明
----------------------------- */
/* レコード説明*/
.date-desc {
    width: 90%;

    margin: 2rem auto 0;
    line-height: 1.8;

}



/* --------------------------
absolute-item
----------------------------- */
/*---- ASK--------------------------------- */
.ask {
    position: absolute;
    top: 0;
    left: calc(100% + 1rem);

    font-size: 1.3rem;
    color: #D4849A;
    font-weight: normal;
}

/*---- 視聴リンク--------------------------------- */
.sumple-link {
    position: absolute;
    top: 2rem;
    right: 4rem;

    font-size: 2.3rem;
    color: #bbb;
}
.apple {
    font-size: 2.7rem;
    margin: 0 .5rem 0;
}

.apple:hover,
.apple:active {
    color: #e37c88;
}

.spotify:hover,
.spotify:active {
    color: #94dbaa;
}

/* --------------------------
下エリア
----------------------------- */

.bottom-area {
    width: 90%;
    margin: 2rem auto ;
}

.bottom-area h4{
    background: #D4849A;
    color: #fff;
    border-radius: 50px;

    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0 0 2rem;
}

.track-list {
    list-style-type: decimal;
    margin: 0 0 0 2rem;
}

.track-list li {
    margin: .5rem 0 ;

    font-size: .9rem;
    line-height: 1.5;
}




/* --------------------------
レスポンシブ　1000px
----------------------------- */
@media(max-width:1000px) {

/*---- 基本設定--------------------------------- */
    .container {
        padding: 0 .5rem 0 0;
    }
/*---- タイトルとぱん--------------------------------- */

    .rec-pan ul {
        justify-content: flex-start;
        margin: 2rem 0 0;
    }

/*---- テキストエリア--------------------------------- */
    .top-area {
        align-items: center;
    }
    .top-area .text-area {
        padding: 0;
    }

}


/* --------------------------
レスポンシブ　600px
----------------------------- */
@media(max-width:600px) {

/*---- タイトルとぱん--------------------------------- */
    .date-title {
        margin: 0 1rem 1rem;
    }
    .date-title h2 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    .date-title .h2-sub {
        font-size: 1.5rem;
    }
    .date-title ul {
        flex-wrap: wrap;
        gap: .5rem;

        margin: 2rem 0 0;

        font-size: .8rem;
    }

/*---- アイテムBOX--------------------------------- */
    .item-box .box-base {
        padding: 2rem 1rem 3rem;
    }

/*---- トップエリア--------------------------------- */
    .top-area {
        flex-direction: column-reverse;
        gap: 2rem;

        margin: 3rem 0 0 ;
    }

    /* テキストエリア */

    .top-area .text-area {
        width: 90%;
    }

    .text-area h3 {
        width: 100%;
    }

    /* ask */
    .ask {
        left: 120%;
    }

    /* 画像エリア */
    .top-area img {
        width: 80%;
    }

/*---- 視聴リンク--------------------------------- */
    .sumple-link {
        top: auto;
        bottom: 1rem;
        right: 3rem;

        font-size: 1.75rem;
    }
    .apple {
        font-size: 2rem;
        margin: 0 .5rem 0;
    }


}
