@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500&display=swap');
/*
font-family: 'Zen Kaku Gothic New', sans-serif;
Medium 500
*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@500;600&display=swap');
/*
font-family: "Shippori Mincho B1", serif;
Medium 500
SemiBold 600
*/


@font-face {
  font-family: "TTRationalistLight";
  src: url('../../font/TTRationalistLight/font.woff2') format('woff2'), url('../../font/TTRationalistLight/font.woff') format('woff');
  font-weight: 500;
}
@font-face {
font-family: "HelveticaProBold";
src: url('../../font/HelveticaProBold/font.woff2') format('woff2'), url('../../font/HelveticaProBold/font.woff') format('woff');
font-weight: 500;
}
@font-face {
font-family: "MetroSansBold";
src: url('../../font/MetroSansBold/font.woff2') format('woff2'), url('../../font/MetroSansBold/font.woff') format('woff');
font-weight: 500;
}
@font-face {
font-family: "MetroSansRegularItalic";
src: url('../../font/MetroSansRegularItalic/font.woff2') format('woff2'), url('../../font/MetroSansRegularItalic/font.woff') format('woff');
font-weight: 500;
}
@font-face {
font-family: "Sequel100Black45";
src: url('../../font/Sequel100Black45/font.woff2') format('woff2'), url('../../font/Sequel100Black45/font.woff') format('woff');
font-weight: 500;
}
@font-face {
font-family: "MetroSansRegular";
src: url('../../font/MetroSansRegular/font.woff2') format('woff2'), url('../../font/MetroSansRegular/font.woff') format('woff');
font-weight: 500;
}








/* ---------- RESET ---------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, b, u, i, center, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video, textarea, input {margin:0;padding:0;border:0;font-size: 100%;font:inherit;vertical-align: baseline;text-decoration:none;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul, li {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}
input, textarea, button{-webkit-apparence:none;border:none;background: none;outline: none;}
input:focus, textarea:focus{-webkit-apparence:none;outline: none;border:none;}
img{border:none;outline:none;vertical-align:top;font-size:0;line-height:0;}
img a{border:none;outline: none;}
a:focus{outline:none;}
hr {height:0;margin:0;padding:0;border:0;}
h1, h2, h3, h4, h5, h6, p{margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;text-decoration:none;}
input, textarea, button{-webkit-apparence:none;border:none;background: none;outline: none;}

img{width:100%;height:auto;backface-visibility:hidden;-webkit-backface-visibility:hidden;transform:translate3d(0,0,0);}

*{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-box-shadow:none;box-shadow:none;   outline:none;box-sizing:border-box;margin:0;padding:0;}
/*----------------------------------*/

html,body{width: 100%;height: 100%;}

html{ font-size: 14px;}

body{
    background:#FFF;
    width: 100%;
    height: 100%;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;	
	font-family: "Shippori Mincho B1",'Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
    font-weight:500;
	color: #5B5C57;
}



/* =============================================== */


#loader-bg{
    display:block;
    position:fixed;
    width:100%;
    top:0;
    left:0;
	bottom: 0;
	right: 0;
	height: 100vh;
    z-index:1000;
	background: #FFF;
    overflow:hidden;
}
#loader-bg .spinner {
    width: 100px;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    font-size: 0;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 100;
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#loader-bg .spinner > div {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color:#E5E3E1;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loader-bg .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#loader-bg .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}




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

.inView{
	position: relative;
	top: 2rem;
	opacity: 0;
	-webkit-transition: top 1.6s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
	transition: top 1.6s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
}
.inView.view{opacity: 1;top: 0;}

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

/*
.guide,
.guide1,
.guide2,
.guide3,
.guide4{opacity: 0.1;z-index: 1000;position: relative;}

body:before{content: '';position: fixed;width: 1px;left: 50%;top: 0;bottom: 0;background: #FF0004;opacity: 0.5;z-index: 1000;}
.guide:before{content: '';position: fixed;width: 1px;left: 5%;top: 0;bottom: 0;background: #FF0004;}
.guide:after{content: '';position: fixed;width: 1px;right: 5%;top: 0;bottom: 0;background: #FF0004;}
.guide1:before{content: '';position: fixed;width: 1px;left: 10%;top: 0;bottom: 0;background: #FF0004;}
.guide1:after{content: '';position: fixed;width: 1px;right: 10%;top: 0;bottom: 0;background: #FF0004;}
.guide2:before{content: '';position: fixed;width: 1px;left: 15%;top: 0;bottom: 0;background: #FF0004;}
.guide2:after{content: '';position: fixed;width: 1px;right: 15%;top: 0;bottom: 0;background: #FF0004;}
.guide3:before{content: '';position: fixed;width: 1px;left: 7.5%;top: 0;bottom: 0;background: #00B5FF;}
.guide3:after{content: '';position: fixed;width: 1px;right: 7.5%;top: 0;bottom: 0;background: #00B5FF;}
.guide4:before{content: '';position: fixed;width: 1px;left: 12.5%;top: 0;bottom: 0;background: #00B5FF;}
.guide4:after{content: '';position: fixed;width: 1px;right: 12.5%;top: 0;bottom: 0;background: #00B5FF;}




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


#header{
	width: 100%;
	height: 100%;
	position: relative;
	color: #3B5E66;
	background: #E5E3D1;
}

#header .title{
	position: absolute;
	top: 48%;
	right: 7.5%;
	width: 27.8%;
	z-index: 20;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
#header .title h1{position: relative;}
#header .title h2{
	font-size: 2.2vw;
	text-align: right;
	margin-top: 1.6em;
	letter-spacing: 0.03em;
}
#header .logo{
	position: absolute;
	top: 2.5em;
	right: 2.5em;
	width: 14%;
	max-width: 192px;
	z-index: 50;
}
#header .vegas{
    width: 100%;
    height: 100%;
    position: relative;
	z-index: 10;
	overflow: hidden;
}
#header .vegas .vegasImage{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width:100%;
    z-index: 10;
}

#header::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1.14em;
	z-index: 100;
	background: #E5E3D1;
}



.scrollbar{
	width: 2em;
	position: absolute;
	left:3%;
	right: 0;
	bottom: -3.5em;
	height:8.75em;
	z-index: 100;
}
.scrollbar p{width: 1em;}
.scrollbar .base{
	width:1px;
	height:8.75em;
	position: absolute;
	bottom:0px;
	right: 0;
	overflow: hidden;
    z-index: 5;
    background:#E5E3D1;
}
.scrollbar .bar{
	width:1px;
	height:8.75em;
	position: absolute;
	bottom:0px;
	right: 0;
	overflow: hidden;
    z-index: 10;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(to bottom,rgba(59, 94, 102, 1) 50%, rgba(59, 94, 102, 0) 50%);
		background-position: 0 -100%;
		background-size: 100% 200%;
		animation: scrolldown 3.0s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}
@keyframes scrolldown {
	0% {background-position: 0 100%;}
	50% {background-position: 0 0;}
	100% {background-position: 0 -100%;}
}


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


.topNav{
	width: 100%;
	letter-spacing: 0.02em;
	padding: 6.4em 0 0;
	color: #3B5E66;
	position:relative;
}

.topNav .navInner{
	width: 87.5%;
	max-width: 1120px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-bottom: 2.9em;
}
.topNav .navInner::before,
.topNav .navInner::after{
	content: '';
	position: absolute;
	top: 1em;
	bottom: 0;
	width: 1px;
	background: #E5E3D1;
}
.topNav .navInner::before{left: 33%;}
.topNav .navInner::after{right: 33%;}


.topNav .menu{
	position: relative;
	width: 32.1%;
	opacity: 0;
	top: 2rem;
	-webkit-transition: top 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
	transition: top 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.2s;
}
.topNav .menu.view{opacity: 1;top: 0;}

.topNav .menu.m01{-webkit-transition-delay:0.0s;transition-delay:0.0s;}
.topNav .menu.m02{-webkit-transition-delay:0.4s;transition-delay:0.4s;}
.topNav .menu.m03{-webkit-transition-delay:0.8s;transition-delay:0.8s;}




.topNav .menu .number{width: 100%;border-top: 2px solid #E5E3D1;}
.topNav .menu .number p{
	width: 7.1em;
	margin-left: 1.85em;
}
.topNav .menu .main{
	width: 89%;
	margin: -0.5em auto 0;	
}
.topNav .menu .main .name{
	font-family: "MetroSansBold";
	font-size: 2.86em;
	line-height: 0.95;
	text-align: right;
	padding-right: 0.5em;
}
.topNav .menu .main .image{
	width: 100%;
	position: relative;
	margin-top: 0.5em;
}
.topNav .menu .main .image .more{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}
.topNav .menu .main .image .more a{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #E5E3D1;
	font-size: 1.28em;
	line-height: 1;
	font-family: "MetroSansRegular";
	background: rgba(59,94,102,0);
}

.topNav .menu .main .image .more a p{
	border: 1px solid #E5E3D1;
	padding: 0.5em 0.8em 0.4em;
	opacity: 0;
	border-radius: 0.3em;
	-webkit-transform:scale(0.88);
	transform:scale(0.88);
}

.topNav .menu .main .image .more a p .arrow{
	display: inline-block;
	width: 0.7em;
	height: 0.8em;
	background: #E5E3D1;
	margin-left: 0.6em;
	vertical-align: middle;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}



@media(min-width:769px) {
.topNav .menu .main .image .more a{-webkit-transition: background 0.4s;transition: background 0.4s;}
.topNav .menu .main .image .more a:hover{background: rgba(59,94,102,0.5);}
.topNav .menu .main .image .more a p{-webkit-transition: transform 0.4s, opacity 0.4s;transition:  transform 0.4s, opacity 0.4s;}
.topNav .menu .main .image .more a:hover p{opacity: 1;-webkit-transform:scale(1.0);transform:scale(1.0);}
}


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

.lead{
	width: 100%;
	margin: 0 auto;
	color: #3B5E66;
}
.lead .text{
	width: 87.5%;
	max-width: 1120px;
	margin: 0 auto;
	border-top: 1px solid #E5E3D1;
	border-bottom: 1px solid #E5E3D1;
}
.lead .text p{
	width: 89%;
	margin: 0 auto;
	font-size: 1.28em;
	line-height: 2.16;
	padding: 2em 0;
	text-align: justify;
	text-justify: inter-ideograph;
}

.lead .shoulder{
	width: 87.5%;
	max-width: 1120px;
	margin: 3em auto 0;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.lead .shoulder .logo{width: 19em;}
.lead .shoulder h3{
	font-family: "Sequel100Black45";
	font-size: 1.14em;
	line-height: 1.2;
}


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


article.wapper{width: 100%;}


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

.catergory{width: 100%;margin-top: 12em;}



.cateHeader{
	width: 100%;
	position: relative;
	overflow: hidden;
}
.cateHeader::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	background: #E5E3D1;
	z-index: 50;
	width: 100%;
	height: 1.14em;
}
.cateHeader .headerInner{
	width: 85%;
	max-width: 1350px;
	margin: 0 auto;
	position: relative;
}
.cateHeader .title{
	position: absolute;
	top: 0;
	right: 0;
	width: 11.3%;
	opacity: 0;
	filter: blur(1em);
	-webkit-transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s;
	transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s;
}
.cateHeader.view .title{opacity: 1;filter: blur(0);}


.cateHeader .title .num{
	width: 83%;
	margin:0 auto;
	margin-top: 25%;
}
.cateHeader .title h2{padding-top: 50%;}
.cateHeader .title h3{width: 78%;padding-top: 20%;margin: 0 auto;}

.cateHeader .photoM{position: absolute;width: 33.8%;z-index: 20;}
.ca01 .cateHeader .photoM{top: 0;left: 0;}
.ca02 .cateHeader .photoM{top: 0;left: 0;}
.ca03 .cateHeader .photoM{bottom: 0;left: 49%;}
.cateHeader .photoM figure{width: 100%;overflow: hidden;}

.cateHeader .photoL{width: 58.5%;z-index: 10;}
.ca01 .cateHeader .photoL{padding-top: 14%;margin-left: 24%;}
.ca02 .cateHeader .photoL{padding-top: 14%;margin-left: 24%;}
.ca03 .cateHeader .photoL{padding-bottom: 14%;}
.cateHeader .photoL figure{width: 100%;overflow: hidden;}

.cateHeader picture{
	display: block;
	opacity: 0;
	filter: blur(1em);
	-webkit-transform:translate3d(0, 0, 0) scale(1.1);
	transform:translate3d(0, 0, 0) scale(1.1);
	-webkit-transition: all 1.5s;
	transition: all 1.5s;
}
.cateHeader.view picture{
	opacity: 1;
	filter: blur(0);
	-webkit-transform:translate3d(0, 0, 0) scale(1.0);
	transform: translate3d(0, 0, 0) scale(1.0);
}

.cateHeader .photoM picture{-webkit-transition-delay:0.5s;transition-delay:0.5s;}
.cateHeader .photoL picture{-webkit-transition-delay:1.0s;transition-delay:1.0s;}



.cateHeader .season{
	position: absolute;
	z-index: 10;
	font-family: "Sequel100Black45";
	color: #3B5E66;
	line-height: 1.3;
	font-size:min(1.05vw, 1.2em);
}
.ca01 .cateHeader .season{top: 65%;left: 0;}
.ca02 .cateHeader .season{top: 65%;left: 0;}
.ca03 .cateHeader .season{top: 82%;left: 0;}


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


.movieArea{
	width: 90%;
	max-width: 1188px;
	margin:3em auto;
	background-position: center center;
	background-size: cover;
}

.ca01 .movieArea{background-image: url("../../images/movth01.webp");}
.ca02 .movieArea{background-image: url("../../images/movth02.webp");}
.ca03 .movieArea{background-image: url("../../images/movth03.webp");}

.movieArea .movieBox{
	width: 100%;
	padding-top: 56.25%;
	margin: 0 auto;
}
.movieArea .movieTopic01,
.movieArea .movieTopic02,
.movieArea .movieTopic03{
	width: 100%;
	padding-top: 56.25%;
	margin: 0 auto;
}

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



.feature{width: 100%;margin-top: 13em;}
.feature.farst{margin-top: 0;}


.featureTitle{
	width: 100%;
	position: relative;
	
}
.featureTitle::before,
.featureTitle::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background: #E5E3D1;
	z-index: 100;
}
.featureTitle::before{top: 0;right: 0;}
.featureTitle::after{bottom: 0;left: 0;}

.featureTitle .featureTitleInner{
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	position: relative;
}
.featureTitle .featureTitleInner::after{
	content: '';
	position:absolute;
	left: 35%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #E5E3D1;
}

.featureTitle .titleText{
	width: 35%;
	position: relative;
	padding-left: min(2.25%,2em);
	display: flex;
	font-size: min(1.12vw,1.12em);
	opacity: 0;
	filter: blur(1em);
	-webkit-transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s;
	transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s;
}
.featureTitle .titleText.view{opacity: 1;filter: blur(0);}


.featureTitle .titleText .titleTextInner{
	position: relative;
	width: 100%;
	padding-left: 3.8em;
}
.featureTitle .titleText .titleTextInner::before,
.featureTitle .titleText .titleTextInner::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 1px;
	background: #E5E3D1;
}
.featureTitle .titleText .titleTextInner::before{left: 0;}
.featureTitle .titleText .titleTextInner::after{left: 0.9em;}

.featureTitle .titleText h4{
	font-family: "Sequel100Black45";
	font-size: 0.85em;
	margin-top: 4rem;
	margin-bottom: 2rem;
	
}
.featureTitle .titleText h4 em{
	display: block;
	font-size: 1.66em;
	line-height: 1.2;
	margin-top: 0.5em;
}
.featureTitle .titleText h2{
	font-family: "MetroSansBold";
	font-size: 3.42em;
	color: #3B5E66;
	line-height: 1.2;
	margin-top: 2rem;
}
.featureTitle .titleText h3{
	font-size: 1.9em;
	color: #3B5E66;
	line-height: 1.7;
	letter-spacing: -0.02em;
	margin-top: 1em;
	margin-bottom: 3rem;
	font-weight: 600;
}
.featureTitle .titleText hr{
	width: 8em;
	height: 1px;
	border-top: 1px solid #3B5E66;
}


.featureTitle .titleImage{
	width: 65%;
	position: relative;
}

.featureTitle .titleImage .photoS{
	position: absolute;
	width: 55%;
	top: min(3%,3em);
	right: 0;
	z-index: 3;
	filter: blur(1em);
	opacity: 0;
	-webkit-transition: filter 1.2s 0.5s, opacity 1.2s 0.5s;
	transition: filter 1.2s 0.5s, opacity 1.2s 0.5s;
}
.featureTitle .titleImage.view .photoS{filter: blur(0);opacity: 1;}
.featureTitle .titleImage .photoM{
	position: relative;
	width: 61%;
	z-index: 5;
	padding-top: 19.5%;
	padding-bottom: min(3%,3em);
	filter: blur(1em);
	opacity: 0;
	-webkit-transition: filter 1.2s 1.0s, opacity 1.2s 1.0s;
	transition: filter 1.2s 1.0s, opacity 1.2s 1.0s;
}
.featureTitle .titleImage.view .photoM{filter: blur(0);opacity: 1;}

.featureTitle .titleImage figure{
	clip-path: inset(3rem);
	-webkit-transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.featureTitle .titleImage.view figure{clip-path: inset(0px);}

.featureTitle .titleImage .photoS figure{-webkit-transition-delay:0.5s;transition-delay:0.5s;}
.featureTitle .titleImage .photoM figure{-webkit-transition-delay:1.0s;transition-delay:1.0s;}


.featureTitle.rev .titleImage .photoS{right: auto;left: 0;}
.featureTitle.rev .titleImage .photoM{margin-left: 39%;}

.f03 .featureTitle .titleImage .photoM{z-index: 2;}



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

.subTitle{
	width: 85%;
	max-width: 1080px;
	margin: 7em auto 0;
	line-height: 1;
	position: relative;
	color: #3B5E66;
	display: flex;
}
.subTitle::before,
.subTitle::after{
	content: '';
	position: absolute;
	height: 1px;
	width: 0%;
	background: #E5E3D1;
	-webkit-transition: width 1.7s cubic-bezier(0.33, 1, 0.68, 1);
	transition: width 1.7s cubic-bezier(0.33, 1, 0.68, 1);
}
.subTitle::before{bottom: 0;left: 0;}
.subTitle::after{bottom: -0.9em;right: 0;}

.subTitle.view::before,
.subTitle.view::after{width: 100%;}



.subTitle .subTitleInner{
	width: 89%;
	margin: 0 auto;
	position: relative;
}
.subTitle .subTitleInner::after{
	content: '';
	position: absolute;
	top: 0;
	bottom:100%;
	left: 0;
	width: 1px;
	background: #E5E3D1;
	-webkit-transition: bottom 0.8s cubic-bezier(0.33, 1, 0.68, 1);
	transition: bottom 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
.subTitle.view .subTitleInner::after{bottom: 0;}


.subTitle h3{
	font-size: 3.4em;
	letter-spacing: 0.02em;
	font-family: "MetroSansBold";
	padding-left: 3%;
	padding-bottom: 0.6em;
	position: relative;
	display: flex;
	align-items: flex-end;
	opacity: 0;
	filter: blur(0.8em);
	-webkit-transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.5s, filter 1.2s 0.5s;
	transition: opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.5s, filter 1.2s 0.5s;
}
.subTitle.view h3{opacity: 1;filter: blur(0);}



.subTitle h3 em{display: block;}
.subTitle h3 em.narrow{letter-spacing: 0;}

.subTitle h3 span{
	display: block;
	font-size: 0.68em;
	padding-left: 1em;
	padding-bottom: 0.2em;
	white-space: nowrap;
}
.subTitle h3 span.narrow{letter-spacing: 0em;}

.styleCopy{
	width: 85%;
	max-width: 1080px;
	margin: 5em auto 0;
}
.styleCopy .inner{width: 89%;margin: 0 auto;}
.styleCopy p{
	font-size: 1.14em;
	line-height: 2.1;
	width: min(770px, 85%);
	letter-spacing: -0.02em;
	text-align: justify;
	text-justify: inter-ideograph;
}




/*++++++++++++++++++++++++++++++++++++++++++++++*/

.detailItem{
	width: 85%;
	max-width: 1080px;
	margin: 5.2em auto 0;
	display: flex;
	justify-content: space-between;
	/*align-items: flex-end;*/
}

.detailItem .imageBox{width: 54.5%;position:relative;}
.detailItem .imageBox.slide{display: flex;justify-content: flex-end;}
.detailItem .imageBox .slickDetail{width: 90%;}
.detailItem .slick-dots{top: 0;left: -15%;}
.detailItem .slick-dots li{width: 1.45rem;height: 1.45rem;margin-bottom: 0.95rem; display: block;}
.detailItem .slick-dots li button{background: #E5E3D1;}
.detailItem .slick-dots li.slick-active button{background: #3B5E66;}


.detailItem .elementBox{width: 40%;}
.detailItem .elementBox .inner{width: 96%;}
.detailItem .elementBox h3{
	font-size: 1.7em;
	font-weight: 600;
	letter-spacing: 0.03em;
	padding-bottom: 0.7em;
	border-bottom: 1px solid #E5E3D1;
}

.detailItem .elementBox p{
	font-size: 1.14em;
	line-height: 1.9;
	margin-top: 1.3em;
	text-align: justify;
	text-justify: inter-ideograph;
	letter-spacing: -0.02em;
}
.detailItem .elementBox .specBox{
	margin-top: 2.0em;
}

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

.detailCorde{
	width: 87.5%;
	max-width: 1120px;
	margin: 7.3em auto 0;
	position: relative;
}

.detailCorde h2{
	position: absolute;
	top: 0;
	left: 0;
	font-family: "Sequel100Black45";
	font-size: 1.28em;
	line-height: 1.4;
	padding-top: 2.5em;
}
.detailCorde h2::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1.45rem;
	height: 1.45rem;
	background: #3B5E66;
}
.detailCorde .cordeItem{
	width: 52%;
	margin: 0 auto;
}
.detailCorde .cordeItem .itemList{
	width: 94%;
	margin: 2em auto 0;
}


/*++++++++++++++++++++++++++++++++++++++++++++++*/









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

.styleItem{
	width: 85%;
	max-width: 1080px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.styleItem.farst{margin-top:5rem;}
.styleItem.second{margin-top:8.5rem;}

.styleItem .imageBox{
	width: 47.2%;
	display: flex;
	position:relative;
	justify-content: flex-end;
}
.styleItem .imageBox figure{width: 88.3%;}


.styleItem .imageBox .number{
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	font-family: "Sequel100Black45";
}
.styleItem .imageBox .number .text{
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.14em;
	-webkit-transform:rotate(90deg) translateY(-100%);
	transform:rotate(90deg) translateY(-100%);
	-webkit-transform-origin: top left;
	transform-origin: top left;
}
.styleItem .imageBox .number .text::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1.45rem;
	height: 1.45rem;
	background: #3B5E66;
}

.styleItem .imageBox .number .text p{padding-left: 2.4em;}

.styleItem .imageBox .number .count{
	position: absolute;
	top: calc(1.45rem + 5.4em);
	left: 0;
}
.styleItem .imageBox .number .count p{
	position: relative;
	font-size: 1.42em;
	letter-spacing: 0.02em;
	padding-top: 2.8em;
}
.styleItem .imageBox .number .count p::after{
	content: '';
	position: absolute;
	top: 0;
	left: 0.4em;
	height: 2.3em;
	width: 1px;
	background: #E5E3D1;
}



.styleItem .elementBox{width: 47.2%;}
.styleItem .elementBox .inner{width: 88.3%;}

.styleItem .elementBox .inner .itemList{
	width: 92%;
	margin: 2em auto 0;
}


/*++++++++++++++++++++++++++++++++++++++++++++++*/


.mainItem{
	width: 87.5%;
	max-width: 1120px;
	margin: 5rem auto 0;
	display: flex;
	justify-content: space-between;
}
.mainItem .imageBox{
	width: 51%;
	display: flex;
	position:relative;
	justify-content: flex-end;
}
.mainItem .imageBox .text{
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
	width: 128%;
	font-family: "Sequel100Black45";
	font-size: 1.14em;
	letter-spacing: 0.02em;
	-webkit-transform:rotate(90deg) translateY(-100%);
	transform:rotate(90deg) translateY(-100%);
	-webkit-transform-origin: top left;
	transform-origin: top left;
}
.mainItem .imageBox .text::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 1.45rem;
	height: 1.45rem;
	background: #3B5E66;
}
.mainItem .imageBox .text p{padding-left: 2.4em;}
.mainItem .imageBox .text br.res{display: none;}
.mainItem .imageBox figure{width: 89.5%;}


.mainItem .elementBox{width: 44%;}
.mainItem .elementBox .inner{
	width: 80%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
	align-items: flex-start;
}

.mainItem .mainSlide{
	width: 100%;
	position: relative;
	padding-bottom: 2.8em;
}
.mainItem .mainSlide .slickMain::after{
	content: '';
	position: absolute;
	z-index: 50;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	border: 1px solid #3B5E66;
}
.mainItem .slick-dots{bottom:-3.2em;width:100%;}
.mainItem .slick-dots li{margin: 0 0.8em;width:3em;height: 0.95em;background: #000;}
.mainItem .slick-dots li:first-of-type{margin-left: 0;}
.mainItem .slick-dots li:last-of-type{margin-right: 0;}
.mainItem .slick-dots li.slick-active button:after{
	content: "";
	display: block;
	position: absolute;;
	left: -1px;
	right: -1px;
	bottom: -6px;
	height: 1px;
	background: #1E0E07;
}
.mainItem.m01 .slick-dots li:nth-child(1) button{background: #C5C5C3;}
.mainItem.m01 .slick-dots li:nth-child(2) button{background: #545547;}
.mainItem.m01 .slick-dots li:nth-child(3) button{background: #1A1A1A;}
.mainItem.m02 .slick-dots li:nth-child(1) button{background: #545547;}
.mainItem.m02 .slick-dots li:nth-child(2) button{background: #C5C5C3;}
.mainItem.m02 .slick-dots li:nth-child(3) button{background: #2E363D;}




.mainItem .itemList{
	margin-top: 9.8em;
}



/*++++++++++++++++++++++++++++++++++++++++++++++*/

.itemList{
	width: 100%;
	margin: 0px auto;
	font-family: "MetroSansRegular";
}

.itemList dl{
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	line-height: 1.15;
	margin-top: 1.3em;
}
.itemList dl:not(.other):nth-child(1){margin-top: 0;}

.itemList .name{
	width: calc( 100% - 6em);
	letter-spacing: 0.02em;
	font-size: 1.14em;
}
.itemList .name em{display: block;}
.itemList .name span{
	font-size: 0.75em;
	padding-left: 0.3em;
	letter-spacing: 0;
	display: inline-block;
	padding-bottom: 0.05em;
	vertical-align: middle;
}
.itemList .detail{width: 6.5em;}
.itemList .detail a{
	display: block;
	width: 100%;
	border: 1px solid #3B5E66;
	border-radius: 0.3em;
	color: #3B5E66;
	font-size: 1.28em;
	line-height: 1;
	text-align: center;
	padding: 0.4em 0 0.18em;
}

@media(min-width: 769px) {
.itemList .detail a{-webkit-transition: all 0.4s;transition: all 0.4s;}
.itemList .detail a:hover{background:#3B5E66;color: #FFF;}
}

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

.itemList .otherItem{display: none;}
.itemList .kingItem{display: none;}
.itemList .kingItem .other:first-child{margin-top: 1.3em;}

.itemList .trigger{
	margin:1em 0 0;
	width: 100%;
	position: relative;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.itemList .trigger.kingTrigger{
	width: 100%;
	margin-top: 1.3em;
	position: relative;
}
.itemList .trigger .more{
	width:calc( 100% - 6em);
	position: relative;
	font-size: 1.28em;
	font-family: "MetroSansRegularItalic";
}

.itemList .trigger .plus{
	position: relative;
	cursor: pointer;
	width: 6.5em;
	height: 2.1em;
	display: block;
	border: 1px solid #3B5E66;
	border-radius: 0.3em;
}
.itemList .trigger .plus:after,
.itemList .trigger .plus:before{
	content: "";
	position: absolute;
	top: 0.95em;
	left: 0;
	right: 0;
	margin:0 auto;
	width: 1.2em;
	height: 2px;
	background: #3B5E66;
	-webkit-transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1),background 0.4s;
	transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1),background 0.4s;
}
.itemList .trigger .plus:before{-webkit-transform:rotate(90deg);transform:rotate(90deg);}
.itemList .trigger.open .plus:before{-webkit-transform:rotate(45deg);transform:rotate(45deg);}
.itemList .trigger.open .plus:after{-webkit-transform:rotate(135deg);transform:rotate(135deg);}

@media(min-width: 769px) {
.itemList .trigger{-webkit-transition: color 0.4s;transition: color 0.4s;}
.itemList .trigger .plus{-webkit-transition: background 0.4s;transition: background 0.4s;}
.itemList .trigger:hover .plus{background: #3B5E66;}
.itemList .trigger:hover .plus:after,
.itemList .trigger:hover .plus:before{background: #FFF;}
}









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

.allBanner{
	width: 100%;
	margin: 12em auto 0;
	position: relative;
	border-bottom: 1.14em solid #E5E3D1;
	overflow: hidden;
}
.allBanner .spLink{display: none;}

.allBanner .photo{
	width: 100%;
	padding-top: 36%;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.ca01 .allBanner .photo{background-image: url("../../images/all_ca01.webp");}
.ca02 .allBanner .photo{background-image: url("../../images/all_ca02.webp");}
.ca03 .allBanner .photo{background-image: url("../../images/all_ca03.webp");}
.otherContents .allBanner .photo{background-image: url("../../images/all_brand.webp");}


.allBanner .bannerInner{
	position: relative;
	width: 100%;
	padding: 1.5em 0 2em;
}

.allBanner .detail{
	width: 85%;
	/*max-width: 1400px;*/
	margin: 0 auto;
	position: relative;
	text-align: right;
}
.allBanner .detail h2{
	font-size: 2.5em;
	letter-spacing: 0.01em;
	line-height: 1.3;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
}
.allBanner .detail h2 em{font-family: "MetroSansBold";letter-spacing: 0.08em;}

.allBanner .more{
	margin-top: 1em;
	text-align: right;
}
.allBanner .more a{
	display: inline-block;
	font-family: "MetroSansRegular";
	letter-spacing: 0.04em;
	font-size: 1.7em;
	text-align: center;
	line-height: 1;
	padding: 0.6em 0 0.4em;
	border: 1px solid #3B5E66;
	border-radius: 0.25em;
	color: #3B5E66;
	width: 8em;
}
.allBanner .more a .arrow{
	display: inline-block;
	width: 0.8em;
	height: 1.1em;
	background: #3B5E66;
	margin-left: 0.4em;
	vertical-align: middle;
	margin-top: -0.1em;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media(min-width: 769px) {
.allBanner .more a{-webkit-transition: all 0.4s;transition: all 0.4s;}
.allBanner .more a:hover{background:#3B5E66;color:#FFF;}
.allBanner .more a .arrow{-webkit-transition: background 0.4s;transition: background 0.4s;}
.allBanner .more a:hover .arrow{background:#FFF;}
}


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


.otherContents{
	width: 100%;
	margin:0 auto;
	overflow: hidden;
}
.otherContents .otherTitle{
	width: 84%;
	max-width: 1080px;
	margin: 13em auto 0;
	position: relative;
	text-align: center;
}
.otherContents .otherTitle h2{
	position: relative;
	display: block;
	line-height: 1;
	font-family: "MetroSansBold";
	font-size: 4.1em;
	letter-spacing: 0.02em;
	color: #3B5E66;
	padding-bottom: 0.5em;
}
.otherContents .otherTitle h2::before,
.otherContents .otherTitle h2::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	background: #E5E3D1;
	height: 1px;
}
.otherContents .otherTitle h2::before{bottom: 0;}
.otherContents .otherTitle h2::after{bottom: -0.9rem;}

.otherContents .otherList{
	width: 82%;
	max-width: 1040px;
	margin:10em auto 0;
}
.otherContents .otherList ul{
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.otherContents .otherList ul li{
	width: 47%;
	text-align: center;
	position: relative;
}
.otherContents .otherList .image{
	display: block;
	position: relative;
}
.otherContents .otherList .image h4{
	position: absolute;
	z-index: 5;
	bottom: 0.6em;
	left: 0.8em;
	font-family: "MetroSansBold";
	line-height: 1;
	font-size: 3.2em;
	letter-spacing: 0.03em;
	color: #FFF;
	text-align: left;
}
.otherContents .otherList .image .logo{
	position: absolute;
	z-index: 5;
	top: 4%;
	right: 3.5%;
	width: 20%;
}

.otherContents .otherList .text{
	width: 100%;
	background: #3B5E66;
	color: #FFF;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	font-size: 2.0em;
	line-height: 1;
	text-align: left;
	display: flex;
	align-items: center;
	height: 2.2em;
	padding-left: 1.4em;
}
.otherContents .otherList .text em{
	color: #FFF;
	display: block;
	font-family: "MetroSansBold";
	font-weight: normal;
	letter-spacing: 0.05em;
	padding-top: 0.2em;
}


@media(min-width: 769px) {
.otherContents .otherList ul li a{-webkit-transition: opacity 0.4s;transition: opacity 0.4s;}
.otherContents .otherList ul li a:hover{opacity: 0.7;}
}



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

.sns{width: 53em;margin: 9.5em auto 0;overflow: hidden;}

.sns ul{width: 100%;display: flex;}
.sns ul li{
	text-align: center;
	width: 33.3333%;
	padding: 1em 0;
	border-left: 2px solid #E5E3D1;
}
.sns ul li:first-child{border: none;}
.sns a{
	color: #3B5E66;
	letter-spacing: 0.05em;
	font-size: 1.7em;
	font-family: "MetroSansRegular";
}
.sns .icon{
	width: 1.9em;
	margin: 0.9em auto 0;
	-webkit-transition:opacity 0.4s;
	transition:opacity 0.4s;
}

@media(min-width:769px) {
.sns a:hover .icon{opacity: 0.5;}
}

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

.lineBanner{
	width: 39em;
	margin: 11.5em auto;
	border: 1px solid #B2B0AE;
}
@media(min-width:769px) {
.lineBanner a{-webkit-transition:opacity 0.4s;transition:opacity 0.4s;}
.lineBanner a:hover{opacity: 0.6;}
}

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


.footer{
	width: 100%;
	height: 100vh;
	color: #3B5E66;
	position: relative;
	overflow: hidden;
	background: url("../../images/footer_pc.webp") center center;
	background-size: cover;
}

.footer .pagetop{
	cursor: pointer;
	width: 4.8em;
	margin: 8vh auto 0;
}
.footer h2{
	position: absolute;
	bottom: calc(6vh + 6em);
	left: 0;
	right: 0;
	width: 24em;
	margin: 0 auto;
}
.footer .copyright{
	position: absolute;
	bottom: 6vh;
	left: 0;
	right: 0;
	letter-spacing: 0.08em;
	font-size: 1.6em;
	line-height: 1.3;
	text-align: center;
	font-family: "MetroSansRegular";
}
.footer .copyright br{display: none;}






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


.menu-trigger{display: none;}
.spNavi{display: none;}



.sideNavi{
    position: fixed;
    top: 50%;
    right:-5.71em;
    width: 5.7em;
    z-index: 100;
    -webkit-transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transform:translateY(-50%);
	transform:translateY(-50%);  
}

.sideNavi.view{right:0px;}
.sideNavi ul{width:100%;}
.sideNavi ul li{
	width: 100%;
	margin-bottom: 1.8em;
	border-left: 1px solid #E5E3D1;
}
.sideNavi .photo{
	width: 100%;
	position:relative;
	border-top: 1px solid #E5E3D1;
	border-left: none;
	margin-bottom: 0.8em;
	background: #D9D7D6;
}
.sideNavi .photo figure{
	opacity: 0.5;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}
.sideNavi .current .photo figure{opacity: 1;}


.sideNavi .photo h3{
	position: absolute;
	top: 6%;
	right: 4%;
	width: 35%;
}
.sideNavi .num{
	font-family: "HelveticaProBold";
	font-size: 1em;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-top: 0.6em;
	display: flex;
	justify-content: center;
}
.sideNavi .num a{
	color: #E5E3D1;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}
.sideNavi .num span{
	display: inline-block;
	width: 0.7em;
	height: 0.7em;
	background: #E5E3D1;
	margin-right: 0.4em;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}
.sideNavi .num.current a{color: #3B5E66;}
.sideNavi .num.current span{background: #3B5E66;}


.sideNavi .pagetop{
    width: 40%;
    margin: 0 auto;
    cursor: pointer;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi .pagetop:hover{opacity:0.5;}











/* ========================= Slider =============================== */

.slick-slider{position: relative;display: block;box-sizing: border-box;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-touch-callout: none;-khtml-user-select: none;-ms-touch-action: pan-y;touch-action: pan-y;-webkit-tap-highlight-color: transparent;}
.slick-list{position: relative;display: block;overflow: hidden;margin: 0;padding: 0;outline:none;}
.slick-list:focus{outline:none;}
.slick-list.dragging{cursor: pointer;cursor: hand;}
.slick-slider .slick-track,
.slick-slider .slick-list{-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
.slick-track{position: relative;top: 0;left: 0;display: block;}
.slick-track:before,
.slick-track:after{display: table;content: '';}
.slick-track:after{clear: both;}
.slick-loading .slick-track{visibility: hidden;}
.slick-slide{display: none;float: left;position: relative;height: 100%;min-height: 1px;}
[dir='rtl'] .slick-slide{float: right;}
.slick-slide img{display: block;}
.slick-slide.slick-loading img{display: none;}
.slick-slide.dragging img{pointer-events: none;}
.slick-initialized .slick-slide{display: block;}
.slick-loading .slick-slide{visibility: hidden;}
.slick-vertical .slick-slide{display: block;height: auto;border: 1px solid transparent;}
.slick-arrow.slick-hidden {display: none;}
/*--------*/
.slick-track{display: flex;}
.slick-track:before,
.slick-track:after{display: none;}
.slick-slide{height: auto !important;float: none;}
.slick-slide > div{height: 100%;}
/*--------*/
/* Prev Next Button */
.slick-prev,
.slick-next {
    cursor:pointer;
    display:block;
    font-size:0;
    line-height:0;
    width: 5.3vw;
    height: 6.2vw;
    position:absolute;
    top:50%;
	margin-top: -3.1vw;
    z-index:50;
}
.slick-prev{left:-8.5vw;}
.slick-next{right:-8.5vw;}


.slick-prev::before,
.slick-next::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background: #3B5E66;
}
.slick-prev::before{clip-path: polygon(0 50%, 100% 0, 100% 100%);left: 0;}
.slick-next::before{clip-path: polygon(0 0, 100% 50%, 0 100%);right: 0;}


.slick-dots{
	display:block;
	list-style:outside none none;
	padding:0;
	text-align:center;
	position:absolute;
	z-index:10;
}
.slick-dots li{
	cursor: pointer;
	display: inline-block;
	padding: 0;
	position: relative;
	vertical-align: top;
}
.slick-dots li button{
	cursor:pointer;
	display:block;
	font-size:0;
	width:100%;
	height: 100%;
	line-height: 0;
	outline:medium none;
	position: relative;
}





















