@charset "UTF-8";

@import "base.css";
@import "main.css";
@import "about.css";
@import "visit.css";
@import "guide.css";
@import "news.css";
@import "contact.css";


/* -------------------------------------
 *	全ページ共通
 * ------------------------------------- */

/* Teaser
---------------------------------------- */
header #teaser {
	height: 300px;
	margin: 120px 75px 100px;
	position: relative;
}
header #teaser img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 90%;
}
header #teaser h2 {
	padding-left: 5px;
	padding-right: 100px;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 30px;
	font-weight: 700;
	border-bottom: 2px solid #fff;
	position: absolute;
	top: 50%;
	left: 30px;
}
header #teaser h2 span {
	display: block;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	font-weight: 700;
}
header #teaser h2 span::after {
	content: "：";
}
@media screen and (max-width : 970px) {
	header #teaser {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

/* Title
---------------------------------------- */
#main h2 {
	line-height: 100%;
	padding-bottom: 12px;
	margin-bottom: 60px;
	font-family: "Barlow", sans-serif;
	font-size: 36px;
	font-weight: 700;
	position: relative;
}
#main h2 span {
	display: block;
	padding-top: 8px;
	margin-bottom: 2px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 700;
}
#main h2::after {
	position: absolute;
	content: "";
	background-color: #333;
	width: 3.5rem;
	height: 2px;
	bottom: 0;
	left: 0;
}


/* -------------------------------------
 *	Column Layout
 * ------------------------------------- */

/* Layout
---------------------------------------- */
#main .columnWrap {
	display: flex;
	width: 96%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}
#main .columnWrap .column {
	flex: 1;
}
#main .columnWrap aside {
	width: 380px;
	padding: 30px 40px;
	margin-left: 70px;
	background: #e9e9e9;
	border-radius: 15px;
	box-sizing: border-box;
}
#main .columnWrap aside .sidebarItem {
	margin-bottom: 40px;
}

/* Sidebar
---------------------------------------- */

/* Title */
#main .columnWrap aside h3 {
	padding-bottom: 6px;
	margin-bottom: 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 700;
	position: relative;
}
#main .columnWrap aside h3::after {
	position: absolute;
	content: "";
	background-color: #333;
	width: 3.5rem;
	height: 2px;
	bottom: 0;
	left: 0;
}

/* Link */
#main .columnWrap aside .sideLink p {
	text-align: right;
}
#main .columnWrap aside .sideLink p a {
	color: #333;
}
#main .columnWrap aside .sideLink p a::after {
	content: "";
	display: inline-block;
	width: 36px;
	height: 10px;
	margin-left: 1em;
	background: #333;
	clip-path: polygon(0 45%, 75.9% 45%, 75.9% 0, 100% 50%, 75.9% 100%, 75.9% 55%, 0 55%);
}
#main .columnWrap aside .sideLink p a:hover {
	color: #f8931f;
}
#main .columnWrap aside .sideLink p a:hover::after {
	background: #f8931f;
}

/* Event */
#main aside #sideEvent ul li {
	margin-left: 15px;
	text-indent: -15px;
}
#main aside #sideEvent ul li a {
	color: #333;
}
#main aside #sideEvent ul li a br {
	display: none;
}
#main aside #sideEvent ul li a:hover {
	color: #f8931f;
}
#main aside #sideEvent ul li::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #333;
	border-radius: 50%;
}

/* News */
#main aside #sideNews ul li {
	margin-left: 15px;
	text-indent: -15px;
}
#main aside #sideNews ul li::before {
	content: "";
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #333;
	border-radius: 50%;
}

@media screen and (max-width : 1300px) {
	#main .columnWrap {
		flex-direction: column;
	}
	#main .columnWrap aside {
		display: flex;
		justify-content: space-between;
		width: 100%;
		margin: 0;
	}
	#main .columnWrap aside .sidebarItem {
		width: 30%;
	}
}
@media screen and (max-width : 970px) {
	#main .columnWrap aside {
		flex-direction: column;
		max-width: 380px;
		margin-left: auto;
		margin-right: auto;
	}
	#main .columnWrap aside .sidebarItem {
		width: 100%;
	}
}