@charset "utf-8";

/* --------------------------------------------


index


---------------------------------------------- */

#mainV {
    width: 100%;
}

/* --------------------------------------------


content


---------------------------------------------- */

#main {
    padding: 100px 0;
    background-color: #F3F8EA;
}

.content__wrap h1 {
    margin-bottom: 100px;
    padding: 10px;
    text-align: center;
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
    background-color: rgba(218, 224, 0, 0.5);
}

.content__wrap p.cation {
    text-align: center;
    font-size: 1.6rem;
    font-size: 16px;
}

.content__block {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    width: 960px;
    margin: 60px auto;
    gap: 60px;
}

.content__box {
    display:flex;
    flex-direction:column;
    width: calc(50% - 30px);
    padding: 40px;
    background-color: #fff;
}

.content__box dl {
    display:flex;
    flex-direction:column;
    margin-bottom: 20px;
    flex-grow: 1;
}

.content__box dt {
    width: 80px;
    margin-bottom: 8px;
    text-align: center;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    background-color: #DAE000;
}

.content__box dd {
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}

.space {
    text-indent: -1em;
    padding-left: 1em;
}

.nobr {
    white-space:nowrap;
}

.interview__block {
    position: relative;
    display: block;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.interview__block.movie_none {
    cursor:auto;
}

.interview__block::before {
    display: block;
    position: absolute;
    content: "";
    width: 48px;
    height: 48px;
    top: 90px;
    left: 150px;
    background-image: url(../_image/index/youtube.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
    transition: 0.5s;
}

.interview__block.movie_none::before {
    display: none;
}

.interview__block:hover::before {
    -moz-transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    transition: 0.5s;
}

.main_Btn {
    display: block;
    width: 300px;
    padding: 10px 0;
    margin: 50px auto 0;
    border-radius: 10px;
    background: #FCC80E;
    color: #000;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    font-size: 2rem;
    font-weight: bold;
}

.main_Btn:hover {
    background: #FDD22B;
}

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

    .content__wrap h1 {
        font-size: 24px;
        font-size: 2.4rem;
    }

    .content__block {
        display: initial;
        width: 90%;
        margin: auto;
        gap: 0px;
    }

    .content__box {
        width: 90%;
        margin: 0 auto 80px;
    }

    .content__box dl {
        padding-bottom: 40px;
    }

    .content__box dt {
        width: 120px;
        font-size: 16px;
        font-size: 1.6rem;
    }

    .content__box dd {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 45px;
    }

    .interview__block::before {
        width: 70px;
        height: 70px;
        top: 125px;
        left: 192px;
    }

    .main_Btn {
        width: 90%;
        font-size: 16px;
        font-size: 1.6rem;
    }
}


/* -----------------------------------------------
    モーダル閉じるボタンのスタイル上書き
-------------------------------------------------*/

.youtube iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

/* ボタン位置 */
.remodal-close {
    left: auto;
    right: 0;
    width: 40px;
    height: 40px;
    color: #2b2e38;
}

.remodal-close:before,
.remodal-close:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    margin: auto;
    background: #000;
}

.remodal-close:before {
    transform: rotate(-135deg);
}

.remodal-close:after {
    transform: rotate(135deg);
}