/* contents/common
-------------------------------------------*/

/* Loading */

.loader-bg{
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: var(--green);
	display: flex;
	justify-content: center;
	align-items: center;
}
.loader{
	margin: 0 auto;
	width: 70px;
	text-align: center;
}
.loader > div{
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader .bounce1{
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.loader .bounce2{
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay{
	0%, 80%, 100%{ -webkit-transform: scale(0) }
	40%{ -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay{
	0%, 80%, 100%{ 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 40%{ 
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

.contents .main_visual{
	height: 60vh;
}
.main_visual .img{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
	border-radius: 0 0 0 200px;
}
.main_visual .img:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(var(--font-black-rgb),0.2);
}
.main_visual .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contents .main_color_area{
	padding: 350px 0 80px;
}
.contents .main_color_area .inner{
	width: var(--page-width);
	margin: 0 auto;
	color: #fff;
	text-align: left;
}
.breadcrumbs{
	padding-bottom: 2%;
}
.breadcrumbs ul{
	display: flex;
	justify-content: flex-start;
	font-size: 13px;
}
.breadcrumbs ul li{
	font-weight: bold;
}
.breadcrumbs ul li a{
	font-weight: normal;
	color: #fff;
}
.breadcrumbs ul > * + *::before {
	content: "/";
	margin-left: 1em;
	margin-right: 1em;
	font-weight: normal;
}
.page_title{
	line-height: 1;
}
.page_title p{
	-webkit-text-stroke: 1px #fff;
	text-stroke: 1px #fff;
	color: rgba(0,0,0,0);
	font-family: var(--font-en);
	letter-spacing: 0;
	font-size: 100px;
}
.page_title h2{
	font-size: 32px;
}
.page_nav ul{
	display: flex;
	padding: 5% 0 0;
}
.page_nav ul > li{
	position: relative;
	padding: 0 30px;
	margin: 0;
	list-style: none;
	font-size: 15px;
	line-height: 1.5;
	border-right: 1px solid rgba(255,255,255,0.3);
}
.page_nav ul > li:first-child{
	padding-left: 0;
}
.page_nav ul > li:last-child{
	border: 0;
	padding-right: 0;
}
.page_nav ul li a{
	display: block;
	color: #fff;
	background: url(../img/common/ic_arrow_wh.svg) left 55% no-repeat;
	background-size: 5px auto;
	padding-left: 12px;
}
.page_nav ul li a:hover{
	opacity: var(--hover);
}

#main .sec,
#main .s_content{
	padding-bottom: 200px;
	letter-spacing: .05em;
}
#main .sec:first-child,
#main .s_content:first-child{
	padding-top: 150px;
}
#main .sec h3{
	width: var(--page-width);
	margin: 0 auto 80px;
	font-size: 40px;
	text-align: left;
	background: url(../img/common/h3_icon.png) left 30% no-repeat;
	background-size: 60px auto;
	padding-left: 70px;
}
#main .sec h4{
	font-size: 28px;
	border-bottom: 1px solid var(--font-black);
	margin-bottom: 28px;
}
#main .sec .read{
	position: relative;
	width: 100%;
}
#main .sec .text{
	width: var(--page-width);
	margin-right: auto;
	margin-left: auto;
	text-align: justify;
}
#main .s_content{
	width: var(--page-width);
	margin: 0 auto;
	text-align: justify;
	display: flex;
	justify-content: space-between;
}
#main .s_content h4{
	width: 26%;
	font-size: 28px;
	line-height: 1.5;
}
#main .sec .s_content h4{
	border-bottom: none;
}
#main .s_content .c_area{
	width: 70%;
}
.c_tbl{
	border-top: 1px solid #ddd;
}
.c_tbl dl{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 28px 0;
	border-bottom: 1px solid #ddd;
}
.c_tbl dt{
	width: 23%;
}
.c_tbl dd{
	width: 76%;
}

@media screen and (max-width: 650px){
	
	.contents .main_visual{
		height: 55vh;
	}
	.main_visual .img{
		border-radius: 0 0 0 100px;
	}
	.contents .main_color_area{
		padding-bottom: 10%;
	}
	.breadcrumbs ul{
		font-size: 11px;
	}
	.page_title{
		line-height: 1.25;
	}
	.page_title p{
		font-size: 40px;
	}
	.page_title h2{
		font-size: 20px;
	}
	.page_nav ul{
		flex-wrap: wrap;
		justify-content: space-between;
		padding-top: 10%;
	}
	.page_nav ul > li{
		width: 49%;
		padding: 0 0 4%;
		margin: 0 0 4%;
		font-size: 13px;
		border-right: 0;
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	.page_nav ul > li:last-child{
		border-bottom: 1px solid rgba(255,255,255,0.5);
	}
	
	#main .sec,
	#main .s_content{
		padding-bottom: 30%;
	}
	#main .sec:first-child,
	#main .s_content:first-child{
		padding-top: 20%;
	}
	#main .sec h3{
		font-size: 24px;
		margin: 0 auto 5%;
		background-size: 44px auto;
		padding: 10px 0 10px 50px;
	}
	#main .sec h4{
		font-size: 18px;
		margin-bottom: 10%;
	}
	#main .s_content{
		display: block;
	}
	#main .s_content h4{
		width: 100%;
		font-size: 18px;
		padding-bottom: 10%
	}
	#main .s_content .c_area{
		width: 100%;
	}
	.c_tbl dl,
	.c_tbl dt,
	.c_tbl dd{
		width: 100%;
	}
	.c_tbl dl{
		display: block;
		padding: 5% 0;
		border-bottom: 1px solid #ddd;
	}
	.c_tbl dt{
		padding-bottom: 2%;
		font-weight: bold;
	}
}