@charset "UTF-8";

@import "base.css";
@import "main.css";
@import "message.css";
@import "about.css";
@import "office.css";
@import "safuran.css";
@import "kirameki.css";
@import "donation.css";
@import "access.css";
@import "recruit.css";
@import "news.css";


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

/* Page Title
---------------------------------------- */
#main #contTit {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 220px;
	margin-bottom: 60px;
	text-align: center;
	background: url(../images/bg_cont_title.png) no-repeat center center;
}
#main h2 {
	line-height: 1.0;
	margin-bottom: 20px;
	font-family: "Kosugi Maru", sans-serif;
	font-size: 54px;
}
#main h2 br {
	display: none;
}
#main h2 span {
	display: block;
}
#main h2 span.titCategory {
	line-height: 1.0;
	margin-bottom: 15px;
	font-family: "Kosugi Maru", sans-serif;
	font-size: 30px;
}
#main h2 span.titSub {
	line-height: 1.0;
	margin-bottom: 10px;
	font-family: "Kosugi Maru", sans-serif;
	font-size: 20px;
}

/* パンくずリスト
---------------------------------------- */
#main #bread span.titCategory::after {
	content: "│";
}
#main #bread span.titSub {
	margin-right: 1em;
}

/* Teaser
---------------------------------------- */
#main #contTeaser {
	width: 100%;
	height: 600px;
	margin-bottom: 100px;
	position: relative;
}
#main #contTeaser figure img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}
#main #contTeaser p {
	display: inline-block;
	width: fit-content;
	padding: 5px 25px;
	color: #fff;
	font-weight: 700;
	background: rgba(51, 51, 51, 0.9);
	border-radius: 10px;
	position: absolute;
	right: 125px;
	bottom: 35px;
}
#main #contTeaser p span {
	display: inline-block;
	margin-left: 1em;
	color: #fff;
	font-weight: 700;
}
#main #contTeaser p::before {
	content: '\f05a';
	margin-right: 0.5em;
	font-family: 'Font Awesome 6 Free';
	font-size: 20px;
	font-weight: 900;
	vertical-align: middle;
}

@media screen and (max-width : 1400px) {
	#main #contTeaser {
		height: auto;
		min-height: 260px;
	}
	#main #contTeaser figure img {
		height: auto;
		min-height: 260px;
	}
}
@media screen and (max-width : 960px) {
	#main #contTeaser p {
		margin-left: 20px;
		right: 10px;
		bottom: 10px;
	}
}
@media screen and (max-width : 550px) {
	#main h2 br {
		display: inline;
	}
}


/* Flex Layout
---------------------------------------- */
#main #contColumn {
	justify-content: space-between;
	align-items: flex-start;
	width: 96%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

/* Left side */
#main #contColumn #contMenu {
	width: 250px;
	position: sticky;
	top: 50px;
}
#main #contColumn #contMenu h3 {
	height: 86px;
	line-height: 86px;
	padding-left: 40px;
	margin-bottom: 40px;
	font-family: "Shirokuma";
	font-size: 50px;
	letter-spacing: -10px;
	background: url(../images/bg_cont_sidetitle.png) no-repeat left top;
	box-sizing: border-box;
}
#main #contColumn #contMenu ul {
	margin-left: 40px;
}
#main #contColumn #contMenu ul li {
	margin-bottom: 15px;
}
#main #contColumn #contMenu ul li a {
	color: #333;
	font-size: 16px;
}
#main #contColumn #contMenu ul li a::before {
	content: "●";
	margin-right: 0.5em;
}
#main #contColumn #contMenu ul li a:hover {
	color: #f8931f;
}

/* Right side */
#main #contColumn #contBody {
	width: 800px;
}
#main #contColumn #contBody .contBodyItem {
	margin-bottom: 100px;
}
#main #contColumn #contBody h3 {
	margin-bottom: 40px;
	font-size: 28px;
}

@media screen and (max-width : 960px) {
	#main #contColumn #contMenu {
		display: none;
	}
	#main #contColumn #contBody {
		width: 96%;
		margin-left: auto;
		margin-right: auto;
	}
}