@charset "utf-8";
/* ------------------------------------------------------------------------------------------------------------------------
	mv_box
------------------------------------------------------------------------------------------------------------------------ */
#mv_box {
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
}.mv_bg {
}
.mv_bg img {
	height: auto;
	width: 100%;
}
.mv_catch {
	width: 70%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
/* ------------------------------------------------------------------------------------------------------------------------
	news_contents
------------------------------------------------------------------------------------------------------------------------ */
.news_contents {
	box-sizing: border-box;
	height: 250px;
	margin: 20px auto;
	width: 100%;
	max-width: 800px;
}
.news_list {
	height: 100%;
	line-height: 28px;
	border-top: 1px solid #FF6699;
	border-bottom: 1px solid #FF6699;
	overflow-y: scroll;
	background-color: white;
}
/* ------------------------------------------------------------------------------------------------------------------------
	スクロールバー
------------------------------------------------------------------------------------------------------------------------ */
.news_list::-webkit-scrollbar {
	width: 7px;
	border: 1px solid #FFE6EE;
	border-radius: 5px;
}
.news_list::-webkit-scrollbar-thumb {
	background: #FF6699;
	border-radius: 5px;
}
/* ------------------------------------------------------------------------------------------------------------------------
	news_list_item
------------------------------------------------------------------------------------------------------------------------ */
.news_list_item {
	display: flex;
	flex-direction: column;
	padding: 20px;
	font-size: 0.85em;
	border-bottom: 1px solid #FFE6EE;
	text-align: left;
	
}
 .news_list_item > time {
	width: 100%;
	color: #FF6699;

}
.news_list_item > p {
	width: 100%;
	letter-spacing: 0.1em;
}
.news_list_item > p > a {
	letter-spacing: 0.2em;
	color: #FF6699;
	font-weight: 700;
	text-decoration: underline;
}
.news_list_item > p > a::before {
	content: '';
	margin-right: 0;
}
.news_list_item > p > a::after {
	content: '';
	margin-left: 5px;
}
/*--------------------------------------------------------------------------------------------------------------------------
	flex_box
--------------------------------------------------------------------------------------------------------------------------*/
.flex_box {
	line-height: 1.5em;
	letter-spacing: 0.15em;
}
.reverse {
	flex-direction: row-reverse;
}
.img_box {
	
}
.img_box img {
	box-sizing: border-box;
	border-radius: 8px;
	border: 1px solid #FF6699;
}
.text_box {
	margin: 40px auto;
}
.text_box h4 {
	margin: 20px auto;
	font-size: 1.2em;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}
.text_box h4::before {
	border-top: 1px solid #222222;
	content: "";
	width: 30px;
	margin-right: 10px;
}
.text_box h4::after {
	border-top: 1px solid #222222;
	content: "";
	width: 30px;
	margin-left: 10px;
}
.text_box p {
	text-align: justify;
}
/*--------------------------------------------------------------------------------------------------------------------------
	more_btn
--------------------------------------------------------------------------------------------------------------------------*/
.more_btn {
	box-sizing: border-box;
	height: 50px;
	width: 80%;
	margin: 40px auto;
	display: inline-block;
}
.more_btn a {
	box-sizing: inherit;
	height: 50px;
	width: 100%;
	border-radius: 50px;
	background: linear-gradient(90deg, rgba(255,102,153,1) 50%, rgba(255,128,102,1) 100%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	color: #FFE6EE;
	font-size: 0.8em;
}
.more_btn a::after {
	content: '';
	width: 20px;
	height: 20px;
	background-image: url("../images/common/more.png");
	background-size: cover;
	background-repeat: no-repeat;
}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 768px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 768px) {
/*--------------------------------------------------------------------------------------------------------------------------
	news_contents
--------------------------------------------------------------------------------------------------------------------------*/
	.news_contents {
	}
	.news_list_item {
		flex-direction: row;
	}
	 .news_list_item > time {
		width: 120px;
	}
	.news_list_item  > p {
		width: calc(100% - 120px);
	}
/*--------------------------------------------------------------------------------------------------------------------------
	flex_box
--------------------------------------------------------------------------------------------------------------------------*/
	.flex_box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 20px;
	}
	.img_box {
		width: 50%;
	}
	.text_box {
		width: 50%;
		margin: 0;
	}
/*--------------------------------------------------------------------------------------------------------------------------
	more_btn
--------------------------------------------------------------------------------------------------------------------------*/
	.more_btn {
		width: 60%;
	}

}
/* ------------------------------------------------------------------------------------------------------------------------
	Responsive-Breakpoint-1 ( 1024px以上)
------------------------------------------------------------------------------------------------------------------------ */
@media screen and (min-width: 1024px) {
/* ------------------------------------------------------------------------------------------------------------------------
	mv_box
------------------------------------------------------------------------------------------------------------------------ */
	.mv_bg img {
		height: calc(100vh - 80px);
		width: 100%;
		overflow: hidden;
	}
/*--------------------------------------------------------------------------------------------------------------------------
	news_contents
--------------------------------------------------------------------------------------------------------------------------*/
	.news_contents {
	}
	.news_list_item {
	}
	 .news_list_item > time {
	}
	.news_list_item  > p {
	}
/*--------------------------------------------------------------------------------------------------------------------------
	flex_box
--------------------------------------------------------------------------------------------------------------------------*/
	.flex_box {
	}
	.img_box {
	}
	.text_box {
	}
	.text_box h4 {
		font-size: 1.5em;
	}
/*--------------------------------------------------------------------------------------------------------------------------
	more_btn
--------------------------------------------------------------------------------------------------------------------------*/
	.more_btn {
		width: 40%;
	}
}