@charset "utf-8";

/*-------------------------------
	お知らせ（詳細）
-------------------------------*/

.Column-detail{
	width: calc(100% - 26rem);
	padding-left: 6rem;
}
.Column-detail__header{
    margin-bottom: 3.6rem;
}
.Column-detail__category{
    margin-bottom: 1.5rem;
}
.Column-detail__title{
    font-size: 3.2rem;
    margin-bottom: 2rem;
    line-height: calc(4.8 / 3.2);
    font-weight: 700;
}
.Column-detail__data{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.Column-detail__tag{
    padding-left: 5rem;
    margin-right: 5rem;
    min-height: 3.6rem;
    color: #666;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.Column-detail__tag::before{
    content: "";
    display: block;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    color: #666;
    background-image: url(../images/common/icon_author.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 0;
}
.Column-detail__tag-item{
    line-height: 1;
}
.Column-detail__tag-item:not(:last-child){
    content: "、";
}
.Column-detail__time{
    line-height: 1;
    color: #666;
    display: inline-block;
}

.Column-detail__body h2{
    font-size: 2.8rem;
    margin-bottom: .5rem;
    line-height: calc(5.6 / 2.8);
    font-weight: 700;
}
.Column-detail__body h3{
    font-size: 2.4rem;
    margin-bottom: .5rem;
    line-height: calc(4.8 / 2.4);
    font-weight: 700;
}
.Column-detail__body h4{
    font-size: 2rem;
    margin-bottom: .5rem;
    line-height: calc(4 / 2);
    font-weight: 700;
}
.Column-detail__body pre{
    max-width: 100%;
    white-space: pre-line;
}
.Column-detail__body a{
    color: var(--subcolor);
    text-decoration: underline;
}
.Column-detail__body img{
    max-width: 100%;
    height: auto;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.Column-detail__back{
    margin-top: 11rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width:769px) , print{

}
@media screen and (max-width:1240px) and (min-width: 769px){

}
@media screen and (max-width:1100px) and (min-width: 769px){

}
@media screen and (max-width:960px) and (min-width: 769px){

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

    .C-Post__inner{
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .C-Post-sidebar{
        display: none;
    }
    .Column-detail{
        width: 100%;
        padding-left: 0;
    }
    .Column-detail__header{
        margin-bottom: 5rem;
    }
    .Column-detail__category{
        margin-bottom: 1.5rem;
    }
    .Column-detail__title{
        font-size: 4rem;
        line-height: calc(6 / 4);
    }
    .Column-detail__tag{
        padding-left: 7.6rem;
        margin-right: 4.8rem;
        min-height: 5.4rem;
    }
    .Column-detail__tag::before{
        width: 5.4rem;
        height: 5.4rem;
    }

    .Column-detail__body h2{
        font-size: 4rem;
        line-height: calc(8 / 4);
    }
    .Column-detail__body h3{
        font-size: 3.6rem;
        line-height: calc(7.2 / 3.6);
    }
    .Column-detail__body h4{
        font-size: 3rem;
        line-height: calc(6 / 3);
    }

    .Column-detail__back{
        margin-top: 10rem;
    }

}