@charset "utf-8";

@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/NotoSansCJKjp/NotoSansCJKjp-DemiLight.woff2) format('woff2'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-DemiLight.woff) format('woff'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-DemiLight.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 500;
	src: url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.woff2) format('woff2'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.woff) format('woff'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Medium.otf) format('opentype');
}
@font-face {
	font-family: 'Noto Sans JP';
	font-style: normal;
	font-weight: 700;
	src: url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff2) format('woff2'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff) format('woff'),
		 url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.otf) format('opentype');
}

/*-----------------------------------------------
	基本設定
-----------------------------------------------*/
body{
	min-width:1220px;
	margin:0;
	padding:0;
	color:#333;
	font-size:13px;
	font-family:'Noto Sans JP', sans-serif;
	background:#fff;
	-webkit-text-size-adjust:100%;
}
.inner{
	width:1200px;
	margin:0 auto;
}
@media only screen and (max-width:767px){
	.inner{
		width:100%;
	}
}

img{vertical-align:bottom;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
th{
	font-weight:normal;
	text-align:left;
}
a{
	color:#1d3994;
	text-decoration:underline;
}
@media only screen and (max-width:767px){
	body{
		min-width:0;
	}
	img{
		width:100%;
		height:auto;
	}
}

/*rollover*/
.ro a:hover,
a.ro:hover,
a .ro:hover{ filter:alpha(opacity=80);opacity:0.8; }
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.ro a,
a.ro,
a .ro,
.brt a,
a.brt,
a .brt{
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.ro .no_ro a:hover,
.ro a.no_ro:hover{ filter:alpha(opacity=100);opacity:1; }
a:focus{outline:none;}
.spOnly,
.brSp,
.imgSp,
.txtSp{
	display:none;
}
.spOn{
	display:none;
}
@media only screen and (max-width:767px){
	.spNone,
	.brPc,
	.imgPc{
		display:none;
	}
	.spOnly{
		display:block;
	}
	.brSp,
	.imgSp,
	.txtSp{
		display:inline;
	}
	.imgR{
		width:100%;
		height:auto;
	}
}

/*-----------------------------------------------
	header
-----------------------------------------------*/
/* header */
#header {
	background:#A71C4A;
}
#header .headerIn{
	width:1200px;
	height:60px;
	margin:0 auto;
}
#header .headerLogo{
	float:left;
	padding-top:10px;
}
#header .headerImg{
	float:right;
	padding-top:10px;
}
#header .btnEstimate{
	float:right;
	background:#FFCC00;
	width:235px;
	height:60px;
	text-align: center;
	color:#A71C4A;
	font-size:23px;
	font-weight:bold;
	text-decoration:none;
	letter-spacing:1.5px;
	padding-top:15px;
	box-sizing:border-box;
	margin-left: 20px;
	display:block;
}
#header .btnEstimate:hover{ background:#FFE066;}


@media only screen and (max-width:767px){
	#header .headerIn{
		width:93.75%;
		height:45px;
		padding:10px 0;
		box-sizing:border-box;
	}
	#header .headerLogo,
	#header .headerImg{
		padding-top:0;
	}
	#header .headerLogo img{
		width:auto;
		height:25px;
	}
	#header .headerImg img{
		width:auto;
		height:20px;
	}
	#header .btnEstimate{ display:none;}
}

/*-----------------------------------------------
	contents
-----------------------------------------------*/
#container{
	position:relative;
	width:100%;
	overflow:hidden !important;
}
/* jsHide */
.jsHide{
	opacity: 0;
	-webkit-transform: translate(0px, 100px);
	transform: translate(0px, 100px);
	-webkit-transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), -webkit-transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
	transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), -webkit-transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
	transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
	transition: opacity 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00), -webkit-transform 2s cubic-bezier(0.18, 1.00, 0.29, 1.00);
}
.jsHide.jsShow{
	-webkit-transform: none;
	transform: none;
	opacity: 1;
}
@media only screen and (max-width:1024px){
	.jsHide.jsShowSp{
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}
/*-----------------------------------------------
	footer
-----------------------------------------------*/
#footer{
	padding:27px 0;
	background:#E5E5E5;
}
#copy{
	color:#fff;
	font-size:13px;
	color:#A71C4A;
	line-height:130%;
	letter-spacing:1.5px;
	text-align:center;
}
@media only screen and (max-width:767px){
	#footer{
		padding:5% 4.6875%;
	}
	#copy{
		font-size:11px;
		line-height:14px;
		letter-spacing:0;
	}
}
