
@charset "utf-8";





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

 * index

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

@media (min-width: 769px){}
@media (max-width: 768px){}




/* custom */
.g-header{
	z-index: 1;
}





/* enter button */
.enter{
	box-sizing: border-box;
	text-decoration: inherit;

	display: block;
	padding: 1em 2em;

	color: #fff;
	background-color: #F00015;
}
.enter[for]{
	cursor: pointer;
}
.enter:after{
	content: url(../img/index/icon--enter.png);
	display: inline-block;

	margin-left: 1em;
	vertical-align: middle;

	margin-bottom: -10px;
}
.enter:hover{
	animation: flash 360ms ease-out;
}

@keyframes flash{
	from{ background-color: #fff; }
}






/* hero */
.hero{
	position: relative;
	z-index: 0;

	color: #fff;
	background-color: #000;
}
@media(min-width: 769px){
	.hero{
		height: 768px;
	}
}
@media(max-width: 768px){
	.hero{
		height: 60vh;
	}
}
.hero__video{
	vertical-align: middle;;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-gallery{
	margin: 0;
	padding: 0;
	list-style: none;

	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.hero-gallery__item{}
.hero-gallery__photo{
	width: 100%;
}

.hero__logo{
	max-width: 90%;
	/* max-width: 70%; */
}
.hero__note{
	font-size: 1.25em;
	text-align: center;
}

.site-name{
	font-size: 1em;
	font-weight: normal;
	font-family: 'Anton', sans-serif;
	text-align: center;

	margin: 0;
	padding: 0;
}
@media(max-width: 768px){
	.site-name{
		font-size: .75em;
	}
}
.site-name__logo{
	margin-bottom: .625em;
}
.site-name__main{
	line-height: 1.1;
	font-size: 7.25em;
}
.site-name__period{
	line-height: 1.1;
	font-size: 2.8em;
}

.hero-nav{
	margin: 0;
	padding: 0;
	list-style: none;
	margin-left: -2em;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.hero-nav__item{
	margin-left: 2em;
	z-index: 1;
}
.xmas-obj{
	/* display: inline-block; */
	width: 400px;
	position: relative;
	top: -380px;
	left: 50%;
	padding-left: 100px;
}
@media (max-width: 768px){
	.xmas-obj{display: none;}
}

/* slick custom */
.hero-gallery.slick-slider .slick-list,
.hero-gallery.slick-slider .slick-track,
.hero-gallery.slick-slider .slick-slide > div,
.hero-gallery.slick-slider .hero-gallery__item{
	height: 100%;
	box-sizing: border-box;
}
.hero-gallery.slick-slider{
	transform: scale(1.2);
}
.hero-gallery.slick-slider .slick-active > div{
	animation: gallery-zoom 6000ms linear;
}
@keyframes gallery-zoom{
	from, to{
		transform-origin: center center;
	}
	from{
		transform: scale(.8333333333333333);
	}
}





/* scroll guide */
.hero-layer__bg{
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
}
.hero-layer__bg:before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(../img/base/texture.png);
}
.hero-layer__content{
	box-sizing: border-box;
	height: 100%;

	display: flex;
	flex-direction: column;

	align-items: center;
	justify-content: center;
}
.scroll__txt{
	position:relative;
	font-size: 1.5em;
	bottom:-20%;
	font-family: 'Anton', sans-serif;
	letter-spacing: .05em;
	}
	.blinking{
		-webkit-animation:blink 1.4s ease-in-out infinite alternate;
		-moz-animation:blink 1.4s ease-in-out infinite alternate;
		animation:blink 1.4s ease-in-out infinite alternate;
	}
	@-webkit-keyframes blink{
		0% {opacity:0.2;}
		100% {opacity:0.8;}
	}
	@-moz-keyframes blink{
		0% {opacity:0.2;}
		100% {opacity:0.8;}
	}
	@keyframes blink{
		0% {opacity:0.2;}
		100% {opacity:0.8;}
	}
@media all and (-ms-high-contrast: none) {
	.scroll__txt {
		bottom:-15%;
		/* IE10 以降にのみ適用される */
	}
}
@media(max-width: 768px){
	.scroll__txt{
		position: relative;
		bottom: -3%;
	}
}
@media(min-width: 769px){
	.hero-layer__content{
		padding-bottom: 7.75em;
	}
}
.scroll-guide{
	color: inherit;
	text-decoration: inherit;
	text-indent: -999em;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	height: 100px;
	width: 100px;
	margin-left: auto;
	margin-right: auto;
}
.scroll-guide:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 200%;
	width: 1px;
	height: 200%;
	margin-left: auto;
	margin-right: auto;
	background-image: linear-gradient(transparent, #fff, #fff, transparent);
	animation: scroll-guide 2000ms linear infinite;
}
@keyframes scroll-guide{
	from	{ bottom: 100%; }
	to		{ bottom: -200%; }
}
@media(max-width: 768px){
	.scroll-guide {
		height: 80px;
	}
}

/* wrapper */
.g-top{}






/* index list */
.index{
	/*padding-top: 3em;
	padding-bottom: 3em;*/
}





/* chapter */
.chapter{
	padding-top: 3.75em;
	padding-bottom: 1.875em;
	/* padding-bottom: 3.75em; */

	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.chapter:nth-child(odd)		{ background-image: url(../img/index/index--odd.svg); }
.chapter:nth-child(even)	{ background-image: url(../img/index/index--even.svg); }
.chapter:first-child{
	padding-top: 6em;
}
.chapter:last-child{
	padding-bottom: 6em;
}
.chapter:nth-child(even){}

.chapter--product{}
.chapter--document{}
.chapter--rental{}

.chapter__photo{
	max-width: 100%;
}
.chapter__note{
	font-size: 1.125em;
	margin: 0;
	padding: 0;
	margin-top: 1.5em;
}
.chapter__note span.mini {
	font-size: .75em;
	color: rgb(127, 127, 127);
}

.chapter-title,
.chapter__note{
	text-shadow:
		0 0 .5em #fff,
		0 0 .5em #fff,
		0 0 .5em #fff,
		0 0 .5em #fff,
		0 0 .5em #fff,
		0 0 .5em #fff,
		0 0 .5em #fff,
		0 0 .5em #fff;
}



/* chapter grid */
.chapter-grid__image,
.chapter-grid__body{}

.chapter-grid__image{
	text-align: center;
}

@media(min-width: 769px){
	.chapter-grid{
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.chapter-grid__image{
		flex: 0 0 auto;
	}
	.chapter-grid__body{
		flex: 1 1 auto;
	}

	.chapter:nth-child(odd) .chapter-grid__image{
		order: 1;
		margin-left: 2.875em;
	}
	.chapter:nth-child(even) .chapter-grid__image{
		margin-right: 2.875em;
	}
}
@media(min-width: 769px) and (max-width: 1180px){
	.chapter-grid__image{
		max-width: 50%;
	}
}
@media(max-width: 768px){
	.chapter-grid__image{
		margin-bottom: 2em;
	}
}




/* chapter title */
.chapter-title{
	font-size: 1em;
	font-weight: normal;

	margin: 0;
	padding: 0;
}
.chapter-title__ruby{
	color: #F00015;
	font-size: 2.125em;
	font-family: 'Anton', sans-serif;
	margin-bottom: .75em;
}
.chapter-title__main{
	font-size: 1.875em;
	font-weight: bold;
}



/* chapter nav */
.chapter-nav{
	margin: 0;
	padding: 0;
	list-style: none;

	margin-top: 3.125em;
	margin-left: -1em;

	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.chapter-nav__item__01::before {
	content:"";
	width: 100%;
	height: 42px;
	background-image: url(../img/index/btn--parts01a.png);
	background-repeat: no-repeat;
    position: relative;
    right: -40px;
	top: 30px;
}
.chapter-nav__item__01::after {
	content:"";
	width: 100%;
	height: 110px;
	background-image: url(../img/index/btn--parts01b.png);
	background-repeat: no-repeat;
    position: relative;
	left: 10px;
    top: -16px;
}
.chapter-nav__item__02 label{
	background-image: url(../img/index/btn--parts02.png);
    background-repeat: no-repeat;
    background-position: -25px 14px;
}
.chapter-nav__item__02::after {
	content:"";
	width: 100%;
	height: 75px;
	background-image: url(../img/index/btn--parts02.png);
	background-repeat: no-repeat;
    position: relative;
    left: -10px;
	top: -65px;
	z-index: -1;
}
.chapter-nav__item__03::after {
	content:"";
	width: 100%;
	height: 50px;
	background-image: url(../img/index/btn--parts03.png);
	background-repeat: no-repeat;
    position: relative;
    left: -10px;
    top: -45px;
}
@media (max-width: 768px){
	.chapter-nav__item__01::before,
	.chapter-nav__item__01::after,
	.chapter-nav__item__03::after {
		width: 53%;
		background-size: contain;
	}
	.chapter-nav__item__01::after {
		left: 20px;
	}
	.chapter-nav__item__02::after {
		width: 70%;
		background-size: contain;
		top: -55px;
		left: -6px;
	}
	.chapter-nav__item__03::after {
		left: 0px;
		top: -30px;
		width: 65%;
	}
	.chapter-nav__item__02 label {
		background-position: -25px 3px;
	}
}
.chapter-nav__item{
	margin-left: 1em;
	margin-bottom: 1em;
}

/* animation */
.chapter.js-in{
	position: relative;
	z-index: 0;
}
.chapter.js-in:before{
	content: "";
	display: block;

	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;

	transition: top 1000ms ease-in-out;
}
.chapter.js-in.js-in--active:before{
	top: 100%;
}

.chapter.js-in:not(.js-in--active) .chapter-grid__image,
.chapter.js-in:not(.js-in--active) .chapter-title__ruby,
.chapter.js-in:not(.js-in--active) .chapter-title__main,
.chapter.js-in:not(.js-in--active) .chapter__note,
.chapter.js-in:not(.js-in--active) .chapter-nav{
	visibility: hidden;
}

.chapter.js-in.js-in--active .chapter-grid__image,
.chapter.js-in.js-in--active .chapter-title__ruby,
.chapter.js-in.js-in--active .chapter-title__main,
.chapter.js-in.js-in--active .chapter__note,
.chapter.js-in.js-in--active .chapter-nav{
	animation: slidein 1000ms ease-out both;
}

.chapter.js-in.js-in--active .chapter-grid__image	{ animation-delay: 1000ms; }
.chapter.js-in.js-in--active .chapter-title__ruby	{ animation-delay: 1400ms; }
.chapter.js-in.js-in--active .chapter-title__main	{ animation-delay: 1600ms; }
.chapter.js-in.js-in--active .chapter__note			{ animation-delay: 1800ms; }
.chapter.js-in.js-in--active .chapter-nav			{ animation-delay: 2000ms; }

@keyframes slidein{
	from{
		opacity: 0;
		transform: translateY(3rem);
	}
}

/* product gallery */
.space-3d{
	perspective: 1000px;
}
.product-gallery{
	margin: 0;
	padding: 0;
	list-style: none;

	position: relative;
	z-index: 0;

	animation: rotation 3000ms ease-in-out infinite alternate;
}
.product-gallery__item:not(:first-child){
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.product-gallery__photo{
	max-width: 100%;
}

.product-gallery__item--1{ animation: shake1 1500ms ease-in-out infinite alternate; animation-delay: 100ms; }
.product-gallery__item--2{ animation: shake2 1500ms ease-in-out infinite alternate; animation-delay: 200ms; }
.product-gallery__item--3{ animation: shake3 1500ms ease-in-out infinite alternate; animation-delay: 300ms; }
.product-gallery__item--4{ animation: shake4 1500ms ease-in-out infinite alternate; animation-delay: 400ms; }
.product-gallery__item--5{ animation: shake5 1500ms ease-in-out infinite alternate; animation-delay: 500ms; }
.product-gallery__item--6{ animation: shake6 1500ms ease-in-out infinite alternate; animation-delay: 600ms; }
.product-gallery__item--7{ animation: shake7 1500ms ease-in-out infinite alternate; animation-delay: 700ms; }

@keyframes rotation{
	to{ transform: rotateY(-10deg); }
}

@keyframes shake1{ to{ transform: translateY(00px); } }
@keyframes shake2{ to{ transform: translateY(00px); } }
@keyframes shake3{ to{ transform: translateY(05px); } }
@keyframes shake4{ to{ transform: translateY(05px); } }
@keyframes shake5{ to{ transform: translateY(10px); } }
@keyframes shake6{ to{ transform: translateY(10px); } }
@keyframes shake7{ to{ transform: translateY(10px); } }

/* product image */
.chapter__photo{
	animation: shake 1500ms ease-in-out infinite alternate;
}
.chapter--product .chapter__photo	{ animation-delay: 000ms; }
.chapter--document .chapter__photo	{ animation-delay: 400ms; }
.chapter--rental .chapter__photo	{ animation-delay: 800ms; }

@keyframes shake{
	to{ transform: translateY(10px); }
}







/* category navi */
.category-nav{}
.category-nav__title{
	font-size: 1.5em;
	text-align: center;

	color: #fff;

	margin: 0;
	padding: 0;
	margin-bottom: 1em;
}
.category-nav__items{
	margin: 0;
	padding: 0;
	list-style: none;
}
.category-nav__item{
	box-sizing: border-box;
	background-color: #fff;
}
@media(min-width: 769px){
	.category-nav__items{
		/*max-width: 1180px;
		min-width: 320px;*/

		width: 80vw;
		max-width: 1140px;

		display: flex;
		justify-content: space-between;
	}
	.category-nav__item{
		flex: 1 1 auto;
	}
	.category-nav__item:not(:first-child){
		margin-left: 2.81%;
	}
}
@media(max-width: 768px){
	.category-nav__item:not(:last-child){
		margin-bottom: 2.81%;
	}
}

.category-nav__more{
	color: #7f7f7f;
	text-decoration: inherit;
	padding: 1em;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	box-sizing: border-box;
	height: 100%;
}
.category-nav__more:hover{
	color: inherit;
	outline: 8px solid #F00015;
	outline-offset: -8px;
}
.category-nav__title-ruby{
	line-height: 1;
	font-size: 2.5em;
	font-weight: normal;
	font-family: 'Anton', sans-serif;
}
.category-nav__title-main{}
.category-nav__note{
	line-height: 1.5;
/*	font-size: .75em;*/
	font-size: 1em;
	color: #202020;
	text-align: center;

	margin: 0;
	padding: 0;
	margin-top: 1em;
}
.category-nav__image{
	max-width: 100%;
}



.category-header__title{
	margin: 0;
	padding: 0;
}
.category-header{
	display: flex;
	align-items: center;

	flex: 1 1 auto;
}
.category-header__image{
	flex: 0 1 auto;
	margin-right: 1em;
}
.category-header__title{
	line-height: 1.5;
	font-size: 1em;
	font-weight: normal;

	flex: 1 1 auto;

	margin: 0;
	padding: 0;
}










@media (min-width: 769px){}
@media (max-width: 768px){}
