/* CSS Document */




/*============================================================================

	header

============================================================================*/
#header{
	position: absolute;
	width: 90%;
	max-width: 1500px;
	top: 30px;
	left: 0;
	right: 0;
	margin: auto;
	background: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 3px #deecf3, 0 0 5px #deecf3, 0 0 8px #deecf3;
    z-index: 999;
}
.sp_navi { display: none;}



/*------------------------------ inner ------------------------------*/
#header .inner{
	display: flex;
	justify-content: space-between;
	padding: 0 2.5%;
}



/*------------------------------ inner　＊　ロゴ ------------------------------*/
header h1{
	position: relative;
	top: 15px;
	left: 10px;
}
header h1 img{
	width: 110px;
	height: auto;
}
@media screen and (max-width:1050px) {
	header h1{
		top: 13px;
		left: 10px;
	}
	header h1 img{
		width: 80px;
	}
}



/*------------------------------ inner　＊　nav ------------------------------*/
nav {
	position: relative;
	display: flex;
	justify-content: space-between;
	height: 70px;
	align-items: center;
	line-height: 1;
	font-size: 14px;
}
@media screen and (max-width:1360px) {
	nav {
		font-size: 13px;
	}
}



/*------------------------------ nav　＊　グローバルナビゲーション ------------------------------*/
nav ul{
	margin-top: 0;
}
nav li {
	display: inline-block;
	margin: 0 8px;
	font-weight: 500;
}
nav li br {
	display: none;
}
@media screen and (max-width:1360px) {
	nav li {
		margin: 0 5px;
	}
}
@media screen and (max-width:1180px) {
	nav li {
		margin: 0 10px;
		text-align: center;
		vertical-align: middle;
	}
	nav li br {
		display: block;
	}
}
@media screen and (max-width:1050px) {
	nav li {
		margin: 0 5px;
	}
}



/*----- hover -----*/
nav li a {
    position: relative;
}
nav li a::before {
    position: absolute;
	left: 0;
	right:0;
	bottom: -6px;
	width:100%;
	height:1px;
	margin:auto;
	background-color: #9ec7f9;
	transition: 0.15s  ease-out;
	transform: scaleX(0);
	content: "";
	z-index: 1;
}
nav li a:hover::before {
	transform: scaleX(1);
}



/*------------------------------ nav　＊　検索ボタン ------------------------------*/
#nav_search {
	margin: 0 25px 0 18px;
}
@media screen and (max-width:1360px) {
	#nav_search {
		margin: 0 20px 0 15px;
	}
}



/*----- 検索ボタン：クリック前・後 -----*/
.open-btn{
	position: relative;
	background: url("../images/header_icon01.png") no-repeat;
	background-size: 15px 15px;
	width: 15px; height: 15px;
	cursor: pointer;
	z-index: 999;
}
.open-btn.btnactive{
	background: url("../images/header_icon02.png") no-repeat;
	background-size: 15px 15px;
}



/*----- 検索ボタン：クリック後に出るエリア -----*/
#search-wrap {
    position: relative;
	width: 10%;
	z-index: -1; opacity: 0;
	transition: all 0.4s;
}
#search-wrap.panelactive {
	width: 80%;
	margin: auto;
	padding: 10px 0 20px;
	z-index: 3; opacity: 1;
}



/*----- 検索ボタン：検索窓 -----*/
#search-wrap #searchform { display: none;}
#search-wrap.panelactive #searchform { display: block;}



/*----- 検索ボタン：input -----*/
#search-wrap input {
	position:relative; 
	-webkit-appearance:none;
	outline: none;
	cursor: pointer;
}
 #search-wrap input[type="text"] {
    width: 100%;
	box-sizing: border-box;
    padding: 15px 30px;
    border: none;
	border-radius: 30px;
    background: #eee;
    transition: all 0.5s;
}
 #search-wrap input[type="text"]:focus {
	background:#eee;
}
 #search-wrap input[type="submit"] {
    position: absolute;
    top: 17px;
    right:10px;
    background:url("../images/header_icon03.png") no-repeat , #3571b9;
    background-size: 14px 14px, auto;
    background-position: center;
    width: 30px; height: 30px;
    border-radius: 100%;
    border: none;
	 padding: 0 !important;
}





/*------------------------------ nav　＊　遠隔サポート・お問い合わせ ------------------------------*/
#nav_btn {
	display: flex;
}



.nav_support a , .nav_contact a {
	position: relative;
	display: block;
	padding: 10px 0 10px 4px;
	width: 150px;
	box-sizing: border-box;
	border-radius: 20px;
	color: #FFF;
	letter-spacing: 0.8px;
	font-size: 13.7px;
	text-align: center;
	overflow: hidden;
}
.nav_support a:hover , .nav_contact a:hover {
	letter-spacing: 2px;
}
@media screen and (max-width:1360px) {
	.nav_support a , .nav_contact a {
		padding: 8px 0 10px 4px;
		width: 120px;
		letter-spacing: 0.5px;
		font-size: 12.5px;
	}
}
@media screen and (max-width:1050px) {
	.nav_support a , .nav_contact a {
		padding: 8px 0 10px 2px;
		width: 100px;
		font-size: 12px;
	}
}



.nav_support a {
	margin-right: 10px;
}
.nav_support a::before {
  	position: absolute; content: "";
	top: 0; left: 0;
  	width: 100%; height: 100%;
    background: linear-gradient(to right, #792763, #a14689);
  	z-index: -1;
  	transition: 0.3s ease-out;
}
.nav_support a:after {
  	position: absolute; content: "";
	top: 0; left: 0;
  	width: 100%; height: 100%;
    background: linear-gradient(90deg, #a14689, #df7ec5);
  	z-index: -2;
}
.nav_support a:hover::before {
  opacity: 0;
}



.nav_contact a::before {
  	position: absolute; content: "";
	top: 0; left: 0;
  	width: 100%; height: 100%;
    background: linear-gradient(90deg, #1d4b8a, #3072bb);
  	z-index: -1;
  	transition: 0.3s ease-out;
}
.nav_contact a:after {
  	position: absolute; content: "";
	top: 0; left: 0;
  	width: 100%; height: 100%;
    background: linear-gradient(90deg, #3072bb, #66a4e9);
  	z-index: -2;
}
.nav_contact a:hover::before {
  opacity: 0;
}





/*============================================================================

	PC＊スクロール後設定

============================================================================*/
#header.HeightMin{
	position: fixed;
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from { opacity: 0; transform: translateY(-170px);}
  to   { opacity: 1; transform: translateY(0);}
}






/*============================================================================

	ここからSP

============================================================================*/
@media screen and (max-width:880px) {
	

	header {
		display:none;
	}



	.sp_navi {
		display:block;
		position:fixed;
		width: 95%;
		height:62px;
		top: 15px;
		left: 0;
		right: 0;
		margin: auto;
		background: #FFF;
		border-radius: 10px;
		z-index: 9998;
	}
	.sp_navi h1{
		position: absolute;
		padding-left:6%;
		top: 14px;
	}
	.sp_navi h1 img{
		display:block;
		width: 90px !important;
		height: auto !important;
	}



	.sp_navi dl{
		background: #FFF;
		box-shadow: 0 0 3px #deecf3, 0 0 5px #deecf3;
		border-radius: 10px;
	}
	.sp_navi dl dt {
		height: 62px;
		cursor:pointer;
	}
	.sp_navi dl dd {
		display:none;
	}
	.sp_navi ul{
		padding: 0% 8% 20px;
	}
	.sp_navi ul li {
		width: 100% ;
		line-height: 3.8;
		font-size: 16px;
		font-weight: 700;
		border-bottom: 1px solid #ccc;
	}




	/*----- 検索ボタン：クリック後に出るエリア -----*/
	#search-wrap-sp {
		position: relative;
		width: 80%;
		margin: 20px auto 0;
		padding: 10px 0 20px;
		z-index: 3; opacity: 1;
	}



	/*----- 検索ボタン：検索窓 -----*/
	#search-wrap-sp #searchform-sp { display: block;}



	/*----- 検索ボタン：input -----*/
	#search-wrap-sp input {
		position:relative; 
		-webkit-appearance:none;
		outline: none;
		cursor: pointer;
	}
	 #search-wrap-sp input[type="text"] {
		width: 100%;
		box-sizing: border-box;
		padding: 15px 30px;
		border: none;
		border-radius: 30px;
		background: #eee;
		transition: all 0.5s;
	}
	 #search-wrap-sp input[type="text"]:focus {
		background:#eee;
	}
	 #search-wrap-sp input[type="submit"] {
		position: absolute;
		top: 17px;
		right:10px;
		background:url("../images/header_icon03.png") no-repeat , #3571b9;
		background-size: 14px 14px, auto;
		background-position: center;
		width: 30px; height: 30px;
		border-radius: 100%;
		border: none;
	 	padding: 0 !important;
	}
	
	
	
	/*------------------------------ nav　＊　遠隔サポート・お問い合わせ ------------------------------*/
	#nav_btn-sp {
		display: flex;
		justify-content: space-between;
		padding: 0 8%;
		padding-bottom: 30px;
	}
	#nav_btn-sp .nav_support , #nav_btn-sp .nav_contact {
		width: 49%;
	}
	#nav_btn-sp .nav_support a , #nav_btn-sp .nav_contact a {
		padding: 8px 0 10px 4px;
		width: 100%;
		border-radius: 40px;
		font-size: 15px;
	}
	#nav_btn-sp .nav_support a {
		background: linear-gradient(to right, #792763, #a14689);
	}
	#nav_btn-sp .nav_contact a {
		background: linear-gradient(90deg, #1d4b8a, #3072bb);
	}
	


	.nav_support a {
		margin-right: 10px;
	}



	/*------------------------------ ハンバーガー ------------------------------*/
	.sp_navi dt a {
		display: block;
		width: 42px;
		height:42px;
		position: absolute;
		top:9px;
		right: 10px;
		z-index: 9999999;
	}
	.sp_navi dt a span {
		display: block;
		background: #111;
		width: 24px;
		height: 2px;
		position: absolute;
		left: 9px;
		transition: all 0.4s;
		-webkit-transition: all 0.4s;
		-moz-transition: all 0.4s;
	}
	.sp_navi dt a span:first-child {
		top: 12px;
	}
	.sp_navi dt a span:nth-child(2) {
		margin-top: -1px;
		top: 50%;
	}
	.sp_navi dt a span:last-child {
		bottom: 12px;
	}
	.sp_navi dt a.active span:first-child {
		-webkit-transform: translateY(8px) rotate(45deg);
		-moz-transform: translateY(8px) rotate(45deg);
		-ms-transform: translateY(8px) rotate(45deg);
		transform: translateY(8px) rotate(45deg);
	}
	.sp_navi dt a.active span:nth-child(2) {
		opacity: 0;
	}
	.sp_navi dt a.active span:last-child {
		-webkit-transform: translateY(-8px) rotate(-45deg);
		-moz-transform: translateY(-8px) rotate(-45deg);
		-ms-transform: translateY(-8px) rotate(-45deg);
		transform: translateY(-8px) rotate(-45deg);
	}



}






