@charset "utf-8";
/**
 * base.css
 */

/* import
--------------------------------------------------*/
@import "init.css";


/* html, body
--------------------------------------------------*/
body {
	background: #FFF;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}


/* siteCommonStyle
--------------------------------------------------*/
/* selection */
::-moz-selection {}
::selection {}

/* a */
a {
	color: #0AA1E8;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover {
	opacity: 0.7;
	text-decoration: none;
}

/* cap */
.caption,
.cap {
	color: #999999;
	font-size: 83.4%;
}
.cap {
	padding-top: 5px;
}

/* formText */
.formText {
	padding: 3px 2px;
	border: #ccc solid 1px;
}

@media only screen and (min-width:769px) {
	.sp {
		display: none !important;
	}
}
@media only screen and (max-width:768px) {
	.pc {
		display: none !important;
	}
}

.inbl {
	display: inline-block;
}

/* layout
--------------------------------------------------*/
/* wrapper */
#wrapper {
	position: relative;
	color: #333;
	font-family: 'Noto Sans JP', 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	line-height: 2;
	text-align: left;
}
#wrapper img {
	max-width: 100%;
	height: auto;
}
#wrapper:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 20px;
	background-size: auto 100%;
}
.wrap {
	position: relative;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0;
	padding-left: 0;
}
.inWrap {
	position: relative;
	max-width: 1160px;
	margin-right: auto;
	margin-left: auto;
}
@media only screen and (max-width:768px) {
	#wrapper {
		font-size: 14px;
		border: none;
	}
	#wrapper:after {
		height: 10px;
	}
}

/* container
--------------------------------------------------*/
#container {
	margin-right: auto;
	margin-left: auto;
}
@media only screen and (max-width:768px) {
	#container {
		padding-top: 60px;
	}
}


/* header
--------------------------------------------------*/
#header {
	padding: 10px 0 0;
	background: #FFF;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
		z-index: 50;
		position: relative;
		float: left;
		width: 100%;
}
#siteTitle {
	padding: 20px 0 30px;
	float: left;
	width: 600px;
}
#siteTitle a {
	display: block;
}
#siteTitle a img {
    float: left;
    padding: 0 10px 0 0;
}
#siteTitle a b {
    font-size: 30px;
font-weight: 800;
    display: block;
    color: #000;
    white-space: nowrap;
    float: left;
    line-height: 30px;
}
#siteTitle a span {
    font-size: 12px;
    display: block;
    float: left;
    line-height: 15px;
    color: #646464;
}
#hdtCntact {
	float: right;
}
#hdtCntact li {
	float: left;
	padding: 25px 0 0 20px ;
	font-size: 14px;
	font-weight: bold;
	line-height: 35px;
}
#hdtCntact li a {
	color: #000;
}
#hdtCntact li.inquiry a {
	background: #0075C2;
	color: #FFF;
	display: block;
	width: 160px;
	text-align: center;
}
#header .navArea {
	padding-top: 0;
	background: #fff;
	width: 100%;
	float: left;
}
@media only screen and (max-width:768px) {
	#header {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		padding: 0;
		border: 0;
		position: fixed;
	}
	#header .navArea {
		position: absolute;
		top: 60px;
	}
	#header .wrap {
		padding: 0;
	}
	#siteTitle {
		width: calc(100% - 60px);
		padding: 0;
		text-align: left;
		box-sizing: border-box;
	}

	#siteTitle a img {
		width: 40px;
		padding: 10px 5px 5px;
	}
	#siteTitle a b {
		font-size: 16px;
		line-height: 20px;
		letter-spacing: -1px;
		padding: 10px 0 0;
	}
	#siteTitle a span {
		font-size: 10px;
		padding: 0 5px;
		clear: both;
	}
	#spMenu {
		background: #EDEFF1;
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		padding-top: 0;
		box-sizing: border-box;
		font-size: 10px;
		color: #000;
		font-weight: 500;
		line-height: 1;
		text-align: center;
		cursor: pointer;
	}
	#spMenu span {
		display: block;
	}
	#spMenu:before,
	#spMenu:after,
	#spMenu .cbdr {
		position: absolute;
		top: 28px;
		left: 15px;
		display: block;
		content: '';
		width: 30px;
		height: 3px;
		background-color: #3E2625;
		transition: 0.3s;
		-webkit-transition: 0.3s;
	}
	#spMenu:before {
		margin-top: -10px;
	}
	#spMenu:after {
		margin-top: 10px;
	}
	#spMenu.on .cbdr {
		opacity: 0;
	}
	#spMenu.on:before {
		margin-top: 0;
		transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
	}
	#spMenu.on:after {
		margin-top: 0;
		transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
	}
	#spMenu .txt02 {
		display: none;
	}
	#spMenu.on .txt {
		display: none;
	}
	#spMenu.on .txt02 {
		display: block;
	}
}
@media only screen and (max-width:320px) {
	#siteTitle a img {
		width: 40px;
		padding: 10px 4px 4px;
	}
	#siteTitle a b {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: -2px;
		padding: 10px 0 0;
	}
	#siteTitle a span {
		font-size: 10px;
		line-height: 12px;
		padding: 0 4px;
		clear: both;
	}
}


/* gNav
--------------------------------------------------*/
#gNav span {
	display: none;
}
@media only screen and (max-width:768px) {
	#gNav {
		display: none;
		margin: 0;
		padding-top: 0;
		background-color: #fff;
	}
	#gNav ul {
		border-top: #efefef solid 1px;
	}
	#gNav:before {
		display: none;
	}
	#gNav img {

	}
	
	#gNav a {
		font-size: 14px;
		line-height: 1;
		font-weight: normal;
		background-color: #FFF;
		color: #000;
	}
	#gNav span {
		display: block;
	}
	#gNav li:nth-child(2n+1) a {
		border-right: #D6D6D6 solid 1px;
	}
	
	#gNav .navLogin {
		width: 100% !important;
		padding: 10px 0;
		box-sizing: border-box;
		border-bottom: #D6D6D6 solid 1px;
	}
	#gNav .navLogin a {
		width: 260px;
		margin: 0 auto;
		padding: 10px 0;
		text-align: center;
		color: #FFF;
		background: #EF7E33;
		border-right: 0 !important;
		border-radius: 5px;
	}
	#gNav .navMypage {
		padding: 10px;
		border-right: #D6D6D6 solid 1px;
		border-bottom: #D6D6D6 solid 1px;


	}

	#gNav .navMypage a {
		width: 100%;
		margin: 0 auto;
		padding: 10px 0;
		text-align: center;
		color: #FFF;
		background: #C5441C;
		border-right: 0 !important;
		border-radius: 5px;
	}
	#gNav .navLogout {
		padding: 10px;
		border-bottom: #D6D6D6 solid 1px;

	}

	#gNav .navLogout a {
		width: 100%;
		margin: 0 auto;
		padding: 10px 0;
		text-align: center;
		color: #FFF;
		background: #F4BA1C;
		border-right: 0 !important;
		border-radius: 5px;
	}




	#gNav .navCont {
		width: 100% !important;
	}
	#gNav .navCont img {
		display: inline-block;
	}
	#gNav .navCont a {
		padding: 10px 0;
		text-align: center;
		background: #FFF;
		border-right: 0 !important;
	}
	#gNav .navTel {
		padding: 0;
		width: 100% !important;
	}
	#gNav .navTel a {
		padding: 10px 0;
		text-align: center;
		background: #FFF;
	}
	#gNav .navTel a img {
		max-width: 100%;
		display: inline-block;
	}
}


/* navArea
--------------------------------------------------*/
.navArea {
    border-top: solid 1px #EDEDED;
}
.navArea ul {
	zoom: 1;
	width: 1200px;
	margin: 0 auto;

}
.navArea ul:after {
	display: block;
	clear: both;
	height: 0;
	content: '';
}
.navArea li {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	float: left;
	font-size: 14px;
	font-weight: bold;
	padding: 0;
    width: 171px;
    border-right: solid 1px #D6D6D6;
    line-height: 55px;
    text-align: center;
box-sizing: border-box;
}
.navArea li:first-child {
	border-left: solid 1px #D6D6D6;
}

.navArea li a {
	display: block;
	text-decoration: none;
	color: #000;
}
.noT .navArea li a:hover {
	opacity: 0.7;
}
@media only screen and (max-width:768px) {
	.navArea:before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		content: '';
		width: 1px;
		height: 100%;
		background: #efefef;
	}
.navArea ul {
	zoom: 1;
	width: 100%;
	margin: 0 auto;

}

	.navArea li {
		margin: 0 !important;
		width: 50% !important;
		text-align: center;
		padding: 0;
	border-right: 0;

	}
.navArea li:first-child {
	border-left: 0;
}

	.navArea li a {
		padding: 20px 0;
		border-bottom: #D6D6D6 solid 1px;
	}
	.navArea li.sp a {

	}

	.navArea li.tel,
	.navArea li.mail {
		width: 100% !important;

}
	.navArea li.tel a {
    display: block;
    border: solid 2px #003694 !important;
background: linear-gradient(to bottom, #FFF, #EDEFF1);
}
	.navArea li.tel p {
	color: #003694;
	font-size: 32px;
    line-height: 40px;
	font-weight: 800;
}
	.navArea li.tel p span {
	font-size: 16px;
    line-height: 20px;
	font-weight: normal;
	color: #201813;
	display: block;
}
	.navArea li.mail a {
	background: #003694 !important;
    color: #FFF !important;
    display: block;
	font-size: 16px !important;
    font-weight: 800 !important;
}

}


/* footer
--------------------------------------------------*/
#footerContact {
	width: 100%;
	clear: both;
	float: left;
	border-top: solid 5px #EDEFF1;
	text-align: center;
	color: #FFF;
}
#footerContact h5 {
padding: 20px 0 0;
    font-size: 24px;
    color: #000;
    font-weight: 800;
	position: relative;
}
#footerContact h5:before {
content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    display: inline-block;
    width: 80px;
    height: 5px;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    background-color: #003694;
}

#footerContact ul {
display: flex;
    padding: 60px 0;
    justify-content: center;
}
#footerContact li {
    width: 500px;
    margin: 0 20px;
	box-sizing: border-box;
position: relative;
}
#footerContact li a {
	height: 200px;
    display: block;
    border: solid 2px #003694;
background: linear-gradient(to bottom, #FFF, #EDEFF1);
}
#footerContact p {
    margin: 30px 0 0;
    line-height: 40px;
}
#footerContact li.tel p {
	color: #003694;
	font-size: 40px;
	font-weight: 800;
}
#footerContact li.tel p span {
	font-size: 16px;
	font-weight: normal;
	color: #201813;
	display: block;
}
#footerContact li.mail p {background: #003694;
    color: #FFF;
    display: inline-block;
    width: 400px;
    line-height: 60px;
    border-radius: 4px;
    font-weight: bold;
}
#footerContact li.mail span {

    display: block;
    color: #000;
    position: absolute;
    bottom: 10px;
    z-index: 100;
    text-align: center;
    width: 100%;
}
#footerContact li.mail span a {
    display: inline;
    border: none;
    background: none;
}


@media only screen and (max-width:768px) {
	#footerContact {
		padding: 0 20px;
		box-sizing: border-box;
	}
	#footerContact p {
		padding: 0;
	}
	#footerContact h5 {
		padding: 0;
		font-size: 20px;
		line-height: 20px;
		margin: 0 0 10px;
	}
	#footerContact ul {
		padding: 0 0 20px;
		display: block;
	}
	#footerContact li {
		display: block;
		padding: 10px 0 0;
		width: 100%;
		margin: 0;
	}
#footerContact li a {
	height: auto;
	padding: 20px;
}
#footerContact p {
    margin: 20px 0 0;
    line-height: 40px;
}
#footerContact li.tel p {
	color: #003694;
	font-size: 32px;
    line-height: 40px;
}
#footerContact li.tel p span {
	font-size: 16px;
    line-height: 20px;
}
#footerContact li.mail p {background: #003694;
    width: 90%;
    line-height: 50px;

}

}

#footer {
	width: 100%;
	clear: both;
	float: left;
	background: #FFF;
	text-align: center;

}
.footerInfo {
	width: 100%;
	clear: both;
	float: left;
	padding: 40px 0;
}
.footerInfo .info {
	padding: 0;
	float: left;
	width: 600px;
}
.footerInfo .info img {
    float: left;
    padding: 0 10px 0 0;
}
.footerInfo .info b {
    font-size: 24px;
font-weight: 800;
    display: block;
    color: #000;
    white-space: nowrap;
    float: left;
    line-height: 25px;
}
.footerInfo .info span {
	font-size: 13px;
    display: block;
    float: left;
    line-height: 15px;
    color: #646464;
	text-align: left;
margin: 5px 0 0;
}




.footerInfo p.inquiry {
	float: right;
	font-size: 14px;
	font-weight: bold;
	line-height: 35px;
}
.footerInfo p.inquiry a {
	background: #0075C2;
	color: #FFF;
	display: block;
	width: 160px;
	text-align: center;
}

.footerNavi {
background: #293337;
	width: 100%;
	clear: both;
	float: left;
	padding: 40px 0;
}
.footerNavi ul {
	float: left;
text-align: left;
    margin: 0 0 0 70px;
	font-size: 14px;
}
.footerNavi li {
}

.footerNavi li a {
	color: #FFF;
}

#footer .copyright {
	clear: both;
	font-size: 12px;
	text-align: center;
	color: #646464;
	width: 100%;
	line-height: 60px;
	border-top: solid 1px #EDEDED;
}
@media only screen and (max-width:768px) {

	.footerInfo {
		width: 100%;
		margin: 0 auto;
		padding: 20px 0;
		background: #EDEFF1;
	text-align: center;

	}
	.footerInfo .info {
		width: 100%;
	}
.footerInfo .info img {
    float: none;
    padding: 0 0 10px;
}
.footerInfo .info b {
    font-size: 16px;
    float: none;
	text-align: center;
}
.footerInfo .info span {
    float: none;
	text-align: center;

}

	.footerInfo p.inquiry {
		display: none;
	}


	.footerInfo .outline {
		float: left;
		padding: 0;
	}

	.footerNavi {
		display: none;
	}
	.footerNavi ul {
		width: 100%;
		display: table;
		border-collapse: collapse;
		border: solid 2px #FAC600;
		box-sizing: border-box;
	}
	.footerNavi li {
		width: 50%;
		box-sizing: border-box;
		height: 50px;
		line-height: 50px;
		display: block;
		float: left;
		border: solid 2px #FAC600;
		background: #FFF;
		text-align: center;
		padding: 0;
		font-size: 16px;
		font-weight: bold;
	}
	.footerNavi li a {
		color: #000;
	}

	.footerInfo {

	}

	#footer .copyright {
		padding: 0;
		font-size: 10px;
	}
}