/* header */

.top-header{
	position: relative;
	width: 100%;
	height: calc(100vh - ((1.5em + (1em * 2)) * 1.25));
}

.top-header .header-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	background-color: #CCC;
}

.top-header .header-inner{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	z-index: 100;
}

.top-header .header-title{
	padding: 5em 5%;
	flex-grow: 1;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.top-header .header-title-main{
	font-size: 350%;
	margin-bottom: 0.25em;
	font-weight: var(--fontWeightBold);
	color: #FFF;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5), 2px 2px 4px rgba(0,0,0,0.5);
}

.top-header .header-title-sub{
	font-size: 200%;
	margin: 1em 0 0;
	line-height: 2;
	color: #333;
 	padding: 0.5em 1em;
	border-radius: 5px;
	font-weight: var(--fontWeightBold);
	background-color: rgba(255,255,255,0.7);
}

.top-header .header-title-sub span{
	display: inline;
	color: inherit;
	font-size: 100%;
}

@media(max-width: 750px){
	.top-header .header-title-main{
		font-size: calc(90vw / 10);
	}
	.top-header .header-title-sub{
		font-size: 112.5%;
		width: 100%;
		line-height: 1.5;
		padding: 1em 0.5em;
	}
	.top-header .header-title-sub span{
		display: block;
	}
}

/* section-about */
.section-about .about-title{
	text-align: center;
	font-size: 225%;
	font-weight: var(--fontWeightBold);
	margin-bottom: 0.75em;
}

.section-about .about-text{
	text-align: center;
	font-size: 150%;
	font-weight: var(--fontWeightBold);
	color: #087323
}

/* section-online */
.section-online .online-bannar{
	
}

.section-online .online-bannar-link,
.section-online .online-bannar-link:hover{
	display: block;
	color: inherit;
	text-decoration: none;
	transition: box-shadow 0.25s;
}

.section-online .online-bannar-link:hover{
	box-shadow: 0 0.25em 1em rgba(0,0,0,0.25);
}

.section-online .online-bannar-inner{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: nowrap;
}

.section-online .online-bannar-image{
	flex-grow: 0;
	flex-shrink: 0;
	width: 40%;
}

.section-online .online-bannar-image-inner{
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 380px;
}

.section-online .online-bannar-image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-online .online-bannar-info{
	display: flex;
	flex-direction: column;
	background-color: rgba(8,115,35,0.05);
	min-width: 0%;
}

.section-online .online-bannar-title{
	flex-grow: 0;
	flex-shrink: 0;
	font-size: 150%;
	margin: 1em 1em;
}

.section-online .online-bannar-text{
	flex-grow: 1;
	flex-shrink: 0;
	margin: 0em 1.5em 1.5em;
}

.section-online .online-bannar-arrow{
	flex-grow: 0;
	flex-shrink: 0;
	margin: 0;
	display: flex;
	justify-content: flex-end;
}

.section-online .online-bannar-arrow-item{
	padding: 0.5em 2em;
	color: #FFF;
	background-color: #087323;
	border: 2px solid #087323;
	margin: 0;
	font-weight: var(--fontWeightBold);
	transition: all 0.25s;
}

.section-online .online-bannar-link:hover .online-bannar-arrow-item{
	color: #087323;
	background-color: #FFF;
}

@media(max-width: 750px){
	.section-online .online-bannar-inner{
		flex-direction: column;
	}
	
	.section-online .online-bannar-image{
		width: 100%;
	}
	
	.section-online .online-bannar-image-inner{
		height: 0;
		padding-top: calc(100% / 5 * 3);
		min-height: 0%;
	}
}


/* section-link */
.section-link .link-tiles{
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

.section-link .link-tiles-item{
	width: calc(100% / 2 - 2em);
}

.section-link .link-tiles-link{
	display: block;
	transition: box-shadow 0.25s;
}

.section-link .link-tiles-link:hover{
	text-decoration: none;
	box-shadow: 0 0.25em 1em rgba(0,0,0,0.25);
}

.section-link .link-tiles-image{
	width: 100%;
	padding-top: calc(100% / 5 * 3);
	position: relative;
}

.section-link .link-tiles-image img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-link .link-tiles-title{
	padding: 0.5em 1em;
	text-align: center;
	color: #FFF;
	background-color: #087323;
	border: 2px solid #087323;
	font-weight: var(--fontWeightBold);
	transition: all 0.25s;
}

.section-link .link-tiles-link:hover .link-tiles-title{
	background-color: #FFF;
	color: #087323;
}

@media(max-width: 750px){
	.section-link .link-tiles{
		flex-direction: column;
	}
	
	.section-link .link-tiles-item{
		width: 100%;
		margin-bottom: 2em;
	}
}
