@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: 1025px){
	article a,
	.btn_more a,
	.btn_txt a,
	.btn_contact 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: #83d63a;
	}*/
}
::selection{
	background: #14abe3;
	color: #fff;
}
::-moz-selection{
	background: #14abe3;
	color: #fff;
}

table{
	border-collapse:collapse;
}


input,
textarea{
	font-family: "Noto Sans JP", "sans-serif";
	font-size: 100%;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
}

body{
	font-family: "Noto Sans JP", "sans-serif";
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	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;
}


@media screen and (max-width: 1024px){
body{
	font-size: 15px;
}
	#container{
		min-width: auto;
		max-width: initial;
        overflow: hidden;
	}
	.sp{
		display: none;
	}
	.wrapper{
		width: 96% !important;
	}
}

/*common
************************************************************************************/
.d-flex {
	display: flex;
}

.justify-content-start {
	justify-content: flex-start;
}

.justify-content-end {
	justify-content: flex-end;
}

.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

.justify-content-around {
	justify-content: space-around;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-nowrap {
	flex-wrap: nowrap;
}

.flex-wrap-reverse {
	flex-wrap: wrap-reverse;
}

.flex-row {
	flex-direction: row;
}

.flex-col {
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.d-pc-flex {
		display: flex;
	flex-wrap: wrap;
	}

	.justify-content-pc-start {
		justify-content: flex-start;
	}

	.justify-content-pc-end {
		justify-content: flex-end;
	}

	.justify-content-pc-center {
		justify-content: center;
	}

	.justify-content-pc-between {
		justify-content: space-between;
	}

	.justify-content-pc-around {
		justify-content: space-around;
	}

	.flex-pc-wrap {
		flex-wrap: wrap;
	}

	.flex-pc-nowrap {
		flex-wrap: nowrap;
	}

	.flex-pc-wrap-reverse {
		flex-wrap: wrap-reverse;
	}

	.flex-pc-row {
		flex-direction: row;
	}

	.flex-pc-col {
		flex-direction: column;
	}
}



/*header
************************************************************************************/
#header{
	width: 100%;
	height: 120px;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-style: normal;
	background: #D8F1FE;
}
#header .sitename{
	width: 400px;
	line-height: 120px;
	font-size: 1.667em;
	text-align: center;
	box-sizing: border-box;
	color: #1657B9;
}
#header .sitename img{
	vertical-align: middle;
	max-width: 100%;
	max-height: 100px;
}

#header .navigation-area{
	width: calc(100% - 400px);
	position: relative;
}

#header .navigation-area .gnav{
	position: absolute;
	top: 4em;
	right: 170px;
	max-width: calc(100% - 170px);

	margin-left: auto;
	display: flex;
	flex-wrap: wrap;
}
#header .navigation-area .gnav li{
	padding: 0 1.5em;
}
#header .navigation-area .gnav li:last-child{
	padding-right: 0;
}
#header .navigation-area a{
	color: #000;
	position: relative;
	display: inline-block;
	-webkit-transition: .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	text-decoration: none;
	padding-bottom: .5em;
}
#header .navigation-area a::after{
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #0C5BCF;
	-webkit-transition: .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
#header .navigation-area a:hover::after{
	width: 100%;
}
#header .navigation-area .subnav{
	position: absolute;
	top: 2em;
	line-height: 1em;
	right: 170px;
	width: auto;
}
#header .navigation-area .contact a{
	background: #F59595;
	display: block;
	height: 120px;
	width: 150px;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	position: absolute;
	right: 0;
	top: 0;
	padding: 0;
	font-weight: bold;
	line-height: 120px;
}

@media screen and (max-width: 1024px){
	#header .navigation-area{
		display: none;
	}
}
@media screen and (max-width: 599px) {
	#header{
		position: relative;
	}
	#header .sitename{
		width: 100%;
		padding-right: 100px;
		box-sizing: border-box;
		text-align: left;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
	}
}


/*breadcrumb
************************************************************************************/
#breadcrumb{
	margin: 0 auto;
	font-size: 0.933em;
	color: #999;
	padding: .7em 0;
	border-bottom: 1px solid #f1f1f1;
}
#breadcrumb ol{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content:flex-start;
	justify-content:flex-start;
	width: 97%;
	margin: auto;
}
#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: #999;
	text-decoration: none;
}
@media screen and (max-width: 1024px){
/*smart phone*/
	#breadcrumb{
		display: none;
	}
}


/*footer
************************************************************************************/
.contact_box{
	margin: 90px auto;
	width: 1140px;
}
.contact_box .inbox{
	width: 48%;
	background: #EBF7FF;
	padding: 30px;
	box-sizing: border-box;
}
.contact_box .inbox .ttl {
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
	margin-bottom: .5em;
}
.contact_box .inbox .phoneno a.tel{
	font-size: 3.125em;
	font-weight: bold;
	text-align: center;
	color: #42C8E3;
	display: block;
}

.btn_contact{
	width: 80%;
	margin: 30px auto;
	text-align: center;
	background: #42C8E3;
	padding: 1em 0;
	font-size: 1.25em;
	font-weight: 600;
	border: 3px solid #89DFF1;
}
.btn_contact a{
	color: #FFF;
	text-decoration: none;
}
.btn_contact a:hover{
	color: #FFF;
}

@media screen and (max-width: 1024px){
	.contact_box{
		width: 100%;
	}
	.btn_contact{
		width: 96%;
	}
	.contact_box .inbox .phoneno a.tel{
		font-size: 2.5em;
	}
}
@media screen and (max-width: 767px){
	.contact_box{
		margin: 50px auto;
		width: 98%;
	}
	.contact_box .inbox{
		width: 100%;
		margin-top: 20px;
	}
	.btn_contact{
		width: 60%;
	}
}
@media screen and (max-width: 599px) {
/*sp*/
	.btn_contact{
		width: 90%;
	}
}



#footer{
	width: 100%;
	background: #D8F1FE;
	border-top: 1px solid #B1B1B1;
	height: 120px;
	line-height: 120px;
	text-align: center;
	font-weight: 600;
	font-size: 0.89em;
}

@media screen and (max-width: 1100px){
	#copyright .wrapper .policy{
		display: none;
	}
	#footer-contactbox{
		padding: 30px 0;
		grid-template-columns: 1fr;
		column-gap: 30px;
		row-gap: 30px;
	}
	#footer-contactbox .map-box{
		height: 250px;
	}
	#footer-contactbox .info-box{
		padding: 0;
		text-align: center;
	}
	#footer-contactbox .info-box h1{
		font-size: 1.6em;
		margin: 0 0 .5em 0;
		padding-bottom: 0;
	}
}

@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;
		display: table;
		table-layout: fixed;
		border-collapse: separate;
	}
	.sp-fixmenu li{
		width: auto;
		display: table-cell;
		height: 80px;
		vertical-align: middle;
	}
	.sp-fixmenu .pageup{
		cursor: pointer;
	}
	.sp-fixmenu li a{
		width: 100%;
		height: auto;
		display: block;
		padding: 10px;
		text-align: center;
		font-size: .9em;
		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 li span{
        display: block;
        vertical-align: middle;
        width: 40px;
        height: 40px;
        margin: 0 auto .5em;
    }
    .sp-fixmenu li img{
        max-width: 100%;
        height: auto;
        vertical-align: middle;
    }
	
}
