@charset "utf-8";
/* CSS Document */
*{
  box-sizing: border-box;
}
/*HOME EDITION*/

.top-header{
	display: flex;
	justify-content: center;
	align-items: center;
  position: relative;
  width: 100%;
  height: 100vh;
}
/* top bg */
.top-header-bg-overlay {
	position: absolute;
	width: 100vw;
	height: 100vh;
	z-index: 1;
	background: rgba( 0, 0, 0, .2 );
}
.top-header-bg {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100vh;
	z-index: 0;
}	
.top-header-bg .top-header-bg-item {
	width: 100%;
	height: 100vh;
}	
.top-header-bg .top-header-bg-item img {
	position: absolute;
	top: 0;
	/*display: block;*/
	object-fit: cover;
	width: 100%;
	height: 100vh;
}
.top-header-bg .top-header-bg-item img.top-header-bg-item-img1 {
	left: 0;
}
@media screen and (max-width: 1250px) {
   /* left/rightが0以外のときはwidth:autoも同時につける */
	.top-header-bg .top-header-bg-item img.top-header-bg-item-img1 {
		width: auto;
		left: -20%;
		margin-left: -20%;
	}
  .top-header-bg .top-header-bg-item img.top-header-bg-item-img2 {
		width: 100%;
    height: 500px;
	}
  .top-header {
    height: 500px;
  }
  .top-header-bg-overlay {
    height: 500px;
  }
  .top-header-bg {
    height: 500px;
  }	
  .top-header-bg .top-header-bg-item {
    height: 500px;
  }	
  .top-header-bg .top-header-bg-item img {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
	.top-header-bg .top-header-bg-item img.top-header-bg-item-img1 {
		left: -30%;
		margin-left: -30%;
	}
}
@media screen and (max-width: 599px) {
	.top-header-bg .top-header-bg-item img.top-header-bg-item-sp {
	}
}

.top-header-logo{
  text-align: center;
	position: absolute;
	z-index: 2;
}
.top-header-logo img{
  width:30vw;
  margin: 70px auto 40px;
  display: block;
  /*width: 30vw;
  margin: 60px auto 40px;*/
}
.top-header-logo span{
  font-size:24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
  color: #fff;
}
.top-header-logo span br{
  display: none;
}
.top-header-btn{
  position: absolute;
	top: 0;
  width: 1200px;
  display: flex;
  justify-content: space-between;
  margin-top: calc( 100vh - 210px );
	z-index: 2;
}
.top-header-btn a{
  display: block;
  width: 48%;
  border: 2px solid #fff;
  position: relative;
	background: #fff;
}
.top-header-btn a p{
  position:absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
  font-size:32px;
  color: #000;
  top: 20px;
  left: 30px;
  text-shadow: 0px 1px 3px #fff;
}
.top-header-btn a p span{
  font-size:18px;
  display: block;
}
.top-header-btn > a > img{
  width: 100%;
  transition-duration: 0.3s;
}
.top-header-btn > a > img:hover{
  /*filter: brightness(50%);*/
	opacity: 0.6;
  transition-duration: 0.3s;
}

/*更新用*/

.top-header-btn-new{
  width: 1200px;
  display: flex;
  justify-content: space-between;
	z-index: 2;
  margin: 50px auto;
}
.top-header-btn-new a{
  display: block;
  width: 48%;
  border: 2px solid #fff;
  position: relative;
	background: #fff;
}
.top-header-btn-new a p{
  position:absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
  font-size:32px;
  color: #000;
  top: 20px;
  left: 30px;
  text-shadow: 0px 1px 3px #fff;
}
.top-header-btn-new a p span{
  font-size:18px;
  display: block;
}
.top-header-btn-new > a > img{
  width: 100%;
  transition-duration: 0.3s;
}
.top-header-btn-new > a > img:hover{
  /*filter: brightness(50%);*/
	opacity: 0.6;
  transition-duration: 0.3s;
}

/*ここまで*/

img.btn-arrow{
  width: 20px;
  height: 20px;
  margin: -6px 0 0 8px;
}

.content-in{
  width: 1200px;
  margin: 0 auto;
  padding-top: 100px;
}
.content-in h3{
  font-size:34px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}
.movie-area{
  width: 100%;
  margin: 0 auto 80px;
  text-align: center;
}
.movie-area a{
  display: block;
  height: 100px;
}
.movie-area a img{
  transition-duration: 0.3s;
}
.movie-area a img:hover{
  transition-duration: 0.3s;
  filter: brightness(50%);
}
.movie-area p{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight:bold;
  font-size: 16px;
  margin-top: 15px;
}
.content-full section{
  padding: 0;
}
.p-area{
  padding-top: 312px;
}
.point-area{
  width: 100%;
  height: 34vmax;
  display: flex;
  position: relative;
  overflow: hidden;
}
/*.mov-filter {
  position: relative;
}
.mov-filter:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background-color: rgba(0,0,0,0.2);
  background-image: linear-gradient(#222 -100%, transparent 50%,transparent 50%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}*/
.point-area-in{
/*  width: 100%;
  margin: 0 auto;
  padding: 9vmax 7vw 0;
  z-index: 100;*/
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	z-index: 100;
}
.p-area section:nth-child(1) .point-area-in,.p-area section:nth-child(4) .point-area-in{
	flex-direction: row-reverse;	
}
.p-area section:nth-child(2) .point-area-in,.p-area section:nth-child(3) .point-area-in{
	flex-direction: row;	
}
.point-text{
  font-family: 'Noto Sans JP', sans-serif;
  color: #fff;
  display: block;
  width: 480px;
}
.point-text h4{
  font-size: 27px;
  font-weight:bold;
  margin-bottom: 20px;
}
.point-text h4 span{
  display: block;
}
.point-text p{
  font-size: 16px;
  text-align: justify;
}
.pt-r{
  float: right;
}
.point-area-img{
  position: absolute;
  display: block;
  }
.point-area-img img{
  width: 100%;
}
.point-area-img video{
  width: 100%;
  margin-top: -210px;
  z-index: -100;
}
/*.section-bg-mov{
  position: relative;
  overflow: hidden;
  height: 500px;
}
.section-bg-mov::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0,0,0,0.2);
  background-image: linear-gradient(#222 -100%, transparent 50%,transparent 50%);
	background-size: 4px 4px;
	background-position: 0 0, 2px 2px;
}
.section-bg-mov video {
  position: absolute;
  top: -25vh;
  width: 100%;
  z-index: -100;
}*/
.product-box-area{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  border-left: 1px solid #ccc; 
}
.product-box{
  width: 25%;
  padding: 20px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: block;
  color: #000;
}
.product-box:nth-child(n + 5){
  border-top: none;
}
.product-box a{
  display: block;
  color: #000;
}
.product-box img{
  width: 100%;
  margin-bottom:20px;
  opacity: 1;
  transition-duration: 0.3s;
}
.product-box img:hover{
  opacity: 0.6;
  transition-duration: 0.3s;
}
.product-name{
  font-family: 'Noto Sans JP', sans-serif;
  font-size:16px;
  margin-bottom:10px;
}
.product-name span{
  font-size:14px;
  display: block;
}
.product-value{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size:16px;
}
.faq-area h3{
  margin-bottom: 20px;
}
.faq-area p.sr-read{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
}
.showroom-area{
  background: #f7f7f7;
  padding: 80px 15%;
}
.showroom-area h3{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 34px;
  text-align: center;
  margin-bottom: 20px;
}
.showroom-area h3 span{
  display: block;
}
.showroom-area p.sr-read{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  text-align: center;
}
.showroom-list{
  display: flex;
  justify-content: space-between;
}
.showroom-box{
  width: 16%;
  transition-duration: 0.3s;
}
.showroom-box:hover{
  transition-duration: 0.3s;
  filter: brightness(50%);
}
.showroom-box img{
  width: 100%;
  border: 2px solid #fff;
}
.showroom-box img.btn-arrow-sr{
  width: 18px;
  height: 18px;
  margin: -4px 0 0 8px;
  border: none;
}
.showroom-box p{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color:#000;
  margin-top: 5px;
  text-align:center; 
}
footer {
  margin-top: 0;
}
/*tab product*/
.tabs{
  width:1200px;
  margin:10px auto;
}
.tab-buttons{
  width: 450px;
  margin: 0 auto 30px;
  position:relative;
}
.tab-buttons span{
  font-size: 18px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
  color:#000;
  cursor:pointer;
  display:block;
  width:33.3%;
  float:left;
  text-align:center;
  height:40px;
  line-height:40px;
}
.tab-content{
  width: 100%;
  margin-top: 30px;
  padding:15px;
  display:inline-block;
  font-family: 'Noto Sans JP', sans-serif;
  color:#333;
}
.tab-content img{
	width: 100%;
}
#lamp{
  width: 52px;
  height: 3px;
  margin-left: 50px;
  background:#e74c3d;
  display:block;
  position:absolute;
  top:40px;
  transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
}
#lamp.content2{
  left:33.3%;
  transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
}
#lamp.content3{
  left:66.6%;
  transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
}
#lamp.content1{
  left:0;
  transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
}
/*tab showroom*/
.tabs.showroom{
	width: 100%;
	margin: 40px auto 10px;
	background-color: inherit;
}
.tabs.showroom .tab-buttons{
	width: 42%;
	min-width: 510px;
	display: flex;
	justify-content: center;
	position: relative;
}
.tabs.showroom .tab-buttons span{
	width: 50%;
}
#lamp_showroom{
  width: 52px;
  height: 3px;
  background:#e74c3d;
  display:block;
  position:absolute;
  top:40px;
	left: 0%;
  transition: all .3s ease-in;
-o-transition: all .3s ease-in;
-webkit-transition: all .3s ease-in;
-moz-transition: all .3s ease-in;
}
#lamp_showroom.evol_showroom{
  left: 20%;
}
#lamp_showroom.evol_partner{
	left: 69%;
}
.tab-content > .evol_partner > a{
	border: none;
	background: #e74c3d;
}
.tab-content > .evol_partner > a:hover{
	color: #fff;
}
.tab-content > .evol_partner > a > span{
	width: 13px;
	height: 10px;
	display: inline-block;
	margin-left: 10px;
	background-image: url("../img/btn-arrow_white.svg");
	background-size: contain;
} 
.codepc{
  display: block;
}
.codesp{
  display: none;
}

@media screen and (max-width: 1024px) {
  .top-header {
    background-position: -130px -10px;
    height: 100vh;
  }
  .top-header-logo img {
    width: 60vw;
  }
  .top-header-logo span {
    font-size: 36px;
  }
  .top-header-btn {
    width: 95%;
  }
  .top-header-btn-new{
    width: 100%;
    padding: 0 30px;
  }
	.p-area {
		padding-top: 200px;
	}
  .content-in {
    width: 95%;
  }
  .movie-area img{
    width: 100%;
  }
  .point-area {
    width: 100%;
    height: 350px;
  }
/*  .point-area-in {
    width: 90vw;
    padding: 6vh 0 0 0;
  }*/
  .point-area-img video {
    margin-top: -140px;
  }
  .point-text {
    top: 100px;
  }
  /*.section-bg-mov video {
    top: -10vh;
  }*/
  .tabs {
    width: 100%;
  }
  .showroom-area {
    background: #f7f7f7;
    padding: 80px 5%;
  }
  .top-header {
    height: 500px;
  }
  .top-header-logo img {
    width: 36vw;
  }
  .top-header-logo span {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .top-header-logo span {
    font-size: 27px;
  }
	.p-area {
		padding-top: 100px;
	}
  .point-area {
    height: 260px;
  }
  .product-box {
    width: 49%;
  }
  .point-text {
    width: 380px;
    top: 55px;
  }
  .point-text h4 {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .point-text p {
    font-size: 14px;
  }
  .showroom-box p {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
	.tabs.showroom{
		margin: 20px auto 10px;
	}
	.tabs.showroom .tab-buttons{
		width: 100%;
		min-width: inherit;
	}
	.tabs.showroom .tab-buttons span{
		font-size: 3vw;
	}	
	#lamp_showroom.evol_showroom {
		left: 9%;
	}
	#lamp_showroom.evol_partner {
		left: 58%;
	}
}
@media screen and (max-width: 599px) {
  .top-header {
    background-position: -140px 0px;
/*    margin-bottom: 75vh;*/
  }
  .top-header-logo img {
    width: 62vw;
  }
  .top-header-logo span{
    font-size: 6.2vw;
  }
  .top-header-logo span br{
    display: block;
  }
  .top-header-btn{
    width: 90%;
    display: block;
    margin-top: calc( 100vh - 160px );
  }
  .top-header-btn a {
    width: 100%;
    margin-bottom: 15px;
  }
  .top-header-btn a p {
    font-size: 6.2vw;
    top: 5px;
    left: 15px;
  }
  .top-header-btn a p span {
    font-size: 3.2vw;
  }
  .top-header-btn-new{
    display: block;
    padding: 0 15px;
    margin: 20px 0 10px
  }
  .top-header-btn-new a {
    width: 100%;
    margin-bottom: 20px;
  }
  .content-in {
    width: 90%;
    padding-top: 30px;
  }
  .content-in h3 {
    font-size: 8.6vw;
  }
  .movie-area p {
    font-size: 4vw;
  }
  .mov-text{
    padding-top: 15px;
  }
  .p-area{
    padding-top: 450px;
  }
  .point-area {
    height: auto;
    display: block;
  }
  .mov-filter:after {
    height: 56.4vh;
  }
  .point-area-img{
    position: static;
  }
  .point-area-img img {
    margin-bottom: 20px;
  }
  .point-area-img video {
    margin: 0 0 10px 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }  
  .point-area-in{
    padding: 0;
  }
  .point-text{
    color: #000;
    width: 100%;
    margin-bottom: 30px;
  }
  .point-text h4 {
    margin-bottom: 10px;
    font-size: 5.6vw;
  }
  /*.section-bg-mov video {
    position: static;
    margin: 0 calc(50% - 80vw);
    width: 150vw;
  }*/
  .tab-buttons {
    width: 100%;
  }
  .tab-buttons span {
    font-size: 4vw;
  }
  .tab-content {
    padding: 0;
  }
  .product-box {
    width: 50%;
  }
  #lamp {
    width: 33.3%;
    margin-left: 0;
  }
	#lamp_showroom{
		width: 33.3%;
	}
  .showroom-area {
    padding: 50px 5% 30px;
  }
  .showroom-area h3 {
    font-size: 6.6vw;
		text-align: justify;
  }
  .showroom-area p.sr-read {
    font-size: 4.2vw;
		text-align: justify;
  }
  .fullwidth {
    margin: 0 calc(50% - 50vw);
  }
  img.img-map{
    width: 100%;
  }
  .showroom-list{
    flex-wrap: wrap;
  }
  .showroom-box {
    width: 48%;
    margin-bottom: 30px;
  }
  .showroom-box p {
    font-size: 3.8vw;
  }
  .showroom-box img.btn-arrow-sr {
    width: 4.6vw;
    margin: -2px 0 0 5px;
  }
  .codepc{
    display: none;
  }
  .codesp{
    display: inline;
  }
	[v-cloak]{
		display: none;
	}
}