@charset "UTF-8";
/* CSS reset */
* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
html,body,div,h1,h2,h3,h4,h5,h6,p,blockquote,pre,address,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset{
	margin: 0;
	padding: 0;
	line-height:2em;
    -webkit-font-smoothing: antialiased;/* Chrome */
    -moz-osx-font-smoothing: grayscale;/* Firefox */
	font-family:'Noto Sans Japanese';
    font-size:14px;
	font-weight:400;
	letter-spacing:1px;
}
body .notosans{
	font-family:'Noto Sans Japanese'; 
}
body .calibri{
	font-family:Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif; 
}
html,body{
	width:100%;
	overflow-x:hidden;
}
table{
	border-collapse: collapse;
	border-spacing: 0;
}
ul, ol{
	list-style: none; /*マーカーを消す*/
}
a{
	text-decoration: none; /*下線を消す*/
	color:#000;
}
img{
	border: 0;
}
img, input{
	vertical-align:bottom;
}

/* CSS reset */
/*clearfix*/
.clearfix:after{
	content:"";
	display: block;
	clear: both;
}
/*transition*/
.transition{
	transition:all ease 0.5s;
	-ms-transition:all ease 0.5s;
	-moz-transition:all ease 0.5s;
	-webkit-transition:all ease 0.5s;
}
/*br*/
.sp_br{
	display: none;
}
@media screen and (min-width:0px) and (max-width:767px){
    
.pc_br{
	display:none;
	}
.sp_br{
	display:block;
	}
}
/*font-weight*/
body .bold{
	font-weight:500;
}
body .thin{
	font-weight:200;
}
/*font style*/
body .italic{
	font-style:italic;
}
/*text-align*/
body .t_left{
    text-align: left;
}
body .t_center{
    text-align: center;
}
body .t_right{
    text-align: right;
}
/*font-size*/
body .t_big{
    font-size: 18px;
}
body .t_small{
    font-size: 12px;
}
@media screen and (min-width:0px) and (max-width:767px){
	body .t_big{
		font-size: 16px;
	}
	body .t_small{
		font-size: 10px;
	}
}
/*small*/
body small{
    font-size: 10px;
}
/*color*/
body .gray{
    color: #565656;
}
body .red{
    color: #ff0000;
}
body .blue{
    color: #009fd9;
}
body .white{
    color: #ffffff;
}
/*text:hover*/
body a.gray:hover,
body a.red:hover,
body a.blue:hover,
body a.white:hover{
 /*text-decoration: underline;*/
}
/*background-repeat*/
.no_repeat{
    background-repeat: no-repeat;
}
.repeat_x{
    background-repeat: repeat-x;
}
.repeat_y{
    background-repeat: repeat-y;
}
.repeat{
    background-repeat: repeat;
}
/*コンテンツ幅*/
.cont_w_1100{
    width: 1100px;
    margin: 0 auto;
}
.cont_w_1000{
    width: 1000px;
    margin: 0 auto;
}
.cont_w_900{
    width: 900px;
    margin: 0 auto;
}
.cont_w_500{
    width: 500px;
    margin: 0 auto;
}
.w_100{
    width: 100%;
}
.w_85{
    width: 85%;
}
.w_80{
    width: 80%;
}
.w_75{
    width: 75%;
}
.w_70{
    width: 70%;
}
.w_69{
    width: 69%;
}
.w_66{
    width: 66%;
}
.w_65{
    width: 65%;
}
.w_60{
    width: 60%;
}
.w_55{
    width: 55%;
}
.w_50{
    width: 50%;
}
.w_49{
    width: 49%;
}
.w_48{
    width: 48%;
}
.w_47{
    width: 47%;
}
.w_45{
    width: 45%;
}
.w_40{
    width: 40%;
}
.w_35{
    width: 35%;
}
.w_33{
    width: 33.3%;
}
.w_30{
    width: 30%;
}
.w_25{
    width: 25%;
}
.w_24{
    width: 24%;
}
.w_23{
    width: 23%;
}
.w_20{
    width: 20%;
}
.w_15{
    width: 15%;
}
@media screen and (min-width:0px) and (max-width:767px){
    .cont_w_1100,
    .cont_w_1000,
    .cont_w_900,
    .cont_w_500,
    .w_100
    .w_85,
    .w_80,
	.w_75,
	.w_70,
	.w_69,
	.w_66,
	.w_65,
	.w_60,
	.w_55,
	.w_50,
	.w_49,
	.w_48,
	.w_47,
	.w_45,
	.w_40,
	.w_35,
    .w_33,
	.w_30,
    .w_25,
    .w_24,
    .w_23,
    .w_20,
	.w_15{
        width: 100%;
    }
}
/*flex 高さを揃えて横並び指定*/
.flex{
	display: flex;
	flex-wrap: wrap; /* 折返し可 */
}
@media screen and (min-width:0px) and (max-width:767px){
	/*flex 解除*/
	.flex{
		display: block;
		flex-wrap: nowrap;
	}
}
/*float*/
.f_l{
    float: left;
}
.f_r{
    float: right;
}
.c_b{
	clear: both;
}
@media screen and (min-width:0px) and (max-width:767px){
    .f_l,
    .f_r{
        float: none;
    }
}
/*title*/
/*eng_title*/
.eng_title{
	font-size: 50px;
	font-weight: 600;
	font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif; 
	color: #009fd9;
	text-align: center;
	margin-bottom: 50px;
}
@media screen and (min-width:0px) and (max-width:767px) {
	/*eng_title*/
	.eng_title{
		font-size: 36px;
		font-weight: 600;
		font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif; 
		color: #009fd9;
		text-align: center;
		margin-bottom: 25px;
	}
}
/*linkBtn*/
.linkBtn{
	display: block;
	width: 300px;
	height: 35px;
	background-color: #009ed8;
	text-align: center;
	padding:3px 0 0;
	border: none;
	border-radius: 5px;
	color: #fff;
	box-shadow: 0 5px 1px #70cae9;
	margin: 50px auto 0;
}
.linkBtn:hover{
	display: block;
	width: 300px;
	height: 33px;
	background-color: #009ed8;
	padding:3px 0 0;
	border: none;
	border-radius: 5px;
	color: #fff;
	box-shadow: 0 4px 1px #70cae9;
	margin: 52px auto 0;
	opacity: 0.9;
}
/*bottom_link_text*/
#bottom_link_text{
	display: block;
	width: 250px;
	text-align: center;
	margin: 50px auto 0;
}
#bottom_link_text:hover{
	text-decoration: underline;
}
@media screen and (min-width:0px) and (max-width:767px){
	#bottom_link_text{
		display: block;
		margin: 25px auto 0;
	}
	#bottom_link_text:hover{
		text-decoration: underline;
	}
}
/*pager*/
#pager{
    margin: 100px auto;
    text-align: center;
}
#pager .pages,
#pager .nextpostslink,
#pager .previouspostslink{
	border: none;
}
#pager .page,
#pager .current{
	padding: 10px 15px;
}
#pager .current{
	border: solid 1px #cccccc;
	background-color: #cccccc;
	color: #fff;
}
@media screen and (min-width:0px) and (max-width:989px) {
    #pager{
        margin: 50px auto;
        text-align: center;
    }
	#pager .pages,
	#pager .nextpostslink,
	#pager .previouspostslink{
		border: none;
		display: inline-block;
	}
	#pager .pages{
		display: block;
	}

	#pager .page,
	#pager .current{
		padding:5px 5px;
	}
	#pager .current{
		border: solid 1px #cccccc;
		background-color: #cccccc;
		color: #fff;
	}
}
/*form#cf7*/
form#cf7{
    width: 100%;
}
form#cf7 p{
	text-align: center;
	margin-bottom: 75px;
}
form#cf7 p.last_text{
	color: #5b6b71;
	margin-bottom: 25px;
}
form#cf7 dl{
    width: 100%;
    margin-bottom: 50px;
}
form#cf7 dl dt{
    padding-top: 20px;
    position: relative;
}
form#cf7 dl dt:before{
	top:27px;
}
form#cf7 span.require{
    color: #ff0000;
    line-height: 1em;
    font-size: 12px;
    padding: 5px; 
}
form#cf7 dl dd input[type="text"]{
    width: 100%;
    border: solid 3px #687f87;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    font-size: 16px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
form#cf7 dl dd input[type="tel"]{
    width: 100%;
    border: solid 3px #687f87;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    font-size: 16px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
form#cf7 dl dd input[type="mail"]{
    width: 100%;
    border: solid 3px #687f87;
    height: 65px;
    line-height: 65px;
    padding: 0 15px;
    font-size: 16px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
form#cf7 dl dd textarea{
    width: 100%;
    height: 350px;
    border: solid 3px #687f87;
    font-size: 16px;
    padding: 15px;
	box-shadow: 0px 0px 5px #cccccc inset;
}
form#cf7 .submit{
    margin: 100px auto 0;
    text-align: center;
}
form#cf7 input[type="submit"]{
    display: block;
    border: none;
    width: 520px;
    height: 130px;
	border-radius: 5px;
	/*background-image:url("../../img/form/bg_submit_btn.png");*/
	background-color: #AAAAAA;
	background-repeat: no-repeat;
	background-position: center;
    text-align: center;
    color: #fff;
    font-size: 20px;
    margin: 0 auto;
    letter-spacing: 0.15em;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
	cursor: pointer;
}
form#cf7 input[type="submit"]:hover{
    opacity: 0.8;
}
@media screen and (min-width:0px) and (max-width:989px) {
    form#cf7{
        width: 100%;
        margin: 30px 0 0;
    }
	form#cf7 p{
		text-align: left;
		margin-bottom: 25px;
	}
	form#cf7 p.last_text{
		color: #5b6b71;
		margin-bottom: 15px;
		text-align: center;
	}
    form#cf7 dl{
        width: 100%;
        margin-bottom: 20px;
    }
    form#cf7 dl dt{
        width: 100%;
        padding-top: 12px;
        margin-bottom: 10px;
        position: relative;
        float: none;
    }
	form#cf7 dl dt:before{
		top:18px;
	}
    form#cf7 span.require{
        color: #ff0000;
        line-height: 1em;
        font-size: 12px;
        padding:5px; 
    }
    form#cf7 dl dd{
        width: 100%;
        float: none;
    }
    form#cf7 dl dd input[type="text"]{
        width: 100%;
		border: solid 3px #687f87;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 14px;
		box-shadow: 0px 0px 5px #cccccc inset;
    }
	form#cf7 dl dd input[type="tel"]{
        width: 100%;
		border: solid 3px #687f87;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 14px;
		box-shadow: 0px 0px 5px #cccccc inset;
	}
	form#cf7 dl dd input[type="mail"]{
        width: 100%;
		border: solid 3px #687f87;
        height: 50px;
        line-height: 50px;
        padding: 0 15px;
        font-size: 14px;
		box-shadow: 0px 0px 5px #cccccc inset;
	}
    form#cf7 dl dd textarea{
        width: 100%;
        height: 250px;
		border: solid 3px #687f87;
        font-size: 14px;
        padding: 10px;
		box-shadow: 0px 0px 5px #cccccc inset;
    }
    form#cf7 .submit{
        margin: 40px auto 0;
        text-align: center;
    }
    form#cf7 input[type="submit"]{
        display: block;
        border: none;
        width: 100%;
        height:0;
		padding-bottom: 30%;
		border-radius: 5px;
		/*background-image:url("../../img/form/bg_submit_btn.png");*/
		background-color: #AAAAAA;
		background-repeat: no-repeat;
		background-position: center;
		background-size: 100% 100%;
		text-align: center;
		line-height: 100px;
		color: #fff;
        font-size: 16px;
        margin: 0 auto;
        letter-spacing: 0.15em;
        transition: all ease 0.3s;
        -moz-transition: all ease 0.3s;
        -webkit-transition: all ease 0.3s;
        -ms-transition: all ease 0.3s;
		cursor: pointer;
    }
    form#cf7 input[type="submit"]:hover{
        opacity: 0.8;
    }
}
/*tool_searchbox*/
#tool_searchbox{
	width: 435px;
	height: 130px;
	padding: 20px;
	background-color: #c7edfa;
	border: solid 1px #fff;
	border-radius: 20px;
	box-shadow: 
		1px 1px 3px #fff,-1px -1px 3px #fff,2px 2px 3px #fff,-2px -2px 3px #fff;
	overflow: hidden;
	position: fixed;
	bottom: 135px;right: 10px;
	z-index: 5;
}
#tool_searchbox h3{
	font-size: 16px;
	color:#009fd9;
	padding-left: 30px;
	background-image:url("../../img/base/icon_search.png");
	background-position: top left;
	margin-bottom: 10px;
}
#tool_searchbox input[type="text"]{
	display: inline-block;
	width: 80%;
	margin-right: 5px;
	font-size: 16px;
	height: 35px;
	padding: 5px 10px;
	border: solid 2px #cccccc;
	border-radius: 5px;
}
#tool_searchbox input[type="submit"]{
	display: inline-block;
	height: 35px;
	width: 15%;
	border-radius: 5px;
	color: #fff;
	background-color:#009fd9;
	font-weight: 600;
	font-size: 14px;
	border: none;
}
@media screen and (min-width:0px) and (max-width:767px){
	/*searchbox*/
	#tool_searchbox{
		width: 98%;
		height: auto;
		padding: 10px;
		background-color: #c7edfa;
		border: solid 1px #fff;
		border-radius: 20px;
		box-shadow: 
			1px 1px 3px #fff,-1px -1px 3px #fff,2px 2px 3px #fff,-2px -2px 3px #fff;
		overflow: hidden;
		position: fixed;
		bottom: 5px;right:1%;
		z-index: 5;
	}
	#tool_searchbox h3{
		font-size: 14px;
		color:#009fd9;
		padding-left:5px;
		background-image:none;
		margin-bottom: 5px;
	}
	#tool_searchbox input[type="text"]{
		display: inline-block;
		width: 80%;
		margin-right: 5px;
		font-size: 16px;
		height: 35px;
		padding: 5px 10px;
		border: solid 2px #cccccc;
		border-radius: 5px;
	}
	#tool_searchbox input[type="submit"]{
		display: inline-block;
		height: 35px;
		width: 15%;
		border-radius: 5px;
		color: #fff;
		background-color:#009fd9;
		font-weight: 600;
		font-size: 14px;
		border: none;
	}
}



