@charset "UTF-8";


/*------------------------------------------------------------
    ◆読み込みHTML
    /introduction.html
------------------------------------------------------------*/

.introText p {
    font-size: 1.4rem;
}
.introText_notes {
    margin-top: 20px;
}
@media print, screen and (min-width: 770px) {
    .introText p {
        font-size: 1.6rem;
    }
    .introText_notes {
        text-align: right;
    }
}

.intro_mov_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}
.mov_title {
    background: #EFF0F2;
    padding: 20px 15px;
    box-sizing: border-box;
}
.mov_title h2 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
}
.mov_title .time {
    font-size: 1.4rem;
    font-feature-settings: "palt";
    margin-top: 4px;
}
.mov_thum img,
.mov_video video {
    width: 100%;
}
.mov_thum,
.mov_video {
    display: none;
}

@media print, screen and (min-width: 770px) {
    .intro_mov_wrap {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 55px 30px;
        margin-top: 30px;
    }
    .intro_mov {
        width: calc((100% - 60px) / 3);
    }
    .mov_title {
        padding: 10px 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 120px;
    }
    .mov_title h2 {
        font-size: 2.0rem;
    }
    .mov_title .time {
        font-size: 1.6rem;
    }
    .mov_thum:hover {
        cursor:pointer;
        opacity:0.7;
    }
}

/* 動画ボックス ------------------------------ */
div#shadow {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    z-index: 105;
}
div#boxwin {
    opacity: 1;
    display: none;
    position: absolute;
    width: 870px;
    padding:10px;
    background-color: #FFFFFF;
    z-index: 110;
}
div#boxWrap {
    width:850px;
    margin:0 auto;
}
div#boxWrap video {
    display:none;
}

