@charset "utf-8";
/* CSS Document */

/*------------------------------------
    共有
------------------------------------*/
.detailCont > h2.h2Border + p{
    margin: 0 auto 30px;
}

.detailCont section > h3.hLine{
    color: #434343;
    margin-bottom: 20px;
    padding: 3px 15px;
    font-size: 23px;
    font-weight: bold;
    line-height: 1.5em;
    letter-spacing: 0.08em;
    border-left: 7px solid #ccc;
    border-bottom: 1px solid #ccc;
}


/*----動画----*/
.detailCont .movieBox{
    width: 80%;
    margin: 30px auto 50px;
}
.detailCont .movieBox > p{
    display: block;
    width: fit-content;
    background-color: #ffe3da;
    color: #e62315;
    margin: 0 auto 10px;
    padding: 0 5px;
}
.detailCont .movieBox .movieIframe{
    width: 100%;
    margin-inline: auto;
}
.detailCont .movieBox .movieIframe iframe{
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .detailCont > h2.h2Border{
        font-size: 23px;
    }
    .detailCont > h2.h2Border + p{
        width: 95%;
    }

    .detailCont section > h3.hLine{
        font-size: 22px;
    }
	
    /*----動画----*/
    .detailCont .movieBox{
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .detailCont > h2.h2Border{
        font-size: 22px;
    }
    
    .detailCont section > h3.hLine{
        font-size: 20px;
    }

}




