/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    /* transitionに transform を明示的に含めるか、all で制御します */
    -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;
}

/* 修正点：header を #header に変更 */
#header.is-hide {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%); /* ヘッダーの高さ分、上に隠す */
}
#header.header_page{
	background-color: #fff;
}

body.bg_fff #header.header_page{
	border-bottom: 1px solid rgba(120,120,120,0.25);
}
body.bg_fff.fixed #header.header_page{
	background-color: transparent;
	border: none;
}
@media screen and (min-width: 1200px){
    #header{
        height: 160px;
    }
	#header.recruit-header{
		height: 100px;
	}
	#header.recruit-header .scroll_logo{
		width: 150px;
	}
}

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

/* CONTAINER  */
.header_container {
	width: 87.1794%;
	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: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 1005;
}
@media screen and (min-width: 992px){
	.header_container{
		width: 93.333%;
	}
}

/* logo */
.scroll_logo{
    width: 120px;
    margin-bottom: 0;
	transition: .4s;
	position: relative;
}
.scroll_logo a{
	display: block;
    width: 100%;
    height: 100%;
	z-index: 1;
	position: relative;
	transition: .4s;
}
.scroll_logo svg{
	max-width: 100%;
	height: auto;
}
.scroll_logo .logo-color{
	transition: .4s;
}
body.fixed .scroll_logo .logo-color{
	fill: #fff;
}
#header.is-footer .scroll_logo .logo-color{
	fill: #fff;
}
#header.header_page .scroll_logo .logo-color{
	fill: #000 !important;
}
body.fixed #header.header_page .scroll_logo .logo-color{
	fill: #fff !important;
}
@media screen and (min-width: 1200px){
    .scroll_logo{
        width: 180px;
    }
}
/**** header_right ****/
.header_right{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/* head_nav */
.head_nav{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	margin-right: 30px;
	margin-bottom: 0;
	transition: .4s;
}
.head_nav li{
	list-style: none;
}
.head_nav li:not(:first-child){
	margin-left: 20px;
}
.head_nav li a{
	display: inline-block;
	color: #000;
	transition: .4s;
}
.head_nav li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.head_nav .f-eng{
	letter-spacing: 0.02em;
	font-weight: 500;
}
body.fixed .head_nav{
	display: none;
}
#header.is-footer .head_nav li a{
	color: #fff;
}
#header.header_page .head_nav li a{
	color: #232323 !important;
}
@media screen and (min-width: 1200px){
	.head_nav{
		margin-right: 40px;
	}
	.head_nav li:not(:first-child){
		margin-left: 30px;
	}
}
@media screen and (max-width: 1199px){
	.head_nav{
		display: none;
	}
}
/* head_sns */
.head_sns{
	display: block;
	width: 20px;
	height: 20px;
	transition: .4s;
}
.head_sns svg{
	max-width: 100%;
	height: auto;
	display: block;
}
.head_sns .logo-color{
	transition: .4s;
}
body.fixed .head_sns .logo-color{
	fill: #fff;
}
#header.is-footer .head_sns .logo-color{
	fill: #fff;
}
#header.header_page .head_sns .logo-color{
	fill: #000 !important;
}
body.fixed #header.header_page .head_sns .logo-color{
	fill: #fff !important;
}
@media screen and (min-width: 992px){
	body.fixed .head_sns{
		display: none;
	}
}






/* TRIGGER 本体 */
.menu-trigger {
    width: 100px;
    height: 32px;
    background-color: #232323; /* 画像に合わせ少し薄い黒に */
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    margin-left: 20px;
    transition: background-color 0.3s; /* 切り替えをスムーズに */
}
/* 文字部分 */
.menu-trigger::after {
    position: absolute;
    content: "Menu";
    font-family: "Montserrat", sans-serif;
    font-size: 0.7857rem;
    font-weight: 600;
    color: #fff;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}
/* ドットのコンテナ */
.menu-trigger-dots {
    width: 12px; /* 少し小さくすると画像に近くなります */
    height: 12px;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}
/* 共通のドットスタイル */
.menu-trigger-dots span,
.menu-trigger-dots span::before {
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #fff;
    border-radius: 50%;
    display: block;
    transition: all 0.3s;
}
/* 通常時（3つ並び）の配置 */
.menu-trigger-dots span:nth-child(1) { top: 50%; left: -1px; transform: translateY(-50%); }
.menu-trigger-dots span:nth-child(2) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.menu-trigger-dots span:nth-child(3) { top: 50%; right: -1px; transform: translateY(-50%); }

#header.is-footer .menu-trigger{
	background-color: #fff;
}
#header.is-footer .menu-trigger::after{
	color: #232323;
}
#header.is-footer .menu-trigger-dots span{
	background-color: #232323;
}
#header.header_page .menu-trigger{
	background-color: #232323 !important;
}
#header.header_page .menu-trigger::after{
	color: #fff !important;
}
#header.header_page .menu-trigger-dots span{
	background-color: #fff;
}

body.fixed #header.header_page .menu-trigger{
	background-color: #fff !important;
}
body.fixed #header.header_page .menu-trigger::after{
	color: #232323 !important;
}
body.fixed #header.header_page .menu-trigger-dots span{
	background-color: #232323;
}

/* ----------------------------------
   ACTIVE (Close) 状態
---------------------------------- */
/* 背景と文字色の反転 */
.menu-trigger.tgl-active {
    background-color: #fff;
}
.menu-trigger.tgl-active::after {
    content: "Close";
    color: #000;
}
/* 1番目のspanを左上に、その擬似要素を右上に */
.tgl-active .menu-trigger-dots span:nth-child(1) {
    top: 0;
    left: 0;
    transform: none;
    background-color: #000; /* 黒ドットへ */
}
.tgl-active .menu-trigger-dots span:nth-child(1)::before {
    content: "";
    top: 0;
    right: -9px; /* コンテナの幅に合わせて調整 */
    background-color: #000;
}
.tgl-active .menu-trigger-dots span:nth-child(2){
	background-color: #000;
}
.tgl-active .menu-trigger-dots span:nth-child(3) {
    bottom: 0;
    left: 0;
    top: auto;
    transform: none;
    background-color: #000; /* 黒ドットへ */
}
.tgl-active .menu-trigger-dots span:nth-child(3)::before {
    content: "";
    bottom: 0;
    right: -9px;
    background-color: #000;
}
@media screen and (min-width: 1200px){
	.menu-trigger{
		width: 120px;
		height: 38px;
		margin-left: 40px;
	}
	.menu-trigger::after{
		font-size: 0.866rem;
		font-weight: 500;
		letter-spacing: 0.02em;
	}
	.menu-trigger-dots{
		width: 18px;
		height: 18px;
		right: 20px;
	}
	.menu-trigger-dots span, .menu-trigger-dots span::before{
		width: 4px;
		height: 4px;
	}
	.tgl-active .menu-trigger-dots span:nth-child(1)::before, .tgl-active .menu-trigger-dots span:nth-child(3)::before{
		right: -14px;
	}
}
/* MENU TOGGLE */
.menu-toggle {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	transition: 0.4s ease-in-out;
	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に変更して、スクロールバーが必要な時だけ出す */
	width: 100%;
	height: 100vh;
	background-color: #232323;
	color: #fff;
}
.toggle_inner{
	width: 76.923%;
	margin: 0 auto;
	padding-top: 9.428rem;
	padding-bottom: 4.428rem;
}
.menu-toggle .pc-copy{
	display: none;
}
@media screen and (min-width: 768px){
	.toggle_inner{
		padding: 11.428rem 0;
	}
	.menu-toggle .pc-copy{
		position: absolute;
		bottom: 10rem;
		left: 50%;
		transform: translateX(-50%);
		display: block;
		color: #b3b3b3;
		line-height: 1;
		font-size: 0.857rem;
	}
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.toggle_inner{
		max-width: 390px;
	}
}
@media screen and (min-width: 992px){
	.toggle_inner{
		width: 85.5%;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.menu-toggle .pc-copy{
		bottom: unset;
		top: 50%;
		left: 2.9411%;
		transform: translateY(-50%);
		writing-mode: vertical-rl;
	}
}
@media screen and (min-width: 1200px){
	.toggle_inner{
		padding: 16.1613rem 0 6rem;
	}
}


.tgl_nav-list{
	margin-bottom: 0;
}
.tgl_nav-item{
	list-style: none;
	position: relative;
}
.tgl_nav-item::after{
	position: absolute;
	content: "";
	background-color: rgba(120,120,120,0.25);
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 0;
}
.tgl_nav-link{
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	font-weight: bold;
	font-size: 1.1428rem;
	letter-spacing: 0.04em;
	height: 68px;
	padding: 0 10px;
	transition: .3s;
}
.tgl_nav-link:hover{
	text-decoration: none;
	color: #fff;
	opacity: 0.8;
}
.tgl_nav-link .arrow{
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
}
.tgl_nav-link .arrow::after{
	position: absolute;
	content: "";
	width: 12px;
	height: 12px;
	background-image: url("../images/arrow-head.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
.tgl_nav-link.has-child{
	cursor: pointer;
	position: relative;
}
.tgl_nav-link.has-child:hover{
	opacity: 1;
}
.tgl_nav-link.has-child .plus{
	position: relative;
	display: block;
	width: 12px;
	height: 12px;
}
.tgl_nav-link.has-child .plus::before, .tgl_nav-link.has-child .plus::after{
	position: absolute;
	content: "";
	width: 100%;
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
}
.tgl_nav-link.has-child .plus::before{
	border-top: 1px solid rgba(255,255,255,0.8);
	width: 12px;
	height: 0;
	top: 0;
	bottom: 0;
	right: 0;
}
.tgl_nav-link.has-child .plus::after{
	border-left: 1px solid rgba(255,255,255,0.8);
	width: 0;
	height: 12px;
	top: 0;
	bottom: 0;
	right: 5.5px;
	transition: .3s;
}
.tgl_nav-link.has-child.is-open .plus::after{
	border-left: 1px solid rgba(255,255,255,0.8);
	height: 0;
}
.tgl_nav-child{
	display: none;
	margin-top: -0.971rem;
	margin-bottom: 0;
	padding: 0 10px 2.285rem;
}
.tgl_nav-child li{
	list-style: none;
}
.tgl_nav-child li + li{
	margin-top: 0.228rem;
}
.tgl_nav-child li a{
	color: #787878;
	font-weight: 500;
	display: inline-block;
	transition: .4s;
}
.tgl_nav-child li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.tgl_link-text{
	text-align: center;
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.86;
	margin-bottom: 2.714rem;
}
.tgl_link-area ul{
	margin-bottom: 0;
}
.tgl_link-area ul li{
	list-style: none;
}
.tgl_link-area ul li + li{
	margin-top: 10px;
}
.tgl_link-area li a{
	display: flex;
	background-color: #505050;
	color: #fff;
	height: 72px;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}
.tgl_link-area li a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(255,255,255,0.1);
	transform-origin: 100% 50%;
	transform: scaleX(0);
	transition: transform ease .4s,opacity ease .6s;
	opacity: 0;
	z-index: 1;
}
.tgl_link-area li a:hover{
	text-decoration: none;
}
.tgl_link-area li a:hover::after{
	transform-origin: 0% 50%;
	transform: scaleX(1);
	opacity: 1;
}
.tl-txt{
	width: 76%;
	font-size: 0.928rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	display: flex;
	align-items: center;
	justify-content: center;
}
.tl-txt.f-eng{
	font-size: 1.071rem;
	font-weight: 600;
}
.tl-txt .inner{
	display: flex;
	align-items: center;
	width: 182px;
}
.tl-txt .inner .tl-txt_icon{
	width: 30px;
	height: 30px;
	display: block;
	margin-right: 1rem;
}
.tl-txt .inner .tl-txt_icon img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}
.tl-arrow{
	width: 24%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	aspect-ratio: 1 / 1;
}
.tl-arrow::before{
	position: absolute;
	content: "";
	width: 1px;
	height: 44.444%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: rgba(120,120,120,0.25);
}
.tl-arrow span{
	width: 11px;
	height: 9.5px;
}
.tl-arrow svg{
	display: block;
	max-width: 100%;
	height: auto;
}
.tl-arrow .logo-color{
	fill: #fff;
}
.tgl-sns{
	display: flex;
	justify-content: center;
	column-gap: 30px;
	margin-top: 4.142rem ;
}
.tgl-sns a{
	display: block;
	width: 20px;
	height: 20px;
}
.tgl-sns a.insta svg{
	width: 20px;
	height: 20px;
	display: block;
}
.tgl-sns a.insta svg .logo-color{
	fill: #fff;
}
.tgl-sns a.fb img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.tgl-bottom{
	text-align: center;
	margin-top: 3.442rem;
}
.tgl-policy{
	line-height: 1;
	margin-bottom: 2.057rem;
}
.tgl-policy a{
	font-size: 0.928rem;
	font-weight: 500;
	line-height: 1;
	color: #646464;
	letter-spacing: 0.06em;
	display: inline-block;
	transition: .3s;
}
.tgl-policy a:hover{
	text-decoration: none;
	color: #646464;
	opacity: 0.8;
}
.tgl-copy{
	font-size: 0.928rem;
	font-weight: 500;
	line-height: 1;
	color: #646464;
	letter-spacing: 0.04em;
	display: inline-block;
}
@media screen and (min-width: 992px){
	.tgle-menu{
		width: 59.09%;
		display: flex;
		flex-wrap: wrap;
		column-gap: 4.5rem;
	}
	.tgl_nav-list:nth-child(1), .tgl_nav-list:nth-child(4){
		width: 134px;
	}
	.tgl_nav-list:nth-child(2), .tgl_nav-list:nth-child(3){
		width: 120px;
	}
	.tgl_nav-list:nth-child(4), .tgl_nav-list:nth-child(5){
		margin-top: 4.07rem;
	}
	.tgl_nav-list:first-child::before, .tgl_nav-item::after{
		display: none;
	}
	.tgl_nav-list > li + li{
		margin-top: 1.3rem
	}
	.tgl_nav-child{
		margin-top: 1.2rem;
	}
	.tgl_nav-child li + li{
		margin-top: 0.585rem;
	}
	.tgl_nav-link{
		padding: 0;
		height: auto;
	}
	.tgl_nav-link.has-child{
		cursor: unset;
	}
	.tgl_nav-link .arrow, .tgl_nav-link.has-child .plus{
		display: none;
	}
	.tgl_nav-child{
		display: inline-block !important;
		padding: 0;
		margin-top: 0.685rem;
	}
	.tgl_link-area{
		width: 31.688%;
		max-width: 498px;
	}
	.tgl_link-text{
		text-align: left;
		position: relative;
		padding-left: calc(4px + 1rem);
	}
	.tgl_link-text::before{
		position: absolute;
		content: "";
		width: 4px;
		height: 4px;
		background-color: #fff;
		border-radius: 50%;
		top: 11px;
		left: 0;
	}
	.tgl-sns{
		justify-content: flex-start;
	}
	.tgl-bottom{
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		text-align: left;
	}
	.tgl-policy{
		width: 61.2662%;
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1200px){
	.tgle-menu{
		padding-top: 6.9rem;
	}
	.tgl_nav-list:nth-child(1), .tgl_nav-list:nth-child(4){
		width: 150px;
	}
	.tgl_nav-list:nth-child(2), .tgl_nav-list:nth-child(3){
		width: 132px;
	}
	.tgl_nav-list:nth-child(4), .tgl_nav-list:nth-child(5){
		margin-top: 4.033rem;
	}
	.tgl_nav-list > li + li{
		margin-top: 1.366rem;
	}
	.tgl_nav-link{
		font-size: 1.2rem;
	}
	.tgl_nav-child{
		margin-top: 1.466rem;
	}
	.tgl_nav-child li + li{
		margin-top: 0.8rem;
	}
	.tgl_nav-child li a{
		font-size: 1rem;
	}
	.tgl_link-text{
		padding-left: calc(6px + 1rem);
		font-size: 1rem;
		margin-bottom: 3.7rem;
	}
	.tgl_link-text::before{
		position: absolute;
		content: "";
		width: 6px;
		height: 6px;
		background-color: #fff;
		border-radius: 50%;
		top: 11px;
		left: 0;
	}
	.tgl_link-area ul li + li{
		margin-top: 20px;
	}
	.tgl_link-area li a{
		height: 100px;
		border-radius: 8px;
	}
	.tl-txt{
		font-size: 1.066rem;
		font-weight: 500;
		letter-spacing: 0.1em;
		width: calc(100% - 100px);
	}
	.tl-txt.f-eng{
		font-size: 1.266rem;
		font-weight: 500;
		letter-spacing: 0.05em;
	}
	.tl-txt .inner{
		width: 221px;
	}
	.tl-arrow{
		width: 100px;
	}
	.tl-arrow::before{
		height: 50%;
	}
	.tgl-sns{
		margin-top: 8rem;
	}
	.tgl-bottom{
		margin-top: 5.966rem;
	}
}
@media screen and (min-width: 1300px){
	.tgle-menu{
		column-gap: 6rem;
	}
}
@media screen and (min-width: 1200px) and (max-width: 1399px){
	.tgle-menu{
		width: 54.09%;
	}
	.tgl_link-area{
		width: 36.688%;
	}
}
@media screen and (min-width: 1500px){
	.tgle-menu{
		column-gap: 5.4rem;
	}
	.tgl_nav-list{
		width: auto !important;
	}
	.tgl_nav-list:nth-child(4){
		margin-top: 0;
	}
}
@media screen and (min-width: 1600px){
	.tgle-menu{
		column-gap: 5.4rem;
	}
}
@media screen and (min-width: 1700px){
	.tgle-menu{
		column-gap: 4.3rem;
	}
	.tgl_nav-list:nth-child(5){
		margin-top: 0;
	}
}
@media screen and (min-width: 1800px){
	.tgle-menu{
		column-gap: 5rem;
	}
}
@media screen and (min-width: 1839px){
	.tgle-menu{
		padding-top: 5.1rem;
	}
}
@media screen and (min-width: 1900px){
	.tgle-menu{
		column-gap: 6rem;
	}
}
@media screen and (max-width: 991px){
	.tgl_link-area{
		margin-top: 3.528rem;
	}
}


/**************************
MV
**************************/
.mv{
	position: relative;
	z-index: 1;
	padding-top: 13.57rem;
}
.mv::before{
	position: absolute;
	content: "";
	background-color: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.mv-scroll{
	display: none;
}
.mv_txtArea{
	width: 87.1794%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 4.2857rem;
}
.mv-text-jp{
	width: 282.6768px;
	margin-bottom: 2.0428rem;
}
.mv-text-en{
	font-size: 0.928rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
}
.mv_slider{
    width: 100%;
	height: 100%;
	aspect-ratio: 13 / 20;
	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:first-child{
	background-image: url("../images/mv1_sp.webp");
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2_sp.webp");
}
.mv_slider li:nth-child(3){
	background-image: url("../images/mv3_sp.webp");
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
@keyframes scroll-dot {
  0% {
    top: 0;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@media screen and (min-width: 768px){
	.mv-text-jp{
		width: 380px;
	}
}
@media screen and (min-width: 992px){
	.mv::before{
		height: 100vh;
	}
	.mv-scroll{
		width: 7.23%;
		display: flex;
		justify-content: center;
		position: absolute;
		top: 100vh;
		left: 0;
		transform: translateY(-100%);
		z-index: 2;
	}
	.mv-scroll .scroll-down{
		display: inline-block;
		position: relative;
		width: 1px;
		height: 120px;
		background-color: rgba(0,0,0,0.25);
	}
	.mv-scroll .scroll-down::after{
		content: "";
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 4px;  /* 玉のサイズ */
		height: 4px;
		background-color: #000; /* 玉の色 */
		border-radius: 50%;
		animation: scroll-dot 3s cubic-bezier(0.65, 0, 0.35, 1) infinite;
	}
	.mv_inner{
		display: flex;
        justify-content: flex-end;
	}
	.fv-slider_block{
		width: 92.77%;
		height: 100%;
	}
	.mv_txtArea{
		width: 100%;
		margin-right: 0;
		margin-left: 0;
	}
	.mv_slider{
		aspect-ratio: 167 / 90;
		border-top-left-radius: 20px;
		border-bottom-left-radius: 20px;
	}
	.mv_slider li:first-child{
		background-image: url("../images/mv1.webp");
	}
	.mv_slider li:nth-child(2){
		background-image: url("../images/mv2.webp");
	}
	.mv_slider li:nth-child(3){
		background-image: url("../images/mv3.webp?2026");
	}
}
@media screen and (min-width: 1200px){
	.mv{
		padding-top: 17.666rem;
	}
	.mv-scroll .scroll-down{
		height: 150px;
	}
	.mv-scroll .scroll-down::after{
		width: 6px;
		height: 6px;
	}
	.mv_txtArea{
		margin-bottom: 7.033rem;
	}
	.mv-text-jp{
		width: 483.3721px;
		margin-bottom: 2.766rem;
	}
	.mv-text-en{
		font-size: 1rem;
		letter-spacing: 0.08em;
		padding-left: 0.5rem;
	}
}
@media screen and (min-width: 1800px){
	.mv_slider{
		height: 900px;
	}
}


/********************
/* ページheader
********************/
.page_head{
	padding: 10.5714rem 0 4.2714rem;
}
.page_head .inner{
	width: 87.179%;
	max-width: 1540px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.head_jp{
	font-size: 0.928rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.2;
	position: relative;
	padding-left: 15px;
	margin-bottom: 1.1428rem;
}
.head_jp::before{
	position: absolute;
	content: "";
	background-color: #232323;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	top: 5px;
	left: 0;
}
.head_en{
	font-size: 2.857rem;
	letter-spacing: 0.02em;
	line-height: 1;
	font-weight: 500;
	margin-bottom: 0;
}
.page-header_text{
	margin-top: 2.6428rem;
	margin-bottom: 0;
}
.page-header_text .txt_block{
	text-align: left;
	font-size: 1.2857rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
}
@media screen and (min-width: 768px){
	.head_en{
		font-size: 3.5714rem;
	}
	.page-header_text .txt_block{
		line-height: 1.7;
	}
}
@media screen and (min-width: 992px){
	.page_head{
		padding: 13.866rem 0 6.5rem;
	}
	.page-header_text{
		text-align: right;
	}
	.page-header_text .txt_block{
		display: inline-block;
		font-size: 1.4285rem;
		letter-spacing: 0.06em;
	}
}
@media screen and (min-width: 1200px){
	.page_head{
		padding: 16.116rem 0 7.4665rem;
	}
	.head_jp{
		font-size: 1.0666rem;
		padding-left: 1.4666rem;
		margin-bottom: 2rem;
	}
	.head_jp::before{
		width: 8px;
		height: 8px;
		top: 6px;
	}
	.head_en{
		font-size: 4.666rem;
	}
}
@media screen and (min-width: 1400px){
	.page_head{
		padding: 18.3666rem 0 8.4333rem;
	}
	.head_jp{
		margin-bottom: 2.3rem;
	}
	.head_en{
		font-size: 5.4666rem;
	}
	.page-header_text{
		margin-top: 4.766rem;
	}
	.page-header_text .txt_block{
		font-size: 1.6rem;
		letter-spacing: 0.08em;
		line-height: 2.08;
	}
}
