@charset "UTF-8";
/* CSS Document */
figure {
	margin: 0;
}
h2{
	margin: 0;
}
section .cnt8{
	padding-top: 200px;
}
section .cnt8 .column{
	margin-bottom: 68px;
}
section .cnt8::before,section .cnt8::after,section .cnt8 > .ttl::after{
	display: none;
}
section .cnt8 .category_btn{
	display: flex;
	align-items: center;
	margin-bottom: 42px;
	gap:8px;
}
section .cnt8 .category_btn p{
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	background: none;
	border-radius: 50px;
	padding: 9px 20px;
	cursor: pointer;
}
section .cnt8 .category_btn p:hover{
	opacity: 0.6;
}
section .cnt8 .category_btn p.active{
	background: #fff;
}
/* セレクトはPCでは非表示 */
.category_select {
  	display: none;
  	font-size: 1.4rem;
	padding: 9px 20px;
	border-radius: 50px;
	border: 1px solid #fff;
	background: #fff url("../img/news/select.svg") no-repeat right 12px center;
	background-size: 12px auto; /* 矢印のサイズ調整 */
	appearance: none;        /* ← ブラウザ標準の矢印を消す */
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
}
section .cnt8 .page{
	position: relative;
	padding: 0 20px; /* 両端の余白確保 */
}
section .cnt8 .page p.prev{
	position: absolute;
	top:50%;
	left: 0;
}
section .cnt8 .page p.next{
	position: absolute;
	top:50%;
	right: 0;
}
section .cnt8 .page p{
	font-size: 1.4rem;
	font-weight: bold;
	text-decoration: underline;
	cursor: pointer;
}
section .cnt8 .page .page_nav{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}
section .cnt8 .page .page_nav p{
	font-size: 1.4rem;
	line-height: 1;
	padding: 11px 14px;
	border-radius: 50px;
	font-weight: normal;
	text-decoration: none;
}
section .cnt8 .page .page_nav p.dot{
	letter-spacing:-5px;
}
section .cnt8 .page .page_nav p.active{
	color: #fff;
	background: linear-gradient(to top, #3676B9, #519F6E);
}

/*記事詳細*/
article{
	padding: 200px 7.81vw 0px;
	
}
article .news{
	padding: 60px 4.17vw;
	background: #fff;
	border-radius: 20px;
}
article .news .ttl{
	margin-bottom: 50px;
}
article .news .ttl p.day{
	font-size: 1.4rem;
	line-height: 1;
	color: #969696;
	margin-bottom: 12px;
}
article .news .ttl h1{
	font-size: 2.6rem;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 18px;
}
article .news .ttl p.sub_ttl{
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: bold;
	margin-bottom: 18px;
}
article .news .ttl p.cat{
	background: linear-gradient(to right, #3676B9, #519F6E);
	border-radius: 50px;
	color: #fff;
	padding: 10px 24px;
	font-size: 1.2rem;
	display: inline-block;
}
article .news .cnt{
	margin-bottom: 100px;
}
article .news .cnt:last-child{
	margin-bottom: 0px;
}
article .news .cnt h2{
	font-size: 2rem;
	line-height: 1.6;
	color: #F87B26;
	border-bottom: solid 1px;
	padding-bottom: 10px;
	margin-bottom: 40px;
}
article .news .cnt p{
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 40px;
}
article .news .cnt p.ind{
	text-indent: -17px;
	margin-left: 17px
}
article .news .cnt p:last-child{
	margin-bottom: 0px;
}
article .news .cnt .fb{
	font-weight: bold;
}
article .news .cnt .red{
	color: #FF0000;
}
article .news .cnt a{
	color: #5895DD;
	text-decoration: underline;
	white-space: nowrap;
}
article .news .cnt figure{
	margin-bottom: 40px;
}
article .news .cnt figure figcaption{
	margin-top: 10px;
	color: #746C69;
	font-size: 1.2rem;
	line-height: 1.6;
}
article .news .cnt ul{
	margin: 0;
	padding: 0;
	margin-bottom: 40px;
}
article .news .cnt ul li{
	font-size: 1.6rem;
	line-height: 1.6;
	margin-bottom: 18px;
	list-style: none; /* 元のドット消す */
    position: relative;
    padding-left: 1em; /* ドット分の余白 */
}
article .news .cnt ul li:last-child{
	margin-bottom: 0px;
}
article .news .cnt ul li::before {
    content: ''; /* ドットの代わり */
    position: absolute;
    left: 0;
    top: 50%;
	transform: translate(0,-50%);
	width: 8px;
	height: 8px;
    background: linear-gradient(to right, rgb(233,91,28), rgb(236,169,29));
	background-size: 100%;
	border-radius: 50px;
    -webkit-text-fill-color: transparent;
}
article .news .cnt .box{
	background: #EEEAE8;
	padding: 40px 2.08vw;
	border-radius: 10px
}
article .news .cnt .box p{
	margin-bottom: 30px;
}
article .news .cnt .box p:last-child{
	margin-bottom: 0px;
}
article .back_btn{
	text-align: center;
}
article .back_btn a{
	width: 198px;
	background: #fff;
	border-radius: 50px;
	margin: 40px auto 0px;
	text-align: center;
	display: inline-block;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 20px 0px;
}
article .back_btn a p{
	padding-left: 20px;
	position: relative;
}
article .back_btn a p::before{
	content: "";
	width: 16px;
	height: 8px;
	background: url("../img/news/arrow_back.svg");
	background-size: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-220%,-50%);
	transition: 0.3s;
}
article .back_btn a:hover p::before{
	transform: translate(-250%,-50%);
}

@media screen and (max-width: 768px) {
	section .cnt8{
		padding-top: 165px;
	}
	section .cnt8 .category_btn {
		justify-content: flex-start;
		margin-bottom: 20px;
	}
	/* ボタンを非表示 */
	section .cnt8 .category_btn p {
		display: none;
	}
	/* セレクトを表示 */
	.category_select {
		display: block;
		width: 100%;
		max-width: 168px;
	}
	
	article{
		padding:96px 4.3vw 0px;
	}
	article .news .ttl h1{
		font-size: 1.8rem;
	}
	article .news .ttl p.day{
		font-size: 1.2rem;
	}
	article .news .ttl{
		margin-bottom: 30px;
	}
	article .news .cnt{
		margin-bottom: 80px;
	}
	article .news .cnt h2{
		font-size: 1.6rem;
		padding-bottom: 18px;
	}
	article .news .cnt p{
		font-size: 1.4rem;
	}
	article .news .cnt ul li::before{
		transform: translate(0, -200%);
	}
	article .news .cnt .box{
		padding: 20px;
	}
}
