@charset "utf-8";

@import "base.css";
@import "common.css";
@import "layout.css";

/*　アーカイブデザイン　*/
h2{
	margin-bottom:25px;
	font-size: 2.6rem;
	letter-spacing: 0.05em;
    font-weight: 700;
	padding:7px 0;
	position:relative;
	overflow:hidden;
    padding-bottom: 20px;
    border-bottom: 1px solid #bfbfbf;
}

h2 span{
    line-height: 1.3;
    display: flex;
}

h2 span:before{
	content:"　";
	display:inline-block;
	width:1px;
	background-color:#e0327e;
    padding: 2px 0;
    margin-right: 15px;
}

#newsList .acdBl + .acdBl{
    margin-top: 85px;
}

#newsList .acdBl > *:first-child{
    margin-bottom: 0;
}

#newsList .acdBl.open > *:first-child{
    margin-bottom: 0;
}

#newsList dl{
    padding: 30px 0;
    border-bottom: 1px solid #bfbfbf;
    line-height: 1.8;
}

#newsList dt{
    font-size: 1.4rem;
    color: #dc186e;
}

#newsList dd a:hover{
    text-decoration: underline;
}

#newsList dd a[href*=".pdf"]::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 19px;
    margin-left: 5px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 15px auto;
    vertical-align: middle;
    background: url("../img/common/icn_pdf.svg") no-repeat left center;
}

@media only screen and (max-width:767px) {
    h2{
        margin-bottom:calc(30vw / 7.5);
        font-size:  calc(40vw / 7.5);
        padding: calc(10vw / 7.5) 0 calc(30vw / 7.5);
    }

    #newsList .acdBl + .acdBl{
        margin-top: calc(100vw / 7.5);
    }

    #newsList dl{
        padding: calc(35vw / 7.5) 0;
    }

    #newsList dt{
        font-size: calc(24vw / 7.5);
    }

}    


/*　記事デザイン　*/
.postBl p.date {
    color: #dc186e;
    font-size: 1.4rem;
    margin-bottom: 40px;
}

.postBl img{
    display: block;
    text-align: center;
    margin: 50px auto;
}

.postBl p{
    line-height: 1.8;
}

.postBl p a{
    text-decoration: underline;
    color: blue;
}

.postBl p a:hover{
    text-decoration: none;
}

.postBl * + * {
    margin-top: 25px;
}

@media only screen and (max-width:767px) {
    .postBl h2.postTit {
        font-size: calc(32vw / 7.5);
    }

    .postBl p.date {
        font-size: calc(24vw / 7.5);
        margin-bottom: calc(50vw / 7.5);
    }

    .postBl img{
        margin:  calc(50vw / 7.5) auto;
    }

    .postBl * + * {
        margin-top: calc(40vw / 7.5);
    }
    
}    