/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');
body {
	background: #FFF;
	color:#4b4949;
}
.sp {
	display:none;
	width:0px;
	height:0px;
}
.pc {
	display:block;
	width:auto;
}
a  {
	color: #4b4949;
	text-decoration:none;
	display:block;
	padding:10px;
}
a:hover  {
	color:#4b4949;
	transition:1s;
}
a[href^="tel:"] {
	pointer-events: none;
	text-decoration:none;
}
a[href^="mailto:"] {
	text-decoration:none;
}
a[href^="mailto:"]:hover{
	text-decoration:none;
	color:#0000FF;
}
.clearfix:after {
  clear: both;
  content: '';
  display: block;
}
h1 {
	margin:20px;
}
/* ■ ヘッダー ■*/
#headerWrapper {
	width:100%;
}
#headerInner {
	max-width:1280px;
	height:120px;
	margin:auto;
}
#headerInner > div.topLogo {
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content: space-between;
}
#headerInner > div.topLogo > a > img.logo {
	max-width:300px;
}
#headerInner > div.topLogo > span > img.tel {
	max-width:600px;
}
#headerInner > div.topLogo > span.headertxt {
	font-size:14px;
	width:100%;
}
/* ■ メインコンテンツ ■*/
#mainContents {
	width:100%;
	margin-top: 50px;
}
#mainContents > div.container {
	max-width:1280px;
	margin:auto;
	padding-top: 50px;
}
#mainContents > div.wideContainer {
	width:100%;
	margin:auto;
}
#mainContents > div.wideContainer > div.container {
	max-width:1280px;
	margin:auto;
	padding-top: 50px;
}
/* ■ グローバルメニュー ■*/
#globalMenu {
	width:100%;
	background-color:#fff;
	padding-top:10px;
	padding-bottom:10px;
}
#globalMenu > ul {
	max-width:1280px;
	margin:auto;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
}
#globalMenu > ul > li {
	width:calc( 100% / 9);
	border-bottom:2px solid #fff;
	text-align:center;
}
#globalMenu > ul > li:hover {
	border-bottom:2px solid #333;
}
/* ■ フッター ■*/
#footerWrap {
	width:100%;
}
#incFooterinner {
	max-width:1280px;
	height:120px;
	margin:auto;
}
#incFooterinner > div.footerLogo > a > img {
	width:100px;
}
/* ■ フッター ■*/
#page_top{
	width: 100%;
	display:block;
	margin:auto;
	height: 90px;
}
#page_top a {
	position: relative;
	display: block;
	margin:auto;
	width: 90px;
	height: 90px;
	text-decoration: none;
}
#page_top a::before{
	font-family: FontAwesome;
	content: '\f102';
	font-size: 25px;
	color: #3f98ef;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -40px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
#page_top a::after{
	content: 'PAGE TOP';
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 45px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
	color: #3f98ef;
}

/* ■■■■■■■■■■■■■■■      Moile CSS @media screen and (max-width: 800px)   ■■■■■■■■■■■■■■■*/
@media screen and (max-width: 800px) {
.pc {
	display:none;
	width:0px;
	height:0px;
}
.sp {
	display:block;
	width:auto;
}
.tel {
	width:200px;
	margin:auto;
	display:block;
}
a[href^="tel:"] {
	pointer-events: auto;
	text-decoration:none;
}
/*----------------------Burger*/
/*ヘッダーまわりはご自由に*/
header {
	position:fixed;
	top:60px;
	float:left;
	width:50px;
  padding-left:5px;
  padding-top:5px;
	margin-top:-50px;
  background: #000000;
	z-index:99;
}
#nav-drawer {
	padding-top:10px;
  position: relative;
}

#nav-drawer img{
	height:20px;
	margin-bottom:0px;
}
/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}
/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 50px;
    height: 22px;
	margin-bottom:10px;
	margin-left:7px;
    vertical-align: middle;
}
/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 30px;/*長さ*/
    border-radius: 3px;
    background: #FFFFFF;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}
/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 1000;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;/*最前面に*/
    width: 80%;/*右側に隙間を作る*/
    max-width: 280px;/*最大幅*/
    height: 100%;
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
    background-color: rgba(51,51,51,0.6);
    padding-left: 10px;
    border: 1px solid #000;
    color: #fff;
}
/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
#nav-content > ul {
	width:100%;
	margin:auto;
	padding-left:0px;
	display:inline-block;
}
#nav-content  > ul > li {
	display:inline-block;
	float:left;
	width:200px;
}
#nav-content > ul > li >a {
	font-size:16px;
	padding:15px;
	height:30px;
	color:#FFFFFF;
	display:inline-block;
	vertical-align:middle;
	text-decoration:none;
}

/*----------------------Burger*/

}
