@charset "utf-8";

*{
    margin: 0px;
	padding: 0px;
}

img{border: 0;}

a {outline: none;}

ul,ol { list-style-type: none;}

A:link{color:#2f3640;text-decoration:none;}
A:visited{color: #2f3640;text-decoration:none;}
A:active{color:#2f3640;text-decoration:none;}
A:hover{color:#2f3640;text-decoration:none;}
@media screen and (min-width: 1024px){
	article a{
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	article a:hover{
		color: var(--color-main, #5bd0db);
	}
}
::selection{
	background: #14abe3;
	color: #fff;
}
::-moz-selection{
	background: #14abe3;
	color: #fff;
}

table{
	border-collapse:collapse;
}


input,
textarea{
	font-family: kozuka-gothic-pro,sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	font-size: 100%;
	font-style: normal;
	font-weight: 400;
}

body{
	font-family: kozuka-gothic-pro,sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	line-height: 1.5;
	overflow-x:hidden;
}

.wrapper{
	margin: 0 auto;
	width: 98%;
	max-width: 1200px;
	text-align:left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#container{
	text-align: left;
}


/* ページスクロールボタン */
#topcontrol{
	z-index: 200;
	right: 10px !important;
	bottom: 70px;
}


#topcontrol span{
	display: none;
}

@media screen and (min-width: 1025px) {
	#topcontrol span{
		display: none;
	}
	.sp{
		display: none;
	}
	tr.sp,
	th.sp,
	td.sp{
		display: none;
	}
}
@media screen and (max-width: 1024px){
body{
	font-size: 14px;
}
	#container{
		min-width: auto;
		max-width: initial;
        overflow: hidden;
	}
	.sp{
		display: none;
	}
	.wrapper{
		width: 94% !important;
	}
}
@media screen and (max-width: 599px) {
	.sp{
		display: block;
	}
	tr.sp,
	th.sp,
	td.sp{
		display: block;
	}
	.pc{
		display: none;
	}
	tr.pc,
	th.pc,
	td.pc{
		display: none;
	}
	#topcontrol img{
		width: 50px !important;
		height: auto !important;
	}
}


/*header
************************************************************************************/
#header{
	width: 98%;
	height: 110px;
	border-bottom: 1px solid #dcdcdc;
	
	position: relative;
}
#header .header_mainwrap{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	
	align-items: center;
	margin: auto;
	
	position: absolute;
	top: 33px;
	left: 0;
	width: 100%;
}
#header .sitename{
	padding-right: 2em;
}
#header .sitename img{
	vertical-align: middle;
}
#header .sitename a{
	color: #000;
	text-decoration: none;
}

#header #gnav{
	margin-left: auto;
}
#header #gnav > ul{
	height: 50px;
	line-height: 50px;
	width: 100%;
	display: table;
}

#header #gnav ul > li {
	display: table-cell;
	vertical-align: middle;
	background: rgb(255, 255, 255);
	position: relative;
	z-index: 100;
}
#header #gnav ul > li ul,
#header #gnav ul > li ul li{
	display: block;
	width: 200px;
	height: auto;
	line-height: 1.5;
}

#header #gnav ul li a {
	display: block;
	color: #000;
	padding: 0 1.5em;
}

#header #gnav ul li:hover {
	background: var(--color-main, #5bd0db);
	-webkit-transition: all .5s;
	transition: all .5s;
}
#header #gnav ul li:hover > a{
	color: #FFF;
}

#header #gnav ul ul.sub-menu{
	position: absolute;
	display: none;
}
#header #gnav ul ul.sub-menu ul.sub-menu{
	display: none;
	position: absolute;
	top: -1px;
	left: 100%;
}
#header #gnav ul.sub-menu a{
	padding: 1em 1.5em;
}
#header #gnav ul.sub-menu li.menu-item-has-children a{
	position: relative;
}
#header #gnav ul.sub-menu li.menu-item-has-children:hover:after,
#header #gnav ul.sub-menu li.menu-item-has-children:after {
	content: '';
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 1em;
	width: 6px;
	height: 6px;
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
#header #gnav ul.sub-menu li.menu-item-has-children:hover:after{
	border-right: 1px solid #FFF;
	border-top: 1px solid #FFF;
}
#header .subc-wrap{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	align-items: center;
	
	position: absolute;
	top: 0px;
	right: 0;
}
#header #sns{
	padding: 0 2em 0 3em;
}
#header #sns li{
	display: inline-block;
	padding: 0 .3em;
}
#header #tel{}
#header #tel p{
	border: 1px solid #000;
	padding: .5em 1em;
}
#header #tel p span{
	margin-right: .3em;
}
#header.fixed{
	position: fixed;
	top: 0;
	left: 0;
	margin: auto;
	z-index: 9999;
	display: block;
	width: 100%;
	background: #FFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	
	align-items: center;
	margin: auto;
}
body.modaal-noscroll #header.fixed{
	z-index: 10;
}
@media screen and (max-width: 1300px){
	#header .header_mainwrap{
		top: 40px;
	}
	#header h1.sitename{
		padding-right: 1em;
		width: auto;
	}
	#header .sitename img{
		width: 230px;
		height: auto;
	}
	#header #gnav ul li a{
		padding: 0 1em;
	}
	#header #sns{
		padding: 0 1em 0 2em;
	}
}
@media screen and (max-width: 1100px){
	#header .header_mainwrap{
		top: 0;
	}
	#header #gnav{
		display: none;
	}
	#header{
		width: 100%;
		height: 90px;
		background: #FFF;
		z-index: 9999;
		display: block;
		position: relative;
		display: block;
	}
	#header .sitename{
		width: 230px;
		height: 90px;
		line-height: 90px;
		left: 10px;
		top: 0;
		position: absolute;
		z-index: 20;
	}
	#header .subc-wrap{
		width: 100%;
		padding: 0 90px 0 250px;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
		left: 0;
		z-index: 10;

		display: -webkit-flex;
		display: flex;
		-webkit-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-justify-content: right;
		justify-content: right;
	}
}
@media screen and (max-width: 599px) {
	#header .subc-wrap{
		display: none;
	}
}

/*breadcrumb
************************************************************************************/
#breadcrumb{
	margin: 1em auto;
	font-size: 0.933em;
	color: #5F5F5F;
}
#breadcrumb ol{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: right;
	justify-content: right;
}
#breadcrumb ol li:after{
	content: "/";
	display: inline-block;
	vertical-align: middle;
	margin: 0 .5em;
	padding: 0;
}
#breadcrumb ol li:last-child:after{
	content: "";
	margin-right: 0;
}
#breadcrumb ol li a{
	color: #5F5F5F;
	text-decoration: none;
}
@media screen and (max-width: 768px){
#breadcrumb{
	margin-bottom: 2.5em;
}
}

/*footer
************************************************************************************/
#footer{
	margin: 50px 0 0;
	padding: 0;
	width: 100%;
	height: auto;
}
#footer a{
	text-decoration: none;
}
#footer .footer_subnav{
	background: #f3f3f3;
	padding: 2em 0;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
#footer .footer_subnav ul{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: right;
	justify-content: right;
}
#footer .footer_subnav ul li{
	padding: 0 2em;
	font-size: 0.8em;
}

#footer .copyright{
	padding: 2em 0;
	font-size: 0.8em;
	margin: auto;
}

/*footer_banner
----------------------------------------------------------------------*/
#footer #footer_banner ul{
	width: 100%;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
#footer #footer_banner ul li{
	display: block;
	-webkit-flex-grow: 1;
	flex-grow: 1;
	width: calc(100% / 3);
	background: #000;
}
#footer #footer_banner ul li .bn-wrap{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 250px;
}
 #footer #footer_banner ul li .bn-wrap img{
	object-fit: cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	opacity: .8;
}
#footer #footer_banner ul li .bn-wrap .txt-box{
	position: absolute;
	z-index: 20;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	padding: 0 8%;
}
#footer #footer_banner ul li .bn-wrap .txt-box .title{
	font-size: 1.4em;
	position: relative;
	padding-bottom: .7em;
	margin-bottom: .7em;
}
#footer #footer_banner ul li .bn-wrap .txt-box .title:after{
	content: "";
	width: 2em;
	height: 1px;
	background: #FFF;
	position: absolute;
	left: 0;
	bottom: 0;
}
#footer #footer_banner ul li .bn-wrap .txt-box .txt{
	font-size: 0.933em;
}
#footer #footer_banner ul li .bn-wrap a .txt-box{
	color: #FFF;
	text-decoration: none;
}
@media screen and (min-width: 1025px) {
	 #footer #footer_banner ul li .bn-wrap img{
		-webkit-transition: all 0.5s ease-in-out;
		-moz-transition: all 0.5s ease-in-out;
		-o-transition: all 0.5s ease-in-out;
		transition: all 0.5s ease-in-out;
	}
	 #footer #footer_banner ul li:hover .bn-wrap img{
		object-fit: cover;
		width: 120%;
		height: 120%;
		opacity: .5;
	}
}
@media screen and (max-width: 768px){
#footer #footer_banner ul li{
	width: 100%;
}
}
@media screen and (min-width: 769px) {
	.sp-fixmenu{
		display: none;
	}
}
@media screen and (max-width: 768px){
	#footer{
		padding-bottom: 80px;
	}
	.sp-fixmenu{
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 80px;
		z-index: 500;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;

		border-top: 1px solid #FFF;
		display: table;
		table-layout: fixed;
		border-collapse: separate;
	}
	.sp-fixmenu .contact,
	.sp-fixmenu .faq,
	.sp-fixmenu .pageup{
		width: auto;
		display: table-cell;
		background-color: rgba( 255, 255, 255, 0.55 );
		height: 80px;
		vertical-align: middle;
	}
	.sp-fixmenu .pageup{
		cursor: pointer;
	}
	.sp-fixmenu .contact a,
	.sp-fixmenu .faq a,
	.sp-fixmenu .pageup span{
		width: 100%;
		height: auto;
		display: block;
		padding: 10px;
		text-align: center;
		font-size: .9em;
		color: #686868;
		text-decoration: none;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		font-weight: normal;
	}
	.sp-fixmenu a:before,
	.sp-fixmenu span:before{
		display: block;
		width: 40px;
		height: 40px;

		font-family: 'Material Icons';
		font-weight: normal;
		font-style: normal;
		font-size: 35px;	/* Preferred icon size */
		line-height: 40px;
		text-transform: none;
		letter-spacing: normal;
		word-wrap: normal;
		white-space: nowrap;
		direction: ltr;
		color: #686868;
		margin: auto;
		/* Support for all WebKit browsers. */
		-webkit-font-smoothing: antialiased;
		/* Support for Safari and Chrome. */
		text-rendering: optimizeLegibility;
		/* Support for Firefox. */
		-moz-osx-font-smoothing: grayscale;
		/* Support for IE. */
		font-feature-settings: 'liga';
	}
	.sp-fixmenu .contact a:before{
		content: "outgoing_mail";
	}
	.sp-fixmenu .faq a:before{
		content: "quiz";
	}
	.sp-fixmenu .pageup span:before{
		content: "arrow_circle_up";
	}
	.sp-fixmenu .pageup{}

}

