@charset "UTF-8";
@import url('header.css');
@import url('footer.css');
/*@media screen and (min-width: 768px){
	body { min-width: 1200px; }
}*/
/*==================================================================
	Style setting
===================================================================*/
html {
	font-size: 62.5%;
	overflow-x:hidden;
	scroll-behavior: initial;
	width: 100%;
    height: 100%;
}
body {
	background: #E7E7D7;
	color: #1C1C1C;
	font-family: 'Noto Sans JP';
	font-size: 1.6rem;
	overflow-x:hidden;
	-webkit-text-size-adjust:none;
	-ms-text-size-adjust:none;
	word-wrap:break-word;
	width: 100%;
    height: 100%;
}
body {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
body.is-load {
    opacity: 1;
    visibility: visible;
}
.sec-bg {
	background: #51646B;
	color: #E7E7D7;
}
/* smooth scroll */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis.lenis-stopped {
    overflow: hidden;
}

/* basic setting */
a { color: #222222; text-decoration: none; }
a:hover { color: #222222; text-decoration: none; }
.inner {
	margin: 0 auto;
	max-width: 1280px;
	width: 92%;
}
.full { width: 100%; }
.inter { font-family: "Inter", sans-serif; }
.philosopher { font-family: "Philosopher", sans-serif; }
.notoserif { font-family: 'Noto Serif JP', serif; }
.gothic { font-family: "Yu Gothic", sans-serif; font-weight: 400; }
.pos-rel { position: relative; }
.fw600 { font-weight: 600; }
.img-cap {
	color: #fff;
	font-size: 1.1rem;
	font-family: 'Noto Sans JP';
	line-height: 1.2;
	padding: 5px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;	
}
.img-cap.shadow {
    text-shadow: 0 0 10px rgba(0,0,0,0.5),0 0 10px rgba(0,0,0,0.5),0 0 10px rgba(0,0,0,0.5),0 0 10px rgba(0,0,0,0.5),0 0 10px rgba(0,0,0,0.5);
}
.img-cap.l-side {
	right: auto;
	left: 0;
}
.caption {
	font-size: 1rem;
	padding-left: 1em;
	text-indent: -1em;
}
.white { color: #ffffff; }
.black { color: #1C1C1C; }
.blue { color: #51646B;}
.nolink { pointer-events: none; }
.fadeup {
	opacity: 0;
	-webkit-transform: translate3d(0, 20px, 0);
				transform: translate3d(0, 20px, 0);
	-webkit-transition: opacity 1.5s cubic-bezier(.19,1,.22,1) .2s, -webkit-transform 1.5s cubic-bezier(.19,1,.22,1) .2s;
			transition: opacity 1.5s cubic-bezier(.19,1,.22,1) .2s, transform 1.5s cubic-bezier(.19,1,.22,1) .6s, -webkit-transform 1.5s cubic-bezier(.19,1,.22,1) .2s;
}
.fadeup.on {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 768px){
	.sp { display: none!important; }
}
@media screen and (max-width: 767px){
	.pc { display: none!important;}
}

/* common setting */


/* .txt-animation */
.txt-animation .fadesplit > span {
    display:inline-block;
    opacity: 0;
    min-width: 0.3em;
}
.on .txt-animation .fadesplit > span,
.txt-animation.on .fadesplit > span {
    animation: move-animation 1s ease-out 0s forwards
}
@keyframes move-animation {
    0% {
        opacity:0;
        transform:translateX(15px)
    }
    40% {
        transform:translateX(-4px)
    }
    to {
        opacity:1;
        transform:translateX(0)
    }
}

/* .ani-image */
.ani-image {
	position: relative;
	z-index: 0;
	clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
	overflow: hidden;
	transition: 2.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.ani-image.on {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

/* headlines */
.headline01 {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
	min-height: 333px;
	padding: 25px 15px;
	position: relative;
}
.headline01:after {
	background-color: #251e1c;
	content: "";
	height: 3px;
	width: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	transition: width linear 0.5s;
}
.headline01.on:after {
	width: 100%;
}
.headline01 h2 {
	padding-left: 15px;
	position: relative;
}
.headline01 h2:after {
	background-color: #251e1c;
	content: "";
	height: 0;
	width: 1px;
	position: absolute;
	left: 0;
	top: 0;
	transition: height linear 0.5s;
}
.headline01.on h2:after {
	height: 100%;
}
.headline01 .en {
	font-size: 8.5rem;
	font-weight: 500;
	line-height: 8.5rem;
	opacity: 0;
	text-transform: uppercase;
}
.headline01.on .en {
	opacity: 1;
}
.headline01 .jp {
	display: block;
	font-size: 1.8rem;
	letter-spacing: 0.2em;
		padding-left: 0.5em;
}
@media screen and (max-width: 767px){
	.headline01 {
		min-height: 222px;
	}
	.headline01 .en {
		font-size: 5rem;
		line-height: 5rem;
	}
	.headline01 .jp {
		font-size: 1.2rem;
		letter-spacing: 0.1em;
	}
}

/* lower pages */
.body-lower { padding: 80px 0; }
@media screen and (max-width: 767px){
	.body-lower { padding: 40px 0; }
}

/* footer caption */
.foot-caption {
	background-color: transparent;
	padding: 160px 0;
	position: relative;
}
.foot-caption ul {
	font-size: 1.1rem;
	margin: 0 auto;
	max-width: 930px;
	width: 100%;
	padding-left: 1em;
	text-indent: -1em;
}
@media screen and (max-width: 767px){
	.foot-caption { padding: 100px 0; }
	.foot-caption ul {
		font-size: 1rem;
	}
}

#contents {
	background: #E7E7D7;
	position: relative;
	z-index: 1000;
	transition: opacity 0.25s linear;
}
.menu-open #contents { z-index: 0; }
#top #contents { z-index: 0; }
.page-main {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	padding: 0;
	z-index: 0;
	height: 100vh;
}
.page-main .cont {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.page-main .cont img {
	height: 100%;
	object-fit: cover;
}
.page-main .ttl {
	color: #E7E7D7;
	font-size: clamp(4rem,8.333333vw,12rem);
	line-height: 1;
	letter-spacing: 0;
	position: absolute;
	bottom: 0;
	left: 40px;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	.page-main {
		padding: 40px 20px 0;
		min-height: 40px;
	}
	.page-main .ttl {
		bottom: 80px;
		left: 20px;
	}
}
/*20250725add*/
.cap {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 1rem;
    margin-top: 50px;
}
@media screen and (min-width:768px) and (max-width:1200px){
	.page-main .ttl {
		font-size: 12vw;
	}
}
/* Swipe icon */
.swipe-scroll{position: relative;}
.swipe-icon {display: none;}

@media only screen and (max-width: 767px) {
	.swipe-scroll {
		overflow-x: auto;
		padding-bottom: 15px;
	}
	.swipe-scroll img {
		width: 768px !important;
		max-width: inherit;
	}
	.swipe-icon {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 70px;
		height: 70px;
		display: block;
		margin: -35px;
		animation:horizontal 1s ease-in-out infinite alternate;
		z-index: 10;
	}
	.swipe-icon img {
		max-width: 100%!important;
		width: 70px!important;
	}
	@keyframes horizontal {
		0% { transform:translate(-20%,-20%); }
		100% { transform:translate(30%,-20%); }
	}
}
