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

/* MAIN
----------------------------------------------------------------------------------------------------*/
/* News Detail Header
*************************************** */
#news_detail_cont .title {
    margin: 15px 0;
    padding-bottom: 10px;
    border-bottom: solid 1px #b4b4b4;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.4;
}

.text {
    min-height: 50vh;
}
.text * {
    max-width: 100%;
}

/* コンテンツエディター対応CSS
**************************************/
.text a {
    font-weight: bold;
    color: #E60028;
    transition: .2s;
}

.text a:hover {
    color: #000;
}

.aligncenter {
    display: block;
    margin: 15px auto;
}

strong {
    font-weight: bold;
}

em {
    font-style: oblique; 
}

.text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.text ol {
    list-style-type: decimal;
    margin-left: 20px;
}

blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #f5f5f5;
    color: #777777;
    border-left: 4px solid #E60028;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 0;
    content: "“";
    font-family: sans-serif;
    color: #E60028;
    font-size: 90px;
    line-height: 1;
}

blockquote p {
    padding: 0;
    margin: 7px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #777777;
    font-size: 0.9em;
}

/* Gallery */
.text .gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 25px auto !important;
}

.text .gallery-item {
    display: block;
    margin: 0 auto;
    max-width: 47.5%;
}

.text .gallery img {
    width: 100% !important;
    height: 100%;
}


/* Youtube Contents */
.youtube {
    position: relative;
    margin: 25px auto;
    padding-top: 56.25%;
    width: 100%;
}

.youtube iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}



/* -------------------- for SP (480px) ---480px以下
----------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
    /* MAIN
    ----------------------------------------------------------------------------------------------------*/ 
    /* News Detail Header
    *************************************** */
    #news_detail_cont .title {
        font-size: 2.3rem;
    }

    .youtube {
        padding-top: 250px;
    }

}
/* (max-width: 480px) end */


/* -------------------- for Tablet (481px) and (1023px) ---481から1023px以内
----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 481px) and (max-width: 1023px) {
    /* MAIN
    ----------------------------------------------------------------------------------------------------*/
    /* News Detail Header
    *************************************** */
    #news_detail_cont .title {
        font-size: 2.3rem;
    }
    
}
/* (min-width: 481px) and (max-width: 1023px) end */