/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 100%;
    height: 79px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: transparent;
	-webkit-transition: all 0.4s ease-in-out, color 0.4s;
	-o-transition: all 0.4s ease-in-out, color 0.4s;
	transition: all 0.4s ease-in-out, color 0.4s;
}
@media screen and (min-width: 768px){
	#header{
		height: 90px;
	}
}
@media screen and (min-width: 1200px){
	#header{
		height: 102px;
	}
}

body.fixed{
    top: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
	z-index: 1001;
}

/* CONTAINER  */
.header_container {
	width: 84.61%;
	margin-right: auto;
	margin-left: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: flex-end;
	-ms-flex-align: flex-end;
	align-items: flex-end;
	position: relative;	
}
@media screen and (min-width: 768px){
	.header_container{
		width: 94.11%;
	}
}

/* logo */
.scroll_logo{
    width: 110px;
    margin-bottom: 0;
	position: relative;
	transition: .4s;
}
.scroll_logo a{
	display: block;
    width: 100%;
    height: 100%;
	position: relative;
	z-index: 1;
	transition: .4s;
}
.scroll_logo img{
    display: block;
    width: 100%;
    height: 100%;
	opacity: 1;
	transition: .4s;
}
.scroll_logo a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	background-image: url("../images/logo.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: .4s;
}
#header.view .scroll_logo img{
	opacity: 0;
}
#header.view .scroll_logo a::after{
	opacity: 1;
}
@media screen and (min-width: 992px){
	body.fixed .scroll_logo{
		position: relative;
		z-index: 1002;
	}
	body.fixed .scroll_logo img{
		opacity: 0;
	}
	body.fixed .scroll_logo a::after{
		opacity: 1;
	}
}
@media screen and (min-width: 1200px){
    .scroll_logo{
        width: 150px;
    }
}
/**** header_right ****/
.header_right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
/* header_contact */
.header_contact{
	display: none;
}
.header_contact a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255,255,255,0.26);
	color: #fff;
	width: 150px;
	height: 36px;
	border-radius: 40px;
	font-size: 0.92rem;
	letter-spacing: 0;
	transition: .3s;
}
.header_contact a + a{
	margin-left: 10px;
}
.header_contact a:hover{ 
	text-decoration: none;
	opacity: 0.7;
}
#header.view .header_contact a{
	background-color: #000;
	color: #fff;
}
#header.header_page .header_contact a{
	background-color: #000;
	color: #fff;
}
@media screen and (min-width: 768px){
	.header_contact{
		display: flex;
	}
}
@media screen and (min-width: 1200px){
	.header_contact a{
		font-size: 0.8rem;
	}
}
/* header_sns */
.header_sns{
	display: block;
	width: 20px;
	height: 20px;
	margin-left: 30px;
	position: relative;
	z-index: 1;
	transition: .4s;
}
.header_sns::after{
	position: absolute;
	content: "";
	background-image: url("../images/icon_insta.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .3s;
}
.header_sns:hover{
	opacity: 0.7;
}
.header_sns img{
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: .4s;
}
#header.view .header_sns::after{
	opacity: 1;
}
#header.view .header_sns img{
	opacity: 0;
}
#header.header_page .header_sns::after{
	opacity: 1;
}
#header.header_page .header_sns img{
	opacity: 0;
}
@media screen and (min-width: 992px){
	.header_sns{
		margin-left: 40px;
	}
}
@media screen and (min-width: 1200px){
	.header_sns{
		margin-left: 50px;
	}
}

/* TRIGGER */
.menu-trigger {
	width: 25px;
	height: 18px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
	margin-left: 30px;
}
.menu-trigger span {
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: 0.2s;
	-o-transition: 0.2s;
	transition: 0.2s;
}
.menu-trigger span:nth-child(1) {
	top: 0;
}
.menu-trigger span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}
.menu-trigger span:nth-child(3) {
	bottom: 0;
}
#header.view .menu-trigger span{
	background-color: #000;
}
#header.header_page .menu-trigger span{
	background-color: #000;
}
#header.header_page .menu-trigger.tgl-active span{
	background-color: #fff;
}
.menu-trigger.tgl-active span{
	background-color: #fff;
}
.menu-trigger.tgl-active span:nth-child(1) {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.menu-trigger.tgl-active span:nth-child(2){
	width: 0;
}
.menu-trigger.tgl-active span:nth-child(3) {
	top: 50%;
	bottom: unset;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}
@media screen and (min-width: 992px){
	.menu-trigger{
		margin-left: 40px;
	}
}
@media screen and (min-width: 1200px){
	.menu-trigger{
		margin-left: 50px;
	}
}

/* MENU TOGGLE */
.menu-toggle {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	background-color: rgba(255, 255, 255, 0.1);
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
	display: none;
}
/*menu-toggle.active*/
.menu-toggle.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	overflow-y: auto; /* scroll → autoに変更して、スクロールバーが必要な時だけ出す */
}
.menu-toggle_block{
	width: 92.3%;
  min-height: 100vh; /* ←変更: 高さ不足防止 */
  overflow: visible; /* ← 親がスクロールを持つので不要 */
  margin-left: auto;
  background-color: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.menu-toggle_inner{
	width: 83.33%;
	margin: 0 auto;
	padding-top: 38px;
	padding-bottom: 12.76rem;
}
@media screen and (min-width: 768px){
	.menu-toggle_block{
		width: 76%;
	}
	.menu-toggle_inner{
		width: 81.25%;
		padding-top: 33px;
	}
}
@media screen and (min-width: 992px){
	.menu-toggle_block{
		width: 60%;
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle_block{
		width: 55%;
	}
	.menu-toggle_inner{
		padding-top: 40px;
		padding-bottom: 5rem;
	}
}
@media screen and (min-width: 1310px){
	.menu-toggle_block{
		width: 50%;
		max-width: 800px;
	}
}
/***** tg_top *****/
.tg_sns{
	width: 20px;
	height: 20px;
	display: block;
	transition: .3s;
}
.tg_sns:hover{
	opacity: 0.7;
}
.tg_sns img{
	width: 100%;
	height: 100%;
	display: block;
}
.tg_contact{
	display: flex;
	justify-content: space-between;
	margin-top: 3.46rem;
}
.tg_contact a{
	width: calc((100% - 20px)/2);
	height: 35px;
	border-radius: 36px;
	background-color: #fff;
	color: #000;
	font-size: 0.84rem;
	letter-spacing: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}
.tg_contact a:hover{
	text-decoration: none;
	opacity: 0.7;
}
@media screen and (min-width: 768px){
	.tg_top{
		display: flex;
		flex-direction: row-reverse;
		align-items: center;
		margin-right: 1.64rem;
	}
	.tg_sns{
		margin-left: 30px;
	}
	.tg_contact{
		margin-top: 0;
	}
	.tg_contact a{
		width: 150px; 
		height: 36px;
	}
	.tg_contact a + a{
		margin-left: 10px;
	}
}
@media screen and (min-width: 992px){
	.tg_top{
		margin-right: 2.8rem;
	}
	.tg_sns{
		margin-left: 40px;
	}
}
@media screen and (min-width: 1200px){
	.tg_top{
		margin-top: 4px;
		margin-right: 3.8rem;
	}
	.tg_sns{
		margin-left: 50px;
	}
}
/***** tg_menu *****/
.tg_menu{
	display: flex;
	justify-content: space-between;
	margin-top: 4.64rem;
}
.tg_menu > ul{
	width: calc((100% - 20px)/2);
	margin-bottom: 0;
}
.tg_menu > ul > li{
	list-style: none;
	position: relative;
	margin-bottom: 1.53rem;
	padding-bottom: 1.3rem;
}
.tg_menu > ul > li:last-child{
	margin-bottom: 0;
}
.tg_menu > ul > li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
	background-color: rgba(255,255,255,0.5);
}
.tg_menu > ul > li a{
	display: block;
	transition: .3s;
}
.tg_menu > ul > li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.tg_menu > ul > li a .tg_menu_tit{
	position: relative;
}
.tg_menu > ul > li a .tg_menu_tit::after{
	position: absolute;
	content: "";
	width: 6px;
	height: 5px;
	display: block;
	top: 5px;
	right: 0;
	background-image: url("../images/arrow_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: .3s;
}
.tg_menu > ul > li a:hover .tg_menu_tit::after{
	opacity: 1;
	right: -5px;
}
.tg_menu_tit{
	font-size: 0.615rem;
	letter-spacing: 0;
	color: #828282;
	margin-bottom: 0;
}
.tg_menu_tit .f-eng{
	display: block;
	font-size: 1.3rem;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #fff;
	margin-bottom: 0.44rem;
}
.tg_menu > ul > li ul{
	margin-top: 0.438rem;
	margin-bottom: 0;
}
.tg_menu > ul > li ul li{
	list-style: none;
}
.tg_menu > ul > li ul li + li{
	margin-top: -0.24rem;
}
.tg_menu > ul > li ul li a{
	color: #fff;
	font-size: 0.769rem;
	letter-spacing: 0;
	display: inline-block;
}
@media screen and (min-width: 768px){
	.tg_menu{
		margin-top: 5.67rem;
	}
	.tg_menu > ul{
		width: calc((100% - 45px)/2);
	}
	.tg_menu > ul > li{
		margin-bottom: 1.92rem;
		padding-bottom: 2rem;
	}
	.tg_menu > ul > li a .tg_menu_tit::after{
		width: 8px;
		height: 7px;
	}
	.tg_menu_tit{
		display: flex;
		align-items: center;
	}
	.tg_menu_tit .f-eng{
		margin-right: 11px;
		margin-bottom: 0;
	}
	.tg_menu > ul > li ul{
		margin-top: 1.37rem;
	}
	.tg_menu > ul > li ul li + li{
		margin-top: -0.13rem;
	}
}
@media screen and (min-width: 1200px){
	.tg_menu{
		margin-top: 6.7rem;
	}
	.tg_menu > ul{
		width: calc((100% - 70px)/2);
	}
	.tg_menu > ul > li{
		padding-bottom: 2.13rem;
		margin-bottom: 2.2rem;
	}
	.tg_menu > ul > li a .tg_menu_tit::after{
		width: 10px;
		height: 8px;
		top: 6px;
	}
	.tg_menu_tit{
		font-size: 0.6rem;
	}
	.tg_menu_tit .f-eng{
		font-size: 1.4rem;
		margin-right: 13px;
	}
	.tg_menu > ul > li ul{
		margin-top: 1.5rem;
		margin-bottom: -0.25rem;
	}
	.tg_menu > ul > li ul li + li{
		margin-top: 0.46rem;
	}
	.tg_menu > ul > li ul li a{
		font-size: 0.86rem;
	}
}
/* tg_policy */
.tg_policy{
	display: inline-block;
	text-decoration: underline;
	color: #979797;
	font-size: 0.84rem;
	letter-spacing: 0.03em;
	margin-top: 1.3rem;
	transition: .3s;
}
.tg_policy:hover{
	color: #979797;
	opacity: 0.7;
}
@media screen and (min-width: 768px){
	.tg_policy{
		margin-top: 1.41rem;
	}
}
@media screen and (min-width: 1200px){
	.tg_policy{
		font-size: 0.73rem;
		margin-top: 1.53rem;
	}
}
/* tg_copy */
.tg_copy{
	font-size: 0.615rem;
	letter-spacing: 0.03em;
	margin-top: 5.45rem;
	color: #979797;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.tg_copy{
		margin-top: 9.27rem;
	}
}
@media screen and (min-width: 1200px){
	.tg_copy{
		font-size: 0.73rem;
		margin-top: 13.1rem;
	}
}
@media screen and (min-width: 1200px) and (min-height: 800px){
	.tg_copy{
		margin: 0;
		position: absolute;
		bottom: 3rem;
	}
}
@media screen and (min-width: 1200px) and (min-height: 880px){
	.tg_copy{
		bottom: 5rem;
	}
}





/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.mv_slider{
    width: 100%;
	height: 100%;
	margin-bottom: 0;
	overflow: hidden;
}
.mv_slider .slick-list,
.mv_slider .slick-track{
    width: 100%;
    height: 100%;
}
.mv_slider li{
    width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    position: relative;
}
.mv_slider li::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}
.mv_slider li:not(:first-child)::after{
	background-color: rgba(0,0,0,0.15);
}
.mv_slider li:first-child{
	background-image: url("../images/mv1.jpg");
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2.jpg?202509");
}
.mv_slider li:nth-child(3){
	background-image: url("../images/mv3.jpg?202509");
}
.mv_slider li:nth-child(4){
	background-image: url("../images/mv4.jpg?202509");
}
@media screen and (max-width: 767px){
	.mv_slider li:first-child{
		background-position: 35% center;
	}
}
.mv_txtArea{
	position: absolute;
	color: #fff;
	width: 84.61%;
	left: 50%;
	bottom: 21.875%;
	transform: translateX(-50%);
}
.mv_en{
	font-size: 3.07rem;
	line-height: 1;
	letter-spacing: 0;
	margin-bottom: 2.36rem;
}
.mv_jp{
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.077em;
	margin-bottom: 0;
}
@media screen and (min-width: 576px){
	.mv_en{
		font-size: 3.46rem;
	}
}
@media screen and (min-width: 768px){
	.mv_txtArea{
		width: auto;
		left: unset;
		right: 9.58%;
		bottom: 23.6%;
		transform: none;
	}
	.mv_en{
		font-size: 4.06rem;
		margin-bottom: 2.14rem;
	}
	.mv_jp{
		font-size: 1.16rem;
	}
}
@media screen and (min-width: 1200px){
	.mv_en{
		font-size: 4.66rem;
		letter-spacing: 0.02em;
		margin-bottom: 1.93rem;
	}
	.mv_jp{
		font-size: 1.33rem;
		line-height: 1.75;
		letter-spacing: 0.1em;
	}
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}


/**************************
ページヘッダー
**************************/
.page_head{
	width: 84.61%;
	margin-right: auto;
	margin-left: auto;
	padding: 8.6rem 0 3.24rem;
}
.head_en{
	font-size: 3.84rem;
	line-height: 1;
	letter-spacing: 0.02em;
	word-break: break-word;
	margin-bottom: 1rem;
}
.head_jp{
	font-size: 1.15rem;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.page_head{
		width: 94.11%;
		padding: 11.14rem 0 4.05rem;
	}
	.page_head.pb{
		padding-bottom: 1rem;
	}
}
@media screen and (min-width: 1200px){
	.page_head{
		padding: 11.2rem 0 5.5rem;
	}
	.head_en{
		font-size: 4.66rem;
		margin-bottom: 1.16rem;
	}
	.head_jp{
		font-size: 1.2rem;
	}
}