html {
	overflow-y: auto;
	font-family: $font-normal !important;
	font-size: 62.5%;
	line-height: 150%;
	&.active {
		overflow-y: hidden;
		@media screen and (max-width: 767px) {
			overflow-y: hidden;
		}
	}
}

body {
	position: relative;
	padding: 0;
	font-family: $font-normal !important;
	color: $white;
	word-wrap: break-word;
	display: block;
	box-sizing: border-box;
	overflow-x: hidden;
}

section,
div {
	line-height: 150%;
	box-sizing: border-box !important;
}

#header {
	position: absolute;
	top: -70px;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
	@include z-index(header);
	@include fadeinout;
	@media screen and (max-width: 767px) {
		top: -50px;
	}
	&.vis {
		top: 0;
	}
	.header__logo {
		position: absolute;
		top: 9px;
		left: 0;
		right: 0;
		width: 176px;
		margin: 0 auto;
		padding: 0;
		@media screen and (max-width: 960px) {
			top: 6px;
			left: 0;
			right: 0;
			margin: 0 auto;
			width: 145px;
		}
		svg {
			width: 176px;
			height: 46px;
			margin: 0;
			padding: 0;
			fill: $primary;
			@media screen and (max-width: 960px) {
				width: 145px;
				height: 38px;
			}
		}
	}
}

/*---navi---*/
#navi {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 20px;
	box-sizing: border-box;
	visibility: hidden;
	overflow-y: scroll;
	opacity: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 0;
	&.active {
		visibility: visible;
		opacity: 1;
		@include z-index(navilink);
		@include fadeinout;
		background: rgba(0, 0, 0, 0.8);
	}
}

#navilist {
	width: 100%;
	margin: 0;
	padding: 30px 0;
	text-align: center;
	display: block;
	@include z-index(navilink);
	@media screen and (max-width: 767px) {
	}
	.navilist__li {
		position: relative;
		margin: 0;
		padding: 14px 2%;
		font-weight: 700;
		font-size: 2.2em;
		line-height: 100%;
		color: $txt;
		text-align: center;
		box-sizing: border-box;
		display: flex;
		justify-content: center;
		align-items: center;
		color: $white;
		@include z-index(navilink);
		@include fadeinout;
		@media screen and (max-width: 767px) {
			display: block;
			margin: 0;
			height: auto;
			padding: 14px 2%;
			font-size: 1.8em;
			line-height: 150%;
		}
		&:hover {
			color: $primary;
			box-sizing: border-box;
		}
		a {
			@include abase;
		}
		&:first-child {
			position: relative;
		}
	}
}

.btnopen {
	position: absolute;
	top: -80px;
	right: 26px;
	width: 64px;
	height: 64px;
	display: inline-block;
	transition: all 0.4s;
	box-sizing: border-box;
	border-radius: 0 0 6px 6px;
	border-left: 2px solid $primary;
	border-right: 2px solid $primary;
	border-bottom: 2px solid $primary;
	background: linear-gradient($blue, $darkblue);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	@include z-index(openbn);
	@media screen and (max-width: 767px) {
		right: 14px;
	}
	&.vis {
		top: 0;
		@media screen and (max-width: 767px) {
			top: 0;
			@include z-index(openbn);
			display: block;
		}
	}
	&::after {
		position: absolute;
		content: "MENU";
		bottom: 10px;
		width: 50px;
		left: 0;
		right: 0;
		margin: 0 auto;
		font-size: 1.1rem;
		text-align: center;
		color: $white;
		@media screen and (max-width: 767px) {
			bottom: 8px;
		}
	}
	&:hover {
		color: $white;
		background: $primary;
		@media screen and (max-width: 767px) {
		}
		&::after {
			color: $white;
			@media screen and (max-width: 767px) {
			}
		}
	}
	&.active {
		&::after {
			content: "CLOSE";
		}
	}
	span {
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 46%;
		height: 2px;
		background: $white;
		border-radius: 4px;
		display: inline-block;
		transition: all 0.4s;
		box-sizing: border-box;
		@media screen and (max-width: 767px) {
			width: 50%;
			height: 2px;
		}
	}
}
.btnopen span:nth-of-type(1) {
	top: 15px;
	@media screen and (max-width: 767px) {
	}
}
.btnopen span:nth-of-type(2) {
	top: 22px;
	@media screen and (max-width: 767px) {
	}
}
.btnopen span:nth-of-type(3) {
	bottom: 31px;
	@media screen and (max-width: 767px) {
	}
}

.btnopen.active span:nth-of-type(1) {
	top: 18px;
	transform: translateY(4px) rotate(-315deg);
	@media screen and (max-width: 767px) {
	}
}
.btnopen.active span:nth-of-type(2) {
	opacity: 0;
}
.btnopen.active span:nth-of-type(3) {
	bottom: 35px;
	transform: translateY(-4px) rotate(315deg);
	@media screen and (max-width: 767px) {
	}
}

.btnclose {
	@media screen and (max-width: 767px) {
		position: fixed;
		top: 14px;
		left: 24px;
		width: 24px;
		height: 24px;
		margin: 0 auto;
		display: block;
		visibility: hidden;
		opacity: 0;
		cursor: pointer;
		cursor: hand;
		@include z-index(closebtn);
		@include fadeinout;
		&:before {
			@include closebtn;
			transform: rotate(45deg);
		}
		&:after {
			@include closebtn;
			transform: rotate(-45deg);
		}
		&:hover {
			opacity: 0.6;
		}
		&.active {
			opacity: 1;
			visibility: visible;
		}
	}
}

main {
	position: relative;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	@media screen and (max-width: 960px) {
		width: 100%;
		margin: 0;
		padding: 0;
	}
	.inner {
		width: 90%;
		max-width: 1040px;
		margin: 0 auto;
	}
}

.titlecol {
	margin: 0 auto 54px;
	text-align: center;
	@media screen and (max-width: 767px) {
		margin: 0 auto 34px;
	}
}
.title__h3 {
	position: relative;
	margin: 0 auto;
	padding: 6px 0;
	width: 100%;
	text-align: center;
	@media screen and (max-width: 767px) {
		margin: 0 auto;
		padding: 10px 0;
		font-size: 3em;
	}
}

#footer {
	padding: 70px 4%;
	color: $black;
	font-size: 1.6rem;
	text-align: center;
	background: $white;
	@media screen and (max-width: 767px) {
		padding: 50px 4%;
	}
	.footer__banner {
		width: 400px;
		margin: 0 auto 24px;
		display: block;
		@media screen and (max-width: 767px) {
			width: 90%;
		}
		img {
			width: 100%;
			height: auto;
		}
		p {
			margin: 0 auto 4px;
		}
	}
	.footer__logocol {
		max-width: 200px;
		margin: 0 auto 24px;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		@media screen and (max-width: 767px) {
			max-width: 90%;
		}
	}
	.footer__logocol__col {
		position: relative;
		width: 100%;
		margin: 0;
		@include fadeinout;
		@media screen and (max-width: 767px) {
			width: 40%;
			margin: 0 4%;
		}
		&:hover {
			opacity: 0.6;
		}
		svg {
			width: 100%;
			height: auto;
			fill: $black;
		}
	}
	.footer__logo__link {
		@include abase;
	}
	.footer__link {
		color: $black;
		text-decoration: none;
		@include fadeinout;
		@media screen and (max-width: 767px) {
			font-size: 0.9em;
		}
		&:hover {
			color: $red;
		}
	}
	.footer__contact__h4 {
		margin: 0 0 16px 0;
		padding: 0;
		font-size: 1.4em;
		font-weight: 700;
		font-family: $font-jp;
		@media screen and (max-width: 767px) {
			font-size: 1.2em;
		}
	}
	.footer__contact {
		margin: 0 0 30px 0;
		font-size: 1em;
		font-weight: 400;
		font-family: $font-normal;
		i {
			margin: 0 3px 0 0;
			color: $white;
		}
		@media screen and (max-width: 767px) {
			padding: 0 10%;
			font-size: 0.9em;
		}
	}
	.footer__contact2 {
		width: 400px;
		margin: 0 auto 20px;
		padding: 12px;
		font-size: 1em;
		font-weight: 400;
		font-family: $font-normal;
		border: 1px solid rgba(255, 255, 255, 0.3);
		i {
			margin: 0 3px 0 0;
			color: $white;
		}
		svg {
			margin: 12px 0;
			fill: $white;
		}
		@media screen and (max-width: 767px) {
			width: 100%;
		}
	}
	.footer__txt {
		margin: 0;
		font-size: 1.4rem;
		font-weight: 400;
		line-height: 170%;
		display: block;
	}
	small {
		font-size: 0.7rem;
		font-weight: 400;
	}
}

.footer__snscol {
	width: 278px;
	margin: 0 auto 34px;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	.footer__snscol__li {
		position: relative;
		width: 54px;
		height: 54px;
		margin: 0 10px;
		border-radius: 4px;
		@include fadeinout;
		&:before {
			position: absolute;
			content: "";
			width: 100%;
			height: 100%;
			line-height: 100%;
			font-family: "Font Awesome 5 Brands";
			font-size: 1.9em;
			font-weight: 900;
			color: $white;
			text-align: center;
			display: flex;
			align-items: center;
			justify-content: center;
		}
		&--fb {
			background: $facebook;
			&:before {
				content: "\f39e";
				padding: 4px 0 0 0;
				box-sizing: border-box;
			}
		}
		&--tw {
			background: $twitter;
			&:before {
				content: "\f099";
				padding: 4px 0 0 0;
				box-sizing: border-box;
			}
		}
		&--insta {
			background: linear-gradient(-135deg, #c0009d 0%, #ec0017 50%, #fec21d 100%) no-repeat;
			&:before {
				content: "\f16d";
				font-size: 2.2em;
			}
		}
		&:hover {
			opacity: 0.6;
		}
	}
	.footer__snscol__li__link {
		@include abase;
	}
}

.footer__bannercol {
	width: 740px;
	margin: 0 auto 20px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	@media screen and (max-width: 767px) {
		width: 280px;
		display: block;
	}
	.footer__bannercol__col {
		width: 48%;
		margin: 0 1% 14px;
		@media screen and (max-width: 767px) {
			width: 100%;
			margin: 0 0 14px 0;
		}
		img {
			width: 100%;
			height: auto;
		}
	}
}

.snscol {
	position: relative;
	margin: 0 auto;
	padding: 0;
	font-weight: 700;
	text-align: center;
	box-sizing: border-box;
	@include fadeinout;
	@media screen and (max-width: 767px) {
		width: 90%;
	}
	.snscol__col {
		position: relative;
		width: 232px;
		margin: 0 auto 30px;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		font-size: 2.4em;
		list-style-type: none;
		@media screen and (max-width: 767px) {
		}
		.snscol__col__li {
			position: relative;
			width: 50px;
			height: 30px;
			margin: 8px 12px 0;
			text-align: center;
			@include fadeinout;
			@media screen and (max-width: 767px) {
			}
			&--tw {
				.snscol__col__li__link {
					color: $twitter !important;
				}
			}
			&--fb {
				.snscol__col__li__link {
					color: $facebook !important;
				}
			}
			&--line {
				fill: $line;
				svg {
					width: 40px;
					height: auto;
					margin: 0 auto;
					fill: $line;
				}
			}
			&:hover {
				opacity: 0.6;
			}
			.snscol__col__li__link {
				@include abase;
			}
		}
	}
}

.sharecol {
	position: fixed;
	top: 84px;
	right: 0;
	width: 54px;
	padding: 6px 0 2px;
	font-weight: 700;
	color: $black;
	text-align: center;
	box-sizing: border-box;
	visibility: hidden;
	background: $white;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
	opacity: 0;
	@include fadeinout;
	@include z-index(sharebtn);
	@media screen and (max-width: 767px) {
		top: auto;
		bottom: 70px;
	}
	&.vis {
		visibility: visible;
		opacity: 1;
	}
	.sharecol__tt {
		position: relative;
		text-align: center;
		font-weight: 700;
	}
	.sharebtn__col {
		margin: 0 auto;
		padding: 0;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		list-style-type: none;
		.sharebtn__col__li {
			position: relative;
			width: 50px;
			margin: 6px 0;
			padding: 0;
			@include fadeinout;
			i {
				font-size: 2em;
				color: $white;
			}
			&--tw {
				i {
					color: $twitter;
				}
			}
			&--fb {
				i {
					color: $facebook;
				}
			}
			&--line {
				svg {
					width: 28px;
					margin: 0 0 0 2px;
					fill: $line;
				}
			}
			&:hover {
				opacity: 0.6;
			}
			.sharebtn__col__li__link {
				@include abase;
			}
		}
	}
}

.btnticket {
	position: fixed;
	left: 3%;
	bottom: -6px;
	width: 45.5%;
	height: 64px;
	padding: 5px;
	font-size: 2em;
	font-weight: 700;
	color: $white;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	border-radius: 6px;
	border: 7px solid $black;
	box-sizing: border-box;
	opacity: 0;
	@include z-index(topbtn);
	@include fadeinout;
	background: linear-gradient($yellow2, $brown);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	&::before {
		content: "";
		position: absolute;
		top: -7px;
		left: -7px;
		width: calc(100% + 10px);
		height: calc(100% + 10px);
		border-left: 2px solid $primary;
		border-top: 2px solid $primary;
		border-right: 2px solid $primary;
		border-radius: 6px;
	}
	@media screen and (max-width: 767px) {
		bottom: -7px;
		padding: 3px;
		height: 60px;
		font-size: 1.5em;
	}
	&.vis {
		visibility: visible;
		opacity: 1;
	}
	&:hover {
		opacity: 0.7;
		color: $white;
		@media screen and (max-width: 767px) {
			opacity: 1;
			color: $white;
		}
	}
	span {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		&::before {
			position: relative;
			content: "";
			margin: 0 10px 0 0;
			width: 32px;
			height: 28px;
			background: url(../img/ico_cart.svg) 50% 50% no-repeat;
			background-size: cover;
			@media screen and (max-width: 767px) {
				width: 25px;
				height: 22px;
			}
		}
	}
}

.btnfree {
	position: fixed;
	right: 3%;
	bottom: -6px;
	width: 45.5%;
	height: 64px;
	padding: 5px;
	font-size: 2em;
	font-weight: 700;
	color: $white;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	border-radius: 6px;
	border: 7px solid $black;
	background: linear-gradient($blue, $darkblue);
	box-sizing: border-box;
	opacity: 0;
	@include z-index(topbtn);
	@include fadeinout;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
	&::before {
		content: "";
		position: absolute;
		top: -7px;
		left: -7px;
		width: calc(100% + 10px);
		height: calc(100% + 10px);
		border-left: 2px solid $blue;
		border-top: 2px solid $blue;
		border-right: 2px solid $blue;
		border-radius: 6px;
	}
	@media screen and (max-width: 767px) {
		bottom: -7px;
		padding: 3px;
		height: 60px;
		font-size: 1.5em;
		text-align: center;
	}
	&.vis {
		visibility: visible;
		opacity: 1;
	}
	&:hover {
		opacity: 0.7;
		color: $white;
		@media screen and (max-width: 767px) {
			opacity: 1;
			color: $white;
		}
	}
	span {
		position: relative;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		&::before {
			position: relative;
			top: 1px;
			content: "";
			margin: 0 10px 0 0;
			width: 28px;
			height: 28px;
			background: url(../img/ico_character.png) 50% 50% no-repeat;
			background-size: cover;
			@media screen and (max-width: 767px) {
				width: 22px;
				height: 22px;
			}
		}
	}
}

.topBtn {
	position: fixed;
	bottom: -40px;
	right: 0;
	color: $white;
	text-decoration: none;
	width: 40px;
	height: 40px;
	text-align: center;
	box-sizing: border-box;
	background: $black;
	transition: opacity 0.3s ease-out;
	@include z-index(topbtn);
	@include fadeinout;
	&.active {
		bottom: 80px;
	}
	&:before {
		position: absolute;
		content: "\f077";
		top: 13px;
		left: 0;
		width: 100%;
		line-height: 100%;
		font-family: "Font Awesome 5 Free";
		font-size: 100%;
		font-weight: 900;
		text-align: center;
	}
	&:hover {
		background: $primary;
		text-decoration: none;
	}
	a {
		font-size: 90%;
		color: $white;
	}
	a:hover {
		text-decoration: none;
	}
}

p {
	line-height: 150%;
	margin: 0 0 16px 0;
	&:last-child {
		margin: 0;
	}
}

.text-center {
	text-align: center;
}

.pc {
	display: block;
	@media screen and (max-width: 767px) {
		display: none;
	}
}

.sp {
	display: none;
	@media screen and (max-width: 767px) {
		display: block;
	}
}

a {
	cursor: pointer;
	color: $secondary;
	outline: none;
	@include fadeinout;
	&:hover {
		color: $primary;
	}
	img {
		@include fadeinout;
		&:hover {
			opacity: 0.6;
			@media screen and (max-width: 767px) {
				opacity: 1;
			}
		}
	}
}

a:focus,
*:focus {
	outline: none;
}

.is-fixed {
	position: fixed !important;
	top: 0;
	left: 0;
}

.yellow {
	color: $warning;
}

.red {
	color: $red;
	font-weight: 700;
}

.andmore {
	margin: 34px 0 0 0;
	padding: 0;
	text-align: center;
	font-size: 1.6em;
	font-weight: 500;
	font-family: $font-jp;
	@media screen and (max-width: 767px) {
		margin: 0;
	}
}

input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
