@charset "UTF-8";

.illust-hero {
    position: absolute;
    z-index: 11;
}

.illust-hero.-no1 {
    right: -1%;
    bottom: 9%;
}

.info_cat {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 100px 0 50px;
}

.info_cat li a {
    font-size: 20px;
    padding: 0 15px;
    border-radius: 50px;
    color: #6EAF66;
    background: #fff;;
    border: solid 1px #6EAF66;
}

.info_cat li a.-active {
    color: #fff;
    background: #6EAF66;
}

.info_body {
    margin-bottom: 100px;
}

.info_list li a {
    display: block;
    background: #fff;
    padding: 20px 45px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.info_ttl {
    font-size: 26px;
    margin-bottom: 10px;
}

.info_detail {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cat_info {
    background: #fff;
    padding: 2px 10px;
    border-radius: 50px;
    width: fit-content;
    color: #fff;
    font-weight: 600;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    font-size: 22px;
    color: #FAB84F;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50px;
    background: #fff;
    transition-duration: 0.5s;
}

.wp-pagenavi .current {
    background: #FAB84F;
    color: #fff;
}

.wp-pagenavi .page:hover {
    background: #FAB84F;
    color: #fff;
}

.pages,
.nextpostslink,
.previouspostslink {
    display: none;
}


/* single */

.hero_list.-single {
    padding-left: 5%;
}

.info_single_body {
    background: #fff;
    padding: 85px 80px;
    border-radius:  75px 0 0 0;
    width: 100%;
    flex: 1;
    position: relative;
}

.info_single_body::after {
    content: '';
    width: 100%;
    height: 500px;
    background: #fff;
    position: absolute;
    bottom: -450px;
    left: 0;
    z-index: 0;
}

.info_single_body_hd {
    padding-bottom: 40px;
    margin-bottom: 40px;
    position: relative;
}

.info_single_body_hd::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    bottom: 0;
    background: url(/img/cmn/underline_gray.svg);
    background-size: contain !important;
    background-repeat: repeat-x !important;
}

.info_single_ttl.-en {
    font-family: 'Marcellus', serif;
}

.info_single_ttl.-ja {
    font-size: 30px;
    margin-bottom: 20px;
}

.info_single_body_cnt {
    padding-bottom: 75px;
    margin-bottom: 50px;
    position: relative;
    font-family: 'Noto Sans JP', serif;
}

.info_single_body_cnt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    bottom: 0;
    background-image: repeating-linear-gradient(to right, #CCCCCC 0 4px, /* 線分：2px */ transparent 2px 8px /* 間隔：4px（合計6px周期）*/);
}

.info_single_body_cnt strong {
    font-weight: bold;
}

.info_single_body_cnt a {
    text-decoration: underline;
    color: #6EAF66;
}

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

.cmnbtn {
    margin: 0 auto 70px;
}

@media screen and (max-width: 767px) {
    
    
    .illust-hero.-no1 {
        width: 140px;
    }

    .info_cat {
        padding: 0 24px;
        margin: 50px 0;
        width: 80%;
        gap: 5px;
        justify-content: left;
    }

    .info_list li a {
        padding: 15px 20px;
    }

    .info_ttl {
        font-size: 20px;
    }

    .wp-pagenavi .page,
    .wp-pagenavi .current {
        width: 35px;
        height: 35px;
    }

    .wp-pagenavi {
        font-weight: 17px;
    }




    /* single */

    .info_single_body {
        padding: 50px 40px;
    }

    .info_single_ttl.-en {
        margin-bottom: 0;
    }

    .info_single_ttl.-ja {
        font-size: 26px;
    }


    
}