/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 100%;
    height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background-color: #fff;
	-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: 75px;
    }
}
@media screen and (min-width: 1200px){
    #header{
        height: 90px;
    }
}
@media screen and (min-width: 1400px){
    #header{
        height: 100px;
    }
}

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;	
}
@media screen and (min-width: 768px){
	.header_container{
		width: 93.33%;
	}
}
/* logo */
.scroll_logo{
    width: 150px;
    margin-bottom: 0;
	position: relative;
	transition: .4s;
}
.scroll_logo a,
.scroll_logo img{
    display: block;
    width: 100%;
    height: 100%;
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 768px){
	.scroll_logo{
		width: 180px;
	}
}
@media screen and (min-width: 1200px){
    .scroll_logo{
        width: 200px;
    }
}
@media screen and (min-width: 1400px){
    .scroll_logo{
		width: 220px;
    }
}

/* header_right */
.header_right{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header_nav{
	display: none;
}
.header_sns{
	display: flex;
}
.header_sns a{
	width: 20px;
	height: 20px;
	display: block;
	position: relative;
}
.header_sns a:first-child{
	margin-right: 20px;
}
.header_sns a img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	opacity: 1;
	transition: .3s;
}
.header_sns a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: .3s;
}
.header_sns a:first-child::after{
	background-image: url("../images/icon_insta_c.svg");
}
.header_sns a:nth-child(2)::after{
	background-image: url("../images/icon_youtube_c.svg");
}
.header_sns a:hover img{
	opacity: 0;
	transition: .3s;
}
.header_sns a:hover::after{
	opacity: 1;
	transition: .3s;
}
.header_btn{
	display: none;
}
@media screen and (min-width: 768px){
	.header_btn{
		margin-left: 2.16rem;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 160px;
		height: 37px;
		border: 1px solid rgba(122,128,132,0.75);
		background-color: #7a8084;
		color: #fff;
		border-radius: 42px;
		font-size: 0.93rem;
		transition: .3s;
	}
	.header_btn:hover{
		text-decoration: none;
		color: #7a8084;
		background-color: #fff;
		transition: .3s;
	}
}
@media screen and (min-width: 992px){
	.header_nav{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		margin-bottom: 0;
	}
	.header_nav li{
		list-style: none;
		margin-left: 1.5rem;
	}
	.header_nav li:first-child{
		margin-left: 0;
	}
	.header_nav li a{ 
		display: block;
		font-size: 1rem;
		color: #000;
		transition: .3s;
	}
	.header_nav li a:hover{
		text-decoration: none;
		color: #7a8084;
		transition: .3s;
	}
	.header_sns{
		margin-left: 2.16rem;
	}
}
@media screen and (min-width: 1200px){
	.header_nav li{
		margin-left: 2rem;
	}
	.header_sns{
		margin-left: 2.66rem;
	}
	.header_btn{
		margin-left: 2.66rem;
		width: 180px;
		height: 42px;
	}
}

/* TRIGGER */
.menu-trigger {
	width: 25px;
	height: 10px;
	position: relative;
	cursor: pointer;
	z-index: 1001;
	margin-left: 2.16rem;
}
.menu-trigger span {
	width: 100%;
	height: 1px;
	background-color: #000;
	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{
	background-color: #000;
}
.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: #000;
}
@media screen and (min-width: 992px){
	.menu-trigger{
		display: none;
	}
}

/* MENU TOGGLE */
.menu-toggle {
  position: fixed;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: 0.2s ease-in-out;
  background-color: #fff;
  top: 0;
  right: 0;
  opacity: 0;
  color: #000;
  visibility: hidden;
}
.menu-toggle.active {
  z-index: 1000;
  opacity: 1;
  visibility: visible;
}
.menu-toggle_inner{
	width: 86%;
	margin: 0 auto;
	padding-top: 90px;
	padding-bottom: 50px;
}
@media screen and (min-width: 768px){
	.menu-toggle_inner{
		padding-top: 120px;
	}
}
.toggle_logo{
	width: 200px;
	margin-bottom: 1.13rem;
}
.toggle_logo a{
	display: block;
	width: 100%;
}
.toggle_add{
	font-size: 1rem;
	margin-bottom: 1.13rem;
}
.toggle_btn{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #7a8084;
	color: #fff;
	border: 1px solid rgba(122,128,132,0.75);
	border-radius: 42px;
	width: 160px;
	height: 37px;
	transition: .3s;
}
.toggle_btn:hover{
	text-decoration: none;
	color: #7a8084;
	background-color: #fff;
	transition: .3s;
}
.toggle_sns{
	display: flex;
	align-items: center;
	margin-top: 1.05rem;
}
.toggle_sns .f-eng{
	margin-right: 1.33rem;
}
.toggle_sns a{
	display: block;
	width: 15px;
	height: 15px;
	position: relative;
}
.toggle_sns a:last-child{
	margin-left: 15px;
}
.toggle_sns a img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	opacity: 1;
}
.toggle_sns a::after{ 
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	top: 0;
	left: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: .3s;
}
.toggle_sns a:nth-child(2)::after{
	background-image: url("../images/icon_insta_c.svg");
}
.toggle_sns a:nth-child(3)::after{
	background-image: url("../images/icon_youtube_c.svg");
}
.toggle_sns a:hover{
	text-decoration: none;
}
.toggle_sns a:hover img{
	opacity: 0;
	transition: .3s;
}
.toggle_sns a:hover::after{
	opacity: 1;
	transition: .3s;
}
.toggle_nav_block{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	margin: 4rem 0;
}
.toggle_nav_block div{
	width: calc((100% - 3rem)/2);
	margin-top: 2.5rem;
}
.toggle_nav_block div:first-child, .toggle_nav_block div:nth-child(2){
	margin-top: 0;
}
.toggle_nav_tit{
	font-size: 1.2rem;
	font-weight: 400;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	margin-bottom: 0.83rem;
}
.toggle_nav_tit .f-eng{
	font-size: 0.93rem;
	letter-spacing: 0.04em;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #7a8084;
	display: block;
	margin-bottom: 0.165rem;
}
.toggle_nav{
	margin-bottom: 0;
}
.toggle_nav li{
	list-style: none;
	margin-top: 0.3rem;
}
.toggle_nav li:first-child{
	margin-top: 0;
}
.toggle_nav li a{
	display: inline-block;
	color: #4d4d4d;
	font-size: 0.93rem;
	transition: .3s;
}
.toggle_nav li a:hover{
	text-decoration: none;
	color: #7a8084;
	transition: .3s;
}
.toggle_policy, .toggle_policy a{
	color: #4d4d4d;
	font-size: 0.93rem;
	display: inline-block;
	transition: .3s;
}
.toggle_policy a:hover{
	color: #7a8084;
	transition: .3s;
}
.toggle_copy{
	font-size: 0.86rem;
	letter-spacing: 0.04em;
	margin-bottom: 0;
	color: #afb3b5;
	margin-top: 2rem;
}
@media screen and (min-width: 768px){
	.toggle_logo{
		margin-bottom: 1.5rem;
	}
	.toggle_add{
		margin-bottom: 1.5rem;
	}
	.toggle_sns{
		margin-top: 1.4rem;
	}
	.toggle_nav_block{
		margin-bottom: 6rem;
		/*ライフスタイル復活したら以下は削除*/
		justify-content: flex-start;
	}
	.toggle_nav_block div{
		width: auto;
		margin-top: 0;
		/*ライフスタイル復活したら以下は削除*/
		margin-left: 7rem;
	}
	.toggle_nav_block div:first-child{
		margin-left: 0;
	}
	.toggle_bottom{
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}
	.toggle_copy{
		margin-top: 0;
	}
}


/**************************
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.12);
}
.mv_slider li:first-child{
	background-image: url("../images/mv1.jpg?2025");
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2.jpg?2025");
}
.mv_slider li:nth-child(3){
	background-image: url("../images/mv3.jpg");
}
.mv_txtArea{
	position: absolute;
	color: #fff;
	right: 7%;
	top: calc(50% - 4.4rem);
	transform: translateY(-50%);
}
.mv_jp{
	font-size: 2.3rem;
	font-weight: 400;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height: 1.5;
	letter-spacing: 0.1em;
	margin-bottom: 1.53rem;
}
.mv_en{
	font-size: 0.92rem;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.mv{
		padding-top: 75px;
	}
	.mv_jp{
		font-size: 3.06rem;
		margin-bottom: 2.13rem;
	}
	.mv_en{
		font-size: 1.2rem;
	}
}
@media screen and (min-width: 1200px){
	.mv{
		padding-top: 90px;
	}
}
@media screen and (min-width: 1400px){
	.mv{
		padding-top: 100px;
	}
	.mv_txtArea{
		right: 10.5%;
	}
}
@media screen and (min-width: 1800px){
	.mv_txtArea{
		right: 14.16%;
	}
}
@media screen and (max-width: 767px){
	.mv_slider li:nth-child(2){
		background-position: 28% center;
	}
	.mv_slider li:nth-child(3){
		background-position: 32% center;
	}
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}
/* news */
.mv_info{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 93%;
	max-width: 920px;
}
.mv_info a{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	color: #000;
	padding: 1rem 5.33%;
	transition: .3s;
}
.mv_info a:hover{
	transition: .3s;
	text-decoration: none;
}
.mv_news{
	display: flex;
	align-items: center;
}
.mv_news .f-eng{
	font-weight: 400;
	font-size: 1rem;
	letter-spacing: 0.02em;
	margin-bottom: 0;
	position: relative;
	margin-right: 1.6rem;
	padding-right: 1.6rem;
}
.mv_news .f-eng::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 90%;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-color: rgba(0,0,0,0.3); 
}
.mv_info_tit{
	font-size: 1rem;
	margin-bottom: 0;
}
a:hover .mv_info_tit{
	color: rgba(0,0,0,0.7);
}
.mv_line{
	width: 16px;
	height: 12px;
	position: relative;
}
.mv_line span{
	position: absolute;
	content: "";
	width: 100%;
	height: 1px;
	background-color: rgba(0,0,0,0.5);
}
.mv_line span:first-child{
	top: 0;
}
.mv_line span:nth-child(2){
	top: 50%;
	transform: translateY(-50%);
}
.mv_line span:last-child{
	bottom: 0;
}
@media screen and (min-width: 768px){
	.mv_info{
		width: 55%;
	}
	.mv_info a{
		padding: 1.3rem 5.33%;
	}
	.mv_news .f-eng{
		font-size: 1.06rem;
		margin-right: 2.6rem;
		padding-right: 2.6rem;
	}
	.mv_news .f-eng::after{
		height: 100%;
	}
	.mv_info_tit{
		font-size: 1.06rem;
	}
	.mv_line{
		height: 14px;
	}
}
@media screen and (min-width: 1200px){
	.mv_info a{
		padding: 1.5rem 5.33%;
	}
}


/**************************
ページヘッダー
**************************/
.page_head{
	padding-top: 9rem;
	margin-bottom: 4.53rem;
}
.page_tit{
	text-align: center;
	margin-bottom: 2.565rem;
}
.head_en{
	font-size: 1.16rem;
	margin-bottom: 0.86rem;
}
.head_jp{
	font-size: 2rem;
	font-weight: 400;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	line-height: 1.3;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.page_head{
		padding-top: 11.33rem;
	}
	.head_jp{
		font-size: 2.3rem;
	}
}
@media screen and (min-width: 992px){
	.page_head{
		padding-top: 13.66rem;
	}
}
@media screen and (min-width: 1200px){
	.head_en{
		font-size: 1.26rem;
		margin-bottom: 1rem;
	}
	.head_jp{
		font-size: 2.6rem;
	}
}
@media screen and (min-width: 1400px){
	.page_head{
		padding-top: 16rem;
	}
}


