@charset "utf-8";
/*@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/


/* ===================================================================

	お知らせ info

=================================================================== */
.news_list {
}
.news_list li {
	border-bottom: solid 1px #DADCDC;
}
.news_list li:last-of-type {
	border: none;
}
.news_list li a {
	display: flex;
	align-items: center;
	padding: 20px 0;
	color: #333;
	font-size: 26px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
}
.news_list li a:hover {
	background: var(--bs-secondary-light-02);
}
.news_thumb {
	flex-shrink: 0;
	flex-grow: 0;
	width: 18.6%;
	max-width: 200px;
	min-width: 160px;
	margin-right: 5%;
	overflow: hidden;
	position: relative;
}
.news_thumb:before {
	display: block;
	padding-top: 56%;
	content: "";
}
.news_thumb img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 40px 10px 40px 10px;
	object-fit: cover;
	transition: all .3s;
}
.news_list li a:hover .news_thumb img {
	border-radius: 10px;
}
.news_date {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 17px;
	font-size: calc(var(--font-size--bs) * 1.2 );
	font-weight: bold;
	font-family: var(--en-font-family);
	vertical-align: bottom;
	line-height: 1;
}
.news_date span {
	display: inline-block;
	min-width: 6em;
	margin-left: 25px;
	padding: 4px 1em 2px 1em;
	color: var(--bs-secondary);
	border: solid 1px var(--bs-secondary);
	font-size: calc(var(--font-size--bs) * 0.8 );
	background: var(--bs-white);
	border-radius: 22px;
	text-align: center;
	line-height: 1;
}
.news_date span.cate_info {
	color: var(--bs-secondary);
	border: solid 1px var(--bs-secondary);
}



/* 詳細 */
.mainarea_info {
	padding: 0;
}
.info_head {
	padding: 40px;
	border-radius: 20px 20px 0 0;
	background: rgba(var(--bs-secondary-rgb),0.10);
}
.info_head h2 {
	font-size: var(--font-size--md);
}
.info_head .news_date {
	font-size: var(--font-size--bs);
}
.info_head .news_date span {
	margin-left: .6rem;
	font-size: var(--font-size--sm);
}

.info_body {
	padding: 40px;
}
.info_img {
	margin-bottom: 40px;
	text-align: center;
}
.info_txt {}

/* 前後ページ移動 */
.info_paginator {
	display: flex;
	justify-content: space-between;
	max-width: var(--def-max-width);
	width: var(--def-width);
	margin: 40px auto;
}
.info_paginator a { 
	display: block;
	height: 2em;
	padding: 0;
	line-height: 1.8;
	border-radius: 1em;
	background: var(--bs-white);
	font-weight: 700;
	color: var(--bs-primary);
	text-align: center;
	filter: var(--filter-box-shadow-03);
}
.info_paginator a:hover {
	background: var(--bs-primary-light);
	color: var(--bs-white);
}

.info_list_move {
	width: 4em;
}
.info_prev,
.info_next {
	width: 5em;
}
.info_prev a,
.info_next a {
	position: relative;
}
.info_prev a {
	padding-left: 1.2em;
}
.info_next a {
	padding-right: 1.2em;
}
.info_prev a::before,
.info_next a::after {
	content: '';
	display: block;
	margin: 0;
	width: 0.8em;
	height: 0.8em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.info_prev a::before {
	left: 0.5em;
	background: url(../img/arrow_orange_prev.svg) no-repeat;
	background-size: contain;
}
.info_next a::after {
	right: 0.5em;
	background: url(../img/arrow_orange_next.svg) no-repeat;
	background-size: contain;
}


/* ===================================================================
	レスポンシブ対応用
=================================================================== */

/* XX-Large devices (larger desktops, 1400px and up) */
@media (max-width: 1400px) {
}

@media ( max-width : 1200px ){ 
}

/* Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
}

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
	.news_list li a {
		display: block;
		font-size: var(--font-size--bs);
	}
	.news_date {
		margin-bottom: 10px;
		font-size: var(--font-size--bs);
	}
	.news_date span {
		font-size: var(--font-size--sm);
	}
	.news_thumb {
		width: 100%;
		max-width: inherit;
		margin: 0 auto 10px;
	}

}
