@charset "utf-8";

/* CSS Document */
.list-section-news {
	padding: 0;
	margin: 0;
	list-style: none;
	margin-top: 1em;
}

.list-section-news-item {
	/* background-color: #f4f4f4; */
	display: block;
	border-top: solid 1px var(--c-secondary);
	margin-top: 2rem;
}

.list-section-news-item+.list-section-news-item {
	/* margin-top: 2px; */
	/* margin-top: 2rem; */
}

.article-news {
	display: grid;
	width: 100%;
	grid-template-columns: 10rem 1fr;
	gap: 0.5rem 1rem;
}

.article-news-new {
	position: relative;
}

.article-news-new::after {
	content: "NEW";
	background-color: #c72424;
	color: #FFF;
	line-height: 1;
	padding: 0.1em 0.6em;
	position: absolute;
	left: -0.5em;
	top: 0em;
	font-family: Georgia, 'Times New Roman', Times, serif;
	font-style: italic;
	font-size: 0.7em;
	letter-spacing: 0.2em;
}

.article-news-figure {
	/* background-color: #FFF; */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: right 50% top 50%;
	/* width: 7em; */
	flex-shrink: 0;
	display: block;
	position: relative;
}

.article-news-figure__image {
	object-fit: cover;
	aspect-ratio: 10/6;
}

.article-news-body {
position: relative;
	padding: 0.5em 1.5em 0.5em 0.5em;
}

.article-news-body-link {
	display: block;
	/* position: relative; */
	grid-area: 1/2/3/3;
	/* padding-top: 1.5rem; */
}

.article-news-body-link::after {
	content: "";
	width: 0.5rem;
	padding: 0.5rem;
	position: absolute;
	top: 0;
	right: 0;
	background-color: var(--c-secondary);
	background-image: url("../images/ic-chevron-right-white.svg");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
}

.article-news-body-area {
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.article-news-body-area-name {
	font-size: 0.6em;
}

.article-news-body-area-date {
	font-size: 0.6em;
	margin-left: auto;
	margin-right: 1.5rem;
}

.article-news-body-property {
	margin-top: 0.6em;
	color: var(--c-secondary);
	/* font-size: 1.1em; */
}

.article-news-body-copy {
	font-size: 0.8em;
	width: 100%;
	margin-top: 0.5rem;
	margin-bottom: 1rem;
}

.article-news-tags {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	/* margin-top: 0.3em; */
	overflow-y: hidden;
	overflow-x: auto;
	flex-wrap: wrap;
	gap: 0.5rem;
	grid-area: 2 / 1 /3 / 2;
}

.article-news-tags-item {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.article-news-tags-item+.article-news-tags-item {
	/* margin-left: 0.3em; */
}

.article-news-tags-item-link {
	display: inline-block;
	background-color: #fdf6eb;
	font-size: 0.6em;
	border-radius: 1em;
	padding: 0.2em 0.6em;
	line-height: 1;
	white-space: nowrap;
}

.article-news.new .article-news-figure:after {
	content: "NEW";
	color: #fff;
	/* background: #d01919; */
	line-height: 1em;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--c-accent);
	font-family: var(--ff-en);
	font-style: italic;
	transform: translateY(-100%);
}

@media (max-width: 767px) {
	.article-news.new .article-news-figure:after {
		padding: 3px 8px;
		font-size: 10px;
		transform: translateY(-100%);
		left: 0;
		top: 0;
	}
}

@media (min-width: 768px) {
	.list-section-news {
		display: grid;
		/* width: calc(100% + 2em); */
		/* margin-left: -1em; */
		/* margin-right: -1em; */
		flex-wrap: wrap;
		grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
		gap: 3rem;
		margin-top: 4rem;
	}

	.list-section-news-item {
		/* width: 33.333%; */
		/* padding: 0 1em; */
	}

	.article-news {
		/* -webkit-box-orient: vertical; */
		/* -webkit-box-direction: normal; */
		-ms-flex-direction: column;
		display: block;
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.article-news-figure {
		/* width: 100%; */
		/* height: 0; */
		/* padding-bottom: 60%; */
		margin: -1rem;
	}

	.list-section-news-item {
		background-color: hsla(0, 0%, 0%, 0);
		margin-top: 0;
		border: none;
		box-shadow: 0 0 1.5rem 00 hsla(0, 0%, 0%, 0.15);
		background-color: #FFF;
		padding: 1rem;
	}

	.list-section-news-item+.list-section-news-item {
		/* margin-top: 2em; */
		/* box-shadow: 0 0 1.5rem 00 hsla(0, 0%, 0%, 0.15); */
	}

	.article-news-body-link::after {
		display: none;
	}

	.article-news-body {
		width: 100%;
		padding: 1em 0 0;
	}

	.article-news-body-area-name {
		font-size: 0.8em;
	}

	.article-news-body-area-date {
		font-size: 0.8em;
		margin-right: 0;
	}

	.article-news-tags {
		overflow-x: hidden;
		margin-top: auto;
	}

	.article-news-tags-item-link {
		font-size: 0.8em;
	}

	.article-news-figure__image {
		aspect-ratio: 10 / 6;
		display: block;
	}
}

/*modal*/
.iziModal-content .close {
	font-size: 35px;
	text-align: right;
	display: block;
	line-height: 1em;
	margin-bottom: 10px;
}

.iziModal-content .close a:hover {
	text-decoration: none;
	cursor: pointer;
	opacity: 0.8;
}

.nendonai_wrap {
	width: 100%;
	background: #AAE4F9;
	/*padding: 32px 20px 20px;*/
	position: relative;
}

.nendonai_wrap a:hover {}

.nendonai_head {
	background: url(../images/news/nendonai_head_bg.jpg)no-repeat;
	background-size: 100%;
	height: 270px;
	padding: 40px 0 0 0;
	box-sizing: border-box;
}

.nendonai_wrap h4 {
	color: #fff;
	text-align: center;
	font-size: 40px;
	letter-spacing: 4px;
	margin-bottom: 10px;
}

.nendonai_wrap h4 span {
	display: block;
	font-size: 22px;
	margin-bottom: 10px;
}

.nendonai_tel {
	color: #fff;
	background: #FC9D9D;
	text-align: center;
	border-radius: 16px;
	margin: 0 auto 24px;
	width: 58%;
}

.nendonai_tel p {
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 4px;
	line-height: 1em;
	margin-bottom: 8px;
}

.nendonai_tel p.tel {
	color: #fff;
	font-size: 36px;
	letter-spacing: 5px;
	font-weight: bold;
	line-height: 1em;
	display: inline-block;
	margin: 0 0 0 50px;
}

.nendonai_tel a {
	display: block;
	padding: 13px;
	position: relative;
}

.nendonai_tel a:hover {
	text-decoration: none;
	background: #f78989;
	border-radius: 16px;
}

.nendonai_tel p.tel:before {
	content: "";
	background: url(../images/news/tel_icon.png)no-repeat;
	background-size: 100%;
	display: block;
	width: 43px;
	height: 29px;
	position: absolute;
	bottom: 15px;
	left: 64px;
}

.nendonai_list_wrap {
	display: flex;
	justify-content: space-between;
	padding: 0 20px 16px;
}

.nendonai_list {
	width: 49%;
	padding: 0;
}

.nendonai_list li {
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 13px;
}

.nendonai_list li a {
	display: block;
	width: 100%;
}

.nendonai_list li a:hover {
	text-decoration: none;
	/*opacity: 0.8;*/
}

.nendonai_list li a:hover dl {
	color: #3f4366;
}

.nendonai_list li a dl {
	display: flex;
	text-align: center;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.6px;
}

.nendonai_list li a dt {
	width: 30%;
	padding: 8px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nendonai_list li a dd {
	width: 70%;
	padding: 8px 0;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 1px;
}

.nendonai_list li.long_name a dd {
	font-size: 14px;
}

.nendonai_list li.fukuoka a dt {
	background: #FFB8C6;
}

.nendonai_list li.fukuoka a dd {
	background: #F9CDC7;
}

.nendonai_list li.other a dt {
	background: #FFB098;
}

.nendonai_list li.other a dd {
	background: #FCCC92;
}

.nendonai_list li.kitakyu a dt {
	background: #FFC869;
	font-size: 13px;
}

.nendonai_list li.kitakyu a dd {
	background: #F9DF93;
}

.supplement {
	position: absolute;
	right: 16px;
	bottom: 10px;
	font-size: 14px;
	font-weight: bold;
}

@media (max-width: 767px) {
	.iziModal {
		top: 60px;
	}

	.iziModal-content .close {
		font-size: 30px;
		position: absolute;
		top: 9px;
		right: 16px;
		z-index: 1;
	}

	.nendonai_list_wrap {
		flex-direction: column;
		padding: 0 8px;
		position: relative;
		z-index: 1;
	}

	.nendonai_list {
		width: 100%;
	}

	.nendonai_list li {
		margin-bottom: 5px;
	}

	.nendonai_list li a dl {
		font-size: 12px;
	}

	.nendonai_list li a dt {
		width: 35%;
		padding: 5px 0;
	}

	.nendonai_list li a dd {
		width: 65%;
		padding: 5px 0;
	}

	.nendonai_list li.long_name a dd {
		font-size: 10px;
		letter-spacing: 0;
	}

	.nendonai_list li.kitakyu a dt {
		font-size: 10px;
		letter-spacing: 0;
	}

	.nendonai_wrap h4 {
		font-size: 19px;
		letter-spacing: 2px;
		margin-bottom: 5px;
	}

	.nendonai_wrap h4 span {
		font-size: 14px;
		margin-bottom: 3px;
	}

	.nendonai_head {
		height: auto;
		padding: 10px 0 0 0;
		margin-bottom: 2px;
		background: none;
	}

	.nendonai_tel {
		width: 85%;
		margin: 0 auto 0;
		border-radius: 10px;
	}

	.nendonai_tel a {
		padding: 6px 6px 4px;
	}

	.nendonai_tel p {
		font-size: 11px;
		letter-spacing: 1px;
		margin-bottom: 4px;
	}

	.nendonai_tel p.tel {
		font-size: 18px;
		letter-spacing: 1.2px;
		margin: 0 0 0 33px;
	}

	.nendonai_tel p.tel:before {
		width: 20px;
		height: 13px;
		left: 19%;
		bottom: 10px;
	}

	.supplement {
		/*left: -1px;bottom: -16px;z-index: 1;*/
		font-size: 10px;
		position: unset;
		text-align: center;
		margin-bottom: 2px;
	}
}



@media (min-width: 768px) {

	.list-section-news-item {
		transition: transform 0.3s ease-out;
	}

	.list-section-news-item:hover {
		transform: scale(1.1);
	}

}