/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 100%;
    height: 75px;
	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;
}
#header.is-hide {
	transform: translateY(-100%);
}
#header.view{
	background-color: rgba(245,243,240,0.7);
	transition: all 0.4s ease-in-out, color 0.4s;
}
@media screen and (min-width: 768px){
	#header{ 
		height: 80px ;
	}
}

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

.header_container{
	width: 87.5%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
@media screen and (min-width: 768px){
	.header_container{
		width: 94.1176%;
		flex-direction: row-reverse;
	}
	.show-toggle .header_container{
		width: 97.0588%;
		margin-left: 0;
	}
}

/* logo */
.scroll_logo{
    width: 74.4px;
    margin-bottom: 0;
	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%;
	transition: .4s;
}
@media screen and (min-width: 768px){
    .scroll_logo{
		width: 85px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
    } 
}
@media screen and (min-width: 1200px){
	.scroll_logo{		
        width: 100px;
	}
}
@media screen and (max-width: 767px){
	.scroll_logo{
		z-index: 1001;
	}
}

/* head_right */
@media screen and (min-width: 768px){
	.head_right{
		display: flex;
		align-items: center;
	}
	.head_button{
		display: flex;
		align-items: center;
	}
	.head_button a{
		border: 1px solid #f27518;
		letter-spacing: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 0.846rem;
		font-weight: 500;
		width: 100px;
		height: 30px;
		border-radius: 35px;
		transition: .3s;
	}
	.head_button a:nth-child(1){
		background-color: #fff;
		color: #f27518;
	}
	.head_button a:nth-child(2){
		background-color: #f27518;
		color: #fff;
		margin-left: 8px;
	}
	.head_button a:hover{
		text-decoration: none;
		opacity: 0.7;
	}
	.head_insta{
		width: 18px;
		height: 18px;
		display: block;
		margin-left: 25px;
	}
	.head_insta img{
		display: block;
	}
}
@media screen and (min-width: 992px){
	.head_button a{
		width: 125px;
	}
}
@media screen and (min-width: 1200px){
	.head_button a{
		font-size: 0.928rem;
		width: 150px;
		height: 35px;
		border-radius: 40px;
	}
	.head_button a:nth-child(2){
		margin-left: 12px;
	}
	.head_insta{
		width: 20px;
		height: 20px;
		margin-left: 30px;
	}
}
@media screen and (max-width: 767px){
	.head_right{
		display: none;
	}
}

/* TRIGGER */
.menu-trigger {
	position: relative;
	cursor: pointer;
	z-index: 1001;
}
.menu-trigger .menu{
	line-height: 1;
	letter-spacing: 0;
	position: relative;
	display: flex;
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
	opacity: 1;
	visibility: visible;
}

.menu-trigger .menu::before{
	content: "";
	display: block;
	background-image: url("../images/diamond.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 15px;
	height: 10px;
	margin-right: 15px;
}
.menu-trigger span {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-color: #f27518;
	-webkit-transition: opacity 0.4s, transform 0.4s;
	-o-transition: opacity 0.4s, transform 0.4s;
	transition: opacity 0.4s, transform 0.4s;
}
.menu-trigger.tgl-active{
	width: 28px;
	height: 28px;
}
.menu-trigger.tgl-active .menu{
	opacity: 0;
	visibility: hidden;
}
.menu-trigger.tgl-active span{
	opacity: 1;
	visibility: visible;
	width: 28.2px;
	height: 1px;
}
.menu-trigger.tgl-active span {
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.menu-trigger.tgl-active span + span {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg); 
}
@media screen and (min-width: 768px){
	.menu-trigger.tgl-active{
		left: 75px;
	}
	.menu-trigger.tgl-active span{
		width: 40px;
		right: -6px;
	}
}
@media screen and (min-width: 1200px){
	.menu-trigger .menu{
		font-size: 0.928rem;
	}
	.menu-trigger .menu::before{
		width: 15.3px;
		height: 10.2px;
		margin-right: 13px;
	}
	.menu-trigger.tgl-active{
		width: 30px;
		height: 30px;
		top: 10px;
		left: 95px;
	}
	.menu-trigger.tgl-active span{
		width: 43px;
		right: -6px;
	}
}

/* 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;
	background-color: rgba(255, 255, 255, 0);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	overflow: hidden;
	overflow-y: 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: 100vw;
	min-height: 100vh; /* ←変更: 高さ不足防止 */
	overflow: visible; /* ← 親がスクロールを持つので不要 */
	background-color: #f6ece5;
	box-sizing: border-box;
}
.menu-toggle_inner{
	width: 87.5%;
	margin: 0 auto;
	padding: 120px 0 135px;
}
.menu-toggle_flex{
	display: flex;
	width: 100%;
}
.toggle_nav{
	width: 50%;
	margin-bottom: 0;
	position: relative;
	padding-bottom: 4.384rem;
}
.toggle_nav::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background-color: rgba(128,128,128,0.5);
	top: 0;
	right: 0;
}
.toggle_nav:nth-child(1){
	padding-right: 20px;
}
.toggle_nav:nth-child(2){
	padding-left: 20px;
}
.toggle_nav li{
	list-style: none;
}
.toggle_nav > li + li{
	margin-top: 1.538rem;
}
.toggle_nav li a{
	color: #000;
	display: inline-block;
	font-size: 1.0769rem;
	letter-spacing: 0;
	transition: .3s;
}
.toggle_nav li a:hover{
	opacity: 0.8;
	text-decoration: none;
}
.tgl_nav-text{
	line-height: 1.75;
}
.sub_toggle_nav{
	margin-top: 0.3846rem;
	margin-bottom: 0;
}
.sub_toggle_nav li{
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
}
.sub_toggle_nav li + li{
	margin-top: -0.1769rem;
}
.sub_toggle_nav li::before{
	content: "";
	width: 4px;
	height: 1px;
	background-color: #000;
	margin-right: 14px;
}
.toggle_button{
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
}
.toggle_button a{
	border: 1px solid #f27518;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
	width: calc((100% - 20px)/2);
    height: 40px;
    border-radius: 45px;
    transition: .3s;
}
.toggle_button a.catalog{
	background-color: #fff;
    color: #f27518;
}
.toggle_button a.contact{
	background-color: #f27518;
    color: #fff;
}
.toggle_button a:hover{
	opacity: 0.8;
	text-decoration: none;
}
.tgl-insta_copy-flex{
	margin-bottom: 0.823rem;
}
.tgl-insta{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #f27518;
	margin-top: 40px;
	margin-bottom: 2.6769rem;
	overflow: hidden;
}
.tgl-insta a{
	display: block;
	position: relative;
	transition: .3s;
}
.tgl-insta a:hover{
	opacity: 0.8;
}
.tgl-insta a img{
	width: 20px;
	height: 20px;
	display: block;
	opacity: 1;
}
.tgl-policy{
	color: #000;
	display: inline-block;
	letter-spacing: 0;
	font-size: 1rem;
	transition: .3s;
}
.tgl-policy:hover{
	opacity: 0.8;
	text-decoration: none;
}
small.tgl-copy{
	color: #99938e;
	font-size: 0.923rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.menu-toggle_block{
		width: 550px;
		margin-right: auto;
		position: relative;
		border-radius: 0 20px 20px 0;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
	}
	.menu-toggle_inner{
		width: 400px;
		padding: 120px 0;
	}
	.toggle_nav:nth-child(1){
		width: calc(50% - 15px);
		padding-right: 30px;
	}
	.toggle_nav:nth-child(2){
		width: calc(50% + 15px);
		padding-left: 30px;
	}
	.toggle_button{
		position: absolute;
		margin: 0;
		top: 23px;
		right: 75px;
	}
	.toggle_button a{
		width: 130px;
		height: 35px;
	}
	.toggle_button a.catalog{
		margin-right: 1rem;
	}
	.tgl-insta_copy-flex{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
		margin-top: 0;
		margin-bottom: 0;
		margin: 0;
		position: absolute;
		width: 400px;
		bottom: 80px;
	}
	.tgl-insta{
		width: 20px;
		height: 20px;
		border-radius: 0;
		background-color: transparent;
		margin: 0;
	}
	.tgl-insta a img{
		opacity: 0;
	}
	.tgl-insta a::before{
		position: absolute;
		content: "";
		width: 20px;
		height: 20px;
		background-image: url("../images/icon_insta_black.svg");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
		top: 0;
		left: 0;
		z-index: 1;
	}
	small.tgl-copy{
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.menu-toggle_block{
		min-height: 810px;
		max-height: 100vh;
	}
}
@media screen and (min-width: 992px){
	.tgl-insta_copy-flex{
		margin: 0;
		position: absolute;
		width: 400px;
		bottom: 80px;
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle_block{
		width: 700px;
	}
	.menu-toggle_inner{
		width: 510px;
	}
	.toggle_button{
		top: 30px;
		right: 95px;
	}
	.toggle_button a{
		width: 170px;
		height: 40px;
	}
	.toggle_nav{
		padding-bottom: 5.5714rem;
	}
	.toggle_nav:nth-child(1){
		width: calc(50% - 25px);
		padding-right: 50px;
	}
	.toggle_nav:nth-child(2){
		width: calc(50% + 25px);
		padding-left: 50px;
	}
	.toggle_nav > li + li{
		margin-top: 1.357rem;
	}
	.toggle_nav li a{
		font-size: 1rem;
	}
	.sub_toggle_nav{
		margin-top: 0.3857rem;
	}
	.sub_toggle_nav li + li{
		margin-top: -0.1428rem;
	}
	.tgl-insta_copy-flex{
		width: 510px;
		bottom: 98px;
	}
}
@media screen and (max-width: 767px){
	.toggle_nav:nth-child(2)::after{
		display: none;
	}
}

/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
	padding-top: 75px;
    overflow: hidden;
}
.mv_movie{
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	width: 87.5%;
	height: 100%;
	margin: 0 auto;
}
.mv_movie:aflter{
	background-color: rgba(0,0,0,0.1);
}
.mv_movie video{
	width: 100%;
	height: calc(100% - 80px);
	object-fit: cover;
}
.mv_txtArea{
	position: absolute;
	bottom: calc(4.7692rem + 80px);
	left: 50%;
	transform: translateX(-50%);
	margin: 0;
	width: 85.714%;
	color: #fff;
	font-size: 2.2307rem;
	line-height: 1.5;
	letter-spacing: 0;
}
.mv_txtArea span{
	display: block;
	font-size: 1.0769rem;
	letter-spacing: 0.08em;
	margin-top: 1.669rem;
}
@media screen and (min-width: 768px){
	.mv{
		height: 100vh;
		padding-top: 80px; 
		padding-bottom: 50px;
	}
	.mv_movie{
		width: 94.1176%;
		border-radius: 10px;
	}
	.mv_movie video{
		height: 100%;
	}
	.mv_txtArea{
		width: 90.625%;
		bottom: 7.23rem;
		font-size: 2.692rem;
	}
	.mv_txtArea span{
		margin-top: 0.523rem;
	}
}
@media screen and (min-width: 1200px){
	.mv_txtArea{
		font-size: 2.857rem;
		bottom: 6.6428rem;
	}
	.mv_txtArea span{
		font-size: 1.1428rem;
		margin-top: 0.7428rem;
	}
}
.news_pop{
	width: 100%;
	height: 80px;
	margin-top: -8px;
}
.news_pop a{
	background-color: #fff;
	color: #000;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .3s;
}
.news_pop a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.news_pop_txtArea{
	width: 85.714%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.news_pop_txtArea .inner{
	width: calc(100% - (28px + 20px))
}
.news_pop_tit{
	font-size: 1rem;
	letter-spacing: 0;
	line-height: 1.5;
	margin-bottom: 0.25384rem;
}
.news_pop_date{
	font-size: 0.769rem;
	letter-spacing: 0;
	margin-bottom: 0;
}
.news_pop_txtArea .arrow{
	width: 28px;
	height: 14px;
	border-radius: 20px;
	background-color: #f27518;
	position: relative;
	transition: .3s;
}
.news_pop_txtArea .arrow::after{
	position: absolute;
	content: "";
	width: 5.2px;
	height: 4.2px;
	background-image: url("../images/arrow_w.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
@media screen and (min-width: 768px){
	.news_pop{
		width: 300px;
		height: 100px;
		position: absolute;
		top: 20px;
		right: 20px;
		border-radius: 5px;
		overflow: hidden;
	}
	.news_pop a{
		background-color: rgba(255,255,255,0.2);
		color: #fff;
		align-items: flex-start;
	}
	.news_pop a:hover{
		background-color: #fff;
		color: #000;
	}
	.news_pop_txtArea{
		width: 85.7142%;
		display: block;
		margin-top: 1.585rem;
	}
	.news_pop_txtArea .inner{
		width: 100%;
	}
	.news_pop_txtArea .arrow{
		position: absolute;
		right: 5px;
		bottom: 10px;
		width: 35px;
		height: 17.5px;
	}
	.news_pop_txtArea .arrow::after{
		width: 6.5px;
		height: 5.3px;
	}
	.news_pop a:hover .news_pop_txtArea .arrow::after{
		opacity: 1;
	}
}
@media screen and (min-width: 1200px){
	.news_pop{
		width: 350px;
		height: 120px;
	}
	.news_pop_tit{
		font-size: 1.1428rem;
	}
	.news_pop_date{
		font-size: 0.857rem;
	}
}

/**************************
ページヘッダー
**************************/
.page_head{
	width: 100%;
	position: relative;
	padding: 5.562rem 0 3.64rem;
}
.page_head_inner{
	width: 87.5%;
	margin: 0 auto;
}
.page_head_titBlock{
	position: relative;
	padding-top: 37px;
}
.page_head_titBlock::before{
	position: absolute;
	content: "";
	width: 15px;
	height: 10px;
	background-image: url("../images/diamond.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.page_head_tit{
	font-size: 2.1538rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.4;
	margin-bottom: 1.207rem;
}
.page_head_en{
	font-size: 1.0769rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
	margin-bottom: 0;
}
.page_head.gallery_head{
	text-align: center;
	padding-bottom: 3.0769rem;
}
.gallery_head .page_head_tit{
	font-size: 1.538rem;
}
.ga_headArea{
	color: #646464;
	letter-spacing: 0;
	font-size: 0.923rem;
	line-height: 1.5;
	margin-bottom: 0;
}
.ga_headTag{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	width: 100%;
	max-width: 1260px;
	margin: 2.007rem auto 0;
}
.ga_headTag li{
	list-style: none;
	display: block;
	border-radius: 25px;
	border: 1px solid #f27518;
	background-color: #fff;
	color: #f27518;
	padding: 0 14px;
	height: 21.5px;
	line-height: 21px;
	font-size: 0.769rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	transition: .3s;
}
.voice_head .page_head_tit{
	font-size: 1.538rem;
	margin-bottom: 1.323rem;
}
.voice_head .page_head_en{
	color: #646464;
	letter-spacing: 0;
	line-height: 1;
	font-size: 1rem;
}
.page_head_tit.thanks_tit span{
	display: block;
	font-size: 1.1538rem;
	margin-top: 0.2538rem;
}
@media screen and (min-width: 768px){
	.page_head{
		padding: 7.038rem 0 6.1538rem;
	}
	.page_head_inner{
		width: 94.1176%;
	}
	.page_head_tit{
		font-size: 2.692rem;
	}
	.page_head.gallery_head{
		padding-bottom: 3.461rem;
	}
	.gallery_head .page_head_tit{
		font-size: 1.923rem;
	}
	.ga_headArea{
		font-size: 1rem;
	}
	.ga_headTag{
		margin-top: 2.292rem;
	}
	.voice_head .page_head_tit{
		font-size: 1.923rem;
	}
	.page_head_tit.thanks_tit span{
		font-size: 1.23rem;
	}
}
@media screen and (min-width: 1200px){
	.page_head{
		padding: 7.314rem 0 10.514rem;
	}
	.page_head_titBlock{
		padding-top: 54px;
	}
	.page_head_tit{
		font-size: 3.5714rem;
		margin-bottom: 1.771rem;
	}
	.page_head_en{
		font-size: 1.428rem;
	}
	.page_head.gallery_head{
		padding-bottom: 5.357rem;
	}
	.gallery_head .page_head_tit{
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
	}
	.ga_headTag{
		gap: 10px;
		margin-top: 3.1714rem;
	}
	.ga_headTag li{
		height: 24.5px;
		line-height: 24px;
		padding: 0 16px;
		font-size: 0.857rem;
	}
	.page_head.voice_head{
		padding-bottom: 8.37142rem;
	}
	.voice_head #pan{
		margin-bottom: 6.128rem;
	}
	.voice_head .page_head_titBlock{
		padding-top: 48px;
	}
	.voice_head .page_head_tit{
		font-size: 2.5rem;
		margin-bottom: 1.5rem;
	}
	.page_head_tit.thanks_tit span{
		font-size: 1.428rem;
		margin-top: 0.3857rem;
	}
}