@charset "UTF-8";
/* ---------------------------------------- */
/*2022.3追加
/* ---------------------------------------- */
.movieArea{
	padding-top: 120px;
}
.movie{
	width: 100%;
}
.movie video{
	width: 100%;
	height: auto;
}
.sub-ttl{
	font-size: 2em;
	margin: 60px 0 30px;
}
/* ---------------------------------------- */
.main_visual{
	height: 100vh;
	position: relative;
	overflow: hidden;
}
.index_h2{
	font-size: 3rem;
	text-align: center;
}
.footer_comment{
	margin-bottom: 0 !important;
}
#nav-toggle span {
	width: 100%;
	height: 1px;
	left: 0;
	display: block;
	background: #fff;
	position: absolute;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.sub_title{
	color: #fff;
}
.up_right{
	 writing-mode: vertical-rl;
  text-orientation: upright; /* すべて縦方向に表示 */
}
h2{
	color:#FFFFFF;
	font-size: 3rem;
	letter-spacing: 5px;
	text-align: center;
	position: absolute;
	top:20%;
	right: 12%;
/*
	top:17%;
	left: 28%;
*/
	background-color: rgba(0,0,0,0.7);
	width: 42px;
	padding-top: 20px;
}

/* ---------------------------------------- */
/*top_nav
/* ---------------------------------------- */
.top_ul_position{
	position: absolute;
	top:200px;
	left: 50px;
}
.top_nav{
/*	width: 720px;*/
/*	display: flex;*/
	justify-content: space-between;
	
}
.top_nav li{
	margin: 20px 0;
}
.top_nav li a{
	color: #fff;
	font-size: 1em;
	z-index: 1;
	letter-spacing:2px;

}
.top_nav li a {
/*  display: block;*/
  padding: 0 0 8px;
  position: relative;
  text-decoration: none;
}
.top_nav li a::before,
.top_nav li a::after {
  border-bottom: solid 1px #fff;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}
.top_nav li a::before {
  left: 50%;
}
.top_nav li a::after {
  right: 50%;
}
.top_nav li a:hover::before,
.top_nav li a:hover::after {
  width: 50%;
}
.top_nav li a:hover{
	color: #C7C7C7;
}

/* ---------------------------------------- */
/*copyright*/
/* ---------------------------------------- */
.copyright{
	position: absolute;
	bottom: 20px;
	left: 50px;
	color: #fff;
	letter-spacing: 2px;
}
/*----------------------------------------------
ドロップダウンメニュー
------------------------------------------------*/
#ul_passive2{
	cursor: pointer !important;
}
	.ul_passive2{
			display: none;
			position: relative;
			padding-left: 16px;
		}
		.a_after{
			display: inline-block;
			width: 100%;
			height: 100%;
			cursor: pointer;
		}
		.a_after::after{
			content: "";
			position: absolute;
			top: 0;
			bottom: 0;
			right: 25px;
			margin: auto;
			vertical-align: middle;
			width: 8px;
			height: 8px;
			border-top: 1px solid #333;
			border-right: 1px solid #333;
			-moz-transform: rotate(45deg);
			-webkit-transform: rotate(45deg);
			transform: rotate(45deg);
		}
		.a_after:hover::after{
			border-top: 1px solid #FFFFFF;
			border-right: 1px solid #FFFFFF;
		}
		.ul_active2{
			display: block;
			transition: 2s;
			cursor: pointer;
		}
		.a_after2::after{
			content: "";
			position: absolute;
			top: -100px;
			bottom: 0;
			right: 25px;
			margin: auto;
			vertical-align: middle;
			width: 8px;
			height: 8px;
			border-top: 1px solid #333;
			border-right: 1px solid #333;
			-moz-transform: rotate(135deg);
			-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.a_after2:hover::after{
			border-top: 1px solid #fff;
			border-right: 1px solid #fff;
		}