@charset "UTF-8";

/* ============================================
        31について　共通CSS
============================================= */
.moreButton {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 5.333%;
    border-bottom: solid 1px #C8C8C8;
}
.moreButton .inner {
    font-size: 1.6rem;
    font-weight: bold;
    background: url(/media/image/common/common_icon_arrow01_down.svg) no-repeat right center;
    background-size: 20px 20px;
}
.moreButton.up .inner {
    background: url(/media/image/common/common_icon_arrow01_up.svg) no-repeat right center;
    background-size: 20px 20px;
}


@media print, screen and (min-width: 768px) {
    .contentIndent {
        padding-bottom: 50px;
    }
    .moreButton {
        width: 1024px;
        padding: 12px 0;
        margin: 0 auto;
        cursor: pointer;
    }
    .moreButton .inner {
        font-size: 1.8rem;
        background-size: 24px 24px;
    }
    .moreButton:hover .inner {
        color: #F04E98;
        background: url(/media/image/common/common_icon_arrow01_down_pink.svg) no-repeat right center;
        background-size: 24px 24px;
    }
    .moreButton.up .inner {
        background: url(/media/image/common/common_icon_arrow01_up.svg) no-repeat right center;
        background-size: 24px 24px;
    }
    .moreButton.up:hover .inner {
        background: url(/media/image/common/common_icon_arrow01_up_pink.svg) no-repeat right center;
        background-size: 24px 24px;
    }
}


/* ============================================
        MOVIEギャラリー
        /contents/movie.html
============================================= */
h1{
    font-size: 2.1rem;
    font-weight: bold;
    color: #3F2021;
    line-height: 1;
    width: 89.33vw;
    margin: 45px auto 0;
}
h1 div{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 10px;
}
h1 .subtitle_text{
    font-size: 1.3rem;
    font-weight: normal;
    margin-right: 12px;
    white-space: nowrap;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
h1 .subtitle_line{
    display: block;
    width: 100%;
    height: 1px;
    background-color: #3F2021;
}
.contentIndent {
    padding-bottom: 60px;
}
.movieGallerySection {
    margin-top: 25px;
}
.movieGallery_item {
    width:100%;
    /*margin-bottom: 30px;*/
    margin-top: 35px;
}
.movieGallery_item:first-of-type {
    margin-top: 0px;
}
.movieGallery_item .title {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.2857;
    font-feature-settings: "palt";
    letter-spacing: 0.8px;
    margin-bottom: 13px;
    padding: 3px 9px;
    border-left: 1px solid #F04E98;
    font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
.movieGallery_item .title.new:before {
    content: "";
    display: block;
    width: 45px;
    height: 20px;
    background: url(../image/movie/movie_new_icon.svg) no-repeat;
    background-size: contain;
    margin-bottom: 3px;
}
.movieGallery_item .movie {
    position:relative;
    width:100%;
    padding-top:56.25%;
}
.movieGallery_item .movie iframe {
    position:absolute;
    top:0;
    right:0;
    width:100%;
    height:100%;
    border-radius: 7px;
}
.movieGalleryHide {
    display: none;
    margin-top: 30px;
}

@media print, screen and (min-width: 768px) {
    h1{
        font-size: 3.0rem;
        width: 1024px;
        margin: -12px auto 0;
    }
    h1 div{
        width: 100%;
        margin-top: 22px;
    }
    h1 .subtitle_text{
        font-size: 1.6rem;
        margin-right: 13px;
    }
    .contentIndent {
        padding-bottom: 105px;
    }
    .movieGallerySection {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: baseline;
        margin-top: 50px;
    }
    .movieGallery_item {
        width: 500px;
        margin-top: 62px;
    }
    .movieGallery_item:nth-of-type(2) {
        margin-top: 0px;
    }
    .movieGallery_item .title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        border-left: 2px solid #F04E98;
    }
    .movieGallery_item .title.new:before {
        width: 52px;
        height: 23px;
        margin-bottom: 3px;
    }
    .movieGallery_item .movie iframe {
        border-radius: 11px;
    }

    /* PC版で対になるアイテムが揃わない場合 */
    .movieGallery_item .title.irregular {
        border-left: none;
        padding: 3px 9px 3px 0;
    }
    .movieGallery_item .title.irregular span {
        border-left: 2px solid #F04E98;
        padding-left: 9px;
    }

    .movieGalleryHide {
        margin-top: 40px;
    }
    .movieGallery_item .h3_wrap {
        height: 50px;
    }
}

