/*============================
MV
============================*/
#blog #mv {
	background-image: url(../img/blog/mv.jpg);
}

#news #mv {
	background-image: url(../img/news/mv.jpg);
}

#more #mv {
	background-image: url(../img/more/mv.jpg);
}


/*============================
コンテンツ
============================*/
#contents {
	padding-top: 1.5rem;
}
@media screen and (max-width: 599px) {
	#contents {
		padding-top: 0.5rem;
	}
}

/* キャプションを付けた画像サイズ制限 add 20240502 */
#blog #contents .wp-caption{
	max-width: 100% !important;
}
#news #contents .wp-caption{
	max-width: 100% !important;
}


#contents .cont_box {
	max-width: 10rem;
	margin: auto;
}


/* 日付 */
#contents .date_tag {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 0.15rem;
}

#contents .date_tag .date {
	font-size: 0.15rem;
	padding-right: 0.10rem;
}

#contents .date_tag .tag {
	font-size: 0.12rem;
	color:#fff;
	background: #2F475C;
	border-radius: 0.05rem;
	padding: 0.05rem 0.10rem;
}

/* タイトル */
#contents .title {
	font-size: 0.30rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0.30rem;
}
@media screen and (max-width: 599px) {
	#contents .title {
		font-size: 0.25rem;
	}
}


#contents img {
	margin-bottom: 0.20rem;
}

#contents h1 {
	font-size: 0.26rem;
	font-weight: bold;
	border-left: 10px solid #FF7A59;
	line-height: 1.3;
	padding:0.05rem 0.10rem;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 599px) {
	#contents h1 {
		font-size: 0.2rem;
	}
}


#contents h2 {
	font-size: 0.24rem;
	font-weight: bold;
	border-left: 10px solid #FF7A59;
	line-height: 1.3;
	padding:0.05rem 0.10rem;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 599px) {
	#contents h2 {
		font-size: 0.18rem;
	}
}


#contents h3 {
	font-size: 0.22rem;
	font-weight: bold;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 599px) {
	#contents h3 {
		font-size: 0.16rem;
	}
}


#contents h4 {
	font-size: 0.2rem;
	font-weight: bold;
	margin-bottom: 0.15rem;
}
@media screen and (max-width: 599px) {
	#contents h4 {
		font-size: 0.16rem;
	}
}


#contents h5 {
	font-size: 0.18rem;
	font-weight: bold;
	margin-bottom: 0.15rem;

}
@media screen and (max-width: 599px) {
	#contents h5 {
		font-size: 0.16rem;
	}
}

#contents p {
	font-size: 0.16rem;
	line-height: 2;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 599px) {
	#contents p {
		font-size: 0.14rem;
	}
}


/* ページャー */
#contents .single_pager {
	margin-top: 1rem;
	padding-bottom: 1rem;
}

#contents .single_pager ul {
    display: flex;
    flex-wrap: wrap;
	max-width: 5rem;
	margin: auto;
}

#contents .single_pager li {
    width: calc(100% / 3);
    box-sizing: border-box;
}

#contents .single_pager li.prev {
    text-align: left;
}

#contents .single_pager li a {
    font-size: 0.16rem;
    color: #000;
    text-decoration: none;
}
@media screen and (max-width: 599px) {
	#contents .single_pager li a {
		font-size: 0.14rem;
	}
}


#contents .single_pager li a:hover {
    color: #FF7A59;
}


#contents .single_pager li a span {
    color: #FF7A59;
}

#contents .single_pager li.list {
    text-align: center;
}

#contents .single_pager li.list::before {
	content: '';
	width: 0.18rem;
	height: 0.14rem;
	background: url(../img/blog/icon_list.svg) no-repeat center;
	background-size: cover;
	display: inline-block;
	margin-right: 0.10rem;
	position: relative;
	top: 0.03rem;
}
@media screen and (max-width: 599px) {
	#contents .single_pager li.list::before {
		top: 0.04rem;
	}
}

#contents .single_pager li.next {
    text-align: right;
}