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

@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
*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
/*
.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}
*/

@font-face {
  font-family: "GeorgiaRegular";
  src: url('../../font/GeorgiaRegular/font.woff2') format('woff2'), url('../../font/GeorgiaRegular/font.woff') format('woff');
}
@font-face {
  font-family: "MidCenturySansSmBold";
  src: url('../../font/MidCenturySansSmBold/font.woff2') format('woff2'), url('../../font/MidCenturySansSmBold/font.woff') format('woff');
}




.mid{
	 font-family: "MidCenturySansSmBold";
	 font-weight: normal;
}
.shippo{
	font-family: "Shippori Mincho B1",'Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}





/* ---------- 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: 16px;}

body{
    background:#FFF;
    width: 100%;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;	
	font-family: "Zen Kaku Gothic New", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
    font-weight:500;
	color: #164155;
}



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


#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;
	transition: top 1.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.0s;
}
.inView.view{opacity: 1;top: 0;}

.zoomIn{
	overflow: hidden;
}
.zoomIn span{
	opacity: 0;
	display: block;
	transform:scale(1.1);
	transition: transform 1.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.3s;
}
.zoomIn.view span{opacity: 1;transform:scale(1);}


br.res{display: none;}
.pcView{display: block;}
.spView{display: none;}



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


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

body:before{content: '';position: fixed;opacity: 0.3;width: 1px;left: 50%;top: 0;bottom: 0;background: #FF0004;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: fixed;
	z-index: 1;
	color: #5c663f;
}
#header figure{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	background: url("../../images/main_pc.webp") center center no-repeat;
	background-size: cover;
}
#header .element{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 20;
}
#header .element .logo{
	position: absolute;
	width: 10.1em;
	top: 2vh;
	left: 0;
	right: 0;
	margin: 0 auto;
}
#header .element h1{
	position: absolute;
	width: 2.15em;
	top: 50%;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform:translateY(-50%);
	filter: blur(1.5em);
	opacity: 0;
	transition: all 1.6s;
}
#header.start .element h1{filter: blur(0);opacity: 1;}

#header .season{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 7.5%;
	right: 7.5%;
	z-index: 30;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .season h2{
	width: 13.2em;
	opacity: 0;
	position: relative;
	left: -3em;
	transition: left 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.2s, opacity 1.0s 1.2s;
}
#header.start .season h2{opacity: 1;left: 0;}

#header .season h3{
	width: 14.7em;
	opacity: 0;
	position: relative;
	left: 3em;
	transition: left 1.4s cubic-bezier(0.33, 1, 0.68, 1) 1.2s, opacity 1.0s 1.2s;
}
#header.start .season h3{opacity: 1;left: 0;}



/*----*/

.scrollbar{
	width: 2em;
	position: absolute;
	right:2%;
	bottom: -3.5em;
	height:7.5em;
	z-index: 100;
}
.scrollbar p{width: 0.8em;margin-left: 0.5em;}

.scrollbar .base{
	width:1px;
	height:7.5em;
	position: absolute;
	bottom:0px;
	left: 0;
	overflow: hidden;
    z-index: 5;
    background:#fbfbf7;
}
.scrollbar .bar{
	width:1px;
	height:7.5em;
	position: absolute;
	bottom:0px;
	left: 0;
	overflow: hidden;
    z-index: 10;
}
.scrollbar .line{
		width: 100%;
		height: 100%;
		display: block;
		background: linear-gradient(to bottom,rgba(200,200, 190, 1) 50%, rgba(200, 200, 190, 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%;}
}



.null{
	width: 100%;
	height: 100%;
}

.wapper{
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 5;
}


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


.panel-pin{
	height: 100vh;
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
}
.panel-pin.lead{
	background: url("../../images/panel_bk01.webp") center center no-repeat;
	background-size: cover;
	z-index: 10;
}
.panel-pin.pre01{
	background: url("../../images/panel_bk02.webp") top center no-repeat;
	background-size: cover;
	z-index: 11;
}
.panel-pin.pre02{
	background: url("../../images/panel_bk03.webp") center center no-repeat;
	background-size: cover;
	z-index: 12;
}


.lead .element{
	text-align: center;
}
.lead .element .logo{
	width: 10.2em;
	margin: 0 auto;
}

.lead .element h2{
	font-size: 2.25em;
	line-height: 1.2;
	color: #e27107;
	padding: 1em 0;
}
.lead .element h3{
	width: 17em;
	margin: 0 auto;
}
.lead .element .copy{
	color: #FFF;
	font-size: 1.12em;
	line-height: 2.27;
	margin-top: 2em;
}








.menu{
	display: flex;
	justify-content: center;
	align-items: center;
	color: #FFF;
}
.menu::after{
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 27.5%;
	right: 27.5%;
	background: rgba(59,69,95,0.3);
}


.menu .element{
	position: relative;
	z-index: 10;
	text-align: center;
	padding-bottom: 15vh;
}
.menu .num{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.2em;
	letter-spacing: 0.05em;
	width: 1.6em;
	height: 1.6em;
	margin: 0 auto;
	background: #e27107;
	color: #FFF;
}
.menu .num span{
	 display: block;
}
.menu p{font-size: 1.25em;margin-top: 2em;letter-spacing: 0.04em;line-height: 1.2;}
.menu h2{font-size: 5em;letter-spacing: 0.02em;color: #e27107;}
.menu h3{font-size: 1.5em;letter-spacing: 0.04em;line-height: 1.7;}


.menu .more{
	font-size: 1.5em;
	margin-top: 2em;
	display: inline-block;
}
.menu .more a{
	color:  #FFF;
	line-height: 1;
	display: inline-block;
	background: #e27107;
	border: 1px solid #e27107; 
	padding: 0.45em 1em 0.55em;
}
@media(min-width: 769px) {
.menu .more a{-webkit-transition: all 0.4s;transition: all 0.4s;}
.menu .more a:hover{background:none;color: #e27107;}
}



/*----*/



.contens {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
	position: relative;
	z-index: 20;
	background: #FFF;
}

.category{
	width: 100%;
	margin: 13.5em auto 0;
}

.categoryTitle{
	width: 100%;
	margin: 0 auto;
	padding-top: 60%;
	position: relative;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.ca01 .categoryTitle{background-image: url("../../images/category01.webp");}
.ca02 .categoryTitle{background-image: url("../../images/category02.webp");}


.categoryTitle .titBody{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 55%;
	right: 0;
	line-height: 1;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
	flex-wrap: wrap;
	color: #FFF;
	text-align: center;
	opacity: 0;
	transition: opacity 1.0s 0.8s;
	z-index: 5;
}
.categoryTitle.view .titBody{opacity: 1;}


.categoryTitle::after{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 100%;
	right: 0;
	z-index: 1;
	background: rgba(59,69,95,0.3);
	transition: left 1.2s cubic-bezier(0.5, 1, 0.89, 1);
}
.categoryTitle.view::after{left: 55%;}




.categoryTitle .titBody .num{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.2em;
	letter-spacing: 0.05em;
	width: 1.6em;
	height: 1.6em;
	margin: 0 auto;
	background: #e27107;
	color: #FFF;
}
.categoryTitle .titBody .num span{display: block;}
.categoryTitle .titBody p{font-size: 1.25em;margin: 2.5em 0 1.7em;letter-spacing: 0.04em;line-height: 1.2;}
.categoryTitle .titBody h2{font-size: 5em;letter-spacing: 0.02em;color: #e27107;}
.categoryTitle .titBody h3{font-size: 1.5em;letter-spacing: 0.04em;line-height: 1.7;margin-top: 1em;}

.categoryTitle .titBody .logo{
	width: 9em;
	margin-top: 5em;
}

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

.movieArea{width: 100%;background-position: center center;background-size: cover;}
.movieArea#viemo01{background-image: url("../../images/viemo01.webp");}
.movieArea#viemo02{background-image: url("../../images/viemo02.webp");}
.movieArea#viemo03{background-image: url("../../images/viemo03.webp");}

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

.categoryItem{
	width: 65%;
	max-width: 800px;
	margin: 6.5em auto 0;
	position: relative;
}
.categoryItem h2{
	position: absolute;
	top: 0;
	right: calc(-4.8em - 5%);
	width: 4.8em;
	z-index: 5;
}
.categoryItem h2 span{
	display: block;
	position:relative;
	left: -1.5em;
	opacity: 0;
	transition: left 1.5s cubic-bezier(0.33, 1, 0.68, 1), opacity 1.0s;
}
.categoryItem h2.view span{left: 0;opacity: 1;}


.categoryItem .element{width: 100%;}
.categoryItem .element figure{width: 100%;}
.categoryItem .element .copy{
	width: 87%;
	margin: 2em auto 0;
	font-size: 1.125em;
	line-height: 1.8;
}
.categoryItem .specBox{
	width: 63%;
	margin: 3em auto 0;
}

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


.mainItem{
	width: 83%;
	max-width: 1080px;
	margin: 6em auto 0;
	padding-top: 2em;
}

.mainItem .itemInfo{width: 100%	}

.mainItem .number{
	font-size: 1.5em;
	position: relative;
	letter-spacing: 0.04em;
	line-height: 1.1;
}
.mainItem .number em{
	font-size: 1.375em;
	display: block;
}


.mainItem .textBox{
	width: 75%;
	margin: 0 auto;
	line-height: 1;
}
.mainItem .textBox .itemName{
	font-size: 2.5em;
	line-height: 1.15;
	margin: 0.8em auto 0;
	width: 97%;
	letter-spacing: 0.04em;
}
.mainItem .textBox .itemName{opacity: 0;}
.mainItem .textBox .itemName span{position: relative;left: 0.5em;opacity:0;}

.mainItem .textBox h3{
	font-size: 1.75em;
	letter-spacing: 0.07em;
	font-weight: 700;
	line-height: 1.5;
	margin:1em auto 0;
	width: 97%;
}
.mainItem .textBox h3{opacity: 0;}
.mainItem .textBox h3 span{position: relative;left: 0.2em;opacity:0;}


.mainItem .textBox hr{
	width: 100%;
	height: 1px;
	background: #e37104;
	margin: 2em 0;
}

.mainItem .textBox .copy{
	width: 97%;
	margin: 0 auto;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}


.mainItem .mainSlide{
	width: 50%;
	max-width: 495px;
	margin: 3.5em auto 0;
	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 #3a455f;
}


.mainItem .specBox{
	width: 50%;
	max-width: 495px;
	margin: 1.7em auto 0;
}




.mainItem .named{}
.mainItem .named.lr{
	width: 75%;
	margin: 4em auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.mainItem .named .numName{
	display: flex;
	align-items: center;
	gap:1.2em; 
}
.mainItem .named.lr .numName{display: block;gap:0;}
.mainItem .named .numName .num{
	font-size: 2em;
	letter-spacing: 0.04em;
	width: 1.7em;
	height: 1.7em;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #e37104;
}
.mainItem .named .numName .name{font-size: 1.45em;line-height: 1.2;}
.mainItem .named.lr .numName .name{margin-top: 1em;}
.mainItem .named.lr .element{width: 62%;}


.mainItem .named .mainSlide{width: 100%;margin: 0;max-width: none;}
.mainItem .named .specBox{width: 100%;}

.mainItem .mainClumn{
	width: 98%;
	margin: 6.5em auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.mainItem .mainClumn .named{width: 47%;}
.mainItem .mainClumn .named .mainSlide{
	width: 100%;
	margin-top: 1.5em;
}

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




.specBox{
	padding:0;
	border-top: 1px solid #e37104;
	border-bottom: 1px solid #e37104;
	position: relative;
	color: #304263;
	font-family: "Shippori Mincho B1",'Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.specBox::after{
	content: '';
	position: absolute;
	top: -2px;
	bottom: -2px;
	left: 0;
	right: 0;
	z-index: 5;
	background: #FFF;
	transition: top 1.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.specBox.view::after{top: calc(100% + 2px);}

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

.itemList .name{
	width: calc( 100% - 8em);
	letter-spacing: 0.04em;
	display: flex;
	justify-content: space-between;
}
.itemList .name span{text-align: right;}
.itemList .name small{
	font-size: 0.8em;
	padding-left: 0.3em;
	letter-spacing: 0;
	display: inline-block;
	padding-bottom: 0.05em;
	vertical-align: middle;
}
.itemList .detail{width: 5.5em;}
.itemList .detail a{
	display: block;
	width: 100%;
	border: 1px solid #e37104;
	color: #FFF;
	background: #e37104;
	line-height: 1;
	text-align: center;
	padding: 0.35em 0 0.43em;
}


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

}





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

.visual{
	width: 83%;
	max-width: 1080px;
	margin: 7.5em auto 0;
	position: relative;
}

.visual.double .imageBox{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row-reverse;
}
.visual.double .imageBox .main{width: 56.5%;}
.visual.double .imageBox .sub{width: 41.5%;margin-top: 46%;}

.visual.single .imageBox{
	width: 56.5%;
	margin: 0 auto;
}

.visual.single .specBox{
	width: 50%;
	margin: 2.2em auto 0;
}
.visual.double .specBox{
	position: absolute;
	width: 50%;
	right: 0;
	bottom: 0;
}


.visualPlus{
	width: 53%;
	margin: 2.2em 0 0 47%;
}


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


.subTitle{
	width: 84%;
	max-width: 1060px;
	margin: 10em auto 0;
}
.subTitle .subTitleInnter{
	width: 75%;
	margin: 0 auto;
	line-height: 1;
}
.subTitle h2{
	font-size: 2.5em;
	line-height: 1.15;
	margin: 0.8em auto 0;
	width: 97%;
	letter-spacing: 0.04em;
}
.subTitle h2{opacity: 0;}
.subTitle h2 span{position: relative;left: 0.5em;opacity:0;}
.subTitle hr{
	width: 100%;
	height: 1px;
	background: #e37104;
	margin: 2em 0;
}
.subTitle .copy{
	width: 97%;
	margin: 0 auto;
	line-height: 2;
	text-align: justify;
	text-justify: inter-ideograph;
}


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

.styling{
	width: 83%;
	max-width: 1080px;
	margin: 3.5em auto 0;
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.styling.second{margin-top: 7.5em;}
.styling h2{
	width: 100%;
	text-align: center;
	font-size: 1.5em;
	letter-spacing: 0.04em;
}
.styling .styleBox{
	width: 47%;
	position: relative;
	margin-top: 1em;
}
.styling .styleBox h3{
	width: 100%;
	text-align: center;
	font-size: 1.5em;
	letter-spacing: 0.04em;
}
.styling .styleBox h3.space{padding-bottom: 0.5em;}
.styling .specBox{
	width: 100%;
	margin-top: 2.2em;
}


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

.option{
	width: 83%;
	max-width: 1080px;
	margin: 6em auto 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.option.second{
margin-top: 7.5em;
}

.option .num{
	width: 100%;
	font-size: 2em;
	letter-spacing: 0.04em;
	margin-bottom: 1em;
}
.option .num em{
	width: 1.7em;
	height: 1.7em;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #e37104;
}

.option .photoBox{width: 47%;}

.option .elementBox{
	width: 45.5%;
	position: relative;
	padding-right: 2%;
}
.option .elementBox h3{
	text-align: center;
	font-size: 1.43em;
	line-height: 1.2;
	padding-bottom: 0.5em;
	letter-spacing: 0.05em;
}
.option .mainSlide{
	width: 83%;
	margin: 0 auto;
	position: relative;
	padding-bottom: 2.8em;
}
.option .mainSlide .slickMain::after{
	content: '';
	position: absolute;
	z-index: 50;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	border: 1px solid #164155;
}

.option .specBox{margin-top: 1.7em;}



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

.allBanner{
	width: 100%;
	position: relative;
	margin-top: 9em;
}
.allBanner figure{
	width: 100%;
	padding-top: 48.5%;
	background-position: center center;
	background-size: cover;
}
.ca01 .allBanner figure{background-image: url("../../images/all_fa01.webp");}
.ca02 .allBanner figure{background-image: url("../../images/all_fa02.webp");}
.otherContents .allBanner figure{background-image: url("../../images/all_brand.webp");}

.allBanner .element{
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	margin: 0 auto;
	color: #FFF;
	text-align: center;
	-webkit-transform:translateY(-40%);
	transform:translateY(-40%);
}
.allBanner .element h2{font-size: 3.5em;letter-spacing: 0.05em;}
.allBanner .element h3{font-size: 2.4em;font-weight: 700; letter-spacing: 0.1em;}
.allBanner .element hr{width: 26em;height: 1px;background: #FFF;margin: 2em auto;}


.otherContents .allBanner .element h2{font-size: 2.65em;line-height: 1.2;}
.otherContents .allBanner .element h3{font-size: 1.875em;margin-top: 0.3em;}


.allBanner .element .detail a{
	color: #FFF;
	display: inline-block;
	border: 1px solid #e37104;
	background: #e37104;
	font-size: 1.4em;
	padding: 0.5em 1.8em 0.6em;
	line-height: 1;
}



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




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

.otherContents{}


.otherBanner{
	width: 91%;
	max-width: 1160px;
	margin: 5em auto 0;
	position: relative;
}

.otherBanner .element{
	position: absolute;
	top: 0;
	right:10%;
	bottom: 0;
	width: 13em;
	z-index: 5;
	display: flex;
	align-items:flex-end;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	color: #FFF;
}

.otherBanner .element .logo{width: 82%;}
.otherBanner .element h2{width: 90%;margin: 20% 0 20%;}
.otherBanner .element h3{width: 100%;}
.otherBanner .element .season{width: 80%;margin-top: 25%;}

.otherBanner .more{
	position: absolute;
	bottom: 10%;
	z-index: 20;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
}
.otherBanner .more a{
	color: #FFF;
	display: inline-block;
	border: 1px solid #98a93f;
	background: #98a93f;
	font-size: 1.4em;
	padding: 0.5em 1.6em 0.6em;
	line-height: 1;
}



@media(min-width: 769px) {
.otherBanner .more a{-webkit-transition: all 0.4s;transition: all 0.4s;}
.otherBanner .more a:hover{background:none;color: #FFF;}
}





.sns{
	width: 91%;
	max-width: 1160px;
	margin: 7.5em auto;
	position: relative;
	border-top: 1px solid #e27107;
	border-bottom: 1px solid #e27107;
}
.sns .snsList{
	width: 87%;
	margin: 2em auto;
	display: flex;
	line-height: 1;
	justify-content: space-between;
}
.sns .snsList .list{
	width: 33.333%;
	text-align: center;
}
.sns .snsList .list a{
	color: #3a455f;
}
.sns .snsList .list a p{
	font-size: 1.5em;
	padding-bottom: 0.8em;
}
.sns .snsList .list a .icon{
	display: inline-block;
	width: 3.875em;
}


.officialsite{
	width: 91%;
	max-width: 1160px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	padding: 3em;
	color: #5b5d5c;
	border-top: 1px solid #e27107;
	border-bottom: 1px solid #e27107;
}
.officialsite .logo{
	width: 10.8em;
	margin: 0 auto;
}
.officialsite h3{
	font-size: 1.8em;
	font-size: 600;
	line-height: 1.2;
	margin: 1.2em 0 1.0em;
}
.officialsite h3 em{
	font-size: 1.075em;
	letter-spacing: 0.03em;
	display: block;
}

.officialsite .more{}
.officialsite .more a{
	display: inline-block;
	font-size: 1.5em;
	color: #FFF;
	background: #e27107;
	border: 1px solid #e27107;
	padding: 0.4em 1.5em 0.5em;
	line-height: 1;
}

@media(min-width: 769px) {
.officialsite .more a{-webkit-transition: all 0.4s;transition: all 0.4s;}
.officialsite .more a:hover{background:#FFF;color: #e27107;}

}


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

.footer{
	width: 100%;
	height: 60vw;
	max-height: 100vh;
	margin-top: 8em;
	line-height: 1;
	color: #FFF;
	position: relative;
	overflow: hidden;
	background: url("../../images/footer_pc.webp") center center;
	background-size: cover;
}

.footer .block{
	position: absolute;
	left: 6%;
	bottom: 6%;
	z-index: 5;
}
.footer .block .logo{width: 12.5em;}
.footer .block .copyright{margin-top: 3em;line-height: 1.4;letter-spacing: 0.04em;}

.footer .season{
	position: absolute;
	right: 5%;
	bottom: 6%;
	z-index: 5;
	font-size: 0.875em;
	letter-spacing: 0.04em;
	font-weight: 600;
}




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


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



.sideNavi{
    position: fixed;
    top: 50%;
    right:-5em;
    width: 5em;
    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%);  
	 font-family: "MidCenturySansSmBold";
	 font-weight: normal;
}
.sideNavi.view{right:0px;}

.sideNavi ul{width:100%;}
.sideNavi ul li{width: 100%;margin-bottom: 1.5em;}


.sideNavi .current h3{opacity: 1;}



.sideNavi .photo{
	width: 100%;
	position:relative;
	margin:0.6em 0 0.8em;
	background: #3a455f;
}
.sideNavi .photo h3{
	line-height: 1;
	letter-spacing: 0.03em;
	font-size: 0.88em;
	color: #e37104;
	position: absolute;
	left: 0.6em;
	bottom: 0.6em;
	z-index: 5;
}
.sideNavi .photo figure{
	opacity: 0.6;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}
.sideNavi .photo figure:hover,
.sideNavi .current .photo figure{opacity: 1;}

.sideNavi .num{
	font-size: 0.65em;
	line-height: 1;
	margin-top: 0.6em;
	width: 100%;
}
.sideNavi .num a{
	color: #b8bbb3;
	transition: all 0.3s;
}
.sideNavi .num  em{font-size: 1.5em;padding-left: 0.1em;}
.sideNavi .num span{
	display: inline-block;
	width: 0.9em;
	height: 0.9em;
	background: #b8bbb3;
	margin-right: 0.4em;
	transition: all 0.3s;
}
.sideNavi .num a:hover{color: #e37104;}
.sideNavi .num a:hover span{background: #e37104;}
.sideNavi .num.current a{color: #e37104;}
.sideNavi .num.current span{background: #e37104;}

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





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

.slick-dots{bottom:-3.2em;width:100%;}
.slick-dots li{margin: 0 0.7em;width:2.5em;height: 0.75em;background: #5c5d5c;}
.slick-dots li:first-of-type{margin-left: 0;}
.slick-dots li:last-of-type{margin-right: 0;}
.slick-dots li.slick-active button:after{
	content: "";
	display: block;
	position: absolute;
	left: -1px;
	right: -1px;
	bottom: -6px;
	height: 1px;
	background: #141906;
}

.fa01 .mainItem .slick-dots li:nth-child(1) button{background: #444a56;}
.fa01 .mainItem .slick-dots li:nth-child(2) button{background: #76715e;}
.fa01 .mainItem .slick-dots li:nth-child(3) button{background: #713b3b;}
.fa01 .mainItem .slick-dots li:nth-child(4) button{background: #7b7273;}
.fa02 .mainItem .slick-dots li:nth-child(1) button{background: #e0dfda;}
.fa02 .mainItem .slick-dots li:nth-child(2) button{background: #203957;}
.fa02 .mainItem .slick-dots li:nth-child(2) button::before{content: '';position: absolute;top: 0;bottom: 0;left: 0;width: 50%;z-index: 5;background: #24262f;}
.fa02 .mainItem .slick-dots li:nth-child(3) button{background: #59533b;}
.fa02 .mainItem .slick-dots li:nth-child(4) button{background: #972e28;}
.fa03 .mainItem .slick-dots li:nth-child(1) button{background: #2c4353;}
.fa03 .mainItem .slick-dots li:nth-child(2) button{background: #d3d3cb;}
.fa03 .option .slick-dots li:nth-child(1) button{background: #d4d4cc;}
.fa03 .option .slick-dots li:nth-child(2) button{background: #2c4353;}
.fa04 .mainItem .slick-dots li:nth-child(1) button{background: #747b52;}
.fa04 .mainItem .slick-dots li:nth-child(2) button{background: #d4cfcb;}
.fa04 .mainItem .slick-dots li:nth-child(3) button{background: #323c45;}
.fa05 .m01 .slick-dots li:nth-child(1) button{background: #fdfef8;border: 1px solid #8d8e86;}
.fa05 .m01 .slick-dots li:nth-child(2) button{background: #333e52;}
.fa05 .m02 .slick-dots li:nth-child(1) button{background: #fdfef8;border: 1px solid #8d8e86;}
.fa05 .m02 .slick-dots li:nth-child(2) button{background: #fdfef8;border: 1px solid #8d8e86;}
.fa05 .m02 .slick-dots li:nth-child(3) button{background: #fdfef8;border: 1px solid #8d8e86;}
.fa05 .m02 .slick-dots li:nth-child(4) button{background: #fdfef8;border: 1px solid #8d8e86;}



.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: 5vw;
    height: 5vw;
    position:absolute;
    top:50%;
	margin-top: -2.5vw;
    z-index:50;
}
.slick-prev{left:-8vw;}
.slick-next{right:-8vw;}


.slick-prev::before,
.slick-next::before{
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	top: -35%;
	background: #3a455f;
	transform-origin: center center;
}
.slick-prev::after,
.slick-next::after{
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	top: 35%;
	background: #3a455f;
	transform-origin: center center;
}

.slick-prev::before{transform:rotate(45deg);left: 0;}
.slick-next::before{transform:rotate(-45deg);right: 0;}
.slick-prev::after{transform:rotate(-45deg);left: 0;}
.slick-next::after{transform:rotate(45deg); 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;
}


