@charset "UTF-8";

a {
	text-decoration: none;
}

.header_top {
	position: absolute;
	top: 0;
	z-index: 1;
	width:  100%;
	height: 64px;
	display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	background-color: rgba(255, 255, 255, 0);
}
.header_top[data-status=fixed] {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.1);
}
.header_top a,
.header_top span {
	color: #fff;
	line-height: 1;
	font-size: 16px;
}
.header_top .business_hours {
	font-size: 11px;
	position: absolute;
	top: 23px;
}
.header_top[data-status=fixed] a,
.header_top[data-status=fixed] span {
	color: inherit;
}
.header_logo {
	width: 100%;
	max-width: 150px;
	margin-left: 64px;
	padding: 15px 0;
	box-sizing: border-box;
}
.header_logo img {
	width: 100%;
	max-width: 141px;
}
.header_logo .black_logo {
	display: none;
}
.header_top[data-status=fixed] .header_logo .black_logo {
	display: block;
}
.header_top[data-status=fixed] .header_logo .white_logo {
	display: none;
}
#header_nav {
	display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	margin-left: 25px;
}
#header_nav li {
	width: 100px;
	height: 80%;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	position: relative;
}
#header_nav li.service,
#header_nav li.company {
	margin-left: 10px;
}
#header_nav li.company {
	text-align: left;
}
#header_nav li a {
	display: block;
	line-height: 64px;
	width: 100%;
	font-size: 14px;
}
#header_nav li.company a {
	margin-left: 12px;
}
#header_nav li::after {
  position: absolute;
  left: 0;
  bottom: -2px;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #fff;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.header_top[data-status=fixed] #header_nav li::after {
	background: #9160A2;
}
#header_nav li:hover::after {
  width: 100%;
}
#header_nav li.active {
  border-bottom: 2px solid #fff;
}
.header_top[data-status=fixed] #header_nav li.active {
  border-bottom: 2px solid #9160A2;
}
.contact_info {
	display: -webkit-flex;
    display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
}
.contact_info .tel {
	width: 150px;
	line-height: 64px;
	margin-right: 32px;
}
.contact_info .tel img {
	width: 100%;
	max-width: 25px;
	margin: 0 6px;
	-webkit-filter: brightness(0) invert(1);
	-ms-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}
.header_top[data-status=fixed] .contact_info .tel img {
    -webkit-filter: inherit;
	-ms-filter: inherit;
	filter: inherit;
}
.contact_info .tel a {
	width: 150px;
	position: absolute;
	top: 14px;
}
.contact_info .tel a .tel_no {
  white-space: nowrap;
}
.contact_info .contact {
	width: 118px;
	height: 38px;
	text-align: center;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.2);
	margin: 13px 64px 0 0;
	border: solid 1px #fff;
	z-index: 1;
}
.contact_info .contact a {
	line-height: 38px;
	font-size: 14px;
}
.header_top[data-status=fixed] .contact_info .contact {
	background-image: linear-gradient(252deg, #db89cd, #6b80dd);
	border: none;
}
.header_top[data-status=fixed] .contact_info .contact a {
	color: #fff;
}
.header__spbtn {
	width: 48px;
	height: 48px;
	cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
.header__spbtn span {
	background: #fff;
    height: 1px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    transition: all 0.3s ease;
    width: 15px;
}
.header__spbtn span:nth-of-type(1) {
	top: 16px;
}
.header__spbtn span:nth-of-type(2) {
	top: 22px;
}.header__spbtn span:nth-of-type(3) {
	top: 28px;
}
.header__spbtn[data-status=close] span {
    top: 26px;
    width: 21px;
}
.header__spbtn[data-status=close] span:nth-of-type(1) {
    transform: rotate(45deg);
}
.header__spbtn[data-status=close] span:nth-of-type(2) {
    opacity: 0;
}
.header__spbtn[data-status=close] span:nth-of-type(3) {
    transform: rotate(-45deg);
}
.header_top[data-status=fixed] .header__spbtn,
.header__spbtn[data-status=close] {
	background-image: linear-gradient(225deg, #db89cd, #6b80dd);
}
.header_sp_nav {
	position: fixed;
	right: 0;
	top: -100vh;
	width: 300px;
	height: 100vh;
	background-color: #101010;
	opacity: 0.95;
	transition: top 0.5s cubic-bezier(1,0,0,1),opacity 0.5s ease
}
.header__spbtn[data-status=close] +.header_sp_nav {
    top: 0;
}
.header_sp_nav ul {
	padding: 20%;
}
.header_sp_nav li {
	color: #fff;
	font-weight: 500;
	margin-bottom: 20px;
}
.header_sp_nav li:last-child {
	margin-bottom: 0;
}
.header_sp_nav li.sub_list {
	font-size: 14px;
	font-weight: 300;
	margin-left: 1rem;
	height: 24px;
}
/*
  スマホでソフトウェアキーボードを出しているときはさらにtopをズラす
  (キーボード消去時にズレて一瞬出る現象を防ぐ)
*/
.header_sp_nav.disp_keyboard {
  top: -200vh;
}

@media screen and (min-width: 1151px) {
    .header__spbtn {
    	display: none;
    }
}

@media screen and (max-width: 1150px) {
	.header_top {
		height: 48px;
	}
	.header_logo {
		padding: 9px 0;
		margin-left: 25px;
	}
    #header_nav,
    .contact_info .contact {
    	display: none;
    }
    .contact_info .tel {
    	line-height: 48px;
    	position: absolute;
    	right: 25px;
    }
    .contact_info .tel a {
    	top: 8px;
    }
}

@media screen and (max-width: 480px) {
	.header_top a, .header_top span {
		font-size: 13px;
	}
	.header_top .business_hours {
		font-size: 10px;
		top: 25px;
	}
	.header_logo {
		max-width: 107px;
		padding: 12px 0;
	}
	.header_logo a img {
		width: 100%;
	}
	.contact_info .tel {
		font-size: 13px;
		right: 0;
	}
	.contact_info .tel img {
		max-width: 18px;
	}
	.contact_info .tel a {
    	top: 5px;
    }
	.header_sp_nav {
		width: 200px;
	}
	.header_sp_nav ul {
		padding: 18% 15%;
	}
}