@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
}

a:hover{
    opacity: 0.6;
}

/*-----------------------------------------------------------*/

.notoreg{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.notomed{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.notobold{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.jostreg{
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

/*-----------------------------------------------------------*/

table#gmenu{
    margin: 0px 13px;
}

.body-all{
    margin: 0px 13px;
}

/* コメント */
.body-all .comment{
    font-family: 'Noto Sans JP', sans-serif !important;
    font-size: 16px;
    -webkit-text-size-adjust: none;
    color: #333;
    font-weight: 500;
    font-style: normal;
    line-height: 1.5;
}

.body-all .comment{
    margin-top: 5px;
    background-color: #caffcb;
    padding: 30px 35px;
    position: relative;
}
.body-all .comment::before{
    content: '';
    display: block;
    width: 5px;
    height: 100%;
    background-color: #ccccff;
    position: absolute;
    top: 0;
    left: 0;
}
.body-all .comment dl dt{
}
.body-all .comment dl dd{
    margin: 15px 0 0 0;
}

/* CMS */
.body-all .news{
    margin: 35px auto 0;
}

.body-all .news .column{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.body-all .news h2.hd{
    font-size: 25px;
    color: #f74f74;
}

/* タブ */
.body-all .news .tab{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    gap: 0 10px;
}
.body-all .news .tab li a{
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: calc( 110px - 40px );
    width: calc( 100% - 40px );
    height: 35px;
    padding: 0 20px;
    background: #e6e6e6;
    font-size: 14px;
    color: #6e6e6e;
    border-radius: 5px; 
}
.body-all .news .tab li.active a{
    color: #fff;
    background: #f74f74;
}

.body-all .news .area {
    display: none;
    opacity: 0;
}
.body-all .news .area.is-active {
    display: block;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes displayAnime{
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.body-all .news h3.hd{
    width: calc( 100% - 15px );
    height: 35px;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-left: 15px;
}
.body-all .news h3.hd::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffc61c;
    border-radius: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.body-all .news h3.hd::after{
    content: '';
    display: block;
    width: 225px;
    height: 100%;
    background-color: #f74f74;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.body-all .news h3.hd:first-of-type{
    margin: 10px auto 0;
}
.body-all .news h3.hd:nth-of-type(2){
    margin: 15px auto 15px;
}

/* 記事一覧 */
.body-all .news .posts{
    width: 100%;
    min-height: 225px;
}
.body-all .news .posts .post{
    width: calc( 100% - 65px );
    padding: 20px 50px 20px 15px;
    border-bottom: 2px dotted #c8c8c8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 15px;
    cursor: pointer;
    position: relative;
}
.body-all .news .posts .post:hover{
    opacity: 0.6;
}
.body-all .news .posts .post:last-of-type{
    border-bottom: 0px dotted #c8c8c8;
}
.body-all .news .posts .post::before{
    content: '';
    display: block;
    background: url("./cms/wp-content/themes/original/image/icon_circle.png") 0 0 / contain no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 43%;
    right: 15px;
    pointer-events: none;
}

.body-all .news .posts .post dl{
    width: 270px;
    display: flex;
    align-items: center;
    gap: 0 15px;
    margin: 0;
}
.body-all .news .posts .post dl dt{
    font-size: 15px;
    color: #707070;
}
.body-all .news .posts .post dl dd{
    width: 170px;
    height: 30px;
    margin: 0;
}
.body-all .news .posts .post dl dd a.cat{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 14px;
    font-weight: 700;
    border-radius: 15px;    
    box-sizing: border-box;
    text-decoration: none;
}

.body-all .news .posts .post .title{
    width: calc( 100% - 270px );
}
.body-all .news .posts .post .title a{
    color: #333;
    text-decoration: none;
}

/* イベントエリア */
.body-all .news .area_event .posts{
    min-height: auto;
    display: flex;
    gap: 0 20px;
}
.body-all .news .area_event .posts a{
    text-decoration: none;
}
.body-all .news .area_event .posts > dl{
    margin: 0;
    width: calc( 25% - 10px ); 
}
.body-all .news .area_event .posts > dl dt img{
    border-radius: 5px;
}
.body-all .news .area_event .posts > dl dd{
    margin: 10px 0 0;
}
.body-all .news .area_event .posts > dl dd .date{
    font-size: 15px;
    color: #707070;
    font-weight: 500;
}
.body-all .news .area_event .posts > dl dd .title{
    margin: 5px 0 0;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.body-all .news .tolist{
    width: 230px;
    height: 55px;
    margin: 20px auto 0;
}
.body-all .news .tolist > a{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f74f74;
    border-radius: 28px;
    font-size: 17px;
    color: #fff;
    position: relative;
    text-decoration: none;
}
.body-all .news .tolist > a::before{
    content: '';
    display: block;
    background: url("./cms/wp-content/themes/original/image/icon_circle2.png") 0 0 / contain no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    bottom: 50%;
    margin: auto;
    right: 20px;
}

.body-all .banners{
    margin: 45px auto 30px;
    display: flex;
    justify-content: space-between;
}

/*-----------------------------------------------------------*/

.body-all .infomation{
    border-top: 1px solid #eee;
    padding: 20px 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.body-all .infomation p, .body-all .infomation a{
    text-align: center;
}









