/********************* header CSS *********************/
@media (min-width: 768px) {
    .pc_only {
      display: block!important;
    }
    .sp_only {
      display: none!important;
    }
  }
  @media (max-width: 768px) {
    .pc_only {
      display: none!important;
    }
    .sp_only {
      display: block!important;
    }
  }
body {
	overflow-x: hidden !important;
	display: block;
	background-color: #f1f1f1;
}
#h1_back_white {
	position: absolute;
	top: 0;
	right: 570px;
	z-index: 1;
	opacity: 0.9;
}
#header_icon {
	width: 35%;
	}
#header_icon img{
	width: 100%;
	vertical-align: middle;
}
#header_top_text {
	text-align: right;
	font-size: 14px;
	line-height: 22px;
	color: #222;
	padding-top: 23px
}
#header_area {
	width: 100%;
	position: relative;
	background-color: #fff;
	top: 0;
}
#header_top {
	width: 980px;
	height: 80px;
	margin: auto;
	position: relative;
}
.main_visual {
	position: relative;
}
#header_bottom nav .fa-solid {
	font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
#header_bottom {
	width: 96%;
	height: 44px;
	display: flex;
	padding: 1% 2%;
	/* background: none !important; */
	/* background-color: transparent; */
	position: absolute;
    z-index: 3;
	background: linear-gradient(0deg, #00000000, #00000050, #00000080);
	position: fixed;
	top: 0;
}
#header_nav {
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: flex-end;
}
nav {
	width: 100% !important;
}
#header_nav .haeder_item a {
	font-size: 1.25rem !important;
  text-shadow: #111111 1px 0 10px;
	position: relative;
	display: inline-block !important;
	color: #fff;
	padding: .5em 3em;
	display: block;
	text-decoration: none;
	transition: all .3s;
	text-align: left;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#header_nav .haeder_item a:hover::after {
	transform: scale(1, 1);
}
#header_nav .haeder_item a.current_page {
	background-color: #b9000f;
}
#header_nav .child_li li a {
	width: auto;
	font-size: 1rem !important;
    padding: 0.5em 1em;
    color: #ffffff;
	background-color: #111111b0;
}
nav ul ul {
  display: block;
}
nav ul li {
  position: relative;
  display:grid;
}
/* .fa-chevron-right:before {
	font-family: FontAwesome;
    content: "\f054";
    position: absolute;
    right: 11px;
	font-size: 10px;
} */
nav ul li a:hover {
  color:#fff;
}
nav ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #ffffff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
} 
nav ul li a:hover::after {
	transform: scale(1, 1);
}
nav ul ul li.has-child::after {
  content:'';
  position: absolute;
  left:6px;
  top:17px;
  width:6px;
  height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}
nav li.has-child ul {
  position: absolute;
  left:0;
  top:58px;
  z-index: 4;
  width:100%;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

nav li.has-child ul li a {
  color: #fff;
}
nav li.has-child ul li:last-child a {
  border-bottom:none;
}

@media screen and (max-width:1280px) {
	#header_icon {
		width: 45%;
	}
	#header_nav .haeder_item a {
		padding: 5px 2em;
		font-size: 1.2rem !important;
	}
	#header_bottom {
		height: auto;
	}
	#header_nav .child_li li a {
		width: 100%;
	}
	nav li.has-child ul {
		background: none;
	}
}
@media screen and (max-width:768px) {
	#header_icon {
		/* width: 75%; */
		width: 300px;
	}
	.header_fixed {
		width: 100%;
		position: fixed;
		z-index: 99999;
		top: 0;
	}
	#header_area {
		width: 100% !important;
		position: relative;
	}
	.header_sp {
		/* background: rgb(0 0 0 / 80%); */
		background: linear-gradient(0deg, #00000000, #00000050, #00000080);
		padding: 2%;
		/* width: 100%; */
	}
	.accordion-item {
		position: relative;
	}
	.accordion-item::before {
		font-family: FontAwesome;
        content: "\f078";
        position: absolute;
        color: #ffffff;
        top: 15px;
        right: 50px;
        width: auto;
        height: 1px;
        font-size: 13px;
        background: none;
        transform: none;
        transform-origin: unset;
    }
	nav {
		display: block;
		position: fixed;
		top: 0;
		left: -300px;
		bottom: 0;
		width: 0 !important;
		background: #ffffff;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transition: all .5s;
		z-index: 3;
		opacity: 0;
	}
	.open nav {
		left: 0;
		opacity: 1;
		width: 100% !important;
		background: #000000de;
	}
	nav .inner {
		padding: 13% 5% 0;
	}
	nav .inner ul li {
		position: relative;
		margin: 0;
	}
	nav .inner ul ul li {
		background: #ccc;
	}
	nav .inner ul li a {
		display: block;
		color: #fff;
		font-size: 1rem;
		line-height: 18px;
		padding: 1em;
		text-decoration: none;
		transition-duration: 0.2s;
		font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}
	nav .inner ul li a:hover {
		background: #e4e4e4;
	}
	.accordion-text li a::after {
		font-family: FontAwesome;
		content: "\f054";
		position: absolute;
		top: 16px;
		width: auto;
		height: 1px;
		font-size: 13px;
		background: none;
		transform: none;
		transform-origin: unset;
	}
	nav ul li a:hover{
	  color:#fff;
	}
	/*============
	.toggle_btn
	=============*/
	.toggle_btn {
		display: block;
		position: absolute;
		top: 10px;
		right: 2%;
		width: 30px;
		height: 30px;
		transition: all .5s;
		cursor: pointer;
		z-index: 3;
	}
	.toggle_btn span {
		display: block;
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background-color: #ffffff;
		border-radius: 4px;
		transition: all .5s;
	}
	.toggle_btn span:nth-child(1) {
		top: 4px;
	}
	.toggle_btn span:nth-child(2) {
		top: 14px;
	}
	.toggle_btn span:nth-child(3) {
		bottom: 4px;
	}
	.open .toggle_btn span {
		background-color: #fff;
	}
	.open .toggle_btn span:nth-child(1) {
		-webkit-transform: translateY(10px) rotate(-315deg);
		transform: translateY(10px) rotate(-315deg);
	}
	.open .toggle_btn span:nth-child(2) {
		opacity: 0;
	}
	.open .toggle_btn span:nth-child(3) {
		-webkit-transform: translateY(-10px) rotate(315deg);
		transform: translateY(-10px) rotate(315deg);
	}
	/* accordion */
	.accordion-wrap {
		border-bottom: 1px solid #ccc;
	}
	.fa-angle-down:before {
		content: "\f107";
		color: #fff;
	}
	.accordion-item {
		font-size: 1em;
		width: 100%;
		margin: 0 auto;
		cursor: pointer;
		margin: 1em 0;
	}
	.accordion-item a {
		font-size: 1.2rem;
		color: #fff;
		text-decoration: none;
		font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	}
	.accordion-header{
		transition: ease-in-out 100ms;
	}
	.accordion-text {
		width: 80%;
		margin: 0 auto;
		display: none;
		padding-top: 5px;
		padding-bottom: 20px;
	}
	.fa{
		transition: ease-in-out 300ms;
	}
	.rotate-fa {
		transform: rotate(180deg);
	}
	.accordion-header .fa {
		float: right;
		line-height: 25px;
	}
	.accordion-gold {
		font-size: 1rem;
		color: #fff;
	}
	.accordion-no-bar {
		border-bottom: 0;
	}


}
/********************* header CSS *********************/
