/* -HEADER
--------------------------------------------------------------------------------------------- */
#headertop {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  transition: .6s;
}
body.fixed2 #headertop {
  transform: translateY(0%);
  transition: .6s;
	transition-delay: .5s;
}
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
    height: 95px;
	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;
}
#headertop #header.view {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  transition: .3s;
  transform: translateY(-200%);
}
body.fixed2 #headertop #header.view {
  transform: translateY(0%);
  transition: .3s;
}
@media screen and (min-width: 768px){
    #header{
        height: 110px;
    }
}
@media screen and (min-width: 1400px){
    #header{
        height: 138px;
    }
}
@media screen and (max-width: 767px){
	#headertop #header.view{
		transform: translateY(-95px);
	}
	#header.spec_bk{
		background-color: #fff;
	}
}

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

/* CONTAINER  */
.header_container {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (min-width: 768px){
	.header_container{
		width: 91.76%;
	}
}
@media screen and (min-width: 992px){
	.view .header_container.hide-logo{
		justify-content: flex-end;
	}
}
.scroll_logo{
	width: 140px;
	margin-bottom: 0;
}
.scroll_logo a{
	display: block;
	position: relative;
	transition: .4s;
}
.scroll_logo a img{
	width: 100%;
	display: block;
	opacity: 1;
	transition: .4s;
}
.scroll_logo a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-image: url("../images/logo_b.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .4s;
}
.view .scroll_logo a img{
	opacity: 0;
}
.view .scroll_logo a::after{
	opacity: 1;
}
.view.header_w .scroll_logo a img{
	opacity: 1;
}
.view.header_w .scroll_logo a::after{
	opacity: 0;
}
.header_page .scroll_logo a img{
	opacity: 0;
}
.header_page .scroll_logo a::after{
	opacity: 1;
}
body.fixed .scroll_logo a img{
	opacity: 1;
}
body.fixed .scroll_logo a::after{
	opacity: 0;
}
@media screen and (min-width: 768px){
	.scroll_logo{
		width: 150px;
	}
}
@media screen and (min-width: 992px){
	.scroll_logo{
		width: 160px;
	}
	.view .hide-logo .scroll_logo{
		display: none;
	}
}
@media screen and (min-width: 1200px){
	.scroll_logo{
		width: 180px;
	}
}
@media screen and (min-width: 1400px){
	.scroll_logo{
		width: 210px;
	}
}
.header_right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_contact{
	display: flex;
}
.header_contact a{
	color: #fff;
	border: 1px solid rgba(255,255,255,0.5);
	width: 100px;
	height: 30px;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 0.73rem;
	letter-spacing: 0;
	font-weight: 400;
	margin-left: 10px;
	transition: .4s;
}
.header_contact a:first-child{
	margin-left: 0;
}
.header_contact a:hover{
	text-decoration: none;
	background-color: #fff;
	color: #000;
}
.view .header_contact a{
	color: #000;
	border: 1px solid rgba(0,0,0,0.5);
}
.view .header_contact a:hover{
	background-color: #000;
	color: #fff;
}
.fixed .view .header_contact a{
	color: #000;
	border: 1px solid rgba(0,0,0,0.5);
}
.fixed .view .header_contact a:hover{
	background-color: #000;
	color: #fff;
}
.view.header_w .header_contact a{
	color: #fff;
	border: 1px solid rgba(255,255,255,0.5);
}
.view.header_w .header_contact a:hover{
	background-color: #fff;
	color: #000;
}
body.fixed .header_contact a{
	color: #fff;
	border: 1px solid rgba(255,255,255,0.5);
}
body.fixed .header_contact a:hover{
	background-color: #fff;
	color: #000;
}
.header_page .header_contact a{
	color: #000;
	border: 1px solid rgba(0,0,0,0.5);
}
.header_page .header_contact a:hover{
	background-color: #000;
	color: #fff;
}
@media screen and (min-width: 768px){
	.header_contact a{
		width: 120px;
		height: 35px;
	}
}
@media screen and (min-width: 1200px){
	.header_contact a{
		width: 140px;
		height: 40px;
	}
}
@media screen and (max-width: 575px){
	.header_contact{
		display: none;
	}
}


/* TRIGGER */
.menu-trigger {
	width: auto;
	position: relative;
	cursor: pointer;
	margin-left: 35px;
	z-index: 1001;
	display: flex;
	align-items: center;
}
.menu_trigger_tit{
	font-weight: 400;
	font-size: 0.86rem;
	letter-spacing: 0;
	color: #fff;
	margin-right: 15px;
	position: relative;
	transition: 0.4s;
}
.view .menu_trigger_tit{
	color: #000;
	transition: 0.4s;
}
.view.header_w .menu_trigger_tit{
	color: #fff;
	transition: 0.4s;
}
.header_page .menu_trigger_tit{
	color: #000;
	transition: 0.4s;
}
.menu_trigger_tit .t_open{
	opacity: 1;
	transition: 0.4s;
}
.menu_trigger_tit .t_close{
	position: absolute;
	color: #ccc;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	opacity: 0;
	transition: 0.4s;
}
#headertop.fixed .menu_trigger_tit .t_open{
	opacity: 1;
}
#headertop.fixed .menu_trigger_tit .t_close{
	opacity: 0;
}
.fixed #headertop .menu_trigger_tit .t_open{
	opacity: 0;
}
.fixed #headertop .menu_trigger_tit .t_close{
	opacity: 1;
}
.menu_trigger_icon{
	width: 25px;
	position: relative;
}
.menu_trigger_icon span {
	width: 4px;
	height: 4px;
	background-color: #fff;
	position: absolute;
	border-radius: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.view .menu_trigger_icon span{
	background-color: #000;
}
.view.header_w .menu_trigger_icon span{
	background-color: #fff;
}
.header_page .menu_trigger_icon span{
	background-color: #000;
}
.menu_trigger_icon span:nth-child(1){
	left: 0;
}
.menu_trigger_icon span:nth-child(2){
	left: calc(50% - 2px);
}
.menu_trigger_icon span:nth-child(3){
	left: calc(100% - 4px);
}
.menu-trigger:hover .menu_trigger_icon span:nth-child(1){
	left: calc(50% - 2px);
}
.menu-trigger:hover .menu_trigger_icon span:nth-child(3){
	left: calc(50% - 2px);
}
.fixed .menu_trigger_icon span{
	opacity: 0;
}
#headertop.fixed .menu_trigger_icon span{
	opacity: 1;
}
.fixed #headertop .menu_trigger_icon span{
	opacity: 0;
}
.menu_trigger_icon::after{
	position: absolute;
	content: "";
	width: 33px;
	height: 1px;
	background-color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) rotate(-45deg);
	transition: 0.3s ease-in-out;
	opacity: 0;
}
#headertop.fixed .menu_trigger_icon::after{
	opacity: 0;
}
.fixed #headertop .menu_trigger_icon::after{
	opacity: 1;
}
@media screen and (min-width: 768px){
	.menu-trigger{
		margin-left: 30px;
	}
	.menu_trigger_tit{
		margin-right: 20px;
	}
	.menu_trigger_icon{
		width: 30px;
	}
	.menu_trigger_icon::after{
		width: 40px;
	}
}
@media screen and (min-width: 992px){
	.menu-trigger{
		margin-left: 40px;
	}
}
@media screen and (min-width: 1200px){
	.menu-trigger{
		margin-left: 50px;
	}
}
@media screen and (max-width: 767px){
	.menu-trigger:hover .menu_trigger_icon span:nth-child(1){
		left: 0;
	}
	.menu-trigger:hover .menu_trigger_icon span:nth-child(3){
		left: calc(100% - 4px);
	}
}

/* MENU TOGGLE */
.menu-toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: 0.4s ease-in-out;
	background-color: #000;
	color: #fff;
  padding: 0;
  overflow: hidden;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
	display: none;
}
/*menu-toggle.active*/
.menu-toggle.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  overflow-y: scroll;
}
.toggle_head{
	width: 91.76%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}
@media screen and (min-width: 768px){
	.toggle_head{
		height: 110px;
	}
	.toggle_head .header_contact{
		margin-right: 8.5rem;
	}
}
@media screen and (min-width: 992px){
	.toggle_head .header_contact{
		margin-right: 9.3rem;
	}
}
@media screen and (min-width: 1200px){
	.toggle_head .header_contact{
		margin-right: 9rem;
	}
}
@media screen and (min-width: 1400px){
	.toggle_head{
		height: 138px;
	}
}
.menu-toggle_inner{
	overflow-y: auto !important; /* 内部のみスクロールを可能にする */
    -webkit-overflow-scrolling: touch; /* iOSでスムーズなスクロールを可能にする */
    scroll-behavior: smooth; /* スムーズスクロールを適用 */
	max-height: 100vh;
}
.toggle_flex{
	padding-top: 130px;
	padding-bottom: 160px;
	width: 83.53%;
	max-width: 1420px;
	margin-right: auto;
	margin-left: auto;
}
/* toggle_left */
.toggle_left{
	position: relative;
	padding-bottom: 4rem;
	margin-bottom: 4rem;
}
.toggle_left::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background-color: rgba(178,178,178,0.5);
	top: 0;
	left: 36.71%;
}
.toggle_left_flex{
	display: flex;
	flex-wrap: wrap;
}
.toggle_left_flex .toggle_menu1{
	width: 36.71%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.toggle_left_flex .toggle_menu2{
	width: 63.29%;
	padding-left: 8.86%;
}
.toggle_menu1, .toggle_menu2{
	margin-bottom: 0;
}
.toggle_menu1 > li, .toggle_menu1_sub li, .toggle_menu2 > li{
	list-style: none;
	line-height: 1;
}
.toggle_menu1 > li:not(:first-child), .toggle_menu2 > li:not(:first-child){
	margin-top: 2.5rem; 
}
.toggle_menu1_sub li:not(:first-child){
	margin-top: 1.7rem;
}
.toggle_menu1 > li a, .toggle_menu2 > li a{
	color: #fff;
	font-size: 1.2rem;
	letter-spacing: 0.02em;
	transition: .3s;
}
.toggle_menu1_sub li a{
	color: #b2b2b2;
	font-size: 1rem;
	letter-spacing: 0.05em;
}
.toggle_menu1 > li a:hover, .toggle_menu1_sub li a:hover, .toggle_menu2 > li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.toggle_policy{
	position: relative;
	margin-top: 3.33rem;
	margin-left: 8.86%;
	left: 36.71%;
	display: inline-block;
	font-size: 0.73rem;
	letter-spacing: 0.04em;
	color: #b2b2b2;
	transition: .3s;
}
.toggle_policy:hover{
	text-decoration: none;
	color: #b2b2b2;
	opacity: 0.7;
}
/* toggle_right */
.toggle_plink{
	display: flex;
	justify-content: space-between;
}
.toggle_plink a{
	width: calc((100% - 1rem)/2);
	transition: .3s;
}
.toggle_plink a:hover{
	text-decoration: none;
}
.plink_tit {
	font-size: 0.73rem;
	letter-spacing: 0.04em;
	color: #b2b2b2;
	margin-top: 0.85rem;
	margin-bottom: 0;
	transition: .3s;
}
.plink_tit .f-eng {
	color: #fff;
	font-size: 1.2rem;
	display: block;
	margin-bottom: -0.2rem;
}
.toggle_plink a:hover .plink_tit{
	opacity: 0.7;
}
.toggle_company{
	margin-top: 4rem;
}
.tg_add p{
	color: #a6a6a6;
	font-size: 0.86rem;
	letter-spacing: 0.05em;
	line-height: 2;
	margin-bottom: 1rem;
}
.tg_add p + p{
	margin-bottom: 0;
}
.tg_add p span{
	font-size: 0.73rem;
	display: block;
}
.toggle_sns{
	display: flex;
	margin-top: 3rem;
}
.toggle_sns a{
	width: auto;
	height: 20px;
	display: block;
	transition: .3s;
}
.toggle_sns a:not(:first-child){
	margin-left: 25px;
}
.toggle_sns a:hover{
	opacity: 0.7;
}
.toggle_sns a img{
	width: 100%;
	height: 100%;
	display: block;
}
@media screen and (min-width: 768px){
	.toggle_flex{
		padding-top: 160px;
		padding-bottom: 150px;
		height: auto;
		display: flex;
		justify-content: space-between;
	}
	/* toggle_left */
	.toggle_left{
		width: 45%;
		margin-bottom: 0;
		padding-bottom: 0;
	}
	.toggle_policy{
		margin-top: 4.83rem;
		margin-bottom: 4.83rem;
	}
	/* toggle_right */
	.toggle_right{
		width: 50%;
		min-height: 525px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.toggle_company{
		margin-top: 0;
		margin-bottom: 4.83rem;
	}
}
@media screen and (min-width: 992px){
	/* toggle_left */
	.toggle_left{
		width: calc(40.14% - 110px);
		height: auto;
		padding-bottom: 0;
	}
	/* toggle_right */
	.toggle_right{
		width: 59.86%;
	}
	.plink_tit{
		margin-top: 1.27rem;
	}
	.toggle_plink a{
		width: calc((100% - 2.22rem)/2);
	}
	.toggle_company{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
	}
	.tg_add{
		margin-bottom: -0.4rem;
	}
}
@media screen and (min-width: 1200px){
	/* toggle_right */
	.plink_tit{
		margin-top: 1.7rem;
	}
	.plink_tit .f-eng{
		margin-bottom: 0.2rem;
	}
	
}
@media screen and (min-width: 1400px){
	.toggle_flex{
		padding-top: 200px;
		padding-bottom: 160px;
	}
	/* toggle_right */
	.toggle_plink a{
		width: calc((100% - 3.33rem)/2);
	}
	.toggle_sns a{
		height: 25px;
	}
	.toggle_sns a:not(:first-child){
		margin-left: 30px;
	}
}
@media screen and (min-height: 890px){
	/* toggle_left */
	.toggle_left{
		height: 100%;
	}
}
@media screen and (min-height: 1001px){
	.toggle_flex{
		padding: 0;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
}


/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.mv_slider{
    width: 100%;
    height: 100%;
	margin-bottom: 0;
}
.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.15);
}
.mv_slider li:first-child{
	background-image: url("../images/mv1.jpg?202506");
	background-position: center;
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2.jpg");
	background-position: 34% center;
}
.mv_slider li:nth-child(3){
	background-image: url("../images/mv3.jpg");
	background-position: 25% center;
}
.mv_txtArea{
	width: 85%;
	position: absolute;
	color: #fff;
	left: 50%;
	bottom: 22.7%;
	transform: translateX(-50%);
}
.mv_txtArea .f-ns{
	font-size: 2rem;
	letter-spacing: 0.02em;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 1.5rem;
}
.mv_txtArea .f-eng{
	letter-spacing: 0.05em;
	font-size: 1rem;
	line-height: 1;
}
@media screen and (min-width: 768px){
	.mv_txtArea{
		width: 91.76%;
		bottom: 9.7%;
	}
	.mv_txtArea .f-ns{
		font-size: 2.5rem;
		margin-bottom: 1.8rem;
	}
}
@media screen and (min-width: 992px){
	.mv_slider li:first-child, .mv_slider li:nth-child(2), .mv_slider li:nth-child(3){
		background-position: center;
	}
}
@media screen and (min-width: 1200px){
	.mv_txtArea .f-ns{
		font-size: 3rem;
		margin-bottom: 2.3rem;
	}
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/* SLIDER PROGRESS */
#visual-progress {
    font-size: 0.86rem;
    line-height: 1;
    color: #fff;
    width: 50px;
	height: 80px;
    position: absolute;
	right: 4.11%;
	bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
#visual-progress span {
    display: inline-block;
}
#visual-progress .total-slide {
    opacity: 0.5;
}
#visual-progress .bar {
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    position: relative;
    top: 0;
    left: 0;
    overflow: hidden; /* 横に伸びるように設定 */
}
#visual-progress .bar .bar-current {
    position: absolute;    
    top: 0;
    left: 0; /* 修正: プログレスバーを左端に配置 */
    width: 100%; /* 修正: プログレスバーの幅を0に設定 */
    height: 0;
    background-color: #fff;
    transition: height 4s ease; /* 修正: widthプロパティにトランジションを適用 */
}
@media screen and (min-width: 768px){
	#visual-progress{
		height: 120px;
	}
}
@media screen and (min-width: 1200px){
	#visual-progress{
		width: 100px;
		height: 150px;
	}
}





/**************************
ページヘッダー
**************************/
.page-head{
	padding-top: 11.08rem;
	margin-bottom: 4.8rem;
	width: 86.66%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.page-head::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: #c6c6c6;
	left: 0;
	bottom: 0;
}
.page-head.image{
	width: 100%;
}
.page-head.image::after{
	content: none;
}
.page-head.image .inner{
	width: 86%;
	margin: 0 auto;
}
.head_en{
	font-family: "Inter", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3.84rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 1rem;
}
.head-bfont{
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.page-head{
		width: 91.76%;
		padding-top: 12.77rem;
	}
	.page-head.image .inner{
		width: 91.76%;		
	}
	.page_ttl{
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.head_en{
		font-size: 4.615rem;
		margin-bottom: 0;
		margin-right: 1.6rem;
	}
	.head-bfont{
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 992px){
	.page-head{
		padding-top: 15.46rem;
	}
	.head_en{
		font-size: 5.384rem;
	}
}
@media screen and (min-width: 1200px){
	.head_en{
		font-size: 6rem;
		margin-right: 3.2rem;
	}
	.head-bfont{
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 1400px){
	.page-head{
		padding-top: 16.16rem;
		margin-bottom: 9.6rem;
	}
}

/* 404title */
.head-bfont .jp{
	font-size: 1rem;
	display: block;
	margin-top: 0.5rem;
}
@media screen and (min-width: 768px){
	.head-bfont .jp{
		font-size: 1.2rem;
	}
}
