@charset "UTF-8";
/* CSS Document */

/*--------------------------------------------------
　共通
--------------------------------------------------*/
div,header,main,footer {
	display: block;
	box-sizing: border-box;
}

/*--------------------------------------------------*/



/*--------------------------------------------------
　フレックス
--------------------------------------------------*/
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
}
.flex_jc-c {justify-content: center;}
.flex_jc-sb {justify-content: space-between;}
/*--------------------------------------------------*/



/*--------------------------------------------------
　header
--------------------------------------------------*/
header {}
header a {color: #595857;}
header a:hover {color: #a86965;}
#header_flex {
	width: 96%;
	margin: 0 auto;
	padding: 16px 0;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	align-items: center;
}
#h_logo {margin-right: auto;}

@media only screen and (min-width:737px) and (max-width:1024px) {/*タブレット*/
	#header_flex {
		width: 90%;
		justify-content: center;
		flex-wrap: wrap;
	}
	#h_logo {
		margin-right: 0;
		text-align: center;
		width: 72%;
	}
}

@media screen and (max-width:736px) {/*スマートフォン*/
	#header_flex {
		width: 90%;
		display: block;
		text-align: center;
	}
}



/*-------------------------menu*/
#g_menu ul,
#h_sns ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	line-height: 1.5;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	flex-wrap: wrap;
}
.slicknav_menu {display: none;}

#g_menu {margin: 0 24px;}

#g_menu li,
#h_sns li {margin-right: 16px;}

#g_menu li:last-child,
#h_sns li:last-child {margin-right: 0;}



#h_sns {}

@media only screen and (min-width:737px) and (max-width:1024px) {/*タブレット*/
	#g_menu {margin: 0 24px 0 0;}
}

@media screen and (max-width:736px) {/*スマートフォン*/
	#g_menu {display: none;}
	.slicknav_menu {display: block;}
	#h_sns ul {display: none;}
}



#h_sns_pc {display: none;}
@media screen and (max-width:736px) {/*スマートフォン*/
	#h_sns_pc {
		margin: 8px auto;
		font-size: 1.5rem;
		line-height: 1;
		font-family: YuGothic,'Yu Gothic','ＭＳ ゴシック','ＭＳ Ｐゴシック','MS PGothic','Osaka','ヒラギノ角ゴシック','Hiragino Sans','Arial',sans-serif;
		font-weight: 700;
		display: -webkit-box;
		display: -moz-box;
		display: -webkit-flexbox;
		display: -moz-flexbox;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: -moz-flex;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#h_sns_pc a {
		padding: 8px 24px;
		box-sizing: border-box;
		background: #e5e2c4;
		color: #7d7d7d;
		border-radius: 24px;
	}
	#h_sns_pc a:hover {background: #ccc;}
}
/*-------------------------*/

/*--------------------------------------------------*/



/*--------------------------------------------------
　main
--------------------------------------------------*/
main {}
/*--------------------------------------------------*/



/*--------------------------------------------------
　footer
--------------------------------------------------*/
footer {
	background: #e5e2c4;
	line-height: 1.5;
}
footer a {color: #a3a3a2;}
footer a:hover {color: #595857;}

#footer_flex {
	width: 96%;
	margin: 0 auto;
	padding: 16px 0;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	justify-content: space-between;
}

#f_company,
#f_company2 {
	font-family: YuGothic,'Yu Gothic','ＭＳ ゴシック','ＭＳ Ｐゴシック','MS PGothic','Osaka','ヒラギノ角ゴシック','Hiragino Sans','Arial',sans-serif;
}
#f_company hr {
	border: none;
	margin: 16px auto;
}
#f_company2 {
	margin-left: 32px;
	margin-right: auto;
}

.copy {
	width: 100%;
	text-align: center;
	padding: 0 0 16px;
	font-size: .8rem;
}

#f_menu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	flex-wrap: wrap;
}
#f_menu li {margin-right: 16px;}
#f_menu li:last-child {margin-right: 0;}
#f_menu li::before {
	content: "◇";
	margin-right: 4px;
	color: #a3a3a2;
}

@media only screen and (min-width:737px) and (max-width:1024px) {/*タブレット*/
	#footer_flex {
		width: 96%;
		flex-wrap: wrap;
	}
	#f_company,
	#f_company2 {
		width: 50%;
		margin: 0 auto 16px;
	}
	#f_menu {width: 100%;}
	#f_menu ul {}
}

@media screen and (max-width:736px) {/*スマートフォン*/
	#footer_flex {
		display: block;
		padding: 16px 0 0;
		width: 100%;
		text-align: center;
	}
	
	#f_company,
	#f_company2 {
		margin: 0 auto 16px;
		width: 100%;
	}
	
	#f_menu ul {
		display: block;
		width: 100%;
	}
	#f_menu li {
		margin-right: 0;
		display: block;
		padding: 8px;
		box-sizing: border-box;
		border-bottom: solid 1px #fff;
	}
	#f_menu li:hover {background: #b3ada0;}
	#f_menu li:first-child {border-top: solid 1px #fff;}
	#f_menu li:last-child {border-bottom: none;}
	#f_menu li::before {
		content: "";
		margin-right: 0;
	}
}


/*--------------------------------------------------*/





/*--------------------------------------------------
　index
--------------------------------------------------*/
#index_image {
	width: 100%;
	height: 0;
	background: url("../image/index_image.jpg") no-repeat center;
	background-size: 100% auto;
	padding-top: 47%;
	margin: 0;
}

.index_box {
	margin: 80px auto;
	text-align: center;
}
.index_box h3 {
	font-size: 2rem;
	line-height: 1.3;
	margin-bottom: 16px;
}

@media only screen and (min-width:737px) and (max-width:1024px) {/*タブレット*/
}

@media screen and (max-width:736px) {/*スマートフォン*/
	.index_box {width: 90%;}
	.index_box br {display: none;}
}



.index_link {
	margin: 32px auto;
	text-align: center;
}
.index_link a {
	padding: 16px 32px;
	box-sizing: border-box;
	border: solid 1px #595857;
	color: #595857;
	line-height: 1;
}
.index_link a:hover {
	border: solid 1px #2b2b2b;
	color: #2b2b2b;
	background: #f3f3f2;
}



/*-------------------------スライド*/
.sliderwrap {overflow: hidden;}
ul.slider {
	position: relative;
	overflow: visible !important;
}
ul.slider li {
	width: 25vw!important;
	height: auto;
}



/*-------------------------企画力・経験力・行動力*/
.index_imglist ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	line-height: 1.3;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	justify-content: center;
}
.index_imglist li {
	display: block;
	width: 100%;
	height: 480px;
	padding-top: 200px;
	text-align: center;
	line-height: 1.3;
}
.index_imglist img {margin-top: 8px;}
@media screen and (max-width:736px) {/*スマートフォン*/
	.index_imglist ul {display: block;}
	.index_imglist li {
		height: 240px;
		padding-top: 80px;
	}
}

.index_imglist li:hover {opacity: .8;}
.index_imglist li span {
	display: block;
	font-size: 2.5rem;
}
.index_imglist li:nth-child(1) {
	background: url("../image/planning.png")no-repeat center;
	background-size: cover;
}
.index_imglist li:first-child a {color: #595857!important;}
.index_imglist li a {color: #fff!important;}
.index_imglist li a:hover {color: #f3f3f2;}

.index_imglist li:nth-child(2) {
	background: url("../image/experienced.png")no-repeat center;
	background-size: cover;
}

.index_imglist li:nth-child(3) {
	background: url("../image/advantage.png")no-repeat center;
	background-size: cover;
}



/*-------------------------アクセス*/
#index_access {
	margin: 80px auto;
	text-align: center;
	display: flex;
	flex-wrap: wrap;
}
#index_access h3 {width: 100%;}
#index_access div {width: 50%;}
.map {
	width: 100%!important;
	margin:8px 0;
	position: relative;
	padding-bottom: 50%;
	padding-top: 40px;
	height: 0;
	overflow: hidden;
	}
.map iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	}

@media only screen and (min-width:521px) and (max-width:980px) {/*タブレット*/
	.map {padding-bottom: 64%;}
}

@media screen and (max-width:520px) {/*スマートフォン*/
	#index_access {margin: 0 auto;}
	#index_access div {
		width: 100%;
		margin-bottom: 40px;
	}
	.map {
		padding-bottom: 72%;
		margin:8px 0!important;
	}
}

/*--------------------------------------------------*/


/*-------------------------*/