/* -HEADER
--------------------------------------------------------------------------------------------- */
#header-wrap {
  z-index: 55555;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  transition: .6s;
}
#header-wrap.DownMove #header.view{
	top: 0;
	transform: translateY(0%);
	transition: .3s;
}
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
    height: 60px;
	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;
}
.fixed #header{
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media screen and (min-width: 768px){
    #header{
        height: 85px;
    }
}
@media screen and (min-width: 992px){
    #header{
        height: 90px;
    }
}
@media screen and (min-width: 1200px){
    #header{
        height: 100px;
    }
}
@media screen and (min-width: 1400px){
    #header{
        height: 120px;
    }
}
#header.view{
	background-color: #fff;
	transform: translateY(-100%);
	-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;
}

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

/* CONTAINER  */
.header_container {
	width: 86%;
    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;
}
@media screen and (min-width: 768px){
	.header_container{
		width: 92.88%;
		max-width: 1672px;
	}
}
/* logo */
.scroll_logo{
    width: 120px;
    margin-bottom: 0;
	position: relative;
	transition: .4s;
}
.scroll_logo a,
.scroll_logo img{
    display: block;
    width: 100%;
    height: 100%;
	position: relative;
	z-index: 1;
}
.scroll_logo::before{
	position: absolute;
	content: "";
	background-image: url("../images/logo.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	transition: .4s;
	opacity: 0;
}
.view .scroll_logo img{
	opacity: 0;
	transition: .4s;
}
.view .scroll_logo::before{
	opacity: 1;
	transition: .4s;
}
.header_page .scroll_logo img{
	opacity: 0;
}
.header_page .scroll_logo::before{
	opacity: 1;
}
.fixed .scroll_logo img{
	opacity: 1;
}
.fixed .scroll_logo::before{
	opacity: 0;
}
@media screen and (min-width: 768px){
    .scroll_logo{
        width: 160px;
    }
}
@media screen and (min-width: 992px){
    .scroll_logo{
        width: 200px;
    }
}
@media screen and (min-width: 1600px){
    .scroll_logo{
        width: 230px;
    }
}
.header_right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header_sns{
	display: flex;
}
.header_sns a{
	position: relative;
	display: block;
	width: auto;
	height: 14px;
	margin-right: 13px;
	transition: .3s;
}
.header_sns a:last-child{
	margin-right: 0;
}
.header_sns a:hover{
	opacity: 0.7;
	transition: .3s;
}
.header_sns a img{
	width: 100%;
	height: 100%;
	display: block;
	opacity: 1;
	transition: .4s;
}
.header_sns a::before{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .4s;
}
.header_sns a:first-child::before{
	background-image: url("../images/icon_insta_c.svg");
}
.header_sns a:nth-child(2)::before{
	background-image: url("../images/icon_fb_c.svg");
}
.header_sns a:nth-child(3)::before{
	background-image: url("../images/icon_line_c.svg");
}
.header_sns a:nth-child(4)::before{
	background-image: url("../images/icon_youtube_c.svg");
}
.view .header_sns a img{
	opacity: 0;
	transition: .4s;
}
.view .header_sns a::before{
	opacity: 1;
	transition: .4s;
}
.header_page .header_sns a img{
	opacity: 0;
}
.header_page .header_sns a::before{
	opacity: 1;
}
.fixed .header_sns a img{
	opacity: 1;
}
.fixed .header_sns a::before{
	opacity: 0;
}
.fixed_nav{
	display: none;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.header_sns a{
		margin-right: 15px;
	}
	.fixed_nav{
		display: flex;
		margin-right: 35px;
	}
	.fixed_nav li{
		list-style: none;
		margin-right: 20px;
	}
	.fixed_nav li:last-child{
		margin-right: 0;
	}
	.fixed_nav li a{
		color: #fff;
		display: block;
		font-family: "Jost", sans-serif;
		font-optical-sizing: auto;
		font-weight: 400;
		letter-spacing: 0.02em;
		font-size: 0.882rem;
		transition: .3s;
	}
	.fixed_nav li a:hover{
		text-decoration: none;
		opacity: 0.7;
		transition: .3s;
	}
	.view .fixed_nav li a,
	.header_page .fixed_nav li a{
		color: #282d27;
	}
	.fixed .fixed_nav li a{
		color: #fff;
	}
}
@media screen and (min-width: 992px){
	.header_sns a{
		margin-right: 20px;
	}
	.fixed_nav{
		margin-right: 60px;
	}
	.fixed_nav li{
		margin-right: 30px;
	}
}
@media screen and (min-width: 1200px){
	.header_sns a{
		height: 18px;
	}
}



/* TRIGGER */
.menu-trigger {
	width: 20px;
	height: 7px;
	position: relative;
	cursor: pointer;
	margin-left: 20px;
	z-index: 1001;
}
.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:first-child {
	top: 0;
}
.menu-trigger span:last-child {
	bottom: 0;
}
.menu-trigger.tgl-active span:first-child {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	-ms-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}
.menu-trigger.tgl-active span:last-child {
	top: 50%;
	bottom: unset;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	-ms-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
}
.view .menu-trigger span,
.header_page .menu-trigger span{
	background-color: #282d27;
}
.fixed .menu-trigger span{
	background-color: #fff;
}
@media screen and (min-width: 768px){
	.menu-trigger{
		width: 30px;
		height: 10px;
		margin-left: 35px;
	}
}
@media screen and (min-width: 992px){
	.menu-trigger{
		margin-left: 40px;
	}
}
/* 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: #32362b;
	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;
}
/* menu-toglle__inner */
.menu-toggle__inner{
	margin-top: 60px;
}
@media screen and (min-width: 768px){
	.menu-toggle__inner{
		display: flex;
		flex-wrap: wrap;
		flex-direction: row-reverse;
		justify-content: space-between;
		margin-top: 90px;
		height: calc(100vh - 90px);
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle__inner{
		margin-top: 100px;
		height: calc(100vh - 100px);
	}
}
@media screen and (min-width: 1400px){
	.menu-toggle__inner{
		margin-top: 120px;
		height: calc(100vh - 120px);
	}
}
/* toggle_head */
.toggle_head{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	border-bottom: 1px solid #5d6057;
}
.toggle_head_inner{
	position: absolute;
	width: 86%;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding-right: 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.toggle_head_right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
@media screen and (min-width: 768px){
	.toggle_head{
		height: 90px;
	}
	.toggle_head_inner{
		width: 92.88%;
		max-width: 1672px;
		padding-right: 65px;
	}
}
@media screen and (min-width: 992px){
	.toggle_head_inner{
		padding-right: 70px;
	}
}
@media screen and (min-width: 1200px){
	.toggle_head{
		height: 100px;
	}
}
@media screen and (min-width: 1400px){
	.toggle_head{
		height: 120px;
	}
}
/* toggle_menuArea */
.toggle_menuArea{
	width: 86%;
	margin-right: auto;
	margin-left: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 4rem 0;
}
.toggle_menu_block{
	width: calc((100% - 2rem)/2);
}
.toggle_menu_tit{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.17rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.7;
	margin-bottom: 1.35rem;
}
.toggle_menu_tit .f-eng{
	display: block;
	font-weight: 400;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	margin-bottom: 0.31rem;
}
.toggle_menu{
	margin-bottom: 0;
}
.toggle_menu > li{
	list-style: none;
}
.toggle_menu > li:last-child{
	margin-bottom: 0;
}
.toggle_menu > li > a{
	display: inline-block;
	color: #fff;
	font-size: 0.88rem;
	letter-spacing: 0;
	line-height: 2.3;
	font-weight: 500;
	transition: .3s;
}
.toggle_menu > li > a:hover{
	text-decoration: none;
	opacity: 0.7;
	transition: .3s;
}
.toggle_menu > li > a .f-eng{
	font-weight: 300;
}
.toggle_menu > li > ul{
	margin-left: 1rem;
}
.toggle_menu > li > ul > li{
	list-style: none;
}
.toggle_menu > li > ul > li a{
	display: inline-block;
	color: #fff;
	font-size: 0.88rem;
	line-height: 2.3;
	font-weight: 500;
	transition: .3s;
}
.toggle_menu > li > ul > li a:hover{
	text-decoration: none;
	opacity: 0.7;
	transition: .3s;
}
.toggle_menu > li > ul > li a .f-eng{
	font-weight: 300;
}
.toggle_menu_block:nth-child(1), .toggle_menu_block:nth-child(2){
	margin-bottom: 3rem;
}
.toggle_menu_block:nth-child(2) .toggle_menu > li{
	margin-bottom: 1.35rem;
}
@media screen and (min-width: 576px){
	.toggle_menuArea{
		padding: 0;
	}
	.toggle_menu_block{
		width: calc(100% / 3);
		border-left: 1px solid #5d6057;
		padding-left: 1.4rem;
		padding-top: 4rem;
		padding-bottom: 4rem;
	}
	.toggle_menu_block:nth-child(1), .toggle_menu_block:nth-child(2){
		margin-bottom: 0;
	}
	.toggle_menu_tit .f-eng{
		margin-bottom: 0.61rem;
	}
}
@media screen and (min-width: 768px){
	.toggle_menuArea{
		width: 65%;
		margin: 0;
	}
}
@media screen and (min-width: 992px){
	.toggle_menuArea{
		width: 62.78%;
	}
	.toggle_menu_block{
		padding-left: 1.94rem;
	}
	.toggle_menu_block:nth-child(2) .toggle_menu > li{
		margin-bottom: 1.85rem;
	}
}
@media screen and (min-width: 1600px){
	.toggle_menu_block{
		padding: 10.58rem 0 5rem 2.94rem;
	}
}
@media screen and (min-width: 900px) and (max-width: 1400px) and (min-height: 550px) and (max-height: 700px){
	.toggle_menu_block{
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
}


/* toggle_bnr */
.toggle_bnrArea{
	border-top: 1px solid #5d6057;
	padding: 4rem 0;
	width: 100%;
}
.toggle_bnr{
	width: 86%;
	margin-right: auto;
	margin-left: auto;
}
.toggle_bnr a{
	width: 100%;
	height: 100%;
	aspect-ratio: 17 / 4;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0.588rem;
	font-size: 1rem;
	line-height: 1.5;
	transition: .3s;
}
.toggle_bnr a:hover{
	text-decoration: none;
	transition: .3s;
	opacity: 0.8;
}
.toggle_bnr a.arrow{
	position: relative;
	margin-bottom: 10px;
}
.toggle_bnr a.arrow::after{
	position: absolute;
	content: "";
	top: 50%;
	right: 30px;
	transform: translateY(-50%);
	width: 16px;
	height: 11px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transition: .3s;
}
.toggle_bnr a.arrow:hover::after{
	right: 25px;
	transition: .3s;
}
.toggle_bnr a.bnr_contact{
	background-color: #5a9433;
	color: #fff;
}
.toggle_bnr a.bnr_contact.arrow::after{
	background-image: url("../images/arrow_w.svg");
}
.toggle_bnr a.bnr_catalog{
	background-color: #ece4cc;
	color: #282d27;
}
.toggle_bnr a.bnr_catalog.arrow::after{
	background-image: url("../images/arrow.svg");
}
.toggle_bnr a.bnr_line{
	background-color: #fff;
	color: #282d27;
}
.toggle_bnr a.bnr_line img{
	width: 20px;
	margin-right: 10px;
}
@media screen and (min-width: 576px){
	.toggle_bnr{
		max-width: 300px;
	}
}
@media screen and (min-width: 768px){
	.toggle_bnrArea{
		width: 35%;
		border-top: none;
	}
	.toggle_bnr{
		width: 80%;
		max-width: 340px;
	}
}
@media screen and (min-width: 768px) and (max-width: 991px){
	.toggle_bnr a{
		font-size: 0.9rem;
	}
	.toggle_bnr a.arrow::after{
		right: 20px;
	}
	.toggle_bnr a.arrow:hover::after{
		right: 15px;
	}
}
@media screen and (min-width: 992px){
	.toggle_bnrArea{
		width: 37.22%;
	}
	.toggle_bnr a.arrow{
		margin-bottom: 15px;
	}
}
@media screen and (min-width: 1400px){
	.toggle_bnr a.arrow{
		margin-bottom: 20px;
	}
}
@media screen and (min-width: 1600px){
	.toggle_bnrArea{
		padding: 10.58rem 0 0;
	}
}
@media screen and (min-width: 900px) and (max-width: 1400px) and (min-height: 550px) and (max-height: 700px){
	.toggle_bnrArea{
		padding-top: 3.5rem;
		padding-bottom: 3.5rem;
	}
}




/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.mv_slider{
    width: 100%;
    height: 100%;
}
.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.1);
}
.mv_slider li:first-child{
	background-image: url("../images/mv1.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(3){
	background-image: url("../images/mv3.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(4){
	background-image: url("../images/mv4.jpg?202511");
	background-position: 35% 70%;
}
.mv_slider li:nth-child(5){
	background-image: url("../images/mv5.jpg?202511");
	background-position: 55% bottom;
}
.mv_slider li:nth-child(6){
	background-image: url("../images/mv6.jpg?202511");
	background-position: 60% center;
}
.mv_txtArea{
	width: 89.743%;
	position: absolute;
	color: #fff;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.mv_txtArea p{
	text-align: center;
	margin-bottom: 0;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 2.7rem;
	letter-spacing: 0.02em;
	line-height: 1.4;
}
.mv_txtArea p span{
	position: relative;
}
.mv_txtArea p span::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(255,255,255,0.75);
	left: 0;
	bottom: 0.21rem;
}
@media screen and (min-width: 576px){
	.mv_txtArea p{
		font-size: 3.2rem;
	}
	.mv_txtArea p span::after{
		bottom: 0.41rem;
	}
}
@media screen and (min-width: 768px){
	.mv_txtArea{
		width: 82.29%;
	}
	.mv_txtArea p{
		font-size: 3.7rem;
	}
}
@media screen and (min-width: 992px){
	.mv_txtArea p{
		font-size: 4.2rem;
	}
}
@media screen and (min-width: 1200px){
	.mv_txtArea p{
		font-size: 4.7rem;
	}
}
@media screen and (max-width: 767px){
.mv_slider li:first-child{
	background-image: url("../images/mv1_sp.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2_sp.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(3){
	background-image: url("../images/mv3_sp.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(4){
	background-image: url("../images/mv4_sp.jpg?202511");
	background-position: center;
}
.mv_slider li:nth-child(5){
	background-image: url("../images/mv5_sp.jpg?202511");
	background-position: center;
	}
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}




/**************************
ページヘッダー
**************************/
.page-head{
	padding-top: 9rem;
	padding-bottom: 4.058rem;
	width: 86%;
	margin-right: auto;
	margin-left: auto;
}
.page-head.news_event{
	padding-top: 60px;
	padding-bottom: 0;
}
.news_event .page_head_txtArea{
	display: none;
}
.page_ttl{
	text-align: center;
}
.head-bfont{
	font-size: 1.94rem;
	font-weight: 400;
	line-height: 1.2;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	letter-spacing: 0.03em;
	margin-bottom: 1.07rem;
}
.head-bfont.logo_tit{
	margin-bottom: 0;
	width: 200px;
	display: inline-block;
}
.head-bfont.logo_tit img{
	display: block;
	width: 100%;
	height: 100%;
}
.head_en{
	font-size: 0.858rem;
	letter-spacing: 0.02em;
	margin-bottom: 0;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}
@media screen and (min-width: 768px){
	.page-head{
		padding-top: 11.09rem;
		padding-bottom: 5.058rem;
		width: 92.88%;
		max-width: 1672px;
	}
	.page-head.news_event{
		padding-top: 85px;
	}
	.head-bfont{
		font-size: 2.94rem;
		margin-bottom: 1.67rem;
	}
	.head-bfont.logo_tit{
		width: 230px;
	}
	.head_en{
		font-size: 1.058rem;
	}
}
@media screen and (min-width: 992px){
	.page-head{
		padding-top: 13.09rem;
		padding-bottom: 6.058rem;
	}
	.page-head.news_event{
		padding-top: 90px;
	}
	.head-bfont.logo_tit{
		width: 280px;
	}
}
@media screen and (min-width: 1200px){
	.page-head.news_event{
		padding-top: 100px;
	}
	.head-bfont.logo_tit{
		width: 320px;
	}
}
@media screen and (min-width: 1400px){
	.page-head{
		padding-top: 15.09rem;
		padding-bottom: 7.058rem;
	}
	.page-head.news_event{
		padding-top: 120px;
	}
}
/* 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;
	}
}

/* モデルハウス用header */
.model_head{
	width: 100%;
	height: 60vh;
	position: relative;
}
.model_head_img{
	width: 100%;
	height: 100%;
	position: relative;
}
.model_head_img::after{
	position: absolute;
	content: "";
	background-color: rgba(0,0,0,0.05);
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
}
.model_head_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.model_head_tit{
	position: absolute;
	right: 0;
	bottom: 13.26%;
	background-color: #fff;
	width: 250px;
	height: 83px;
	border-radius: 0.588rem 0 0 0.588rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.model_tit{
	width: 70.4%;
}
.model_tit img{
	display: block;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 768px){
	.model_head{
		height: 50vh;
	}
	.model_head_tit{
		width: 300px;
		height: 96px;
	}
	.model_tit{
		width: 60.4%;
	}
}
@media screen and (min-width: 992px){
	.model_head{
		height: 80vh;
	}
	.model_head_tit{
		width: 350px;
		height: 105px;
	}
}
@media screen and (min-width: 1200px){
	.model_head{
		height: 100vh;
	}
	.model_head_tit{
		width: 350px;
		height: 105px;
	}
}
@media screen and (min-width: 1200px){
	.model_head{
		height: 100vh;
	}
	.model_head_tit{
		width: 350px;
		height: 105px;
	}
}
@media screen and (min-width: 1400px){
	.model_head{
		height: 100vh;
	}
	.model_head_tit{
		width: 480px;
		height: 142px;
	}
	.model_tit{
		width: 57.4%;
	}
}
@media screen and (min-width: 1600px){
	.model_head_tit{
		width: 540px;
		height: 160px;
	}
}
