@charset "utf-8";

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
/* 一覧 */
#newsWrap {
	padding-bottom: 100px;
}

.newsList {
	padding-bottom: 10px;
}

.newsList a {
	padding: 40px 30px;
	width: 100%;
	background: url(../../img/common/icon_arrow1.svg) right 30px center no-repeat #FFF;
	border-radius: 20px;
	display: block;
}

.newsInfo {
	padding-bottom: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	color: #46240c;
}

.date {

}

.cat {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.cat li {
	padding: 3px 15px;
	background: #46240c;
	color: #FFF;
	font-weight: bold;
	font-size: 1.2rem;
	border-radius: 5px;
}

.newsTit {
	color: #46240c;
	font-size: 1.8rem;
	font-weight: bold;
}

.newsSingle .newsTit {
	padding-bottom: 20px;
	margin-bottom: 40px;
	color: #46240c;
	font-size: 2.4rem;
	font-weight: bold;
	border-bottom: 1px solid #46240c;
}


/* 詳細 */

.newsSingle {
	padding: 40px 30px;
	width: 100%;
	background: #FFF;
	border-radius: 20px;
	display: block;
}

#newsContent p {
	padding-bottom: 1em;
	font-size: 1.6rem;
}

#newsContent img {
	max-width: 100%;
	height: auto;
}

#newsContent h2 {
	font-size: 2rem;
	font-weight: bold;
	padding:  10px 10px;
	margin: 1em 0 10px 0;
	border-top: 2px solid #46240c;
	border-bottom: 2px solid #46240c;
	color: #46240c;
}

#newsContent h3 {
	font-size: 1.8rem;
	padding:  5px 10px;
	margin: 1em 0 10px 0;
	background: #f4f1ef;
	color: #46240c;
	font-weight: bold;
}

#newsContent iframe {
	max-width: 100%;
	height: auto;
}

#newsContent a {
	color: #ae4081;
}

#newsContent a:hover {
	text-decoration: underline;
}


/* Page Navigation */
/* -------------------------------------------------- */
#pageNavWrap {
    margin-top: 10px;
    text-align: center;
}

#pager {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

#pageNavWrap a, #pageNavWrap span {
    width: 40px;
    height: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
    color: #ae4081;
    background-color: #FFF;
	border: 2px solid #ae4081;
    margin: 0 2px;
    white-space: nowrap;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
	border-radius: 40px;
}

#pageNavWrap span.current,
#pageNavWrap a:hover {
    color: #fff;
    background-color: #ae4081;
    transition: all 0.3s ease-in-out 0s;
}

#pageNavWrap a.next,
#pageNavWrap a.prev {
    color: #fff;
    background-color: #ae4081;
    transition: all 0.3s ease-in-out 0s;
	border: none;
}

#pageNavWrap span.dots {
    width: 1em;
    background: none;
	border: none;
    color: #000;
    padding: 10px 0;
}

/* 詳細 */
.singlePager {
	padding-top: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.singlePager li {
	width: 40px;
}

#pagerBack {
	width: auto;
}

.singlePager li img {
	width: 100%;
	height: auto;
}

#pagerBack a {
	height: 40px;
	padding: 0 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	background: #ae4081;
	color: #FFF;
	font-weight: bold;
	border-radius: 40px;
	transition: all 0.3s ease-in-out 0s;
}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}
/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#newsWrap {
		padding-bottom: 60px;
	}
	
	.newsList a {
		padding: 15px 4%;
		width: 100%;
		background: url(../../img/common/icon_arrow1.svg) right 10px center no-repeat #FFF;
		border-radius: 20px;
		display: block;
	}

	.newsTit {
		font-size: 1.4rem;
		line-height: 1.2;
	}

	.newsInfo {
		gap: 10px;
	}

	.date {
		font-size: 1.2rem;
	}

	.cat li {
		font-size: 1rem;
	}

	/* 詳細 */
	.newsSingle {
		padding: 20px 4%;
		width: 100%;
		background: #FFF;
		border-radius: 20px;
		display: block;
	}

	.newsSingle .newsTit {
		padding-bottom: 10px;
		margin-bottom: 30px;
		font-size: 1.8rem;
	}

	#newsContent p {
		padding-bottom: 1em;
		font-size: 1.5rem;
	}

	.singlePager {
		padding-top: 20px;
	}
}