.fixed-page__title{
    font-size: var(--spFontSize20);
    text-align: center;
    margin-bottom: 16rem;
    font-weight: bold;
}
.favorite__excerpt{
    font-size: var(--spFontSize14);
    text-align: center;
}
.display__none{
    display: none;
}

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

/* メインビジュアル */
.favorite__main-visual__list{
    display: flex;
    align-items: flex-end;
    margin-bottom: 20rem;
}
.favorite__main-visual__list-item{
    width: 100%;
    margin-right: 8rem;
}
.favorite__main-visual__list-item:last-child{
    margin-right: 0;
}
.favorite__main-visual__img{
    display: block;
    width: 100%;
}
@media screen and (min-width: 600px) {
    .favorite__main-visual__list{
        width: 400rem;
        margin: 0 auto 30rem;
    }
    .favorite__main-visual__list-item{
        width: 100%;
        margin-right: 14rem;
    }
}