@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%;
}

.serif { font-family: 'Noto Serif JP', serif; }


/* siteCommonStyle
--------------------------------------------------*/
/* selection */

/* a */
a {
	color: #000;
	text-decoration: none;
	transition: 0.3s;
	-webkit-transition: 0.3s;
}
a:hover {
	opacity: 0.6;
	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: #000;
	font-family: 'Noto Sans Japanese', 'メイリオ', 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: 1260px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0;
	padding-left: 0;
}
.inWrap {
	position: relative;
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
@media only screen and (max-width:768px) {
	#wrapper {
		font-size: 16px;
		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 {
	height: 75px;
	padding: 0;
	width: 100%;
	float: left;
	background: #FFF;
	z-index: 50;
	position: fixed;
	top: 0;
	background: rgb(255,255,255,0.9);
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
#siteTitle {
	padding: 15px 0 0 15px;
	float: left;
}
#siteTitle img {
	height: 40px;
}

@media only screen and (max-width:768px) {
	#header {
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
		top: 0;
		left: 0;
		width: 100%;
		padding: 0;
		border: 0;
		position: fixed;
		max-height: 100vh;
		height: auto;
		overflow-y: scroll;
		overflow-x: hidden;
		background: none;
		box-shadow: none;
	}
	#header .navArea {
		width: 100%;
		padding-top: 0;
	}
	#header .wrap {
		padding: 0;
	}
	#siteTitle {
		width: calc(100% - 60px);
		padding: 10px 0 0 10px;
		text-align: left;
		height: 60px;
		box-sizing: border-box;
	}
	#siteTitle img { display: none; }

	#spMenu {
		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;
		background: #CC3300;
		z-index: 100;
	}
	#spMenu span {
		display: block;
	}
	#spMenu:before,
	#spMenu:after,
	#spMenu .cbdr {
		position: absolute;
		top: 28px;
		left: 15px;
		display: block;
		content: '';
		width: 30px;
		height: 2px;
		background-color: #FFF;
		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;
	}
}

/* navArea
--------------------------------------------------*/
.navArea {
	float: right;
}
.navArea ul {
}
.navArea ul:after {
	display: block;
	clear: both;
	height: 0;
	content: '';
}
.navArea li {
	line-height: 75px;
	float: left;
	font-size: 15px;
	position: relative;
}

.navArea li a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 0 15px;
}

.navArea li.navTel {
	padding: 0 0 0 15px;
}
.navArea li.navTel a {
	background: #CC3300;
	color: #FFF;
	line-height: 75px;
	text-align: center;
	padding: 0 30px;
}
.navArea input {
	display: none;
}
.navArea label {
	display: none;
}
@media only screen and (max-width:1280px) {
.navArea li {
	font-size: 14px;
}

.navArea li a {
	padding: 0 5px;
}

.navArea li.navTel {
	padding: 0 0 0 5px;
}
.navArea li.navTel a {
	padding: 0 10px;
}

}
@media only screen and (min-width:769px) {
	.navArea ul.menu__second-level {
		visibility: hidden;
		opacity: 0;
		z-index: 5;
	}
	.navArea .menu__second-level li {
		line-height: 20px;
		float: none;
		padding: 0;
		border-bottom: 1px solid #CCC;
	}
	.navArea .menu__second-level li a {
		padding: 10px 15px;
		white-space: nowrap;
	}
	.navArea .menu__second-level li a:hover {
		background: #f92800;
		color: #FFF;
	}
	.navArea .menu li ul.menu__second-level {
		position: absolute;
		top: 75px;
		min-width: 100%;
		background: rgba(255, 255, 255, 0.9);
		transition: all .3s ease;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}
	.navArea .menu li:hover ul.menu__second-level {
		top: 60px;
		visibility: visible;
		opacity: 1;
	}
}
@media only screen and (max-width:768px) {
	.navArea {
		position: relative;
		height: auto;
		z-index: 10;
		display: none;
		padding-top: 0;
		margin-top: -60px !important;
		background: rgb(255,255,255,0.9);
	}
	.navArea:before {
		position: absolute;
		top: 0;
		left: 50%;
		display: block;
		content: '';
		width: 1px;
		height: 100%;
		background: #efefef;
	}
	.navArea ul {
		width: 100%;
		z-index: 10;
		border-top: #EDEDED solid 1px;
	}
	.navArea li {
		margin: 0 !important;
		width: 100% !important;
		text-align: center;
		padding: 0 !important;
	}
	.navArea li.logo {
		height: 60px;
		padding: 10px !important;
		box-sizing: border-box;
		border-bottom: #EDEDED solid 1px; }
	.navArea li.logo img {
		display: block;
		height: 40px !important;
	}
	.navArea li.navTel ,
	.navArea li.navAccess {
		width: 50% !important;
	}

	.navArea li a {
		padding: 0;
		border-bottom: #EDEDED solid 1px;
		line-height: 45px;
		font-weight: 700;
		background: #FAFAFA;
		color: #000;
	}
	.navArea li.logo a {
		border: none;
		line-height: 40px;
		background: none;
		display: inline-block;
		float: left;
	}
	.navArea li.navTel a {
		border-right: #EDEDED solid 1px;
		line-height: 45px;
		font-weight: 700;
		background: #FAFAFA;
		color: #000;
	}
	.navArea .menu {
		margin: 0;
		padding: 0;
	}
	.navArea input {
		display: none;
	}
	.navArea label {
		display: block;
		background: #FAFAFA;
		color: #000;
		padding: 0;
		line-height: 45px;
		height: 45px;
		font-weight: 700;
	}
	.navArea label:hover {
		background: #FC937F;
		color: #FFF;
	}
	.navArea .menu__second-level {
		transition: 0.3s;
		height: 0;
		overflow: hidden;
		background: #FEE9E5 !important;
		padding: 0;
		box-sizing: border-box;
	}
	.navArea .menu__second-level li a {
		height: 45px;
		line-height: 45px;
		padding: 0;
		box-sizing: border-box;
		font-weight: normal !important;
		background: #FEE9E5 !important;
		border-bottom: #FFF solid 1px;
	}
	.navArea input:checked + .menu__second-level {
		padding: 0;
		box-sizing: border-box;
	}
	.nav01 input:checked + .menu__second-level {
		height: 315px;
	}
	.nav02 input:checked + .menu__second-level {
		height: 360px;
	}
	.nav03 input:checked + .menu__second-level {
		height: 270px;
	}
	.nav06 input:checked + .menu__second-level {
		height: 270px;
	}
}

/* footer
--------------------------------------------------*/
#footer {
	width: 100%;
	margin-top: 80px;
	float: left;
}
.footerNavi {
	width: 100%;
	float: left;
	border-top: solid 1px #D6D6D6;
	padding: 30px 0;
}
.footerNavi li {
	float: left;
	font-size: 16px;
	margin-right: 40px;
	font-weight: bold;
}
.footerNavi li:last-child {
	margin-right: 0;
}
.footerNavi li li {
	float: none;
	font-size: 14px;
	font-weight: normal;
	line-height: 30px;
}
.footerNavi li b {
	font-size: 16px;
	margin-top: 15px;
	display: block;
}
.footerNavi li.fb {
	width: 340px;
	float: right;
}
.footerInfo {
	width: 100%;
	float: left;
	border-top: solid 1px #D6D6D6;
	padding: 15px 0;
}
.footerInfo .logo {
	float: left;
	margin: 0;
}
.footerInfo .logo img {
	width: 260px;
}
.footerInfo .contact {
	float: left;
	margin: 0 0 0 30px;
	line-height: 1.5em;
}
.footerInfo .navi li {
	float: right;
	margin: 5px 0 0 30px;
}
.footerCopyright {
	width: 100%;
	float: left;
	font-size: 14px;
	text-align: center;
	border-top: solid 1px #D6D6D6;
	padding: 15px;
	box-sizing: border-box;
}
@media only screen and (max-width:768px) {
#footer {
	margin-top: 30px;
}

.footerInfo {
	text-align: center;
}
.footerInfo .logo {
	float: none;
	margin: 0;
}
.footerInfo .contact {
	float: none;
	margin: 15px 0 0;
	font-size: 14px;
	line-height: 1.5em;
}
.footerInfo .navi li {
	float: none;
	display: inline-block;
	margin: 15px 15px 0;
	font-size: 14px;
}
.footerNavi li.fb {
	float: none;
	width: 100%;
	padding: 0 15px;
	height: 300px;
	box-sizing: border-box;
}

.footerCopyright {
	font-size: 10px;
}
}
