.fixed-page__title{
    font-size: var(--spFontSize20);
    text-align: center;
    margin-bottom: 16rem;
    font-weight: bold;
}
.fixed-page__title--entame{
    margin-bottom: 70rem;
}
@media screen and (min-width: 600px) {
    .fixed-page__content{
        position: relative;
    }
    .fixed-page__content--about{
        padding: 0 156rem;
    }
    .fixed-page__title{
        margin-bottom: 36rem;
    }
    .fixed-page__title--entame{
        margin-bottom: 100rem;
    }
}

/* エンタメ選択ブロック */
.entertainment-select{
    margin-bottom: 100rem;
}
.entertainment-select__content{
    position: relative;
}
.select__tite{
    background-color: var(--colorPink);
    border: 1px solid var(--mainFontColor);
    padding: 5rem;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30rem;
}
.select__tite--entame-select{
    margin-bottom: 64rem;
}
.select__title-text{
    font-size: var(--spFontSize16);
    font-weight: bold;
    padding: 10rem 5rem;
    background-color: var(--colorWhite);
    width: fit-content;
}
.entertainment__list{
    display: flex;
    flex-wrap: wrap;
}
.entertainment__item{
    width: calc( (100% - 25rem) / 2 );
    margin-right: 25rem;
    margin-bottom: 61rem;
}
.entertainment__item:nth-child(2n){
    margin-right: 0;
}
.entertainment__item:nth-last-child(-n+2){
    margin-bottom: 0;
}
.entertainment__visual-button-item{
    background-color: var(--colorWhite);
    border: 1px solid var(--mainFontColor);
    border-radius: 3rem;
    box-shadow: 2px 2px 0px var(--mainFontColor);
    margin-bottom: 10rem;
    padding: 10rem;
    height: 114rem;
    position: relative;
}
.entertainment__visual-button-item::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 10rem;
    background-repeat: no-repeat;
    background-size: contain;
    width: 140rem;
    height: 140rem;
}
.entertainment__visual-button-item--book::after{
    background-image: url(../img/button-visual-book.svg);
}
.entertainment__visual-button-item--music::after{
    background-image: url(../img/button-visual-music.svg);
}
.entertainment__visual-button-item--movie::after{
    background-image: url(../img/button-visual-movie.svg);
}
.entertainment__visual-button-item--hima::after{
    background-image: url(../img/button-visual-hima.svg);
}
.entertainment__visual-button-text--kamo{
    right: inherit;
    left: 29rem;
}
.entertainment__text-button-item{
    background-color: var(--colorWhite);
    border: 1px solid var(--mainFontColor);
    border-radius: 3rem;
    box-shadow: 2px 2px 0px var(--mainFontColor);
    padding: 5rem;
}
.entertainment__visual-button-item-link{
    color: var(--mainFontColor);
    font-size: var(--spFontSize12);
    text-align: center;
    cursor: url(../img/cursor-pointer.svg) , auto;
}
@media screen and (min-width: 600px) {
    .entertainment-select{
        margin-bottom: 120rem;
    }
    .select__tite{
        padding: 8rem;
        margin-bottom: 40rem;
    }
    .select__tite--entame-select{
        margin-bottom: 94rem;
    }
    .select__title-text{
        padding: 10rem;
    }
    .entertainment__list{
        flex-wrap: nowrap;
    }
    .entertainment__item{
        width: 100%;
        margin-right: 40rem;
        margin-bottom: 0;
        transition: .4s all ease;
    }
    .entertainment__item:nth-child(2n){
        margin-right: 40rem;
    }
    .entertainment__item:last-child{
        margin-right: 0;
    }
    .entertainment__visual-button-item{
        margin-bottom: 15rem;
        height: 156rem;
        transition: .4s all ease;
    }
    .entertainment__item:hover .entertainment__visual-button-item{
        box-shadow: none;
    }
    .entertainment__visual-button-item::after{
        width: 200rem;
        height: 200rem;
        transition: .4s all ease;
    }
    .entertainment__item:hover .entertainment__visual-button-item--book::after{
        background-image: url(../img/button-visual-book-hover.svg);
    }
    .entertainment__item:hover .entertainment__visual-button-item--music::after{
        background-image: url(../img/button-visual-music-hover.svg);
    }
    .entertainment__item:hover .entertainment__visual-button-item--movie::after{
        background-image: url(../img/button-visual-movie-hover.svg);
    }
    .entertainment__item:hover .entertainment__visual-button-item--hima::after{
        background-image: url(../img/button-visual-hima-hover.svg);
    }
    .entertainment__text-button-item{
        padding: 8rem;
        transition: .4s all ease;
    }
    .entertainment__item:hover .entertainment__text-button-item{
        background-color: var(--colorPink);
        box-shadow: none;
    }
    .entertainment__text-button-text{
        font-size: var(--spFontSize12);
    }
}


/* アニメーション */
.entertainment-select__speech-bubble{
    display: block;
    opacity: 0;
}
.entertainment-select__speech-bubble-1{
    width: 60rem;
}
.entertainment-select__speech-bubble-2{
    width: 100rem;
}
.entertainment-select__speech-bubble-3{
    width: 80rem;
}
.entertainment-select__speech-bubble-4{
    width: 50rem;
}
.entertainment-select__speech-bubble-5{
    width: 90rem;
}
#speechBubble1{
    position: absolute;
    top: 30rem;
    left: 30rem;
    z-index: 3;
}
#speechBubble2{
    position: absolute;
    top: -98rem;
    right: 20rem;
    z-index: -1;
}
#speechBubble3{
    position: absolute;
    top: 360rem;
    right: 88rem;
}
#speechBubble4{
    position: absolute;
    top: 277rem;
    left: 13rem;
}
#speechBubble5{
    position: absolute;
    top: 125rem;
    right: 40rem;
    z-index: -1;
}
@media screen and (min-width: 600px) {
    .entertainment-select__speech-bubble-1{
        width: 80rem;
    }
    .entertainment-select__speech-bubble-2{
        width: 120rem;
    }
    .entertainment-select__speech-bubble-3{
        width: 100rem;
    }
    .entertainment-select__speech-bubble-4{
        width: 70rem;
    }
    .entertainment-select__speech-bubble-5{
        width: 110rem;
    }
    #speechBubble1{
        top: 84rem;
        left: -20rem;
    }
    #speechBubble2{
        top: -125rem;
        right: -10rem;
    }
    #speechBubble3{
        top: -90rem;
        right: 751rem;
        z-index: -1;
    }
    #speechBubble4{
        top: 184rem;
        left: 639rem;
    }
    #speechBubble5{
        top: 164rem;
        right: 40rem;
    }
}

@keyframes expanion{
    0% {
        transform: scale(0);
    }
    50%{
        opacity: 1;
    }
    100% {
        transform: scale(100%);
        opacity: 0;
    }
}

.sppech-bubble-animation{
    animation: expanion 3s infinite ease-in-out;
    display: inline-block;
}
.sppech-bubble-animation2{
    animation: expanion 5s infinite ease-in-out;
    display: inline-block;
}
.sppech-bubble-animation3{
    animation: expanion 6s infinite ease-in-out;
    display: inline-block;
}