@charset "utf-8";

#top-head {
    background: #fff;
}

.category_top_bg {
    margin-top: 70px;
}

.category_top_bg {
    background-image: url(../images/category_top_bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 100px 0 50px;
}

.ex_red_box,
.ex_navy_box,
.ex_pink_box {
    position: relative;
    padding: 15px;
    margin-bottom: 40px;
}

.ex_red_box:after,
.ex_navy_box:after,
.ex_pink_box:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    width: 0px;
    height: 0px;
    margin: auto;
    border-style: solid;
    border-width: 20px 20px 0 20px;
}

.ex_red_box:after {
    border-color: #e8382f transparent transparent transparent;
}

.ex_navy_box:after {
    border-color: #003288 transparent transparent transparent;
}

.ex_pink_box:after {
    border-color: #FD79A8 transparent transparent transparent;
}

.ex_red_box h2,
.ex_navy_box h2,
.ex_pink_box h2 {
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.navy_bg {
    background-color: #003288;
}

.red_bg2 {
    background-color: #e8382f !important;
}

.yellow_bg2 {
    background-color: #FFB000 !important;
}

.pink_bg2 {
    background-color: #FD79A8 !important;
}

.light_blue_area {
    background: #EFF9FF;
    padding: 100px 0;
}

.small_tex {
    font-size: 0.7em;
}

/*---------------------------------
アコーディオンボックス
--------------------------------*/
.cp_box *,
.cp_box *:before,
.cp_box *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_box {
    position: relative;
}

.cp_box label {
    position: absolute;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 140px;
    /* グラデーションの高さ */
    cursor: pointer;
    text-align: center;
    /* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(250, 252, 252, 0)), color-stop(90%, rgba(250, 252, 252, 0.95)));
    background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}

.cp_box input:checked + label {
    background: inherit;
    /* 開いた時にグラデーションを消す */
}

.cp_box label:after {
    line-height: 2.5rem;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 50%;
    width: 100%;
    font-family: FontAwesome;
    content: '\f13a'' 続きをよむ';
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    letter-spacing: 0.05em;
    color: #ffffff;
    border-radius: 20px;
    background-color: #003288;
}

.spe_red_btn:after {
    background-color: #e74c3c !important;
}

.spe_pink_btn:after {
    background-color: #FD79A8 !important
}

.cp_box input {
    display: none;
}

.cp_box .cp_container {
    overflow: hidden;
    height: 182px;
    /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

/*
.cp_box input:checked + label {
    /* display: none ; 閉じるボタンを消す場合解放 
}
*/

.cp_box input:checked + label:after {
    font-family: FontAwesome;
    content: '\f139'' 閉じる';
}

.cp_box input:checked ~ .cp_container {
    height: auto;
    padding-bottom: 80px;
    /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.cp_container p {
    color: #003288;
}

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


.lect_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
}

.lect_in_l {
    width: 10%;
}

.lect_in_r {
    width: 88%;
}

.lect_in_m {
    width: 68%;
}

.lect_in_r2 {
    width: 15%;
}


ul.lect_box {
    list-style: none;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

ul.lect_box li:nth-child(n+2) {
    margin-top: 50px;
}

ul.lect_box h4 {
    color: #003288;
    font-size: 20px;
    margin-bottom: 15px;
}

ul.lect_box h3 {
    background: #003288;
    font-size: 16px;
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.speacler_name {
    font-weight: 600;
    font-size: 20px
}

p.kyodo_category {
    text-align: center;
    background: #003288;
    color: #fff;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 4px;
    display: inline-block;
}

dl.kyodo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.kyodo dt {
    margin-right: 15px;
}

.kyodo dd {
    font-size: 18px;
    font-weight: 600;
    color: #003288;
}

.ceo_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-top: 50px;
}

.ceo_box p {
    line-height: 1.6em !important;
}

.ceoimg {
    margin-left: 15px;
    max-width: 150px;
}

.greeting_box p {
    line-height: 1.8em;
}

/*——————————————————————
	レスポンシブ
——————————————————————*/
@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1024px) {
    .category_top_bg {
        padding: 50px 0;
    }
}

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

    .lect_wrap,
    dl.kyodo {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .lect_in_l,
    .lect_in_m,
    .lect_in_r,
    .lect_in_r2 {
        width: 100%
    }

    .lect_in_l {
        max-width: 180px;
        margin-bottom: 15px;
    }

    .lect_in_r2 {
        margin-top: 15px;
    }
}
