/*---------------------------------
	body start
---------------------------------*/
body{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	color:#516f86;
}

body > *{
	flex-grow: 0;
	flex-shrink: 0;
}

body > main{
	flex-grow: 1;
	background-color: #FAFCFF;
}

/*---------------------------------
	body end
---------------------------------*/

/*---------------------------------
	ヘッダー start
---------------------------------*/
.header{
	background-image: url("../../images/common/header/bg.png");
	background-size: contain;
	background-position: bottom;
	background-repeat: repeat-x;
	border-top: 5px solid #30C3C7;
}

.headerInner{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media(max-width: 750px){
	.headerInner{
		justify-content: flex-start;
	}
}

.headerLogo{
	font-size: 100%;
	width: 500px;
	height: 175px;
	overflow: hidden;
	max-width: 100%;
	margin: 0;
	display: flex;
	align-items: center;
}

@media(max-width: 750px){
	.headerLogo{
		width: 25em;
		height: calc(9em - 5px);
	}
}

@media(max-width: 460px){
	.headerLogo{
		width: 15em;
		height: calc(4.5em - 5px);
	}
}

.headerLogo-image{
	width: 100%;
}

/*---------------------------------
	ヘッダー end
---------------------------------*/

/*---------------------------------
	ナビゲーション start
---------------------------------*/
.nav{
	background-color: #edf7f5;
}

@media(max-width: 750px){
	.nav{
		display: none;
	}
}

.navInner{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0.75em 0 1em;
}

.navList{
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
}

.navList-item{
	flex-grow: 1;
	flex-shrink: 1;
	width: calc(100% / 7);
	font-size: 120%;
	border-left: 1px dotted rgba(0,0,0,0.5);
}

.navList-item:last-of-type{
	border-right: 1px dotted rgba(0,0,0,0.5);
}

.navList-link{
	display: block;
}

.navList-link,
.navList-link:hover{
	color: inherit;
	text-decoration: none;
}

.navList-icon{
	text-align: center;
	font-size: 200%;
	line-height: 100%;
	margin: 0;
}

.navList-icon:before{
	font-family: 'LigatureSymbols' !important;
	-webkit-text-rendering: optimizeLegibility;
	-moz-text-rendering: optimizeLegibility;
	-ms-text-rendering: optimizeLegibility;
	-o-text-rendering: optimizeLegibility;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-ms-font-smoothing: antialiased;
	-o-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-webkit-font-feature-settings: "liga" 1, "dlig" 1;
	-moz-font-feature-settings: "liga=1, dlig=1";
	-ms-font-feature-settings: "liga" 1, "dlig" 1;
	-o-font-feature-settings: "liga" 1, "dlig" 1;
	font-feature-settings: "liga" 1, "dlig" 1;
}

.navList-item--top .navList-icon:before{
	content: "home";
	color: #39a869;
}

.navList-item--about .navList-icon:before{
	content: "smile";
	color: #e8ac51;
}

.navList-item--features .navList-icon:before{
	content: "heart";
	color: #dd6673;
}

.navList-item--event .navList-icon:before{
	content: "calendar";
	color: #00aee0;
}

.navList-item--guide .navList-icon:before{
	content: "human";
	color: #de6641;
}

.navList-item--recruit .navList-icon:before{
	content: "building";
	color: #6ed415;
}

.navList-item--contact .navList-icon:before{
	content: "phone";
	color: #4784bf;
}

.navList-item--news .navList-icon:before{
	content: "bell";
	color: #f2e55c;
}

.navList-text{
	text-align: center;
	margin: 0;
	transition: color 0.25s;
}

.navList-link:hover .navList-text{
	color: #30C3C7;
}

.navList-item--active .navList-text{
	color: #30C3C7;
}

/*---------------------------------
	ナビゲーション end
---------------------------------*/

/*---------------------------------
	フッター start
---------------------------------*/
.footerNav{
	background-color:#30C3C7;
	color: #FFF;
	font-size: 115%;
	padding: 0.5em 0;
}

.footerNavInner{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.footerNavList{
	list-style: none;
	margin: 0;
	padding: 0.5em 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

.footerNavList-item{
	margin: 0.25em 0.5em;
}

.footerNavList-link,
.footerNavList-link:hover{
	color: inherit;
}

.footerNavList-link:hover{
	text-decoration: underline;
}

.footerNavList-text{
	margin: 0;
}

.footerInfo{
	background-color: #fafcff;
}

.footerInfoInner{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: nowrap;
}

@media(max-width: 750px){
	.footerInfoInner{
		flex-direction: column;
	}
}

.footerInfoLogoLayout{
	width: 100%;
	max-width: 10em;
	margin-right: 3em;
}

@media(max-width: 750px){
	.footerInfoLogoLayout{
		max-width: 20em;
		margin: 0 0 1em;
	}
}

.footerInfoLogo{
	width: 100%;
}

.footerInfoLogo-image{
	width: 100%;
}
.footerInfoDetailLayout {
    max-width: 25em;
    width: 100%;
    margin: 1em;
}
.footerInfoDetail{
	font-size: 115%;
}
.footerInfoGmapLayout {
    width: 100%;
    max-width: 20em;
}
.footerInfoGmap {
    position: relative;
    padding-top: calc(100% / 4 * 3);
}

.footerInfoGmap-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.footerCopy{
	background-color:#30C3C7;
	color: #FFF;
	font-size: 110%;
	text-align: center;
	margin: 0;
	padding: 0.5em;
}
.footericon{
	max-width:160px;
}
/*---------------------------------
	フッター end
---------------------------------*/

/*---------------------------------
	サブページタイトル start
---------------------------------*/
.subpageTitle{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 225%;
	min-height: 5em;
	padding: 1em;
	color: #000;
	text-align: center;
	background-image: url("../../images/common/subpageTitle/bg.jpg");
	background-size: cover;
	background-position: center;
}

.subpageTitle:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.5);
	z-index: 50;
}

.subpageTitle-text{
	position: relative;
	width: 90%;
	max-width: 1200px;
	margin: 0;
	z-index: 55;
}


/*---------------------------------
	サブページタイトル end
---------------------------------*/

/*---------------------------------
	section start
---------------------------------*/
.section{
	position: relative;
	padding: 3em 0 6em;
	overflow: hidden;
}

@media(max-width: 750px){
	.section{
		padding: 2em 0 2em;
	}
}

.sectionInner{
	position: relative;
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	z-index: 20;
}

.section--bgImage{
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

@media(max-width: 750px){
	_::-webkit-full-page-media, _:future, :root .section--bgImage{
		background: none !important;
	}
}

.section--bgImage:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.75);
	z-index: 10;
}

@media(max-width: 750px){
	_::-webkit-full-page-media, _:future, :root .section--bgImage:before{
		content: none;
	}
}

.section--bgDot{
	background-color: #fff;
	background-image:
		radial-gradient(rgba(34,121,242,0.075) 20%, transparent 20%),
		radial-gradient(rgba(34,121,242,0.075) 20%, transparent 20%);
	background-size: 16px 16px;
	background-position: 0 0, 8px 8px;
}

/*---------------------------------
	section end
---------------------------------*/
.instagramicon {
    width: 14.5em;
    transform: translate(20%,30%);
}
@media(max-width:750px){
	.instagramicon {
	   display:none;
	}
}