@charset "utf-8";
/* Common */
/* 外部リンク */
div.contents a[target="_blank"]::after {
	display: inline-block;
	content: "\f35d";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin-left: 5px;
	padding: 0;
}
/* //外部リンク */

/* アコーディオン */
div.contents .accodion {
	padding: 0 1rem;
}
div.contents .accordion-title {
	pointer-events: all;
	cursor: pointer;
	position: relative;
	border-bottom: 1px solid #d8d8d8;
}
div.contents .accordion-content { /* アコーディオンが閉じているとき */
	visibility: hidden;
	opacity: 0;
	height: 0;
	transition: all .3s ease;
	margin-block-start: 0;
}
div.contents .accordion-title::before {
	display: block;
	font-family: "Font Awesome 5 Free";
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	content: "\2b";
	font-size: 1.5rem;
	font-weight: 700;
}
div.contents .accordion-title.accordion-open+.accordion-content { /* アコーディオンが開いているとき */
	visibility: visible;
	opacity: 1;
	height: auto;
	margin-top: 30px;
	padding: 0 1rem;
}
div.contents .accordion-content h4 {
	font-size: 1.1rem;
	font-weight: 700;
}
div.contents .accordion-content h4:first-of-type {
	margin: 0;
}
div.contents .accordion-content ul {
	margin-top: 0;
}

div.contents .accordion-title.accordion-open::before {
	content: "\f068";
}
/* //アコーディオン */
/* //Common */

/* お知らせ */
div#information .infos {
	width: 100%;
	font-size: 20px;
}
div#information .infos .info {
	display: flex;
	margin: 0;
	padding: 40px 20px;
	border-bottom: 1px solid #CCCCCC;
	line-height: 1.6em;
}
div#information .infos .info:last-of-type {
	border: none;
}
div#information .infos .info a {
	display: flex;
}
div#information .infos .info a[target="_blank"]::after {
	all: unset;
}
div#information .infos .info a[target="_blank"] .info-text-a::after {
	display: inline-block;
	margin-left: 5px;
	padding: 0;
	content: "\f35d";
	color: var(--ColorGreen1);
	font-family: "Font Awesome 5 Free";
	font-size: 1.0rem;
	font-weight: 700;
	vertical-align: top;
}
div#information .infos .info .info-date {
	position: relative;
	min-width: 120px;
	color: #45B035;
}
div#information .infos .info .info-date::after {
	content: "";
	display: inline-block;
	height: 1em;
	margin: 0 0 0 10px;
	border-right: 1px #45B035 solid;
	position: absolute;
	top: 6px;
	right: 10px;
}
div#information .infos .info .info-text , 
div#information .infos .info .info-text-a {
	width: auto;
	margin: 0;
	color: #333333;
}
/* >印ver
div#information .infos .info a .info-text-a::after {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 0 1px 0;
	border: 1px solid;
	border-color: #45B035 #45B035 transparent transparent;
	transform: rotate(45deg);
}
*/
#information .info_past {
    overflow: hidden;
}
#information.contents .infos .info_past h3.accordion-title {
	font-size: 1.25rem;
	line-height: 2;
	border-bottom: 1px dotted var(--ColorGreen1);
}
#information .accordion-title.accordion-open+.accordion-content {
	margin-top: 0;
	padding: 0;
}
/* // お知らせ */

/* イベントカレンダー */
#eventcal .cal-events {
	margin: 0 auto;
}
#eventcal .cal-month {
	margin: 20px 0 0;
}
#eventcal .cal-month p {
	color: var(--ColorGreen1);
	font-size: 1.25rem;
	font-weight: bold;
}
#eventcal .cal-event {
	width: calc(100% - 2px);
	margin: 0 auto 10px;
	display: flex;
	border: 1px solid var(--ColorGreen1);
	border-radius: 10px;
}
#eventcal .cal-event .cal-date {
	width: 130px;
	padding: 5px 10px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.23em;
	text-align: center;
	color: #FFFFFF;
	background-color: var(--ColorGreen1);
	border-radius: 8px 0 0 8px;
}
#eventcal .cal-event .cal-date span {
	margin: 0 0 0 5px;
	font-weight: normal;
	font-size: 0.9rem;
}
#eventcal .cal-event .cal-date span.ev-border {
	display: block;
	margin: -3px 0 0;
	font-size: 1.0rem;
	line-height: 1.1em;
}
#eventcal .cal-event .cal-date span.year {
	display: block;
	margin: 7px 0 -20px;
	line-height: 0em;
}
#eventcal .cal-event .cal-text {
	width: calc(100% - 20px);
	padding: 5px 10px;
}
#eventcal .cal-event a {
	display: inline-block;
	width: calc(100% - 130px);
}
#eventcal .cal-event a[target="_blank"]::after {
	all: unset;
}

#eventcal .cal-event .cal-text h3 {
	margin: 0;
	font-size: 1.25em;
	font-weight: 400;
	color: var(--ColorGreen1);
}
#eventcal .cal-events .cal-event a[target="_blank"] .cal-text h3::after {
	display: inline-block;
	content: "\f35d";
	font-family: "Font Awesome 5 Free";
	font-size: 1.0rem;
	font-weight: 700;
	margin-left: 5px;
	padding: 0;
	vertical-align: bottom;
}
#eventcal .cal-event .cal-text p {
	margin: 0;
}
#eventcal .cal-event .cal-text .cal-text-place {
	display: flex;
	margin: 3px 0;
	padding: 5px 1em;
	background-color: var(--ColorYellowGreen2);
	/* background-color: #c9edbf; */
	border-radius: 5px;
}
#eventcal .cal-event .cal-text .cal-text-place h4 {
	width: 4.5em;
	min-width: 4.5em;
	margin: 0;
	font-size: 1.0rem;
	font-weight: 700;
	color: var(--ColorGreen1);
}
/* // イベントカレンダー */

/* 特集記事 */
.archive-spots .spots .spot {
	margin: 100px auto 0;
}
.archive-spots .spots .spot:first-of-type {
	margin: 30px auto 0;
}
.archive-spots .spots .spot h3 {
	margin: 0;
	padding: 0.3em;/*文字周りの余白*/
	font-size: 1.5rem;
	background:  var(--ColorYellowGreen2);/*背景色*/
	border-left: solid 10px var(--ColorGreen1);/*左線（実線 太さ 色）*/
}
.archive-spots .spots .spot .spot-img { /* 画像1枚のみ */
	width: fit-content;
	margin: 20px auto;
	padding: 0 1rem;
	text-align: center;
}
.archive-spots .spots .spot .spot-imgs { /* 画像2枚 */
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 20px auto;
	padding: 0 1rem;
}
.archive-spots .spots .spot .spot-imgs .spot-img {
	margin: 0;
	padding: 0;
	text-align: unset;
}
.archive-spots .spots .spot .spot-imgs .spot-img img {
	width: 100%;
	max-width: 500px;
}
.archive-spots .spots .spot .spot-img .note {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.0;
}
.archive-spots .spots .spot .spot-img .note.center {
	text-align: center;
}
.archive-spots .spots .spot .spot-img .note.right {
	text-align: right;
}

.archive-spots .spots .spot .spot-txts {
	width: calc(100% - 2rem);
	padding: 0 1rem;
	margin: 20px auto;
}
.archive-spots .spots .spot .spot-txts h4 {
	margin: 20px 0 0;
	color: var(--ColorGreen1);
	font-size: 1.2rem;
	font-weight: 700;
}
.archive-spots .spots .spot .spot-txts h4::before {
	display: inline-block;
	content: "\f05a";
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	margin-right: 5px;
	padding: 0;
}
.archive-spots .spots .spot .spot-txts .spot-info {
	margin: 5px 0 0;
}
.archive-spots .spots .spot .btn-green {
	text-align: center;
}
.archive-spots .spots .spot .btn-green a {
	display: inline-block;
	min-width: 200px;
	padding: 1rem 1rem;
	color: #ffffff;
	font-weight: 700;
	text-align: center;
	background-color: var(--ColorGreen1);
	border-radius: 10px;
	box-shadow: 3px 3px var(--ColorYellowGreen1);
}
.archive-spots .spots .spot .btn-green a:hover {
	transform: translate(2px,2px);
	box-shadow: unset;
}
/* // 特集記事 */



/* スマホ用
-------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 580px) { /* 580px以下に適用されるCSS */
	/* お知らせ */
	div#information .infos .info {
		display: block;
		padding: 20px 10px;
	}
	div#information .infos .info a {
		display: block;
	}
	div#information .infos .info .info-date::after {
		border: none;
	}
	/* //お知らせ */
	
	/* イベントカレンダー */
	#eventcal .cal-event .cal-date {
		width: 90px;
		padding: 5px;
		font-size: 1.25rem;
	}
	#eventcal .cal-event .cal-date span {
		margin: 0 0 0 3px;
	}
	#eventcal .cal-event .cal-date span.ev-border {
		margin: 0;
	}
	#eventcal .cal-event .cal-date span.year {
		margin: 10px 0 -15px;
	}
	#eventcal .cal-event a {
	    width: calc(100% - 100px);
	}
	#eventcal .cal-event .cal-text h3 {
		font-size: 1.1rem;
	}
	#eventcal .cal-event .cal-text .cal-text-place {
		display: block;
		padding: 5px 10px;
	}
	#eventcal .cal-event .cal-text .cal-text-place h4 {
		font-size: 0.8rem;
		line-height: 1.1em;
	}
	#eventcal .cal-event .cal-text .cal-text-place p {
		font-size: 0.9rem;
		line-height: 1.3em;
	}
	/* //イベントカレンダー */
	
	/* 特集記事 */
	.archive-spots .spots .spot {
		margin: 70px auto 0;
	}
	.archive-spots .spots .spot h3 {
		font-size: 1.2rem;
	}
	.archive-spots .spots .spot .spot-imgs { /* 画像2枚 */
		display: block;
	}
	/*.archive-spots .spots .spot .spot-imgs .spot-img:nth-child(2) {
		margin: 15px auto 0;
	}*/
	.archive-spots .spots .spot .spot-imgs .spot-img {
		margin: 15px auto 0;
	}
	.archive-spots .spots .spot .spot-img .note {
		margin: -5px 0 0;
	}
	/* //特集記事 */
}