@charset "utf-8";

/* --------------------------------------------------------- */
/* Key visual */

.kv {
	position: relative;
	height: 50vh;
	overflow: hidden;
	margin: 15px;
	color: #fff;
	opacity: 0;
}

.-ready.kv {
	opacity: 1;
	transition: opacity 0.5s ease-in;
}

@media all and (min-width: 1280px) {
	.kv {
		height: 140vh;
	}
}

/* kv indicator */

.kv .kv__indicator {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	margin: 0;
	opacity: 1;
}

.kv.-start .kv__indicator {
	opacity: 0;
	transition: opacity 0.5s ease-out 0.5s;
}

.kv .kv__indicator__inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 60px;
	height: 60px;
	display: block;
	margin: auto;
	z-index: 9999;
	background-image: url("../img/global/icon_women.svg");
	background-repeat: no-repeat;
	background-position: center;
	animation: indicator 1s cubic-bezier(.65,.05,.36,1) infinite;
	transform-origin: center bottom;
}

@keyframes indicator {
	0% {
		transform: rotate(10deg);
	}
	50% {
		transform: rotate(-10deg);
	}
	100% {
		transform: rotate(10deg);
	}
}


/* kv ttl */

.kv__ttl-container {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	z-index: 2;
	font-size: 13.2vw;
	font-weight: 100;
	text-transform: uppercase;
font-family:'Tiro Devanagari Hindi', 'Noto Serif JP', 'Yu Gothic', "游ゴシック", 'YuGothic', "游ゴシック体", 'Meiryo', sans-serif;
	
	-webkit-hyphens: auto;
	    -ms-hyphens: auto;
	        hyphens: auto;
	
	--color-base: #fff;
	color: var(--color-base);
}

@media all and (min-width: 1280px) {
	.kv__ttl-container {
		font-size: 11.54vw;
		align-items: flex-end;
		transform: translateX(-0.145em);
	}
}



.kv__ttl-container-inner {
	opacity: 0;
}

.kv__ttl {
	margin: 0 auto 20px;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1;
}

.kv__ttl-inner {
	display: block;
	overflow: hidden;
}


.load .kv__ttl-container-inner {
	opacity: 1;
	font-variation-settings: "wght" 700;
}

/* wrap strings */

.kv__ttl .js-wrap {
	overflow: hidden;
	line-height: 0.8;
}

.kv__ttl .js-wrap .word {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
	padding-right: 0.02em;
}

.kv__ttl .js-wrap .word-space {
	display: inline;
}

.kv__ttl .js-wrap .char {
	display: inline-block;
	margin-right: -0.05em;
}

.kv__ttl .js-wrap .char {
	font-weight: 600;
	opacity: 0;
}

.load .kv__ttl .js-wrap .char {
	opacity: 1;
	
	animation-name: stringAnimation, stringAnimation_up;
	animation-duration: 2s, 1s;
	animation-delay: 1s;
	animation-timing-function: cubic-bezier(.65,.05,.36,1), linear;
	animation-fill-mode: both, forwards;
}

@keyframes stringAnimation {
	0% {
		transform: translate3d(0, 1em, 0) rotate(45deg);
		font-variation-settings: "wght" 100;
	}
	50% {
		transform: translate3d(0, 0, 0) rotate(0deg);
		font-variation-settings: "wght" 100;
	}
	100% {
		transform: translate3d(0, 0, 0) rotate(0deg);
		font-variation-settings: "wght" 700;
	}
}

@media all and (min-width: 1280px) {
	.kv__ttl {
		margin-bottom: 60px;
	}
}

/* ---------- */

.kv__img {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.kv__img:before {
	position: absolute;
	left: 0;
	top: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	opacity: 0;
	z-index: 2;
	transition: opacity 1.5s ease 1.5s;
}

.kv.-start .kv__img:before {
	opacity: 0.5;
}

.kv__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* ------------------------------------------- */
/* Image */

.kv__img {
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
	        clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
}

.kv__img.-start {
	animation-name: showKvImg_H;
	animation-duration: 1.5s;
	animation-delay: 0.5s;
	animation-timing-function: cubic-bezier(.77,0,.18,1);
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}

@keyframes showKvImg_V {
	0% {
		-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
		        clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
		transition: all 1.5s cubic-bezier(.77,0,.18,1);
	}
	100% {
		-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

@keyframes showKvImg_H {
	0% {
		-webkit-clip-path: polygon(0% 0%, 0% 0%, -60% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 0% 0%, -60% 100%, 0% 100%);
		transition: all 1.5s cubic-bezier(.77,0,.18,1);
	}
	100% {
		-webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
	}
}


/* slideshow */

.img-reel {
	position: absolute;
	top: -62.5px; /* parallax 250px / 4 */
	z-index: 1;
	width: 100%;
	height: calc(100% + 100px); /* parallax 250px / 2 */
	margin: auto;
	padding: 0;
	font-size: 0;
	line-height: 0;
	list-style: none;
	overflow: hidden;
	background-color: #fff;
	
	will-change: transform;
}

.img-reel__item {
	position: absolute;
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-position: 0 center;
	
	transition-duration: 2s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(.77,0,.18,1);
	transition-property: -webkit-clip-path, clip-path;
	z-index: 1;
	
	/*-webkit-clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
	        clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);*/
}

.img-reel__item.current {
	z-index: 3;
	/*-webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
	        clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);*/
}

.img-reel__item.prev {
	z-index: 2;
	transition-delay: 1s;
}

.img-reel__item-inner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	
	animation-duration: 10s; /* parent animation-duration + animation-delay */
	animation-timing-function: linear;
	animation-fill-mode: forwards;
	
}

.current .img-reel__item-inner {
	animation-name: showTranslateBG;
}

.prev .img-reel__item-inner {
	animation-name: hideTranslateBG;
}

.img-reel__item-bg.img {
	display: none;
}


.msie .img-reel {
	transform: none !important;
}


@keyframes showImage {
	0% {
		-webkit-clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
	}
	90% {
		-webkit-clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
	}
	100% {
		-webkit-clip-path: polygon(0% 0%, 120% 0%, 100% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 120% 0%, 100% 100%, 0% 100%);
	}
	
}

@keyframes showTranslateBG {
	0%   { transform: translate3d(0, 50px, 0); }
	100% { transform: translate3d(0, 0, 0); }
}
@keyframes hideTranslateBG {
	0%   { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(0, -50px, 0); }
}


@media screen and (min-width: 1280px) {
	.img-reel__item {
		-webkit-clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 0% 0%, -20% 100%, 0% 100%);
	}
	
	.img-reel__item.current {
		-webkit-clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
		        clip-path: polygon(0% 0%, 150% 0%, 100% 100%, 0% 100%);
	}
}




.kv__info {
	position: absolute;
	z-index: 10;
	bottom: 0;
	right: 0;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	width: 100%;
	min-width: 100%;
}

.kv__info__item {
	margin: 0 0 0px;
	transition: 0.7s cubic-bezier(.77,0,.18,1);
	transition-property: -webkit-clip-path, clip-path;
	-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	        clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}

.-show .kv__info__item {
	-webkit-clip-path: polygon(0% 0%, 120% 0%, 100% 100%, 0% 100%);
	        clip-path: polygon(0% 0%, 120% 0%, 100% 100%, 0% 100%);
}

.kv__info__item:last-child {
	margin-bottom: 0;
}

.kv__info__item a {
	position: relative;
	display: block;
	font-weight: bolder;
	text-decoration: none;
	color: var(--color-link);
	padding: 0 10px 5px 0;
	line-height: 1.7;
	text-align: center;
	margin: 0 auto;
	
	transition: 0.2s ease-out;
	transition-property: background, color;
}

.kv__info__item a:hover {
	background-color: var(--color-link);
	color: #fff;
}

.kv__info__item a:hover .char {
	color: #fff !important;
	animation: none !important;
	opacity: 1;
}

.kv__info__item .ja {
	display: block;
	font-feature-settings: "palt";
	padding-right: 20px;
}

.kv__info__item .js-wrap .word {
	white-space: normal;
}

.kv__info__item .en {
	display: block;
	font-size: 1.5rem;
	text-align: right;
}

.kv__info__item .icon {
	position: absolute;
	right: 10px;
	top: 14px;
	left: auto;
	bottom: auto;
	margin: auto;
	color: inherit;
}

.kv__info__item .icon svg {
	stroke-width: 1.7;
}

.kv__info__item a:hover .icon {
	color: #fff !important;
	animation: none !important;
	opacity: 1;
}

/* wrap strings */

.kv__info .js-wrap {
	overflow: hidden;
	line-height: inherit;
}

.kv__info .js-wrap .char {
	display: inline-block;
}

.kv__info .js-wrap .char {
	color: rgba(0,0,0,0.2);
}

.kv__info.-show .icon,
.kv__info.-show .js-wrap .char {
	animation: stringAnimation_up 0.5s linear;
	animation-fill-mode: forwards;
}

@keyframes stringAnimation_up {
	0% {
		color: rgba(0,0,0,0.2);
	}
	25% {
		color: #68a247;
	}
	50% {
		color: #3397a6;
	}
	75% {
		color: #ea6aa0;
	}
	100% {
		color: var(--color-base);
	}
}


@media all and (min-width: 768px) {
	.kv__info {
		font-size: 160%;
		width: auto;
		min-width: 18%;
		text-align: center;
		margin: 0 auto;
	}
	
	.kv__info__item a {
		display: flex;
		align-items: center;
		padding: 25px 10px;
		line-height: 1;
	}
	
	.kv__info__item .ja {
		margin-right: 10px
	}
	
	.kv__info__item .en {
		font-size: 1.9rem;
	}
	
	.kv__info__item .icon {
		position: relative;
		right: -10px;
		top: auto;
		margin: 0 0 0 auto;
	}
}

@media all and (min-width: 1280px) {
	
}


.js-wrap .word {
	display: inline-block;
	overflow: hidden;
	white-space: nowrap;
}

.js-wrap .word-space {
	display: inline;
}
