@charset "UTF-8";
/* CSS Document */
.mainV{
    margin:0 calc(50% - 50vw);
    width:100vw;
    position:relative;
	display:flex;
	justify-content:space-between;
	min-height:100svh;
	background:#f1f1ee;
}
.mainV .detail_inner{
	width:50%;
	align-items:center;
	display:flex;
}
.mainV .detail_inner .sub_inner{
	width:80%;
	margin:auto;
	max-width:500px;
}
.mainV .detail_inner .sub_inner h1{
	font-size:1rem;
	margin:0 0 1em 0;
}
.mainV .detail_inner .sub_inner h1 span{
	margin:0 0 0 1em
}
.mainV .detail_inner .sub_inner h2{
	font-size:1.0rem;
	margin:0 0 1em 0;
    display: flex;
    align-items: center;
}
.mainV .detail_inner .sub_inner h2:after {
	content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #666;
	margin-left: 0.5rem;
}
.mainV .detail_inner .sub_inner dt{
	margin:0 0 2em 0;
	width:100%;
}
.mainV .detail_inner .sub_inner h3{
	font-size:1.1rem;
	margin:0 0 1em 0;
}
.mainV .image_inner{
	width:50%;
	overflow:hidden;
}
.mainV .image_inner video{
	object-fit:cover;
	height:100%;
	width:100%;
}
/* ----------959px–---------- */
@media screen and (max-width: 959px) {
	.mainV{
		display:block;
		justify-content:unset;
		height:unset;
	}
	.mainV .detail_inner{
		width:100%;
		align-items:center;
		display:flex;
		aspect-ratio:1 / 1;
	}
	.mainV .detail_inner .sub_inner{
		width:80%;
		margin:auto;
	}
	.mainV .image_inner{
		width:100%;
		overflow:hidden;
		aspect-ratio:1 / 1;
	}
}
/* ----------599px–---------- */
@media screen and (max-width: 599px) {
	.mainV .detail_inner .sub_inner h3{
		font-size:1.2rem;
		text-align:center;
	}
	.mainV .detail_inner .sub_inner h3 span{
		display:block;
	}
}
/* ----------499px–---------- */
@media screen and (max-width: 499px) {
	.mainV .detail_inner{
		width:100%;
		align-items:unset;
		display:block;
		aspect-ratio:unset;
		padding:100px 0;
	}
	.mainV .detail_inner .sub_inner h1{
		text-align:center;
	}
	.mainV .detail_inner .sub_inner h1 span{
		display:block;
		margin:0 0 0 0
	}
}


/* -- ep -- */
.ep{
	margin:0 calc(50% - 50vw);
	width:100vw;
	background:#f1f1ee;
}
.ep .ep_img_block{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	margin:5px 0 0 0;
}
 .ep .ep_img_block .image_sub_imgBox{
	 width:49.8%;
	 aspect-ratio:1 / 1;
	 overflow: hidden;
	 position: relative;
	 box-sizing:border-box;
	 margin:0 0 5px 0;
 }
 .ep .ep_img_block .image_sub_img {
    z-index:2;
    opacity: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 30s 0s infinite;
    animation: anime 40s linear infinite;
 }
 .ep .ep_img_block .image_sub_img:nth-of-type(2) {
      -webkit-animation-delay: 5s;
      animation-delay: 5s; }
 .ep .ep_img_block .image_sub_img:nth-of-type(3) {
      -webkit-animation-delay: 10s;
      animation-delay: 10s; }
 .ep .ep_img_block .image_sub_img:nth-of-type(4) {
      -webkit-animation-delay: 15s;
      animation-delay: 15s; }
 .ep .ep_img_block .image_sub_img:nth-of-type(5) {
      -webkit-animation-delay: 20s;
      animation-delay: 20s; }
 .ep .ep_img_block .image_sub_img:nth-of-type(6) {
      -webkit-animation-delay: 25s;
      animation-delay: 25s; }
 .ep .ep_img_block .image_sub_img:nth-of-type(7) {
      -webkit-animation-delay: 30s;
      animation-delay: 30s; }
 .ep .ep_img_block .image_sub_img:nth-of-type(8) {
      -webkit-animation-delay: 35s;
      animation-delay: 35s; }
@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
	75% {
        z-index:1;
        opacity: 0;
        transform: scale(1.1) ;
    }
    100% { opacity: 0 }
}
/* ----------768px–---------- */
@media screen and (max-width: 768px) {
	.ep .ep_img_block{
		display:block;
		justify-content:space-between;
		flex-wrap:unset;
		margin:5px 0 0 0;
	}
	 .ep .ep_img_block .image_sub_imgBox{
		 width:100%;
	 }
}



/* -- support -- */
.support{
	margin:0 calc(50% - 50vw) 5px;
	width:100vw;
	min-height:100svh;
	align-items:center;
	display:flex;
	background:#f1f1ee;
}
.support .inner{
	width:90%;
	max-width:1400px;
	margin:auto;
	display:flex;
	justify-content:space-between;
	height:fit-content;
	background:#f1f1eeee;
	box-sizing:border-box;
}
.support .inner .image_inner{
	width:50%;
	display: grid;
	gap: 5px;
	grid-template-columns:1fr 1fr;
	grid-template-rows: auto auto auto;
}
.support .inner .image_inner dt{
	overflow:hidden;
}
.support .inner .image_inner dt img{
	object-fit:cover;
	height:100%;
	width:100%;
}
.support .inner .image_inner dt:nth-child(1){
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.support .inner .image_inner dt:nth-child(2){
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.support .inner .image_inner dt:nth-child(3){
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}
.support .inner .image_inner dt:nth-child(4){
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}
.support .inner .image_inner dt:nth-child(5){
  grid-column: 2 / 3;
  grid-row: 3 / 4;
}
.support .inner .detail_inner{
	width:45%;
}
.support .inner .detail_inner h4{
	font-size:1.2rem;
	margin:0 0 1em 0;
	display: flex;
	align-items: center;
}
.support .inner .detail_inner h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #000000;
	margin-left: 1rem;
}
.support .inner .detail_inner h2{
	font-size:1.6rem;
	margin:0 0 1em 0;
}
.support .inner .detail_inner h3{
	font-size:1.3rem;
	margin:0 0 1em 0;
}
/* ----------1099px–---------- */
@media screen and (max-width: 1099px) {
	.support .inner{
		padding:5%;
	}
}
/* ----------959px–---------- */
@media screen and (max-width: 959px) {
	.support{
		margin:0 calc(50% - 50vw) 5px;
		width:100vw;
		height:unset;
		align-items:center;
		display:block;
		padding:100px 0;
	}
	.support .inner{
		width:90%;
		max-width:unset;
		margin:auto;
		display:block;
		justify-content:unset;
		height:fit-content;
		background:#f1f1eeee;
		box-sizing:border-box;
	}
	.support .inner .image_inner{
		width:100%;
		height:600px;
		margin:0 0 50px 0;
	}
	.support .inner .detail_inner{
		width:100%;
	}
	.support .inner .detail_inner h2{
		font-size:1.4rem;
	}
	.support .inner .detail_inner h3{
		font-size:1.2rem;
	}
}
/* ----------599px–---------- */
@media screen and (max-width: 599px) {
	.support .inner .image_inner{
		width:100%;
		height:450px;
		margin:0 0 50px 0;
	}
	.support .inner .detail_inner h2{
		font-size:1.2rem;
	}
	.support .inner .detail_inner h2 span{
		display:block;
	}
	.support .inner .detail_inner h3{
		font-size:1.1rem;
	}
}

/* -- middle_image -- */
.middle_image{
	margin:0 calc(50% - 50vw);
	width:100vw;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}
.middle_image dt{
	width:19.8%;
	overflow:hidden;
	margin:0 0 5px 0;
}
.middle_image dt img{
	object-fit:cover;
	height:100%;
	width:100%;
}
/* ----------839px–---------- */
@media screen and (max-width: 839px) {
	.middle_image dt{
		width:49.8%;
		overflow:hidden;
		margin:0 0 5px 0;
	}
}


/* -- philosophy -- */
.philosophy{
	margin:0 calc(50% - 50vw) 0;
	width:100vw;
	display:flex;
	justify-content:space-between;
	position:relative;
	background:#dbd8d3;
}
.philosophy .phy_title{
	width:50%;
	align-items:center;
	display:flex;
	position:sticky;
	height:100vh;
	top:0;
}
.philosophy .phy_title h5{
	font-size:1.3rem;
	margin:0 0 0.5em 0;
	display: flex;
	align-items: center;
}
.philosophy .phy_title h5:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #000000;
	margin-left: 1rem;
}
.philosophy .phy_title h2{
	font-size:1.5rem;
	margin:0 0 1em 0;
}
.philosophy .phy_title .inner{
	width:70%;
	max-width:600px;
	height:fit-content;
	margin:auto;
}
.philosophy .phy_cont{
	width:50%;
}
.philosophy .phy_cont .phy_box{
	min-height:100svh;
	align-items:center;
	display:flex;
	position:relative;
	margin:0 0 5px 0;
}
.philosophy .phy_cont .phy_box:last-child{
	margin:0 0 0 0;
}
.philosophy .phy_cont .phy_box:after{
	content:"";
	display:block;
	height:100%;
	width:100%;
	background:#000;
	opacity:0.4;
	top:0;
	left:0;
	position:absolute;
}
.philosophy .phy_cont .phy_box .subinner{
	width:70%;
	height:fit-content;
	max-width:500px;
	margin:auto;
	z-index:1;
	color:#fff;
}
.philosophy .phy_cont .phy_box .subinner h3{
	font-size:1.4rem;
	margin:0 0 1em 0;
	border-bottom:1px dotted #fff;
	padding:0 0 1em 0;
}
.philosophy .phy_cont .phy_box .subinner h4{
	font-size:1.2rem;
	margin:0 0 1em 0;
}
.philosophy .phy_cont .phy_box:nth-child(1){
	background:url("../../../../../img/lineup/premium/phi_image_01.webp")center / cover;
}
.philosophy .phy_cont .phy_box:nth-child(2){
	background:url("../../../../../img/lineup/premium/phi_image_02.webp")center / cover;
}
.philosophy .phy_cont .phy_box:nth-child(3){
	background:url("../../../../../img/lineup/premium/phi_image_03.webp")center / cover;
}
.philosophy .phy_cont .phy_box:nth-child(4){
	background:url("../../../../../img/lineup/premium/phi_image_04.webp")center / cover;
}
.philosophy .phy_cont .phy_box:nth-child(5){
	background:url("../../../../../img/lineup/premium/phi_image_05.webp")center / cover;
}
.philosophy .phy_cont .phy_box:nth-child(6){
	background:url("../../../../../img/lineup/premium/phi_image_06.webp")center / cover;
}
/* ----------959px–---------- */
@media screen and (max-width: 959px) {
	.philosophy{
		display:block;
		justify-content:unset;
	}
	.philosophy .phy_title{
		width:100%;
		align-items:center;
		display:flex;
		position:unset;
	}
	.philosophy .phy_cont{
		width:100%;
	}
}
/* ----------599px–---------- */
@media screen and (max-width: 599px) {
	.philosophy .phy_title h2{
		font-size:1.3rem;
	}
	.philosophy .phy_cont .phy_box .subinner h3{
		font-size:1.2rem;
	}
	.philosophy .phy_cont .phy_box .subinner h4{
		font-size:1.1rem;
	}
}
/* ----------499px–---------- */
@media screen and (max-width: 499px) {
	.philosophy .phy_title .inner{
		width:90%;
		max-width:600px;
		height:fit-content;
		margin:auto;
	}
	.philosophy .phy_cont .phy_box .subinner{
		width:90%;
	}
}


/* -- cta -- */
.cta{
	margin:0 calc(50% - 50vw) 0;
	width:100vw;
	padding:15vh 0;
	background:url("../../../../../img/lineup/premium/cta_image.webp") center / cover;
	position:relative;
}
.cta:after{
	content:"";
	display:block;
	background:#000;
	position:absolute;
	height:100%;
	width:100%;
	top:0;
	left:0;
	opacity:0.5
}
.cta .inner{
	width:80%;
	max-width:600px;
	margin:auto;
	box-sizing:border-box;
	/* background:#fff; */
	z-index:1;
	position:relative;
	color:#fff;
}
.cta .inner h4{
	font-size:2rem;
	display: flex;
    align-items: center;
}
.cta .inner h4:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #ccc;
	margin-left: 1rem;
}
.cta .inner h2{
	font-size:1.3rem;
	margin:0 0 1em 0;
	line-height:2em;
}
.cta .inner h2 strong{
	font-weight:lighter;
	font-size:120%;
}
.cta .inner .ctr_box{
	display:flex;
	justify-content:space-between;
	margin:30px 0 0 0;
}
.cta .inner .ctr_box .btn{
	width:48%;
}
.cta .inner .ctr_box .btn a{
	width:100%;
	display:block;
	padding:10px 20px;
	box-sizing:border-box;
	border-radius:50px;
	box-shadow: 1rem 1rem 1rem -1rem hsl(200 50% 20% / 40%);
	background: linear-gradient(139deg, #948977, #7d6f57);
	color:#fff;
	text-align:center;
}


/* ----------839px–---------- */
@media screen and (max-width: 839px) {
	.cta .inner .ctr_box{
		display:block;
		justify-content:unset;
		margin:30px 0 0 0;
	}
	.cta .inner .ctr_box .btn{
		width:100%;
		margin:0 0 20px 0;
	}
}
/* ----------768px–---------- */
@media screen and (max-width: 768px) {
	.cta{
		padding:10vh 0;
	}
	.cta .inner h2{
		font-size:1.2rem;
		line-height:unset;
	}
	.cta .inner{
		width:80%;
		max-width:unset;
		margin:auto;
	}
}