@charset "UTF-8";

.main.-single {
    background: url(/img/cmn/bg-blue.png) center top;
    background-size: contain;
}


/* hero */

.hero {
    background: url(/img/info/bg-hero.webp) no-repeat center;
    background-size: cover;
}


/* body */

.info {
    background: unset;
    display: flex;
    gap: 50px;
    padding: 100px 0;
}

.info_body {
    padding: 0;
    flex: 1;
}

.info_cnt {
    width: 100%;
    padding: 30px 20px;
    border-bottom: solid 1px #3C3C3C;
}

.info_cnt:first-child {
    border-top: solid 1px #3C3C3C;
}

.info_ttl {
    font-size: 16px;
}

.info_txt a {
    color: #314D98;
    text-decoration: underline;
}

.info_txt a:hover {
    text-decoration: none;
}

.info_txt a strong {
    font-weight: bold;
}


/* sidenav */

.side_nav {
    width: 260px;
}

.side_nav_cnt {
    padding: 40px 0;
    border-bottom: solid 1px #3C3C3C;
}

.side_nav_cnt:last-child {
    border-bottom: none;
}

.side_nav_cnt:first-child {
    padding-top: 0;
}

.side_nav_cnt_ttl.-en {
    font-size: 24px;
}

.side_nav_cnt_ttl.-ja {
    margin-bottom: 20px;
}

.cat_list .info_cat {
    color: #314D98;
}

.cat_list.-article a {
    display: block;
    margin-bottom: 10px;
}

.cat_list a:hover {
    opacity: .8;
}

.archive_select {
    position: relative;
}

.archive_select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    transform: translateY(-50%);
}

.archive_select select {
    width: 100%;
    display: block;
    padding: 13px 15px;
    border: solid 1px #CECECE;
    border-radius: 3px;
    background: #fff;
}

.archive_select select:hover {
    cursor: pointer;
}



body.-single {
    background: #ECF4FC;
}

.info_single {
    padding: 60px;
    background: #fff;
    border-radius: 30px;
    margin-bottom: 70px;
}

.info_body.-single .info_ttl {
    font-size: 30px;
    margin-bottom: 30px;
}

.pnkz {
    background: unset;
}

.cmnft::before {
    content: '';
    width: 100%;
    height: 100%;
    background: url(/img/cmn/bg-blue.png) no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

body.-info .cmnft::before {
    content: none;
}

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

    .info {
        flex-flow: column;
        padding: 50px 0;
    }
    
    .info_cnt {
        flex-flow: column;
        align-items: center;
    }

    .side_nav {
        width: 100%;
    }

    .info_wrapper {
        gap: 0;
    }

    .info_img {
        max-width: 100%;
    }
    
    .info_cnt_wrapper {
        width: 100%;
    }

    .info_date {
        text-align: left;
    }



    .info_single {
        padding: 30px 20px;
    }

    .info_body.-single .info_ttl {
        font-size: 24px;
        line-height: 35px;
    }
}