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


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_icon';
	src: url('../font/sns_icon.eot?hf355k');
	src: url('../font/sns_icon.eot?hf355k#iefix') format('embedded-opentype'),
	url('../font/sns_icon.ttf?hf355k') format('truetype'),
	url('../font/sns_icon.woff?hf355k') format('woff'),
	url('../font/sns_icon.svg?hf355k#sns_icon') format('svg');
	font-weight: normal;
	font-style: normal;
}

i.snsIcon {
	font-family: 'sns_icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	
	color: #fff;
}
.icon-ap:before { content: "\e900";}
.icon-blo:before { content: "\e901";}
.icon-fb:before { content: "\e902";}
.icon-hp:before { content: "\e903";}
.icon-in:before { content: "\e904";}
.icon-line:before { content: "\e905";}
.icon-spo:before { content: "\e906";}
.icon-tt:before { content: "\e907";}
.icon-tw:before { content: "\e908";}
.icon-yt:before { content: "\e909";}



body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .06em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	background-color: #000;
	color: #fff;
}

img {
	max-width: 100%;
	height: auto;
}
ul { list-style: none;}

.anim {
	opacity: 0;
	transition: all .3s ease-out;
}
.anim.on {
	opacity: 1;
}

@media screen and (min-width: 821px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
}
@media screen and (max-width: 820px) {
	
	.pc { display: none;}
	
}


/* ////////////////////////////////////////////////////////////////////////////////

	Mainvisual

//////////////////////////////////////////////////////////////////////////////// */
#bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}
#bg li {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#bg li.bg01 {
	background: url("../images/mv01.jpg") no-repeat center center;
	background-size: cover;
}
#bg li.bg02 {
	background: url("../images/mv02.jpg") no-repeat center center;
	background-size: cover;
	opacity: 0;
	animation: op 1s ease-out 1s forwards;
}
#bg li.bg03 {
	background: url("../images/mv03.jpg") no-repeat center center;
	background-size: cover;
	opacity: 0;
	animation: op 1s ease-out 4s forwards;
}

@keyframes op {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

#bg::before,
#bg::after,
#mainVisual::before,
#mainVisual::after {
	content: "";
	position: fixed;
	display: block;
	background: #000 url("../images/star.svg") no-repeat center center;
	background-size: 50%;
	width: calc(100vw / 9);
	height: calc(100vw / 9);
	z-index: 1;
}
#bg::before { bottom: 0; left: 0;}
#bg::after { bottom: 0; right: 0;}
#mainVisual::before { top: 0; left: 0;}
#mainVisual::after { top: 0; right: 0;}


#mainVisual {
	width: 100vw;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

#mainVisual h1 {
	position: absolute;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 74vh;
	max-width: 800px;
	line-height: 0;
    z-index: 4;
	opacity: 0;
	animation: op 1s ease-out 2s forwards;
}

#mainVisual .tourBnr {
	line-height: 0;
	position: absolute;
	bottom: 40px;
	right: 40px;
	width: 360px;
    z-index: 4;
	opacity: 0;
	animation: op .4s ease-out 5s forwards;
}
.flash {
	position: relative;
	overflow: hidden;
}
.flash::after {
	content: "";
	display: block;
	height:100%;
	width:30px;
	position:absolute;
	top:-180px;
	left:0;
	background-color: #fff;
	opacity:0;
	transform: rotate(25deg);
	animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
	0% { transform: scale(0) rotate(25deg); opacity: 0; }
	20% { transform: scale(0) rotate(25deg); opacity: 0; }
	80% { transform: scale(0) rotate(25deg); opacity: 0.5; }
	81% { transform: scale(4) rotate(25deg); opacity: 1; }
	100% { transform: scale(50) rotate(25deg); opacity: 0; }
}


@media screen and (max-width: 820px) {

	#bg::before,
	#bg::after,
	#mainVisual::before,
	#mainVisual::after {
		width: 68px;
		height: 68px;
	}
	
	
	#mainVisual {
		height: 100vh;
	}
	#mainVisual h1 {
		top: 44%;
		left: 50%;
    	width: 76vw;
		padding-right: 3vw;
	}

	#mainVisual .tourBnr {
		bottom: min(5vw, 40px);
		right: min(5vw, 40px);
		width: min(50vw, 320px);
	}
	
}



/* ////////////////////////////////////////////////////////////////////////////////

	navi

//////////////////////////////////////////////////////////////////////////////// */

nav {
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	color: #fff;
	z-index: 100;
	height: 100vh;
	background-color: #000;
}
nav .navWrap {
	display: flex;
	align-items: center;
    height: 100%;
}

nav .navClose {
	width: 100px;
}
nav .navClose a {
	display: block;
    padding-top: 70px;
    padding-bottom: 15px;
	position: relative;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
nav .navClose a::before,
nav .navClose a::after {
	content: "";
	display: block;
    width: 45%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
}
nav .navClose a::before {
    transform: translateX(-50%) rotate(45deg);
}
nav .navClose a::after {
    transform: translateX(-50%) rotate(-45deg);
}

nav .navLogo {
	line-height: 0;
	text-align: center;
	padding: 0 15px 20px;
	border-bottom: #252525 solid 1px;
}
nav .navLogo img {
	width: 120px;
}

nav .navMain {
	display: flex;
	justify-content: center;
	flex-direction: column;
	border-left: #252525 solid 1px;
    height: 100%;
}

nav .mainNav {
	/*background: linear-gradient(60deg, #d46514 0%, #8d0006 50%, #000 100%);*/
	padding: 30px 40px;
	border-bottom: #252525 solid 1px;
}
nav .mainNav p {
	font-family: 'Roboto', sans-serif;
	text-align: center;
	font-size: 20px;
	font-weight: 900;
	margin-bottom: 10px;
}
nav .mainNav p a {
	color: #fff;
	text-decoration: none;
}
nav .mainNav ul {
	font-size: 16px;
}
nav .mainNav ul li {
	margin-bottom: 5px;
}
nav .mainNav ul li a {
	color: #fff;
	text-decoration: none;
}
nav .mainNav ul li span {
	opacity: .5;
}

nav .mainNav a {
	font-family: 'Roboto', sans-serif;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
}

nav .otherLink {
	font-family: 'Roboto', sans-serif;
	padding: 15px 25px;
	text-align: center;
}
nav .otherLink p {
	opacity: .5;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.4;
}
nav .otherLink p span {
	display: block;
	font-size: 12px;
	font-weight: 700;
}

#menuButton {
	position: fixed;
    background: linear-gradient(60deg, #d46514 0%, #8d0006 50%, #000 100%);
	top: 50%;
	left: 0;
	transform: translateY(-50%);
    width: 100px;
    height: 220px;
    line-height: 0;
    padding: 10px;
    text-decoration: none;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
    z-index: 10;
}
#menuButton::after {
	content: "MENU";
	color: #fff;
	font-size: 12px;
	font-weight: bold;
    margin-top: 15px;
    display: block;
}
#menuButton img {
    width: 58%;
}


@media screen and (min-width: 821px) {
	
}
@media screen and (max-width: 820px) {
	
	/*nav {
		display: none;
		top: 0;
		transform: translateY(0);
		width: 100%;
		height: 100%;
    	z-index: 1000;
	}
	nav .navWrap {
		display: flex;
		flex-direction: column;
		justify-content: center;
    	padding-bottom: 20vw;
    	height: 100%;
	}
	nav .navLogo {
    	padding: min(8vw, 40px);
	}
	nav .navLogo img {
		width: 28vw;
	}
	nav .mainNav {
		padding: min(4vw, 15px) min(8vw, 30px) min(8vw, 20px);
	}
	nav .mainNav p {
		font-size: min(4.6vw, 18px);
		margin-bottom: min(4vw, 10px);
	}
	nav .mainNav ul {
		font-size: min(3.8vw, 16px);
    	text-align: center;
	}

	nav .otherLink {
		padding: min(8vw, 40px);
	}
	nav .otherLink p {
		font-size: min(4.8vw, 20px);
	}
	nav .otherLink p span {
		font-size: min(3.8vw, 18px);
	}

	#menuButton {
		background: url("../images/logo_z.svg") no-repeat center center;
		background-size: 32px;
		display: block;
		width: 40px;
		height:40px;
		position: fixed;
		top: 14px;
		left: 14px;
		z-index: 9999;
	}
	#menuButton::after {
		content: "MENU";
		color: #c20700;
		font-family: 'Roboto', sans-serif;
		font-size: 10px;
		position: absolute;
		bottom: -10px;
		left: 0;
		text-align: center;
		width: 100%;
		text-decoration: none;
	}
	#menuButton span {
		display: block;
		background: #fff;
		width: 32px;
		height: 1px;
		position: absolute;
		left: 4px;
		transition: all 0.4s;
	}
	#menuButton span:nth-child(1) { top: 9px;}
	#menuButton span:nth-child(2) { top: 19px;}
	#menuButton span:nth-child(3) { top: 30px;}
	#menuButton.active span {
		background: linear-gradient(90deg, rgba(212,101,20,1) 0%, rgba(141,0,0,1) 100%);
	}
	#menuButton.active span:nth-child(2) {
		transform: rotate(-34deg);
		width: 39px;
		left: 1px;
	}*/
	
	#menuButton {
		width: 68px;
		height: 68px;
		padding: 6px;
		top: 0;
		transform: translateY(0);
	}
	#menuButton::after {
		font-size: 10px;
		margin-top: 10px;
	}
	nav {
		bottom: inherit;
		top: 0;
		width: 100vw;
	}
	nav .navLogo img {
		width: 100px;
	}
	
	nav .navClose {
		width: 68px;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 9999;
	}
	nav .navClose a {
		padding-top: 50px;
		padding-bottom: 10px;
		font-size: 10px;
	}
	nav .navClose a::before,
	nav .navClose a::after {
		width: 50%;
		top: 40%;
	}
	nav .navMain {
		width: 100%;
	}
	nav .mainNav {
		padding: min(6vw, 30px) min(6vw, 40px);
	}
	nav .mainNav p {
		font-size: min(4.2vw, 20px);
		margin-bottom: min(3vw, 10px);
	}
	nav .mainNav ul {
		font-size: min(3.4vw, 16px);
	}
}



/* ////////////////////////////////////////////////////////////////////////////////

	contents

//////////////////////////////////////////////////////////////////////////////// */

main {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

section {
	padding: 80px 60px;
	margin: 0 auto;
}
.wideWrap {
	max-width: 1140px;
	margin: 0 auto;
}
.narrowWrap {
	max-width: 920px;
	margin: 0 auto;
}

#news {
	background-color: rgba(0,0,0,0.8);
}
.newsList li {
	display: flex;
	padding: 20px 0;
	border-bottom: #666 solid 1px;
}
.newsList li .date {
	font-size: 14px;
	width: 120px;
}
.newsList li .ttl {
	font-size: 14px;
	width: calc(100% - 120px);
}


#tour {
	padding: 100px 60px;
	background-color: rgba(14,14,14,0.8);
}
#tour h2 {
    font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 900;
	font-style: italic;
	margin-bottom: 40px;
}
.tourWrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.tourWrap .tourLeft {
	width: 46%;
}
.tourWrap .tourLeft .tourLogo {
	line-height: 0;
	margin-bottom: 60px;
}
.tourWrap .tourLeft p a {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 900;
	border-bottom: #fff solid 2px;
	color: #fff;
	text-decoration: none;
}

.tourWrap .tourRight {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}
.tourWrap .tourRight .action {
    font-size: 35px;
    font-weight: bold;
}
.tourWrap .tourRight .mov {
	margin-bottom: 30px;
}
.tourWrap .tourRight .mov div {
	position: relative;
	padding-top: 56.25%;
}
.tourWrap .tourRight .mov div iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

.tourWrap .tourRight .tourLogo {
	line-height: 0;
	margin-bottom: 20px;
}
.tourWrap .tourRight .tourLink {
	margin-bottom: 60px;
}
.tourWrap .tourRight .tourLink a {
	font-family: 'Roboto', sans-serif;
	font-size: 18px;
	font-weight: 900;
	border-bottom: #fff solid 2px;
	color: #fff;
	text-decoration: none;
}
.tourWrap .tourRight h3 {
	font-family: 'Roboto', sans-serif;
	font-size: 36px;
	font-weight: 900;
	text-align: left;
	line-height: 1.2;
	letter-spacing: .1em;
	margin-bottom: 60px;
}
.tourWrap .tourRight .tourSchedule li {
	display: flex;
	justify-content: space-between;
	padding: 15px 0;
	border-bottom: #666 solid 1px;
}
.tourWrap .tourRight .tourSchedule li .date {
	width: 20%;
	font-family: 'Roboto', sans-serif;
	font-size: 24px;
	font-weight: 900;
}
.tourWrap .tourRight .tourSchedule li .date span {
	font-size: .8rem;
	font-weight: normal;
}
.tourWrap .tourRight .tourSchedule li .venue {
	width: 40%;
	font-size: 20px;
	font-weight: 700;
}
.tourWrap .tourRight .tourSchedule li .venue span {
	font-size: .8rem;
	font-weight: normal;
}
.tourWrap .tourRight .tourSchedule li .op-st {
	width: 30%;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
}


@media screen and (max-width: 820px) {
	
	section {
		padding: min(12vw, 80px) min(6vw, 60px);
	}

	section h3 {
		font-size: min(6.4vw, 36px);
		margin-bottom: min(8vw, 60px);
	}

	.newsList li {
		padding: min(4vw, 20px) 0;
	}
	.newsList li .date {
		font-size: min(3.2vw, 14px);
		width: 26vw;
	}
	.newsList li .ttl {
		font-size: min(3.2vw, 14px);
		width: calc(100% - 26vw);
	}

	
	#tour {
		padding: min(12vw, 100px) min(6vw, 60px);
	}
	#tour h2 {
		font-size: min(4.6vw, 24px);
		margin-bottom: min(4vw, 30px);
	}
	.tourWrap {
		display: block;
	}
	.tourWrap .tourLeft {
		width: 100%;
		margin-bottom: min(14vw, 60px);
	}
	.tourWrap .tourLeft .tourLogo {
		margin-bottom: min(6vw, 60px);
	}
	.tourWrap .tourLeft p a {
		font-size: min(4vw, 18px);
	}

	.tourWrap .tourRight {
		width: 100%;
	}
	.tourWrap .tourRight .action {
		font-size: min(6vw, 35px);
	}
	.tourWrap .tourRight .mov {
		margin-bottom: min(6vw, 30px);
	}
	.tourWrap .tourRight h3 {
		font-size: min(5.8vw, 36px);
		margin-bottom: min(8vw, 60px);
	}
	.tourWrap .tourRight .tourLink {
		margin-bottom: min(8vw, 40px);
	}
	.tourWrap .tourRight .tourLink a {
		font-size: min(4vw, 18px);
	}
	.tourWrap .tourRight .tourSchedule li {
		padding: min(3vw, 15px) 0;
		flex-wrap: wrap;
	}
	.tourWrap .tourRight .tourSchedule li .date {
		width: 30%;
    	font-size: min(4.6vw, 24px);
	}
	
	.tourWrap .tourRight .tourSchedule li .venue {
		width: 65%;
		font-size: min(4.2vw, 20px);
	}
	.tourWrap .tourRight .tourSchedule li .op-st {
		width: 100%;
		margin-top: min(2vw, 10px);
		font-size: min(3.2vw, 14px);
	}
}


/* ////////////////////////////////////////////////////////////////////////////////

	footer

//////////////////////////////////////////////////////////////////////////////// */
footer {
	padding: 100px 60px;
	background-color: rgba(0,0,0,0.8);
	position: relative;
	z-index: 1;
}
footer .ftrLogo {
	width: 180px;
	line-height: 0;
	margin: 0 auto 60px;
}
footer .ftrLogo img {
	width: 100%;
	height: auto;
}

footer .ftrSns {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
footer .ftrSns li {
	margin: 0 20px;
}
footer .ftrSns li a {
	text-decoration: none;
	font-size: 30px;
}

footer .ftrLink {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
footer .ftrLink li {
    margin: 0 20px;
}
footer .ftrLink li:nth-child(1) img { width: 100px;}
footer .ftrLink li:nth-child(2) img { width: 80px;}
footer .ftrLink li:nth-child(3) img { width: 120px;}


footer .address {
	font-size: 12px;
	text-align: center;
	margin-bottom: 60px;
}
footer .copyright {
	font-size: 10px;
	text-align: center;
}



@media screen and (max-width: 820px) {
	
	footer {
		padding: min(14vw, 100px) min(5vw, 60px);
	}
	footer .ftrLogo {
		width: min(30vw, 180px);
		margin: 0 auto min(8vw, 60px);
	}

	footer .ftrSns {
		margin-bottom: 40px;
	}
	footer .ftrSns li {
		margin: 0 min(4vw, 20px);
	}
	footer .ftrSns li a {
		font-size: min(6.8vw, 30px);
	}

	footer .ftrLink {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 20px;
	}
	footer .ftrLink li {
		margin: 0 min(4vw, 20px);
	}

	footer .ftrLogo li:nth-child(1) img { width: min(36vw, 100px);}
	footer .ftrLogo li:nth-child(2) img { width: min(32vw, 80px);}
	footer .ftrLogo li:nth-child(3) img { width: min(42vw, 120px);}

	footer .address {
		font-size: min(2.8vw, 12px);
		margin-bottom: min(8vw, 60px);
	}
	footer .copyright {
		font-size: min(2.6vw, 10px);
	}

}

