/* header */
.main-header {
    width: 100%;
    height: min(100vh, 580px);
    position: relative;
    background: url(../img/sekisuiheim-bg.jpg) no-repeat center / cover;
}

@media screen and (max-width:639px) {
    .main-header {
        height: 120vw;
    }
}

.title-wrp {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 0;
    color: #fff;
    z-index: 4;
    -webkit-transform: translateY(-55%);
    transform: translateY(-55%);
    /* filter: drop-shadow(0 0 2px rgba(0,0,0,.8)) drop-shadow(0 0 6px rgba(0,0,0,.3)); */
}

.title-wrp .title {
    color: #fff;
    display: block;
    margin: 0 auto 1em;
    padding: 0;
    /* font-size: 3em;
    font-size: min(3em,7.8vw);
    line-height: 1.4;
    font-weight: 800; */
    text-align: center;
    width: 60%;
    max-width: 300px;
}

.title-wrp .title img {
    width: 100%;
    height: auto;
}

.title-wrp .title-sub {
    display: inline-block;
    font-size: min(1.4em, 4.8vw);
    font-weight: 800;
    line-height: 1.5;
    padding: .3em .75em;
    color: var(--color-blue);
    text-align: center;
    border: 5px solid;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .9);
}

.sekisui-mov-wrp {
    background: linear-gradient(#fff 52%, #69c3e8 52%);
}

.lead-wrp {
    width: min(90vw, 700px);
    /* margin: -4em auto 0; */
    margin: 0 auto;
    padding-top: 3em;
    /* padding: min(2.5em,7vw) min(2em,5vw); */
    color: var(--color-blue);
    font-size: min(2rem, 4vw);
    font-weight: bold;
    line-height: 2;
    letter-spacing: .1em;
    text-align: center;
    /* box-shadow: 0 1px 3px 0 rgba(0,0,0,.3); */
    background-color: #fff;
}

.mov {
    position: relative;
    width: min(calc(100% - calc(var(--base-gutter)*2)), var(--article-width));
    /* margin: min(80px,15vw) auto; */
    margin: 0 auto;
    padding: min(80px, 15vw) 0;
    text-align: center;
}

.more-movie-wrp {
    padding: 1em 15px 5em;
    background-color: #69c3e8;
}

.more-movie-wrp .more-movie-title-wrp {
    width: 100%;
    margin-bottom: 3em;
}

.more-movie-wrp .more-movie-title {
    display: inline-block;
    font-size: 1.3em;
    color: var(--color-blue);
    border: 3px solid;
    padding: .3em 1em;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .9);
}

@media (max-width:767px) {
    .more-movie-wrp .more-movie-title {
        width: 90%;
        font-size: 1.1em;
        margin-bottom: 0;
    }
}

.more-movie-wrp .mov-title {
    width: 100%;
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 1.25em;
    position: relative;
}

.more-movie-wrp .inner-lg .thumb-wrp {
    width: 47%;
    /* width: 32%; */
    text-align: left;
    margin-bottom: 4em;
}

.more-movie-wrp .inner-md .thumb-wrp {
    width: 47%;
    text-align: left;
}

@media (max-width:767px) {
    .more-movie-wrp .inner-lg .thumb-wrp {
        width: 100%;
        margin-bottom: 3em;
    }

    .more-movie-wrp .inner-md .thumb-wrp {
        width: 100%;
        margin-bottom: 3em;
    }
}

.more-movie-wrp .thumb-wrp .thumb {
    display: block;
    width: 100%;
    padding-bottom: 56%;
    height: 0;
    overflow: hidden;
    position: relative;
    margin-bottom: 1em;
}

.more-movie-wrp .thumb-wrp .thumb::before {
    content: '';
    display: block;
    width: 4em;
    height: 4em;
    border: 4px solid #fff;
    background-color: rgba(0, 0, 0, .3);
    position: absolute;
    top: calc(50% - 2em);
    left: calc(50% - 2em);
    z-index: 2;
    border-radius: 100%;
}

.more-movie-wrp .thumb-wrp .thumb::after {
    content: '';
    display: block;
    top: 50%;
    left: calc(50% - 7px);
    border: solid transparent;
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: transparent;
    border-left-color: #fff;
    border-width: 12px 0 12px 20px;
    margin-top: -12px;
    z-index: 3;
}

.more-movie-wrp .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.more-movie-wrp .thumb-wrp h4 {
    margin-bottom: 1em;
}

@media (max-width:767px) {
    .more-movie-wrp .thumb-wrp p {
        font-size: .9em;
    }
}

.l-mov-wrp {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(255, 255, 255, .95);
}

.l-mov-wrp.on {
    display: flex;
}

.l-mov-wrp .close-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5em;
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.l-mov-wrp-inner {
    width: 90%;
    max-width: 800px;
}

.movbg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

@media screen and (max-width: 767px) {

    .share-wrp,
    .share-wrp.absolute {
        padding-top: 0;
    }
}