@charset "utf-8";
/* CSS Document */
/* ----------------------------------------
* header
---------------------------------------- */
header {
	width: 100%;
	padding: 0px;
	background: #fff;
	height:100px;
}


header .inner{
	display: flex;
	justify-content: space-between;
	width:calc(100% - 100px);
	max-width:calc(100% - 100px);
	margin:0 auto;	
}

header .inner .area_logo{
	display: flex;
	margin:10px 0 0;
}　

header a{
	color: inherit;
	text-decoration:none;
}

header .inner .area_logo img{
	width:140px;
}

header .inner .area_menu{
	display:flex;
	align-items: center;
}

header .inner .area_menu ul{
	display:flex;
    justify-content: flex-end;
	align-items: center;
}


header .inner .area_menu li a{
	display: block;
	height: 100%;
	position: relative;
	color: #222;
	text-decoration: none;
	transition: .3s ease;
}

header .inner .area_menu ul li{
	margin-right:20px;
	text-align:center;
	padding:10px;
}

header .inner .area_menu ul li.current > a::after {
	display: block;
	content: '';
	width: 100%;
	height: 4px;
	background: #195690;
	position: absolute;
	bottom: -6px;
	left: 0;
	opacity: 0;
	transition: .3s ease;
}

header .inner .area_menu ul li.current > a::after,
header .inner .area_menu ul li:hover > a::after {
	opacity: 1;
	transition: .3s ease;
}


/* aタグに余白やテキストサイズの指定をする */
.area_menu li.navi-inquiry a {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    line-height: 1.3em; 
	text-decoration: none;
    z-index: 1; 
	color:#fff !important;
}

/* 疑似要素に平行四辺形の装飾を指定する */
.area_menu li.navi-inquiry a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
	background-color:#DC143C;
    transform: skewX(-15deg);
}


/* ドロワー */
#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;
}

}
