/* -HEADER
--------------------------------------------------------------------------------------------- */
#header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	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: 992px){
	#header{
		width: 60px;
		height: 100vh;
		background-color: transparent;
	}
}
@media screen and (min-width: 1200px){
	#header{
		width: 80px;
	}
}

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

/* header_block  */
.header_block {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(217,217,217,0.5);
	z-index: 1001;
}
.fixed .header_block{
	background-color: transparent;
}
@media screen and (min-width: 992px){
	.header_block{
		height: 100%;
		flex-direction: column;
		border-right: 1px solid rgba(217,217,217,0.5);
		border-bottom: none;
	}
}




.scroll_logo{
	width: 80px;
	margin-bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.scroll_logo a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	transition: .4s;
}
.scroll_logo a h1, .scroll_logo a p{
	position: relative;
	width: 20px;
	height: 20px;
	margin-bottom: 0;
	transition: .4s;
}
.scroll_logo a h1 img, .scroll_logo a p img{
	width: 100%;
	display: block;
	opacity: 1;
	transition: .4s;
}
.scroll_logo a h1::after,
.scroll_logo a p::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-image: url("../images/h_logo_w.svg");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .4s;
}
@media screen and (min-width: 992px){
	.scroll_logo{
		width: 100%;
		height: 80px;
	}
	.scroll_logo.header_w a h1 img,
	.scroll_logo.header_w a p img{
		opacity: 0;
	}
	.scroll_logo.header_w a h1::after,
	.scroll_logo.header_w a p::after{
		opacity: 1;
	}
}
@media screen and (min-width: 1200px){
	.scroll_logo{
		height: 100px;
	}
	.scroll_logo a h1, .scroll_logo a p{
		width: 25px;
		height: 25px;
	}
}

.header_snsArea{
	width: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header_snsArea a{
	display: block;
	width: auto;
	height: 15px;
	position: relative;
	transition: .4s;
}
.header_snsArea a:first-child{
	margin-right: 15px;
}
.header_snsArea a img{
	display: block;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: .4s;
}
.header_snsArea a::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}
.header_snsArea a:first-child::after{
	background-image: url("../images/icon_insta_w.svg");
}
.header_snsArea a:nth-child(2)::after{
	background-image: url("../images/icon_youtube_w.svg");
}
@media screen and (min-width: 992px){
	.header_snsArea{
		width: 100%;
		height: 150px;
		flex-direction: column;
	}
	.header_snsArea a:first-child{
		margin-right: 0;
		margin-bottom: 25px;
	}
	.header_snsArea a.header_w img{
		opacity: 0;
	}
	.header_snsArea a.header_w::after{
		opacity: 1;
	}
}
@media screen and (min-width: 1200px){
	.header_snsArea{
		height: 170px;
	}
	.header_snsArea a{
		height: 20px;
	}
	.header_snsArea a:first-child{
		margin-bottom: 30px;
	}
}


/* TRIGGER */
.menu-trigger {
	position: relative;
	width: calc(100% - 160px);
	height: 100%;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu-trigger::before, .menu-trigger::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background-color: rgba(217,217,217,0.5);
	display: inline-block;
	top: 0;
}
.menu-trigger::before{
	left: 0;
}
.menu-trigger::after{
	right: 0;
}
.menu-trigger_inner{
	position: relative;
	width: 20px;
	height: 8px;
}
.menu-trigger_inner span {
	width: 20px;
	height: 2px;
	background-color: #000;
	position: absolute;
	border-radius: 2px;
	left: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}
.menu-trigger_inner span:first-child{
	top: 0;
}
.menu-trigger_inner span:nth-child(2){
	bottom: 0;
}
.tgl-active .menu-trigger_inner span{
	top: 50%;
	left: 50%;
	bottom: unset;
}
.tgl-active .menu-trigger_inner span:first-child{
	transform: translate(-50%,-50%) rotate(45deg);
}
.tgl-active .menu-trigger_inner span:nth-child(2){
	transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (min-width: 992px){
	.menu-trigger{
		width: 100%;
		height: calc(100% - 160px);
	}
	.menu-trigger::before, .menu-trigger::after{
		width: 100%;
		height: 1px;
	}
	.menu-trigger::after{
		top: unset;
		right: unset;
		bottom: 0;
		left: 0;
	}
	.menu-trigger_inner.header_w span{
		background-color: #fff;
	}
}

/* MENU TOGGLE */
.menu-toggle {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	padding-top: 60px;
	z-index: 1000;
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
	transition: 0.4s ease-in-out;
	background-color: #f5f4ee;
	color: #000;
	overflow: hidden;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.menu-toggle::-webkit-scrollbar {
	display: none;
}
.menu-toggle::after{
	position: absolute;
	content: "";
	background-image: url("../images/toggle_bg.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 111%;
	height: 100vh;
	z-index: -1;
}
/*menu-toggle.active*/
.menu-toggle.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  overflow-y: scroll;
}
.toggle_build{
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: none;
}
.menu-toggle_inner{
	width: 80%;
	height: 100%;
	margin: 0 auto;
}
@media screen and (min-width: 768px){
	.toggle_build{
		display: block;
		width: 11px;
		height: 150px;
		right: 49px;
	}
}
@media screen and (min-width: 992px){
	.menu-toggle{
		padding: 0 0 0 60px;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	.menu-toggle.active{
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle{
		padding: 0 80px;
	}
	.toggle_build{
		width: 13px;
		height: 180px;
		right: 67px;
	}
}


.menu-toggle_flex{
	width: 100%;
	max-width: 400px;
	margin-right: auto;
	margin-left: auto;
	padding: 6.66rem 0;
}
.toggle_menu_block{
	width: 100%;
	max-width: 400px;
	margin-bottom: 6.66rem;
}
.toggle_menu{
	position: relative;
	display: flex;
	margin-bottom: 4.58rem;
}
.toggle_menu::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 100%;
	background-color: rgba(217,217,217,0.5);
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
.toggle_menu ul{
	width: 50%;
	margin-bottom: 0;
}
.toggle_menu ul:nth-child(1){
	padding-right: 30px;
}
.toggle_menu ul:nth-child(2){
	padding-left: 30px;
}
.toggle_menu ul li{
	list-style: none;
	margin-bottom: 2.53rem;
}
.toggle_menu ul li:last-child{
	margin-bottom: 5.33rem;
}
.toggle_menu ul li a{
	display: inline-block;
	transition: .3s;
}
.toggle_menu ul li a:hover{
	text-decoration: none;
	opacity: 0.7;
}
.toggle_menu ul li .tm_tit{
	font-size: 2rem;
	font-weight: 300;
	letter-spacing: 0;
	color: #000;
	line-height: 1;
	margin-bottom: 0;
}
.toggle_menu ul li .tm_con{
	display: inline-flex;
	flex-direction: column;
	margin-top: 1.18rem;
}
.toggle_menu ul li .tm_con a{
	color: #6e6e6e;
	font-size: 1rem;
	letter-spacing: 0.03em;
	line-height: 2.3;
}
.tg_contact{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.tg_contact a{
	font-size: 1rem;
	color: #fff;
	letter-spacing: 0.03em;
	height: 40px;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .3s;
}
.tg_contact a:hover{
	text-decoration: none;
	opacity: 0.8;
}
.tg_contact a.w100{
	width: 100%;
	margin-bottom: 0.8rem;
}
.tg_contact a.w50{
	width: calc((100% - 0.8rem)/2);
}
.tg_contact a.catalog{
	background-color: #608dbf;
}
.tg_contact a.consul{
	background-color: #d95f4c;
}
.tg_contact a.contact{
	background-color: #e5c733;
}
.toggle_info{
	text-align: center;
}
.toggle_logo{
	display: inline-block;
	width: 70px;
	margin-bottom: 4.8rem;
}
.toggle_logo a{
	display: block;
}
.toggle_info .add p{
	font-size: 0.83rem;
	font-weight: 500;
	line-height: 2.5;
	margin-bottom: 0;
}
.toggle_info .add p + p{
	line-height: 2.1;
}
.toggle_info .f-cor{
	font-size: 0.86rem;
	letter-spacing: 0;
	margin-top: 4rem;
	margin-bottom: 0;
}
@media screen and (min-width: 768px){
	.toggle_menu ul:nth-child(1){
		padding-right: 40px;
	}
	.toggle_menu ul:nth-child(2){
		padding-left: 40px;
	}
	.tg_contact a{
		height: 51px;
		border-radius: 60px;
	}
}
@media screen and (min-width: 992px){
	.menu-toggle_flex{
		max-width: 970px;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		align-items: center;
	}
	.toggle_menu_block{
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1200px){
	.menu-toggle_flex{
		padding: 8rem 0;
	}
	.toggle_menu_block{
		max-width: 450px;
	}
	.toggle_menu{
		margin-bottom: 4.33rem;
	}
	.toggle_menu ul li{
		margin-bottom: 2.86rem;
	}
	.toggle_menu ul li:last-child{
		margin-bottom: 5.13rem;
	}
	.toggle_menu ul li .tm_tit{
		font-size: 1.66rem;
	}
	.toggle_menu ul li .tm_con{
		margin-top: 0.86rem;
	}
	.toggle_menu ul li .tm_con a{
		font-size: 0.8rem;
	}
	.tg_contact a{
		height: 60px;
		font-size: 0.93rem;
	}
	.toggle_logo{
		width: 65px;
		margin-bottom: 3.4rem;
	}
	.toggle_info .add p{
		font-size: 0.73rem;
	}
	.toggle_info .f-cor{
		margin-top: 3.66rem;
	}
}
@media screen and (min-width: 1080px) and (min-height: 900px){
	.menu-toggle_inner{
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.menu-toggle_flex{
		padding: 0;
	}
}


/**************************
MV
**************************/
.mv{
    position: relative;
    width: 100%;
    height: 100vh;
	padding-top: 60px !important;
    overflow: hidden;
}
.mv_left{
	width: 100%;
	height: 235px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 54px;
}
.mv_logo{
	width: 200px;
	margin-bottom: 2.83rem;
}
.mv_build{
	width: 130px;
}
.mv_btn{
	display: none;
}
.mv_right{
	position: relative;
	height: calc(100% - 235px);
	border-radius: 0 0 20px 20px;
	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.2);
}
.mv_slider li:first-child{
	background-image: url("../images/mv1.jpg");
	background-position: center;
}
.mv_slider li:nth-child(2){
	background-image: url("../images/mv2.jpg");
	background-position: center;
}
.mv_txtArea{
	position: absolute;
	width: 48%;
	max-width: 180px;
	top: 11.95%;
	left: 50%;
	transform: translateX(-50%);
}
.mv_circle{
	position: absolute;
	width: 84px;
	height: 84px;
	right: 6.66%;
	bottom: 50px;
	cursor: pointer;
}
.mv_circle::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-image: url("../images/mv_circle.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	top: 0;
	left: 0;
	animation: 10s linear infinite rotation;
}
.mv_circle span{
	position: absolute;
	content: "";
	width: 20px;
	height: 23px;
	background-image: url("../images/mv_down.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
@keyframes rotation{
	0%{ transform:rotate(0);}
	100%{ transform:rotate(360deg); }
}
@media screen and (min-width: 768px){
	.mv_right{
		border-radius: 0 0 30px 30px;
	}
	.mv_txtArea{
		max-width: 220px;
	}
}
@media screen and (min-width: 992px){
	.mv{
		padding-top: 0 !important;
		display: flex;
	}
	.mv_left{
		width: 36.05%;
		height: 100%;
		justify-content: space-between;
		padding: 50px 0;
	}
	.mv_logo{
		order: 2;
		width: 41.93%;
		max-width: 260px;
		margin-bottom: 0;
	}
	.mv_build{
		order: 1;
		width: 29.03%;
		max-width: 180px;
	}
	.mv_btn{
		width: 72.58%;
		max-width: 450px;
		display: flex;
		background-color: #d95f4c;
		border-radius: 50px;
		position: relative;
		order: 3;
	}
	.mv_btn::after{
		position: absolute;
		content: "";
		width: 1px;
		height: 50%;
		background-color: #fff;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	.mv_btn a{
		width: 50%;
		display: block;
		color: #fff;
		font-size: 0.93rem;
		text-align: center;
		padding: 1.07rem 0;
		transition: .3s;
	}
	.mv_btn a:hover{
		text-decoration: none;
		opacity: 0.8;
	}
	.mv_right{
		width: 63.95%;
		height: 100%;
		border-radius: 0 0 0 30px;
	}
	.mv_txtArea{
		top: unset;
		bottom: 100px;
		left: 9.09%;
		transform: unset;
	}
	.mv_circle{
		right: 4.54%;
		bottom: 53px;
	}
}
@media screen and (min-width: 1200px){
	.mv_txtArea{
		max-width: 260px;
	}
	.mv_circle{
		width: 95px;
		height: 95px;
	}
	.mv_circle span{
		width: 22px;
		height: 26px;
	}
}

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




/**************************
ページヘッダー
**************************/
.page-head{
	padding-top: calc(60px + 1.66rem);
	padding-bottom: 4rem;
	width: 78.93%;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.page_ttl{
	margin-top: 5.65rem;
}
.head_en{
	font-family: "Montserrat", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 3.1rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 1rem;
}
.head-bfont{
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 0;
}
@media screen and (min-width: 576px){
	.head_en{
		font-size: 3.66rem;
	}
}
@media screen and (min-width: 768px){
	.page-head{
		padding-bottom: 5.33rem;
	}
	.page_ttl{
		margin-top: 7.53rem;
	}
	.head_en{
		font-size: 5rem;
		margin-bottom: 1.25rem;
	}
}
@media screen and (min-width: 992px){
	.page-head{
		width: 100%;
		padding-top: 42px;
		padding-bottom: 6.66rem;
	}
	.page_ttl{
		width: 78.93%;
		margin: 9.41rem auto 0;
	}
}
@media screen and (min-width: 1200px){
	.page-head{
		padding-top: 45px;
		padding-bottom: 8rem;
	}
	.page_ttl{
		margin: 11.13rem auto 0;
	}
	.head_en{
		margin-bottom: 1.5rem;
	}
}

/* お客様の声 single header */
.voice-header{
	width: 100%;
	height: 100vh;
	position: relative;
	margin-bottom: 4.63rem;
}
.voice_head_img{
	width: 100%;
	height: 100%;
}
.voice_head_img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.voice-header .content_pd{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding-top: calc(60px + 1.66rem);
}
.voice-header #pls{
	width: 78.93%;
	margin: 0 auto;
}
.voice-header #pan{
	color: rgba(255,255,255,0.4);
}
.voice-header #pan a{
	color: #fff;
}
.voice-header .pan-punctuation::after{
	background-color: rgba(255,255,255,0.5);
}
.voice_head_inner{
	position: relative;
	width: 78.93%;
	margin: 0 auto;
	height: 100%;
	color: #fff;
}
.voice_head_txtArea .voice_no{
	font-size: 1.66rem;
	margin-bottom: 1.36rem;
}
.voice_head_txtArea .voice_no span{
	font-size: 1rem;
	top: 0;
}
.voice_head_txtArea{
	width: auto;
	max-width: 760px;
	position: absolute;
	top: 11.63%;
	left: 0;
}
.voice_head_txtArea h1{
	font-size: 2.08rem;
}
.voice_head_inner .page_ttl{
	width: auto;
	margin: 0;
	position: absolute;
	left: 0;
	bottom: 13.63%;
}
@media screen and (min-width: 768px){
	.voice-header{
		margin-bottom: 6.17rem;
	}
}
@media screen and (min-width: 992px){
	.voice-header{
		margin-bottom: 7.71rem;
	}
	.voice-header .content_pd{
		padding-top: 42px;
	}
	.voice-header #pls{
		width: 60%;
		margin: 0;
	}
	.voice_head_inner{
		width: 86%;
	}
}
@media screen and (min-width: 1200px){
	.voice-header{
		margin-bottom: 9.26rem;
	}
	.voice-header .content_pd{
		padding-top: 45px;
	}
	.voice_head_txtArea .voice_no{
		font-size: 1.66rem;
		margin-bottom: 1.5rem;
	}
	.voice_head_txtArea .voice_no span{
		font-size: 1rem;
	}
	.voice_head_txtArea h1{
		font-size: 2.33rem;
	}
}


/* 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;
	}
}

