@charset "UTF-8";
/*******************************
TopCss
*******************************/

/*------------------------
command
------------------------*/
.video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.simpleParallax,
.js-parallax{
	height: 100%;
}


.note{
	position: relative;
	max-width: 960px;
    width: 90%;
	margin: -10% auto 0;
	/*background: #fff;
	clip-path: polygon(5% 0, 100% 0, 100% 88%, 95% 100%, 0 100%, 0 12%);*/
    background: linear-gradient(0deg, rgb(230 230 230) 0%, rgb(208 208 208) 50%, rgb(83 83 83) 100%);
}
/*.note:before{
	content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1px;
    height: 80px;
    background: #858585;
}*/
.note .flex{
	justify-content: space-between;
	align-items: center;
}
.note .flex .img{
	width: 50%;
}
.note .flex .comment{
	width: 50%;
    padding: 30px 50px;
	
	line-height: 1.8;
}
.note .flex .comment .ttl{
    font-size: 120%;
    font-weight: 500;
    letter-spacing: .05em;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .note .flex .img{
        width: 45%;
    }
    .note .flex .comment{
        width: 55%;
        padding: 5% 2% 5% 6%;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .note{
        width: 80%;
        margin: -10% auto 20%;
    }
    .note .flex .comment {
        width: 100%;
        padding: 8% 8% 0;
    }
    .note .flex .img{
        width: 100%;
    }
}


.sec-item{
	display: flex;
	align-items: baseline;
	position: relative;
	z-index: 1;
	margin-bottom: 15%;
}
.sec-item .txt-box{
	position: relative;
	width: 68%;
	padding: 5% 20%;
		
	background: #fff;
}
.sec-item .txt-box .ttl01{
	margin: 0 0 1em;
	
	font-size: 2vw;
    font-weight: 400;
    letter-spacing: .3em;
    line-height: 1.8;
}
.sec-item .txt-box .ttl01:after{
	content: "";
	display: block;
	width: 144px;
	height: 1px;
	border-bottom: solid 2px #D6DDE2;
	margin-top: .8em;
}
.sec-item .txt-box .txt{
	margin-bottom: 30px;
	
	line-height: 1.8;
}

.sec-item .img-box{
	position: absolute;
    bottom: 10%;
	left: 78%;
    width: 55%;
	max-width: 714px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.sec-item .img-box .label{
	position: absolute;
	left: 0;
	right: 0;
	z-index: 1;
	margin: 0 auto;
	width: 30%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec-item .img-box .img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 300ms 0s ease;
}
.sec-item .txt-box .btn:hover + .img-box .img{
	transform: scale(1.05);
}
.sec-item:nth-of-type(odd){
	justify-content: flex-end;
}
.sec-item:nth-of-type(odd) .img-box{
	order: 1;
	left: auto;
	right: 78%;
}
.sec-item:nth-last-of-type(1){
	margin-bottom: 8%;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .sec-item .txt-box {
        padding: 5% 20% 5% 10%;
    }
    .sec-item:nth-of-type(odd) .txt-box{
        padding: 5% 10% 5% 20%;
    }
    .sec-item .txt-box .ttl01{
        font-size: 150%;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .sec-item{
        margin-bottom: 0;
    }
    .sec-item:nth-last-of-type(1) {
        margin-bottom: 0;
    }
    .sec-item .txt-box,
    .sec-item:nth-of-type(odd) .txt-box{
        width: 100%;
        padding: 0;
    }
    .sec-item .txt-box .ttl01,
    .sec-item .txt-box .txt,
    .sec-item .txt-box .btn{
        width: 80%;
        margin: 0 auto;
    }
    .sec-item .txt-box .ttl01{
        margin-top: 10%;
        margin-bottom: 20px;
    }
    .sec-item .txt-box .txt{
        margin-bottom: 20px;
    }
    .sec-item .txt-box .btn{
        display: block;
        margin-bottom: 15%;
    }
    .sec-item .img-box,
    .sec-item:nth-of-type(odd) .img-box{
        width: 100%;
        aspect-ratio: 16 / 7;
        position: relative;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
}


/*------------------------
btn
------------------------*/
.btn{
	position: relative;
	display: inline-block;
	padding: .8em 5em;
	
	background: #6B7D87;
	color: #fff;
	border: solid 1px #6B7D87;
	letter-spacing: .06em;
	text-decoration: none;
}
.btn:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1em;
	margin: auto 0;
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: .7em;
	height: .7em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
}
.btn:hover{
	background: #DEDEDE;
	color: #6B7D87;
}
.btn:hover:before{
	color: #6B7D87;
}

.btn.wh{
	background: #DEDEDE;
	color: #000;
	border: solid 1px #DEDEDE;
}
.btn.wh:before{
	color: #000;
}
.btn.wh:hover{
	background: #000;
	color: #DEDEDE;
}
.btn.wh:hover:before{
	color: #DEDEDE;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .btn{
        width: 100%;
        text-align: center;
    }
}


/*------------------------
hero
------------------------*/
.hero{
    aspect-ratio: 16 / 9;
    width: 100%;
    max-height: 100vh;
	position: relative;
}
.hero .hero-copy{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
    margin: 0;
	
	font-size: 2.6vw;
    font-weight: 200;
	text-align: center;
    letter-spacing: .4em;
    line-height: 2;
    color: #fff;
}
.hero .hero-copy .f-en{
	display: block;
	margin-top: 1em;
	
    font-size: 50%;
    font-weight: 600;
    font-style: italic;
    letter-spacing: .7em;
    color: rgb(255 255 255 / 50%);
}

.hero .bnr-100th{
	position: absolute;
	right: 0;
	bottom: 0;
    z-index: 1;
	max-width: 466px;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	.hero{
        height: 100%;
        width: 100%;
        padding-top: 90px;
        aspect-ratio: auto;
        background: #000;
	}
    .hero .hero-copy{
        height: calc(100% - 90px);
    }
    
	.hero .bnr-100th {
		width: 30%;
	}
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .hero .hero-copy{
        font-size: 120%;
        height: calc(100% - 190px);
    }
    
    .hero .bnr-100th {
        display: block;
        width: 60%;
        margin: auto;
        position: static;
        padding: 10px 0;
    }
}



/*------------------------
sec-intro-01
------------------------*/
.sec-intro-01{
	position: relative;
}
.sec-intro-01:after{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: rgb(0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
}
.sec-intro-01 .txt{
	width: 90%;
	margin: 0 auto;
	padding-top: 20%;
	position: relative;
	z-index: 1;
	
	color: #fff;
	text-align: center;
}
.sec-intro-01 .txt .ttl01{
	font-size: 2.4vw;
    font-weight: 200;
    letter-spacing: .3em;
    line-height: 2;
}
.sec-intro-01 .txt .comment{
	/*max-width: 560px;*/
	margin: 50px auto 60px;
	
	text-align: center;
    font-size: 120%;
	letter-spacing: .04em;
	line-height: 3;
}
.sec-intro-01 .bg{
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
}
.sec-intro-01 .bg .img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: animationZoom1 10s ease-in-out forwards;
}
@keyframes animationZoom1 {
  100% { transform:scale(1.1)} 
}



/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .sec-intro-01 .txt{
        padding-top: 10%;
        max-width: 430px;
    }
    .sec-intro-01 .txt .ttl01 {
        font-size: 180%;
    }
    .sec-intro-01 .txt .comment {
        margin: 4% auto 6%;
        font-size: 110%;
        line-height: 2.5;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .sec-intro-01 .txt{
        width: 80%;
    }
    .sec-intro-01 .txt .ttl01 {
        font-size: 4.7vw;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .sec-intro-01 .txt .comment {
        font-size: 100%;
        text-align: left;
        margin-bottom: 40px;
    }
}



/*------------------------
sec-intro-02
------------------------*/
.sec-intro-02 {
	position: relative;
	padding: 5% 0 0;
	
	background: #000;
}
.sec-intro-02 .ttl01{
	position: absolute;
    top: 45%;
    left: 0;
	right: 0;
    z-index: 1;
	margin: 0 auto;
    
	font-size: 3.8vw;
    font-weight: 600;
    font-style: italic;
	text-align: center;
    letter-spacing: .4em;
    color: rgba(255, 255, 255, .3);
}
.sec-intro-02 .img{
	width: 85%;
    max-width: 1920px;
}


.sec-intro-02 .note{
    z-index: 1;
}

.sec-intro-02 .note .f-en{
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: .4em;
    color: #c7c7c7;
    margin: 0;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .sec-intro-02 .note .f-en {
        font-size: 22px;
    }
}

/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .sec-intro-02{
        padding: 10% 0 0;
    }
}


/*------------------------
sec-intro-03
------------------------*/
.sec-intro-03 {
	position: relative;
    height: 100vh;
    margin-top: -8em;
}
.sec-intro-03 .ttl01{
    width: 90%;
	position: absolute;
    top: 7em;
    left: 0;
	right: 0;
    z-index: 1;
	margin: 0 auto;
    
	color: #fff;
	font-size: 2vw;
    font-weight: 200;
	text-align: center;
    letter-spacing: .3em;
    line-height: 2;
}
.sec-intro-03 .img{
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	.sec-intro-03 {
		height: 100%;
		aspect-ratio: 16 / 9;
	}
    .sec-intro-03 .ttl01{
        top: 7em;

        font-size: 180%;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .sec-intro-03 {
        aspect-ratio: 1.1 / 1;
    }
    .sec-intro-03 .ttl01 {
        top: 7.5em;
        font-size: 5.8vw;
    }
}


/*------------------------
sec-intro-04
------------------------*/
.sec-intro-04{
	position: relative;
	padding-bottom: 20%;
}
.sec-intro-04 .img{
	width: 50%;
    max-width: 565px;
    margin: -16% auto 0;
    position: relative;
    z-index: 1;
	/*border-bottom: solid 1px #231815;*/
}
.sec-intro-04 .ttl01{
    width: 90%;
	font-size: 2vw;
    font-weight: 200;
	text-align: center;
    letter-spacing: .3em;
    line-height: 2;
    margin: 60px auto;
}
/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .sec-intro-04{
        padding-bottom: 10%;
    }
    .sec-intro-04 .ttl01{
        font-size: 180%;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .sec-intro-04 .ttl01 {
        font-size: 4.5vw;
        margin: 40px auto;
    }
}


/*------------------------
block-nav
------------------------*/
.block-nav{
	padding: 8% 10% 3%;
	background: rgb(106,134,143);
	background: linear-gradient(180deg, rgba(106,134,143,1) 0%, rgba(0,0,0,1) 100%);
}
.block-nav > .flex{
	justify-content: center;
    column-gap: 1%;
}
.block-nav-item{
	position: relative;
	width: 49.5%;
	overflow: hidden;
}
.block-nav-item .label{
	position: absolute;
	left: 0;
	right: 0;
	z-index: 1;
	margin: 0 auto;
	width: 50%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.block-nav-item:hover .img{
	transform: scale(1.05);
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
    .block-nav{
        padding: 8% 5% 3%;
    }
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
    .block-nav > .flex{
        row-gap: 10px;
    }
    .block-nav-item{
        width: 100%;
    }
    .block-nav-item .label{
        width: 65%;
    }
}


/*------------------------
btm-bg
------------------------*/
.btm-bg{
	height: 100vh;
}
.btm-bg .img{
	width: 100%;
    height: 100%;
    object-fit: cover;
}

/*==== tablet タブレット用css ===*/
@media screen and (max-width: 1024px){
	.btm-bg{
		height: 100%;
		aspect-ratio: 16 / 9;
	}
}
/*==== mobile スマフォ横〜用css ===*/
@media screen and (max-width: 896px){
}
/*==== mobile スマフォ縦用css ===*/
@media screen and (max-width: 480px){
}