@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------
	paging（ページング）
	widget_btn（ボタン）
	widget_title-01（タイトル：1）
	widget_title-02（タイトル：2）
	widget_end（イベント終了）
	widget_entry（投稿詳細）
	list_news（一覧：お知らせ）
	list_event（一覧：イベント）
	content_event（コンテンツ：イベント）
------------------------------------------------------------------------ */

/* ========================================================================
	paging（ページング）
======================================================================== */
.paging {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 10px;
	margin: 0 0 60px 0;
}

.paging span.dots {
	display: flex;
	align-items: center;
	height: 80px;
	margin: 0 10px;
	font-weight: 700;
	line-height: 1;
}

.paging span.current,
.paging a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	background: #ffffff;
	border: 2px solid #324b4d;
	border-radius: 40px;
	font-size: 2.4rem;
	font-weight: 700;
	color: #324b4d;
	line-height: 1;
	text-decoration: none;
}
.paging span.current,
.paging a:hover {
	background: #0e8187;
	color: #ffffff;
}

.paging a.prev,
.paging a.next {
	width: 160px;
	margin: 0 30px 0 0;
	font-size: 1.8rem;
}
.paging a.next {
	margin: 0 0 0 30px;
}

@media screen and (max-width: 767px) {
	.paging {
		margin: 0 0 40px 0;
	}

	.paging span.dots {
		height: 40px;
		margin: 0;
	}

	.paging span.current,
	.paging a {
		width: 40px;
		height: 40px;
		font-size: 2rem;
	}

	.paging a.prev,
	.paging a.next {
		width: 80px;
		margin: 0;
		font-size: 1.6rem;
	}
	.paging a.next {
		margin: 0;
	}
}

/* ========================================================================
	widget_btn（ボタン）
======================================================================== */
.widget_btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 80px;
	margin: 0 0 60px 0;
}

.widget_btn a,
.widget_btn button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	min-width: 280px;
	min-height: 80px;
	padding: 0 70px 0 40px;
	background: #ffffff;
	border: 2px solid #324b4d;
	border-radius: 40px;
	font-weight: 700;
	line-height: 2.8rem;
	text-decoration: none;
	transition-duration: 0.2s;
}
.widget_btn a:hover,
.widget_btn button:hover {
	background: #0e8187;
	color: #ffffff;
}

.widget_btn a::before,
.widget_btn button::before {
	content: "";
	position: absolute;
	top: 0;
	right: 40px;
	width: 10px;
	height: 100%;
	background: url(../../img/common/arrow_01.png) no-repeat center;
	background-size: 100%;
}
.widget_btn a:hover::before,
.widget_btn button:hover::before {
	background-image: url(../../img/common/arrow_02.png);
}

@media screen and (max-width: 767px) {
	.widget_btn {
		gap: 20px;
		margin: 0 0 40px 0;
	}

	.widget_btn a,
	.widget_btn button {
		min-width: 200px;
		min-height: 60px;
		padding: 10px 60px 10px 30px;
		line-height: 2.6rem;
	}

	.widget_btn a::before,
	.widget_btn button::before {
		right: 30px;
	}
}

/* ----------------------------------------
	green
---------------------------------------- */
.widget_btn .green {
	background: #0e8187;
	color: #ffffff;
}
.widget_btn .green:hover {
	opacity: 0.8;
}
.widget_btn .green::before {
	background-image: url(../../img/common/arrow_02.png);
}

/* ----------------------------------------
	back
---------------------------------------- */
.widget_btn .back {
	min-width: 200px;
	padding: 0;
}
.widget_btn .back::before {
	content: none;
}

/* ========================================================================
	widget_title-01（タイトル：1）
======================================================================== */
.widget_title-01 {
	margin: 0 0 60px 0;
	text-align: center;
	line-height: 0;
}

.widget_title-01 .ja {
	display: inline-block;
	padding: 0 0 0 30px;
	background: url(../../img/common/icon_hitsuji.png) no-repeat left bottom;
	background-size: 18px 15px;
	vertical-align: bottom;
	font-size: 1.6rem;
	font-weight: 700;
	color: #288087;
	line-height: 1;
	letter-spacing: 0.08em;
}

.widget_title-01 .en {
	display: block;
	margin: 0 0 12px 0;
	text-transform: uppercase;
	font-size: 4.8rem;
	line-height: 1;
	letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
	.widget_title-01 {
		margin: 0 0 40px 0;
	}

	.widget_title-01 .en {
		font-size: 4rem;
	}
}

/* ========================================================================
	widget_title-02（タイトル：2）
======================================================================== */
.widget_title-02 {
	position: relative;
	margin: 0 0 40px 0;
	padding: 15px 20px;
	background: #f1f5f5;
	border-top: 2px solid #7dbec3;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1.5;
}
.widget_title-02.alphanumeric {
	padding-left: 78px;
}

.widget_title-02 span {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 20px;
	left: 20px;
	width: 38px;
	height: 38px;
	background: #7dbec3;
	border-radius: 50%;
	font-size: 2.4rem;
	color: #ffffff;
}

@media screen and (max-width: 767px) {
	.widget_title-02 {
		margin: 0 0 20px 0;
		padding: 14px 20px;
		font-size: 2rem;
	}
	.widget_title-02.alphanumeric {
		padding-left: 50px;
	}

	.widget_title-02 span {
		top: 14px;
		left: 10px;
		width: 30px;
		height: 30px;
		font-size: 1.8rem;
	}
}

/* ========================================================================
	widget_end（イベント終了）
======================================================================== */
.widget_end {
	margin: 0 0 60px 0;
	padding: 6px 0;
	background: #ff8945;
	border-radius: 6px;
	text-align: center;
	font-weight: 700;
	color: #ffffff;
	line-height: 2.8rem;
}

@media screen and (max-width: 767px) {
	.widget_end {
		margin: 0 0 40px 0;
		padding: 7px 0;
		line-height: 2.6rem;
	}
}

/* ========================================================================
	widget_entry（投稿詳細）
======================================================================== */
.widget_entry .aligncenter {
	display: block;
	margin: 0 auto 60px;
}
.widget_entry .alignright {
	float: right;
	margin: 0 0 0 60px;
}
.widget_entry .alignleft {
	float: left;
	margin: 0 60px 0 0;
}

.widget_entry {
	padding: 0 0 60px 0;
}

.widget_entry .wp-video {
	margin: 0 auto;
}

.widget_entry h2,
.widget_entry h3,
.widget_entry h4 {
	margin: 0 0 40px 0;
	font-size: 2.4rem;
	font-weight: 700;
}
.widget_entry h3 {
	position: relative;
	padding: 0 0 0 18px;
	font-size: 2.2rem;
}
.widget_entry h4 {
	font-size: 2rem;
	color: #288087;
}

.widget_entry h3::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 0;
	width: 4px;
	height: 24px;
	background: #7dbec3;
	border-radius: 2px;
}

.widget_entry p::after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 767px) {
	.widget_entry .aligncenter,
	.widget_entry .alignright,
	.widget_entry .alignleft {
		display: block;
		float: none;
		margin: 0 auto 20px;
	}

	.widget_entry {
		padding: 0 0 20px 0;
	}

	.widget_entry h2,
	.widget_entry h3,
	.widget_entry h4 {
		margin: 0 0 20px 0;
		font-size: 2rem;
	}
	.widget_entry h3 {
		padding: 0 0 0 14px;
		font-size: 2rem;
	}
	.widget_entry h4 {
		font-size: 1.8rem;
	}

	.widget_entry h3::before {
		top: 10px;
		height: 20px;
	}
}

/* ----------------------------------------
	date
---------------------------------------- */
.widget_entry .date {
	margin: 0 0 60px 0;
	font-size: 1.7rem;
	color: #0e8187;
}

.widget_entry .date time {
	vertical-align: bottom;
}

@media screen and (max-width: 767px) {
	.widget_entry .date {
		margin: 0 0 40px 0;
		font-size: 1.6rem;
	}
}

/* ========================================================================
	list_news（一覧：お知らせ）
======================================================================== */
.list_news {
	padding: 0 0 40px 0;
}

.list_news a {
	display: flex;
	align-items: center;
	height: 80px;
	margin: 0 0 20px 0;
	padding: 0 40px;
	background: #ffffff;
	border: 1px solid #324b4d;
	border-radius: 40px;
	font-weight: 500;
	line-height: 2.6rem;
	text-decoration: none;
}
.list_news a:hover span {
	text-decoration: underline;
}

.list_news a time {
	margin: 0 40px 0 0;
	font-size: 1.7rem;
	color: #0e8187;
}

@media screen and (max-width: 767px) {
	.list_news {
		padding: 0 0 20px 0;
	}

	.list_news a {
		display: block;
		height: auto;
		padding: 20px;
		border-radius: 20px;
	}
	.list_news a:hover span {
		text-decoration: none;
	}

	.list_news a time {
		display: block;
		margin: 0;
		font-size: 1.6rem;
	}
}

/* ========================================================================
	list_event（一覧：イベント）
======================================================================== */
.list_event {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px 26px;
	margin: 0 0 60px 0;
}

.list_event > li {
	width: 280px;
}

.list_event a {
	display: block;
	position: relative;
	text-decoration: none;
}

.list_event a > img {
	width: 280px;
	height: 200px;
	object-fit: cover;
	margin: 0 0 14px 0;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.list_event h3 {
	margin: 0 0 2px 0;
	font-size: 2rem;
	font-weight: 700;
	line-height: 3.2rem;
}

@media screen and (max-width: 767px) {
	.list_event {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 20px;
		margin: 0 0 40px 0;
	}

	.list_event > li {
		width: auto;
	}

	.list_event a > img {
		width: 100%;
		height: 170px;
		margin: 0 0 15px 0;
	}

	.list_event h3 {
		margin: 0 0 10px 0;
		font-size: 1.6rem;
		line-height: 2.6rem;
	}
}

/* ----------------------------------------
	icon
---------------------------------------- */
.list_event .icon {
	display: flex;
	flex-wrap: wrap-reverse;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	top: 12px;
	right: 12px;
	height: 158px;
}

.list_event .icon li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: #ffffff;
	border-radius: 50%;
}

.list_event .icon img {
	width: auto;
	height: 20px;
}

@media screen and (max-width: 767px) {
	.list_event .icon {
		top: 10px;
		right: 10px;
		height: 150px;
	}

	.list_event .icon li {
		width: 30px;
		height: 30px;
	}
}

/* ----------------------------------------
	schedule
---------------------------------------- */
.list_event .schedule {
	display: flex;
	flex-wrap: wrap;
	letter-spacing: normal;
}

.list_event .schedule li {
	font-weight: 700;
	line-height: 3.2rem;
}

.list_event .schedule li::after {
	content: ",";
	margin: 0 0.5em 0 0;
}
.list_event .schedule li:last-child::after {
	content: none;
}

@media screen and (max-width: 767px) {
	.list_event .schedule li {
		font-size: clamp(1rem, 3vw, 1.4rem);
		line-height: 2.4rem;
	}
}

/* ========================================================================
	content_event（コンテンツ：イベント）
======================================================================== */
.content_event > p {
	margin: 0 0 30px 0;
	text-align: center;
}

.content_event > p span {
	padding: 0 0 0 34px;
	background: url(../../img/common/icon_reservation.png) no-repeat left center;
	color: #ff8945;
}

@media screen and (max-width: 767px) {
	.content_event > p span {
		padding: 0 0 0 30px;
		background-size: auto 24px;
	}
}

/* ----------------------------------------
	cat
---------------------------------------- */
.content_event .cat {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px 60px;
	margin: 0 0 40px 0;
}

.content_event .cat li {
	font-weight: 700;
	line-height: 2.8rem;
}

.content_event .cat li img {
	margin: 0 18px 0 0;
}

@media screen and (max-width: 767px) {
	.content_event .cat {
		gap: 20px 30px;
	}

	.content_event .cat li {
		line-height: 2.4rem;
	}

	.content_event .cat li img {
		width: auto;
		height: 24px;
		margin: 0 10px 0 0;
	}
}

/* ----------------------------------------
	sort
---------------------------------------- */
.content_event .sort {
	position: relative;
	min-height: 200px;
	margin: 0 0 60px 0;
	padding: 44px 340px 22px 40px;
	background: #f1f5f5;
	border-radius: 100px;
}

.content_event .sort ul {
	display: flex;
	flex-wrap: wrap;
	padding: 0 0 22px 0;
	letter-spacing: normal;
}

.content_event .sort ul li {
	margin: 0 0 0 40px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 3.4rem;
}

@media screen and (max-width: 767px) {
	.content_event .sort {
		margin: 0 0 40px 0;
		padding: 40px 20px;
		border-radius: 40px;
	}

	.content_event .sort ul {
		gap: 20px;
		padding: 0 5px 20px;
	}

	.content_event .sort ul li {
		margin: 0;
		font-size: min(3.8888vw, 1.6rem);
		line-height: 3rem;
	}
}

/* sort_schedule
---------------------------------------- */
.content_event .sort .sort_schedule {
	padding-top: 21px;
	border-top: 1px dotted #324b4d;
}

.content_event .sort .sort_schedule li:nth-child(n + 2) {
	margin-left: 80px;
}

.content_event .sort .sort_schedule label {
	display: flex;
	align-items: center;
}

.content_event .sort .sort_schedule span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin: 0 0 0 10px;
	background: #0e8187;
	border-radius: 50%;
	font-size: 1.6rem;
	color: #ffffff;
	line-height: 1;
	letter-spacing: normal;
}

@media screen and (max-width: 767px) {
	.content_event .sort .sort_schedule {
		padding-bottom: 30px;
	}

	.content_event .sort .sort_schedule li:nth-child(n + 2) {
		margin-left: 0;
	}

	.content_event .sort .sort_schedule span {
		font-size: 1.2rem;
	}
}

/* widget_btn
---------------------------------------- */
.content_event .sort .widget_btn {
	position: absolute;
	top: 50%;
	right: 60px;
	transform: translateY(-50%);
	margin: 0;
}

.content_event .sort .widget_btn a,
.content_event .sort .widget_btn button {
	min-width: 240px;
	padding: 0;
	font-size: 2rem;
}
.content_event .sort .widget_btn a::before,
.content_event .sort .widget_btn button::before {
	content: none;
}
.content_event .sort .widget_btn img {
	margin: 0 8px 0 0;
}
.content_event .sort .widget_btn a:hover img {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.content_event .sort .widget_btn {
		position: static;
		transform: none;
	}

	.content_event .sort .widget_btn a,
	.content_event .sort .widget_btn button {
		font-size: 1.8rem;
	}
}

/* ----------------------------------------
	map API用に調整
---------------------------------------- */
@media screen and (max-width: 767px) {
	.map-container {
		height: 400px !important;
	}
}

.list_num {
	position: relative;
	margin: 30px 0;
	padding-left: 40px;
	font-weight: bold;
}

.list_num::before {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	width: 20px;
	height: 100%;
	background: url(../../img/common/icon_check.png) no-repeat center;
}

/* Google Mapマーカースタイル */
.marker-image {
	display: block;
	position: relative;
	text-decoration: none;
}

.marker-image .map-thumbnail {
	width: 100%;
	aspect-ratio: 7 / 5;
	object-fit: cover;
}

.marker-image .icon {
	display: flex;
	flex-wrap: wrap-reverse;
	flex-direction: column;
	gap: 6px;
	position: absolute;
	top: 6px;
	right: 6px;
}

.marker-image .icon li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 25px;
	height: 25px;
	background: #ffffff;
	border-radius: 50%;
}

.marker-image .icon img {
	width: auto;
	height: 20px;
}

@media screen and (max-width: 767px) {
	.marker-image .icon {
		top: 10px;
		right: 10px;
		height: 150px;
	}

	.marker-image .icon li {
		width: 30px;
		height: 30px;
	}
}

.schedule-marker {
	display: flex;
	flex-wrap: wrap;
}

.schedule-marker li::after {
	content: ",";
	margin: 0 0.5em 0 0;
}

.schedule-marker li:last-child::after {
	content: none;
}
