/* 記事詳細ページ用css */

.details-page__title{
    background-color: var(--colorPink);
    border: 1px solid var(--mainFontColor);
    margin-bottom: 40rem;
}
.details-page__title-text{
    font-size: var(--spFontSize16);
    font-weight: bold;
    text-align: center;
    padding: 14rem 16rem;
}
.details-page__excerpt{
    font-size: var(--spFontSize14);
    margin-bottom: 20rem;
    text-decoration: underline;
    text-align: center;
}
.details-page__day-text{
    font-size: var(--spFontSize12);
    border: 1px solid var(--mainFontColor);
    border-radius: 8rem;
    padding: 6rem 4rem;
    width: fit-content;
    margin: 0 auto 15rem;
}
.details-page__item-list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15rem 0;
}
.details-page__item-list-item{
    margin-right: 19rem;
}
.details-page__item-list-bgc-item{
    display: flex;
    width: fit-content;
    border-radius: 20rem;
    padding: 20rem 15rem;
    position: relative;
}
.details-page__item-list-bgc-item--left{
    max-width: 288rem;
    background-color: #C6EEFF;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.7);
}
.details-page__item-list-bgc-item--left::before{
    content: "";
    display: block;
    width: 18rem;
    height: 32rem;
    background-image: url(../img/speech-bubble.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 100;
    top: 10rem;
    left: -17rem;
    flex-shrink: 0;
}
.details-page__item-list-bgc-item--right{
    max-width: 326rem;
    background-color: #FFBFE2;
    filter: drop-shadow(-2px 2px 0px rgba(0, 0, 0, 0.7));
}
.details-page__item-list-bgc-item--right::before{
    content: "";
    display: block;
    width: 18rem;
    height: 32rem;
    background-image: url(../img/speech-bubble-pink.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 100;
    top: 10rem;
    right: -17rem;
    flex-shrink: 0;
    order: 1;
}
.details-page__item-img{
    display: block;
    width: 38rem;
}
.details-page__item-text{
    font-size: var(--spFontSize14);
    line-height: 180%;
}
.details-page__item--left{
    display: flex;
}
.details-page__item--right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.details-page__item-list--right{
    position: relative;
    right: 15rem;
}
.padding-none{
    padding: 0;
}
.details-page__item-post-img{
    display: block;
    width: 240rem;
    border-radius: 20rem;
}
.details-page__item-post-img--stamp{
    width: 120rem;
    border-radius: initial;
}
.blockquote-tiktok{
    border-radius: 8rem;
}
@media screen and (min-width: 600px) {
    .details-page__title{
        margin-bottom: 70rem;
    }
    .details-page__title-text{
        padding: 16rem 20rem;
    }
    .details-page__excerpt{
        margin: 0 auto 40rem;
        width: 700rem;
    }
    .details-page__day-text{
        padding: 8rem 6rem;
        margin: 0 auto 25rem;
    }
    .details-page__item-list{
        padding: 25rem 0;
    }
    .details-page__item-list-item{
        margin-right: 30rem;
    }
    .details-page__item-list-bgc-item{
        padding: 28rem 20rem;
    }
    .details-page__item-list-bgc-item--left{
        max-width: 500rem;
    }
    .details-page__item-list-bgc-item--left::before{
        width: 30rem;
        height: 54rem;
        left: -29rem;
    }
    .details-page__item-list-bgc-item--right{
        max-width: 600rem;
    }
    .details-page__item-list-bgc-item--right::before{
        width: 30rem;
        height: 54rem;
        right: -29rem;
    }
    .details-page__item-img{
        width: 60rem;
    }
    .details-page__item-list--right{
        right: 20rem;
    }
    .details-page__item-post-img{
        width: 400rem;
    }
    .details-page__iframe{
        width: 500rem;
        height: 281.25rem;
    }
    .details-page__iframe--spotify{
        width: 600rem;
        height: 352rem;
    }
    .details-page__item-post-img--stamp{
        width: 200rem;
    }
}

/* 最近の投稿リスト */
.footer__recently-list{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20rem 0 60rem;
}
.footer__recently-item{
    width: calc( ( 100% - 10rem*2 ) / 3 );
    margin-right: 10rem;
    position: relative;
}
.footer__recently-item:nth-child(3n){
    margin-right: 0;
}
.footer__recently-item:last-child{
    margin-right: 0;
}
.footer__recently-item:nth-child(n+4){
    margin-top: 10rem;
}
.new-post__img--footer{
    margin-bottom: 0;
}
.footer__recently-link{
    display: block;
}
.footer__recently-icon-img{
    display: block;
    position: absolute;
    width: 40rem;
    z-index: 2;
    top: 8rem;
    left: 4rem;
}
@media screen and (min-width: 600px) {
    .footer__recently-list{
        flex-wrap: nowrap;
        justify-content: center;
        padding: 0 0 100rem;
    }
    .footer__recently-item{
        width: calc( ( 100% - 18rem*5 ) / 6 );
        margin-right: 18rem;
        transition: .4s all ease;
    }
    .footer__recently-item:nth-child(3n){
        margin-right: 18rem;
    }
    .footer__recently-item:nth-child(6n){
        margin-right: 0;
    }
    .footer__recently-item:nth-child(n+4){
        margin-top: 0;
    }
    .new-post__img--footer{
        margin-bottom: 0;
    }
    .footer__recently-link{
        cursor: url(../img/cursor-pointer.svg) , auto;
    }
    .footer__recently-icon-img{
        width: 40rem;
        z-index: 2;
        top: 8rem;
        left: 4rem;
        transition: .4s all ease;
    }
    .footer__recently-item:hover .new-post__img{
        filter: none;
    }
    .footer__recently-item:hover .footer__recently-icon-img{
        width: 100rem;
        top: 0rem;
        bottom: 0;
        right: 0;
        left: 0rem;
        margin: auto;
    }
}

/* リアクションボタん */
.details-page__reaction-list{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30rem 0;
}
.reaction-button{
    margin-right: 30rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 50rem;
    cursor: url(../img/cursor-pointer.svg) , auto;
}
.reaction-button:last-child{
    margin-right: 0rem;
}
.count{
    font-size: 10rem;
    font-weight: bold;
    background: #ffff;
    border: 1px solid black;
    padding: 8rem 10rem;
    border-radius: 4rem;
    margin-bottom: 10rem;
    position: relative;
}
.count::after{
    content: "";
    display: block;
    width: 16rem;
    height: 16rem;
    background-image: url(../img/reaction-button-speech-bubble.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -8rem;
}
.icon{
    display: block;
    width: 50rem;
    height: 50rem;
    margin-bottom: 10rem;
}
.reaction-category{
    font-size: 10rem;
    font-weight: bold;
}
@media screen and (min-width: 600px) {
    .details-page__reaction-list{
        padding: 40rem 0;
    }
    .reaction-button{
        margin-right: 34rem;
        width: 60rem;
        transition: .4s all ease;
    }
    .reaction-button:hover .icon{
        transform: rotateZ( 360deg ) ;
    }
    .count{
        font-size: 12rem;
        padding: 10rem 12rem;
        margin-bottom: 12rem;
    }
    .icon{
        display: block;
        width: 54rem;
        height: 54rem;
        margin-bottom: 12rem;
        transition: .4s all ease;
    }
    .reaction-category{
        font-size: 14rem;
    }    
}

/* コメント機能 */
.details-page__google-form{
    position: relative;
    padding: 60rem 0 30rem;
}
.details-page__dl{
    display: flex;
    align-items: end;
    margin-bottom: 20rem;
}
.details-page__dl::before{
    content: "";
    display: block;
    background-image: url(../img/form__kamo.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 36rem;
    height: 36rem;
    margin-right: 10rem;
}
.details-page__dl-group{
    background-color: white;
    border: 1px solid black;
    border-radius: 20rem 20rem 30rem 0;;
    padding: 10rem 38rem 10rem 20rem;
    width: 100%;
}
.details-page__textarea{
    width: 100%;
    border: none;
    resize: none;
    color:  black;
}
.details-page__dd--your-name{
    width: 100%;
}
.details-page__textarea--your-name{
    font-size: 10rem;
    white-space: nowrap;
    overflow-x: scroll;
    line-height: 1;
    white-space: pre;
    overflow-x: hidden;
    height: auto;
}
.details-page__dd--comment{
}
.details-page__textarea--comment{
    font-size: 12rem;
    text-decoration: underline;
}
.details-page__google-form-button{
    position: absolute;
    right: 8rem;
    bottom: 60rem;
}
.details-page__google-form-button__img{
    display: block;
    width: 40rem;
    height: 40rem;
    cursor: url(../img/cursor-pointer.svg) , auto;
}
@media screen and (min-width: 600px) {
    .details-page__google-form{
        padding: 60rem 0 30rem;
    }
    .details-page__dl{
        width: 600rem;
        margin: 0 auto 26rem;
    }
    .details-page__dl::before{
        width: 40rem;
        height: 40rem;
        margin-right: 10rem;
    }
    .details-page__dl-group{
        padding: 10rem 52rem 10rem 20rem;
    }
    .details-page__textarea{
        width: 100%;
        border: none;
        resize: none;
    }
    .details-page__dd--your-name{
        width: 100%;
    }
    .details-page__textarea--your-name{
        font-size: 12rem;
    }
    .details-page__textarea--comment{
        font-size: 14rem;
    }
    .details-page__google-form-button{
        right: 212rem;
        bottom: 64rem;
    }
    .details-page__google-form-button__img{
        display: block;
        width: 42rem;
        height: 42rem;
        transition: .4s all ease;
    }
    .details-page__google-form-button__img:hover{
        margin-bottom: 10rem;
    }
}