@charset "utf-8";
/* CSS Document */
/* ----------------------------------------
* header
---------------------------------------- */
header {
	width: 100%;
	padding: 0px;
	background: #fff;
	height:80px;
}

header .wrap{
	position: relative;
	text-align: left;
	width:1280px;
	margin:0 auto;
	background-color:transparent;
}


header a{
	color: inherit;
	text-decoration:none;
}

header  img.logo{
	height:65px;
	width:auto;
	margin:5px 0 10px
}

header .wrap .inner{
	display: flex;
	justify-content: space-between;
}




header ul{
	display:flex;
	justify-content: space-between;
}


header ul{
	display:flex;
	justify-content: space-between;
	height:80px;
}

header li{
	margin-right:20px;
	height:80px;
 	display: flex;
    align-items: center;
	font-size:0.9rem;
	font-weight:bold;
}


header li:nth-child(1),header li:nth-child(2),li.tel.pc{
 	display: flex;
 }


header li img{
	width:250px;
}

header li.inquiry.pc{
	margin:0px;
	background-color:#083976;
	font-size:1.1rem;
	padding:0 20px;
 	display: flex;
	color:#fff;
}

header li.line.pc{
	margin:0px;
	background-color:#4CC764;
	font-size:1.1rem;
	padding:0 10px;
 	display: flex;
	color:#fff;
}

header li.inquiry.sp,header li.tel.sp,header li.line.sp{
	display:none;
}
/* ドロワー */
#drower{
	display:none;
}
@media (max-width: 1281px) {
header {
	height:60px;
}

header .wrap{
	margin:0 ;
	width:100%;
}


header img.logo{
	height:50px;
	width:auto;
}

header ul{
	display:flex;
	justify-content: space-between;
	height:60px;
	margin-right:60px;
	
}



header li.pc,header li.inquiry.pc,header li.tel.pc,header li.line.pc{
 	display: none;
 }


header li.inquiry.sp,header li.tel.sp{
	display:inline-block;
	min-width: 0;
	width:60px;
	height:60px;
	text-align:center;
	margin:0;
	padding:15px;	
}

header li.line.sp{
	display:inline-block;
	min-width: 0;
	width:60px;
	height:60px;
	text-align:center;
	margin:0;
	padding:0px;	
}

header li.inquiry.sp img,header li.tel.sp img{
	width:30px;
}

header li.inquiry.sp{
	background-color:#083976;
	color:#fff;
}

header li.line.sp{
	background-color:#4CC764;
	padding:0;
}

header li.tel.sp{
	background-color:#779b48;
	margin-right:0px !important;
}

/* ドロワー */
#drower{
	display:block;
	position:absolute;
	top:0;
	right:0;
	width:60px;
	height:60px;
    background-color:#e60012;
    padding:10px;
}
/*　ボタンのCSS 【クリック前】　*/
#drower .nav_toggle {
  display: block;
  width: 40px;
  height:40px;
  position:relative;
}
.nav_toggle i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
  top: 6px;
}
.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-child(3) {
  bottom: 6px;
}

/*　ボタンのCSS 【クリック後】　*/
.nav_toggle.show i:nth-child(1) {
  transform: translateY(12px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
  transform: translateY(-14px) rotate(45deg);
}
/* メニューリストのCSS【クリック前】 */
.nav {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  padding:0 0 0 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  z-index:500;

}

#drower .nav ul{
	display:block;
	height:auto;
	margin:0;
	padding:20px;
    background-color:#fff;
}
#drower .nav li{
	display:block;
	height:auto;
	padding:0 0 20px;
	border-bottom:1px solid #ccc;
	margin:0 0 20px;
}

/* メニューリストのCSS【クリック後】 */
.nav.show {
  opacity: 1;
  visibility: visible;
}

}
