@charset "utf-8";

/* -----------------------------
	ページ幅
-------------------------------- */

#news .contents {
	padding: 100px 0 0;
}

#news .contents .contents-left {
	float: left;
	padding: 0 0 50px;
	width: 840px;
}

#news .contents .contents-right {
	float: right;
	padding: 0 0 50px;
	width: 300px;
}

@media screen and (max-width: 768px) {
	#news .contents {
		padding: 40px 0 40px;
	}
	#news .contents .contents-left {
		float: none;
		padding: 0;
		width: 100%;
	}
	#news .contents .contents-right {
		float: none;
		padding: 30px 0 0;
		width: 100%;
	}
}


/* -----------------------------
	ページパーツ（　contents-left　）
-------------------------------- */


/*サブタイトル*/

#news .news-subtitle {
	font-weight: bold;
	color: var(--black);
	font-size: 1.8rem;
	padding: 0 0 15px 40px;
}


/*リスト*/

#news .news-box .news-list {
	margin: 0 0 40px;
}

#news .news-box .news-list li {
	width: 100%;
	border-top: 1px solid #ddd;
}

#news .news-box .news-list li:nth-last-child(1) {
	border-bottom: 1px solid #ddd;
}


/*リスト（リンクエリア）*/

#news .news-box .news-list li a {
	display: flex;
	width: 100%;
	align-items: flex-start;
	color: #432B26;
	padding: 20px 40px;
}

#news .news-box .news-list li .date {
	flex-shrink: 0;
    font: 500 1.6rem / 1.8 'Lato', sans-serif;
	margin: 0 40px 0 0;
	color: #432B26;
}

#news .news-box .news-list li .cate {
	min-width: 90px;
	display: inline-block;
	font-size: 1.2rem;
	border: var(--pink) solid 1px;
	border-radius: 3px;
    color: var(--pink);
	text-align: center;
	line-height: 1.1;
	padding: 5px 10px;
	margin: 2px 15px 0 0;
}

#news .news-box .news-list li .tag {
	min-width: 90px;
	display: inline-block;
	font-size: 1.2rem;
	border: #ddd solid 1px;
	border-radius: 3px;
    color: #432B26;
	text-align: center;
	line-height: 1.1;
	padding: 5px 10px;
	margin: 2px 15px 0 0;
}

#news .news-box .news-list li .title {
	line-height: 1.8;
	font-weight: 400;
}


/*リスト（マウスオン）*/

#news .news-box .news-list li a:hover {
	color: var(--pink);
}

@media screen and (max-width: 768px) {
	/*サブタイトル*/
	#news .news-subtitle {
		padding: 0 0 10px;
	}
	/*リスト*/
	#news .news-box .news-list {
		margin: 0 0 20px;
	}
	#news .news-box .news-list li a {
		padding: 20px 0;
		flex-wrap: wrap;
	}
	#news .news-box .news-list li .date {
		margin: 0 15px 0 0;
		width: auto;
		font-size: 1.4rem;
	}
	#news .news-box .news-list li .cate {
		margin: 0 0 0 5px;
		padding: 3px 20px;
	}
    #news .news-box .news-list li .tag {
		margin: 0 0 0 5px;
		padding: 3px 20px;
	}
	#news .news-box .news-list li .title {
		line-height: 1.6;
		width: 100%;
	}
}

/* -----------------------------------------------------------
    詳細（　title-box　）
-------------------------------------------------------------- */

#news .title-box .date {
	display: inline-block;
	width: 80px;
	font-size: 1.2rem;
	padding: 0 0 15px;
}

#news .title-box .cate {
	min-width: 90px;
	display: inline-block;
	font-size: 1.2rem;
	color: var(--pink);
	border: 1px solid var(--pink);
	border-radius: 3px;
	text-align: center;
	line-height: 1.1;
	padding: 5px 10px;
	margin: 0 10px 0 0;
}

#news .tag-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 30px;
}

#news .tag-group .tag {
	min-width: 90px;
	display: inline-block;
	font-size: 1.2rem;
	color: var(--pink);
	border: 1px solid var(--pink);
	text-align: center;
	line-height: 1.1;
	padding: 5px 10px;
}

#news .title-box .title {
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.4;
	border-bottom: 4px solid var(--pink);
	padding: 0 0 20px;
	margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
	#news .title-box .date {
		padding: 0 0 10px 0;
		width: 70px;
	}
	#news .title-box .cate {
		margin: 0 5px 0 0;
		padding: 4px 5px;
	}
	#news .title-box .title {
		font-size: 2rem;
		padding: 0 0 10px;
		margin: 0 0 20px;
	}
}


/* -----------------------------------------------------------
    詳細（　detail-contents　）
-------------------------------------------------------------- */

#news .detail-contents {
	line-height: 1.8;
	padding: 0 0 50px !important;
}


/* pタグ */

#news .detail-contents p {
	margin-bottom: 1.5em;
	font-size: 1.6rem;
}


/* 見出し系 */

#news .detail-contents h1,
#news .detail-contents h2,
#news .detail-contents h3,
#news .detail-contents h4 {
	font-weight: bold;
	line-height: 1.5;
}

#news .detail-contents h1 {
	margin: 20px 0 20px 0;
	font-size: 2.6rem;
	color: var(--pink);
}

#news .detail-contents h2 {
	border-bottom: 3px var(--pink) solid;
	font-size: 2.4rem;
	margin: 40px 0 30px 0;
	padding: 0 0 10px;
}

#news .detail-contents h3 {
	border-radius: 6px;
	background: var(--pink);
	color: #fff;
	font-size: 2.2rem;
	margin: 40px 0 30px 0;
	padding: 15px 30px;
}

#news .detail-contents h4 {
	font-size: 2rem;
	margin: 30px 0 20px 0;
	padding: 0 0 0 12px;
	position: relative;
}

#news .detail-contents h4::before {
	background: var(--pink);
	border-radius: 1px;
	content: "";
	display: block;
	height: calc(100% - 10px);
	left: 0;
	position: absolute;
	top: 5px;
	width: 4px;
}

#news .detail-contents img {
	display: block;
	height: auto;
	max-width: 840px;
}

#news .detail-contents a:link {
	color: #BC9E62;
	display: inline-block;
}

@media screen and (max-width: 768px) {
	#news .detail-contents {
		padding: 0 0 30px !important;
	}
	#news .detail-contents h1 {
		margin: 20px 0 10px 0;
		font-size: 2.2rem;
	}
	#news .detail-contents h2 {
		margin: 30px 0 20px 0;
		padding: 0 0 8px;
		font-size: 2rem;
	}
	#news .detail-contents h3 {
		margin: 30px 0 20px 0;
		padding: 15px 15px;
		font-size: 1.8rem;
	}
	#news .detail-contents h4 {
		margin: 20px 0 10px 0;
		padding: 0 0 0 18px;
		font-size: 1.6rem;
	}
	#news .detail-contents h4::before {
		top: 5px;
		height: calc(100% - 10px);
	}
	#news .detail-contents img {
		float: none;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		text-align: center;
		height: auto;
		display: block;
	}
}


/* -----------------------------
	詳細ページタグ
-------------------------------- */

#news .tag-box {
	border-top: 1px #ddd solid;
	border-bottom: 1px #ddd solid;
	margin: 0 0 50px 0;
	padding: 20px 0 10px 0;
}

#news .tag-box .tag-title {
	float: left;
	font-size: 1.4rem;
	padding: 5px 0 0 0;
	width: 80px;
}

#news .tag-box .tag-list {
	overflow: hidden;
}

#news .tag-box ul {
	float: left;
	width: 710px;
}

#news .tag-box ul li {
	float: left;
	line-height: 1.2;
	margin: 0 10px 10px 0;
	text-align: center;
}

#news .tag-box ul li a {
	background: #fff;
	border: #ccc solid 1px;
	border-radius: 3px;
	color: #432B26;
	display: block;
	font-size: 1.2rem;
	padding: 6px 15px;
}

#news .tag-box ul li a:hover {
	background: var(--pink);
	border: var(--pink) solid 1px;
	color: #fff;
	opacity: 1;
}

@media screen and (max-width: 768px) {
	#news .tag-box {
		margin: 0 0 30px 0;
	}
	#news .tag-box .tag-title {
		padding: 5px 0 0 0;
		width: 60px;
		font-size: 1.3rem;
		float: left;
	}
	#news .tag-box ul {
		width: auto;
	}
	#news .tag-box ul li {
		margin: 0 8px 8px 0;
	}
	#news .tag-box ul li a {
		padding: 4px 10px;
	}
}


/* -----------------------------
	詳細ページ back-link
-------------------------------- */

#news .back-link .fas {
	display: inline-block;
	color: #446b91;
	margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
	#news .back-link {
		font-size: 1.5rem;
	}
}