@charset "utf-8";

body {
  padding: 0px;
  background: #;
  height: 100vh;
  color: #666;
}


.container_header {
  max-width: 1180px;
  padding: 0;
  margin: 0 auto;
}


/* ヘッダー_A */
.header_a {
  color: #333333;

}


.header_a > .container_header {
  height: 90px;
  display: flex;
  align-items: center;
  max-width: 1180px;
}

/* ロゴ */
.area_logo_header .logo {
  display: block;
}
.area_logo_header .logo img {
  height: 70px;
  vertical-align: bottom;
}


/* ナビゲーション */
.area_nav_header {
  margin-left: auto;
}

/* リストナビ */
.list_nav_header {
  display: flex;
  align-items: center;
}
.list_nav_header > li + li {
  margin-left: 40px
}
.list_nav_header a {
  color: #fff;
  font: 500 15px/1em 'noto sans japanese',sans-serif;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

/* 下線アニメーション */
.list_nav_header .ani::after {
  position: absolute;
  bottom: -14px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #BF0000;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
.list_nav_header .ani:hover::after {
  bottom: -7px;
  opacity: 1;
  visibility: visible;
}



.list_nav_header .btn_contact {
  color: #fff;
  display: flex;
  align-items: center;
  height: 46px;
  padding: 3px 24px 0 48px;
  background: #BF0000;
  border-radius: 5px;
  position: relative;
}
.list_nav_header .btn_contact:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../image/icon_cart.svg) no-repeat center center ;
  background-size: contain;
  position: absolute;
  top: 48%;
  left: 15px;
  transform: translate(0,-50%);
}

.demobox-header {
	position: fixed;	/*ウィンドウに対して固定表示*/
	top: 0px;			/*上から0pxの場所に配置*/
	z-index: 200;
	width: 100%;
}




/*   ---------------------------------------------- ipad対応   ----------------------------------------------     */
@media (max-width:1080px){


  .header_a {
    display: none;
  }
  

  
}

