@charset "UTF-8";

ul,ol{
  list-style-type: none;
}

a {
  color: #211a18;
  transition: 0.5s;
  text-decoration: none!important;
}
a:hover {
  color: #ddd;
}
a:hover img {
  opacity: 0.7;
}
	
	
	
	
.l-header{
	width:100%;
	height:70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position:absolute;
	top:0;
	transition: 1.2s;
	background-color: rgba(255,255,255,0.6);	
}
.l-header:hover{
	background-color: #fff;
	transition: 0.5s;
}
.l-header__inner:before {
	content: "";
	width: 100%;
	height: 85px;
/*	background: linear-gradient(43.37deg, #4d4d4d 6.71%, #bcbbbb 101.43%); */
	position: absolute;
	top: 0;
	left: 0;
	z-index: -100;
}
.header-logo {
		position: absolute;
		top:20px;
	    z-index: 10;
	}
@media screen and (max-width: 1000px) {
.header-logo {
		position: absolute;
		top:15px;	
	}	
}

.header-logo img{
		margin:0 0 0 1em;
	}
.sp-menubtn{
	display: none;
}
.menu {
width:100%;	
	
	
}

.menu__inner{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height:70px;	
	position:relative;
	z-index: 2;
}
.menu__item{
	margin:40px 10px 0;
	height:100%;
}
@media screen and (max-width: 1000px) {
.menu__item{
	margin:0;
}		
}

.menu__contact{
	margin-left: 20px;
	margin-right:20px;
	width: 120px;
	text-align: center;
	border:1px solid #000;

}
@media screen and (max-width: 1000px) {
.menu__contact{
	margin-left:0;
	margin-right:0;
	width: 120px;
	text-align: center;

}	
}
.menu__link{
	display:block;
	color:#000;
	height:100%;
	line-height: 75px;
}
 .menu__link{
	line-height: 1em;
/*	border:1px solid #000!important; */
	padding:0.5em;
	border-radius: 20px;
}
/*メガメニュー*/
.menu__contents{
	display: none;
	position:absolute;
	top:100%;
	left:0;
	width: calc(100%);
	background: #F3F3F3;
	padding: 20px 8%;
	overflow: hidden;
}
.menu__contents .menu__contents_link {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin:0 auto;
}
.menu__contents .menu__contents_link li{
	width: 24%;
	height:350px;
	margin-bottom:40px;
}
@media screen and (max-width: 1000px) {
.menu__contents .menu__contents_link li{
	margin-bottom:0;
}
}
/*.menu__contents .menu__contents_link li a{
	display:block;
	text-align: center;
	line-height: 100px;
}*/
.menu__contents .menu__contents_link .menu__contents_link_item{
	border:1px solid #222;
	padding:1em;
	background-color: #fff;	
}
@media screen and (max-width: 1000px) {
.menu__contents .menu__contents_link .menu__contents_link_item{
	border:none;
	padding:1em;
	background-color: inherit;		
}	
	
}


.menu__contents .menu__contents_link .menu__contents_link_item li{
	width: 100%;
	height:auto;	
	padding:0 0 0 0.5em;
	margin:0.1em 0;
	overflow: hidden;
}
.menu__contents .menu__contents_link .menu__contents_link_item .mark:before{
	content: "-";
	margin:0 0.5em 0 0
}


.menu__contents .menu__contents_link .menu__contents_link_item li:first-of-type{
	margin:0.5em 0 0.2em;	
	padding:0;
}
.menu__contents .menu__contents_link .menu__contents_link_item li:nth-of-type(2){
	font-weight: bold;	
	font-size: 1.1em;
	margin:0.5em 0 0.5em;	
	padding:0;
	color:#333333;
}
@media screen and (max-width: 1000px) {
.menu__contents .menu__contents_link .menu__contents_link_item li a{
	color: #fff;
}		
.menu__contents .menu__contents_link .menu__contents_link_item li:nth-of-type(2){
	color:#fff;
}	
	
}

.menu__contents .menu__contents_link .menu__contents_link_item li img{
	box-shadow: 4px 4px 4px #ccc;
}


.menu__contents .menu__contents_link .menu__contents_link_item li a{
	position: relative;
}

.menu__contents .menu__contents_link .menu__contents_link_item li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #222;
bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.3s; /*変形の時間*/
}

.menu__contents .menu__contents_link .menu__contents_link_item li a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

@media screen and (max-width: 1000px) {
.menu__contents .menu__contents_link .menu__contents_link_item li a::after {
background: #fff;
}
	
}
	
@media screen and (max-width: 1000px) {
	.l-header{
		height:60px;
	}
	.l-header__inner:before {
		height: 60px;
	}
	.l-header__inner{
		width:100%;
		height:60px;
		justify-content: space-between;
		align-items: center;
	}
	.sp-menubtn {
		width: 60px;
		height: 100%;
		position: relative;
		display: block;
		z-index: 5000;
		border: none;
		background-color: #130E53;
/*		background: linear-gradient(64.63deg, #4d4d4d 6.71%, #bcbbbb 101.43%); */
		cursor: pointer;
		float: right;
	}	
	.sp-menubtn span {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-indent: 100%;
		width: 22px;
		height: 3px;
		background: #FFFFFF;
		position: absolute;
		transition: 0.2s;
		left: 50%;
		top: 50%;
	}	
	.sp-menubtn span:nth-child(1) {
		transform: translate(-50%, -9px);
	}	
	.sp-menubtn span:nth-child(2) {
		transform: translate(-50%, -50%);
	}	
	.sp-menubtn span:nth-child(3) {
		transform: translate(-50%, 6px);
	}	
	.sp-menubtn.active span {
		width: 25px;
		height: 2px;
	}	
	.sp-menubtn.active span:nth-child(1) {
		transform: translate(-50%, 50%) rotate(45deg);
	}	
	.sp-menubtn.active span:nth-child(2) {
		opacity: 0;
		left: 50%;
	}	
	.sp-menubtn.active span:nth-child(3) {
		transform: translate(-50%, 50%) rotate(-45deg);
	}
	.menu {
		position: fixed;
		top: 60px;
		left: 0;
		width: 100%;
		height: calc(100% - 60px);
		background: rgba(19,14,83,0.9);
		color: #FFFFFF;
		overflow: auto;
		opacity: 0;
		visibility: hidden;
		transition: opacity .6s ease, visibility .6s ease;
		z-index: 10;
	}
	.menu.active{
		opacity:100;
		visibility: visible;
	}
	.menu__inner {
		display:block;
		height:auto;
		width: 72.16vw;
		margin-left: auto;
		margin-right: auto;
		padding: 40px 0 60px;
	}	
	.menu__item {
		border-bottom:#bcbbbb solid 2px;
		width: 100%;
		position: relative;
	}		
	.menu__link {
		font-weight: bold;
		font-size: 1.2rem;
		letter-spacing: 0.04em;
		height: 70px;
		color:#fff!important;
		align-items: center;
		padding-top:28px;
	}	
	.menu__contact {
		width: 72.16vw;
		margin-top: 36px;
		border:1px solid #fff;		
	}	
	.menu__contact a {
		/*background: linear-gradient(58.5deg, #4d4d4d 46.25%, #bcbbbb 109.07%);*/
		color: #FFFFFF;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		height: 68px;
		padding: 0 35px 0 30px;
		position: relative;
		letter-spacing: 0.04em;
		max-width: 72.16vw;
		margin-left: auto;
		margin-right: auto;
		/*box-shadow: 0px 0px 22px rgba(0, 0, 0, 0.1);*/
	}	
/*	.menu__contact a span {
		position: relative;
	}	
	.menu__contact a:before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		content: '';
		background: #01397E;;
		transform-origin: right top;
		transform: scale(0, 1);
		transition: -webkit-transform .3s;
		transition: transform .3s;
	} */	
/*	.menu__contact a:after {
		content: "";
		display: block;
		width: 7px;
		height: 7px;
		border-top: 2px solid #FFFFFF;
		border-right: 2px solid #FFFFFF;
		transform: rotate(45deg);
		position: absolute;
		top: 50%;
		right: 30px;
		transform: translate(-50%, -50%) rotate(45deg);
	}	*/
		/*メガメニュー　→アコーディオン*/
	.menu__contents{
		display: none;
		position:static;
		width:100%;
		background: rgba(204,204,204,0.1);
		padding:20px;	
	}
	.menu__contents .menu__contents_link {
		display: block;
	}
	.menu__contents .menu__contents_link li{
		border-bottom:#000;
		width: 100%;
		height:auto;
	}
/*	.menu__contents .menu__contents_link li a{
		color:#000;
		display:block;
		text-align: center;
		line-height:2.0;
	} */
	.arrow::after{
		content: "";
		position: absolute;
		right: 25px;
		top:28px;
		transform:translateY(-50%);
		transition: all 0.2s ease-in-out;
		display: block;
		width: 10px;
		height: 10px;
		border-top: solid 2px #E5E5E5;
		border-right: solid 2px #E5E5E5;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.arrow.active::after{
		content: "";
		position: absolute;
		right: 25px;
		top:35px;
		transform:translateY(-50%);
		transition: all 0.2s ease-in-out;
		display: block;
		width: 10px;
		height:10px;
		border-top: solid 2px #E5E5E5;
		border-right: solid 2px #E5E5E5;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
}	