@charset "UTF-8";
/* CSS Document */

.scheduleLeadText{
    font-size: 18px;
    margin-bottom: 43px;
}
.sc_nav ul{
    display: flex;
    justify-content: space-between;
}
.sc_nav ul a{
    position: relative;
    background: #DFE3E5;
    height: 50px;
    width: 156px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid #D1D6D8;
    transition: 0.2s;
}
.sc_nav ul a::before{
    content: "";
    width: 19px;
    height: 19px;
    border: 1px solid #D52E31;
    border-radius: 50%;
    display: block;
    margin-right: 6px;
    transition: 0.3s;
}
.sc_nav ul a::after{
    content: "";
    background: url(../img/ico_arrow.svg) no-repeat center center;
    width: 19px;
    height: 19px;
    order: -1;
    margin-right: -19px;
}
.sc_nav ul li:first-of-type a::after{
    transform: scale(-1, 1);
}
.sc_nav ul li:last-of-type a::before{
    order: 1;
    margin-right: 0;
    margin-left: 6px;
}
.sc_nav ul li:last-of-type a::after{
    order: 1;
    margin-right: 0;
    margin-left: -19px;
}
.sc_nav ul a:hover{
    background: #ECEEEF;
}
.sc_nav ul a:hover::before{
    transform: scale(1.3);
}
.sc_nav ul a:hover::after{
    animation: link_ico_hover .3s;
}
.sc_nav ul li:first-of-type a:hover::after{
    animation: link_ico_hover2 .3s;
}
@keyframes link_ico_hover2{
    0% {
        opacity: 1;
        transform: scale(-1, 1) translateX(0)
    }

    30% {
        opacity: 0;
        transform: scale(.5) translateX(15px)
    }

    30.1% {
        opacity: 0;
        transform: scale(.5) translateX(-20px)
    }

    100% {
        opacity: 1;
        transform: scale(-1, 1) translateX(0)
    }
}
.sc__this-month{
    text-align: center;
    font-size: 16px;
    line-height: 0.9;
    margin-bottom: 28px;
}
.sc__this-month .sc__year-num{
   font-family: 'Barlow', sans-serif;
    font-size: 29px;
}
.sc__this-month .sc__month-num{
   font-family: 'Barlow', sans-serif;
    font-size: 115px;
}
.grid-group--3to1-g15{
    display: flex;
    justify-content: space-between;
}
.grid-group--3to1-g15 .grid{
    width: 50%;
}
.grid-group--3to1-g15 .grid:first-of-type{
    margin-right: 11px;
}
.media{
    padding: 20px;
    display: flex;
}
.bg-stripe{
    background: rgba(204, 214, 219, 0.4);
}
.media__img{
    min-width: 90px;
    width: 90px;
}
.media__body{
    min-height: 3.5em;
}
.media__body a{
    font-size: 15px;
    font-weight: 600;
}
.media__body a .media__title{
    position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
}

.media__body a .media__title:after{
    display: block;
    content: '';
    position: absolute;
    top: 10px;
    left: 7px;
    width: 5px;
    height: 5px;
    background-color: #333;
    border-radius: 100%;
}
.sc__day-num{
   font-family: 'Barlow', sans-serif;    
    display: inline-block;
    width: 1.3em;
    font-size: 20px;
}
.sc__week-num{
    font-size: 14px;
    line-height: 20px;
    display: inline-block;
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    text-align: center;
    color: #FFF;
    border-radius: 50%;
    background-color: #95A0A6;
    letter-spacing: 0;
}
.sc__week-num--sat {
    background-color: #08409D;
}
.sc__week-num--sun {
    background-color: #D52E31;
}
a.sc_btn{
    position: relative;
    font-size: 16px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
a.sc_btn span{
        width: 60px;
    height: 60px;
    border: 1px solid #D52E31;
    border-radius: 50%;
    position: relative;
    margin: 0 15px;
    display: inline-block;
    min-width: 60px;
}
a.sc_btn span::before{
        content: "";
    width: 60px;
    height: 60px;
    background: #D52E31;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
    transform: scale(0);
}
a.sc_btn:hover span::before{
    transform: scale(1.3);
}
a.sc_btn span::after{
        content: "";
    background: url(../img/ico_arrow.svg) no-repeat center center / 12px auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
a.sc_btn:hover span::after{
    background: url(../img/ico_arrow_w.svg) no-repeat center center / 12px auto;
    animation: link_ico_hover .3s forwards;
}
@media screen and (max-width: 768px){
    .scheduleLeadText{
        font-size: 14px;
    }
    .sc_nav ul{
        margin-bottom: 30px;
    }
    .sc_nav ul li{
        width: 50%;
        max-width: 165px;
    }
    .sc_nav ul li:first-of-type{
        margin-right: 10px;
    }
    .sc_nav ul a{
        width: 100%;
    }
    .sc__this-month{
        font-size: 14px;
    }
    .sc__this-month .sc__year-num{
        font-size: 20px;
    }
    .sc__this-month .sc__month-num{
        font-size: 70px;
    }
    .grid-group--3to1-g15{
        display: block;
    }
    .grid-group--3to1-g15 .grid{
        margin: 0;
        width: 100%;
    }
    .sc__day-num{
        font-size: 18px;
    }
    .sc__week-num{
         font-size: 13px;
        line-height: 18px;
        width: 20px;
        height: 20px;
    }
    .media__img{
        min-width: 68px;
        width: 68px;
    }
}


.blk_schedulespost .ttl_post{
        font-size: 30px;
    margin: 30px 0 20px;
    padding: 12px 0 12px 1.2em;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    border-bottom: 1px solid #DDDDDD;
}
.blk_schedulespost .ttl_post::before{
    content: "";
    position: absolute;
    border-top: 1px solid #D52E31;
    width: 0.7em;
    left: 0;
    top: 50%;
}
.blk_schedulespost .post_data{
    display: flex;
    align-items: center;
}
.blk_schedulespost .post_data .category{
    background: #D52E31;
    color: #fff;
    padding: 5px 22px;
    margin-right: 15px;
    font-size: 16px;
}
.blk_schedulespost .post_data p{
    font-size: 18px;
    font-family: 'Barlow', sans-serif;
}
.blk_schedulespost .sns_share{
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 300;
    width: 100%;
}
.blk_schedulespost .sns_share ul{
    display: flex;
    align-items: center;
    margin-left: 12px;
}
.blk_schedulespost .sns_share ul li{
    width: 30px;
    height: 30px;
    margin-left: 9px;
}
.blk_schedulespost .sns_share ul li:hover{
    opacity: 0.7;
}
.blk_schedulespost .sns_share ul li svg{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blk_schedulespost .sns_share ul li svg.twitter{
    fill:#1DA1F2;
}
.blk_schedulespost .sns_share ul li svg.facebook{
    fill:#1877F2;
}
.scheduleWrap{
    overflow: hidden;
	/**/
	display: flex;
    flex-direction: row-reverse;
}
.scheduleWrap p {
	margin: 0.6em 0;
    line-height: 2.2em;
}
.scheduleContent{
    margin: 0 0 40px;
    font-size: 16px;
	flex: 1;
}
.scheduleImg{
    /*float: right;*/
    margin: 0 0 20px 20px;
}
.scheduleImg img{
    margin-bottom: 40px;
}
/*タイトル
---------------------------------------------------------- */
.scheduleContent h2{
    font-size: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid #DDDDDD;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    margin: 40px 0 35px;
    position: relative;
    display: flex;
}
.scheduleContent h2::after{
        content: "";
    position: absolute;
    border-bottom: 2px solid #D52E31;
    width: 80px;
    bottom: -1px;
    left: 0;
}
.scheduleContent h1{
    font-size: 26px!important;
}
.scheduleContent h3 {
    font-size: 26px;
    margin: 30px 0 20px;
    line-height: 1.3em;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: flex;
    align-items: center;
}
.scheduleContent h3::before{
    content: "";
    display: inline-block;
    border-top: 1px solid #D52E31;
    min-width: 0.7em;
    margin-right: 0.5em;
}
.scheduleContent h4 {
    font-size:22px;
    padding-bottom: 17px;
    margin-bottom: 17px;
    position: relative;
    display: flex;
    line-height: 1.4em;
}
.scheduleContent h4::after{
    content: "";
    flex-grow: 1;
    margin-bottom: -17px;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
}
.scheduleContent h4::before{
    content: "";
    border-bottom: 1px solid #D52E31;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.scheduleContent h5 {
    font-size:20px;
    font-family: 'Noto Serif JP', serif;
    padding: 12px 0 12px 1em;
    margin-bottom: 15px;
    border-bottom: 1px solid #DDDDDD;
    font-weight: 400;
    position: relative;
    line-height: 1.4em;
    display: flex;
}
.scheduleContent h5::before{
    content: "";
    position: absolute;
    border-top: 2px solid #D52E31;
    width: 0.6em;
    left: 0;
    top: 50%;
}
.scheduleContent h6{
    font-size:20px;
    color: #D52E31;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4em;
}
/*リスト
---------------------------------------------------------- */
.scheduleContent ol,
.scheduleContent ul{
    margin: 10px 0;
}
.scheduleContent li {
    position: relative;
    line-height: 1.6em;
    margin-bottom: 10px;
    padding-left: 1.65em;
}
.scheduleContent ol{
    counter-reset: number;/* カウンターを初期化 */
}
.scheduleContent ol > li::before{
    content: counter(number)".";
    counter-increment: number;
    display: inline-block;
    text-align: right;
    font-size: 1em;
    text-indent: 0;
    position: absolute;
    left: 0;
    letter-spacing: 0;
    line-height: 1.6em;
    width: 1.5em;
}
.scheduleContent ul > li::before{
    content: "";
    width: 0.6em;
    height: 0.6em;
    position: absolute;
    display: block;
    left: 0px;
    top: 0.54em;
    transform: rotate(45deg);
    border-top: 1px solid #333;
    border-right: 1px solid #333;
}
.scheduleContent ul li ul li::before{
    width: 0.4em;
    height: 0.4em;
    top: 0.65em;
    left: 0.2em;
    border: none;
    border-radius: 50%;
    background: #333;
}
.scheduleContent li.list_Not{
     padding-left: 0;
}
.scheduleContent li.list_Not::before{
    content: none;

}
/*リンクテキスト
---------------------------------------------------------- */
.scheduleContent a{
    color: #0071bc;
    transition: 0.2s;
}
.scheduleContent a:hover{
    text-decoration: underline;
}
.scheduleContent .link_txt_type_a{
    padding-left: 1.2em;
    position: relative;
    transition: 0.2s;
    font-size: 16px;
    color: #000;
}
.scheduleContent .link_txt_type_a:hover{
    color: #D52E31;
    text-decoration: none;
}
.scheduleContent .link_txt_type_a::before{
    content: "";
    width: 0.6em;
    height: 0.6em;
    position: absolute;
    display: block;
    left: 0px;
    top: 0;
    margin: 0.48em 0;
    transform: rotate(45deg);
    border-top: 1px solid #D52E31;
    border-right: 1px solid #D52E31;
}
.scheduleContent .link_txt_type_a[target="_blank"]::after{
    content: "";
    background: url("../img/ico_link.svg") no-repeat center center / 100% auto;
    margin-left: 5px;
width: 0.8em;
    height: 0.8em;
    display: inline-block;
}

.scheduleContent .link_txt_type_b{
    position: relative;
    padding-left: 1.8em;
    font-size: 16px;
    color: #000;
}
.scheduleContent .link_txt_type_b::before{
    content: "";
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #D52E31;
    border-radius: 50%;
    position: absolute;
    transition: 0.3s;
    left: 0.3em;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.scheduleContent .link_txt_type_b::after{
    content: "";
    background: url("../img/ico_arrow.svg") no-repeat center center;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    left: 0.3em;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.scheduleContent .link_txt_type_b:hover{
    text-decoration: none;
}
.scheduleContent .link_txt_type_b:hover::before{
    transform: scale(1.3);
}
.scheduleContent .link_txt_type_b:hover::after{
    animation: link_ico_hover .3s forwards;
}

.scheduleContent .link_btn_ico,
.scheduleContent .link_btn{
    position: relative;
    background: #DFE3E5;
    height: 50px;
    width: 156px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    color: #000;
    border-bottom: 1px solid #D1D6D8;
    transition: 0.2s;
}
.scheduleContent .link_btn_ico:hover,
.scheduleContent .link_btn:hover{
    background: #ECEEEF;
    text-decoration: none;
}
.scheduleContent .link_btn_ico::before{
    content: "";
    width: 19px;
    height: 19px;
    border: 1px solid #D52E31;
    border-radius: 50%;
    display: block;
    margin-right: 6px;
    transition: 0.3s;
}
.scheduleContent .link_btn_ico::after{
    content: "";
    background: url("../img/ico_arrow.svg") no-repeat center center;
    width: 19px;
    height: 19px;
    order: -1;
    margin-right: -19px;
}
.scheduleContent .link_btn_ico:hover::before{
    transform: scale(1.3);
}
.scheduleContent .link_btn_ico:hover::after{
    animation: link_ico_hover .3s;
}

.scheduleMeta{
    font-size: 16px;
    text-align: right;
    margin-bottom: 30px;
        color: #AAAAAA;
}
@media screen and (max-width: 768px){
	/**/
	.scheduleWrap{
		display: initial;
		flex-direction: initial;
	}
    .scheduleImg{
        float: none;
        margin: 0;
    }
    .scheduleImg img{
        margin-bottom: 30px;
    }
    .scheduleContent{
        font-size: 14px;
        margin: 0px 0 30px;
		flex: initial;
    }
    .scheduleContent img{
        width: 100%;
        margin: 0;
    }
    .blk_schedulespost .ttl_post{
        font-size: 18px;
        margin: 26px 0 15px;
    }
     .blk_schedulespost .sns_share{
        font-size: 16px;
    }
    /*タイトル
---------------------------------------------------------- */
.scheduleContent h2 {
    font-size: 18px;
    padding-bottom: 18px;
    margin: 25px 0 20px;
}
.scheduleContent h2::after{
    width: 60px;
}

.scheduleContent h3 {
    font-size: 18px;
    margin: 26px 0 15px;
}

.scheduleContent h1{
    font-size: 18px!important;
}

.scheduleContent h4 {
    font-size:16px;
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.scheduleContent h4::after{
    margin-bottom: -12px;
}

.scheduleContent h5 {
    font-size:15px;
    margin-bottom: 15px;
    max-width: none;
}
.scheduleContent h5::before{
    content: "";
    position: absolute;
    border-top: 2px solid #D52E31;
    width: 0.6em;
    left: 0;
    top: 50%;
}

.scheduleContent h6{
    font-size:15px;
    margin-bottom: 15px;
}
/*リスト
---------------------------------------------------------- */
.scheduleContent ol > li::before{
    width: 15px;
    height: 15px;
    padding: 0 0.3em;
    margin-right: 0.65em;
}

/*リンクテキスト
---------------------------------------------------------- */
.scheduleContent .link_txt_type_a{
    font-size: 14px;
}
.scheduleContent .link_txt_type_a::before{
    width: 8px;
    height: 8px;
    margin: 7px 0;
}

.scheduleContent .link_txt_type_b{
    font-size: 14px;
}

.scheduleMeta{
    font-size: 13px;
}
}