/*
GROOWEB SCSS SMACSS BEM
*/
/* Tools */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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,
b,
u,
i,
center,
dl,
dt,
dd,
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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	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;
}

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

.text-align-right {
	text-align: right;
}

.display-block {
	display: block;
}

.hidden {
	display: none !important;
	visibility: hidden;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clear {
	clear: both;
}

/* show only  SP/PC
-------------------------------*/
.sp-only {
	display: none !important;
}

.sp-only-2 {
	display: none !important;
}

.pc-only {
	display: block !important;
}

.pc-only-2 {
	display: inline-block !important;
}

/* font
-------------------------------*/
.bold {
	font-weight: bold;
}

/* margin
-------------------------------*/
.mb10 {
	margin-bottom: 10px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt56 {
	margin-top: 56px !important;
}

.mr20 {
	margin-right: 20px;
}

.mr10 {
	margin-right: 10px;
}

/* padding
-------------------------------*/
/* base */
html {
	font-size: 62.5%;
}

body {
	font-family: "Roboto", "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	color: #161815;
}

@media screen and (min-width: 768px) {
	body {
		font-size: 1.6rem;
	}
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	height: auto;
}

input,
textarea,
select,
button {
	font-family: inherit;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
}

select::-ms-expand {
	display: none;
}

button {
	cursor: pointer;
	font-size: inherit;
}

/* for development */
pre {
	padding: 15px;
	background: #eee;
	font-size: 1.2rem;
	line-height: 1.2;
}

/* Layout */
.l-body {
	width: 100%;
}

.l-body.is-fixed {
	position: fixed;
}

.l-layer {
	position: relative;
	z-index: 1000;
}

.l-wrapper {
	width: calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}

.l-modal {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	z-index: 1010;
}

.l-modal__bg {
	background: rgba(0, 0, 0, 0.7);
	width: 100%;
	height: 100vh;
}

.l-modal__inner {
	width: 85.33%;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.l-main {
	padding-top: 60px;
}

@media screen and (min-width: 768px) {
	.l-main {
		padding-top: 80px;
	}
}

.l-header {
	background: #fff;
	position: fixed;
	width: 100%;
	z-index: 1000;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 60px;
	transition: 0.3s;
}

@media screen and (min-width: 768px) {
	.l-header {
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media screen and (min-width: 768px) {
	.l-header {
		padding: 15px 36px;
		height: 80px;
		-ms-flex-pack: justify;
		justify-content: center;
	}
}

.is-scroll .l-header {
	height: 60px;
}

#page_top {
	z-index: 1100;
	width: 100px;
	height: 60px;
	position: fixed;
	right: 0;
	bottom: 0;
	background: #333333;
	opacity: 0.7;
}

#page_top-other {
	z-index: 1100;
	width: 100px;
	height: 60px;
	position: fixed;
	right: 0;
	bottom: 60px;
	background: #333333;
	opacity: 0.7;
}

@media screen and (min-width: 768px) {
	#page_top-other {
		bottom: 0;
	}
}

#page_top a,
#page_top-other a {
	position: relative;
	display: block;
	width: 100px;
	height: 60px;
	text-decoration: none;
}

#page_top a::before,
#page_top-other a::before {
	font-family: FontAwesome;
	content: "\f102";
	font-size: 25px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -25px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

#page_top a::after,
#page_top-other a::after {
	content: "PAGE TOP";
	font-size: 13px;
	color: #fff;
	position: absolute;
	top: 30px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}

.header__logo {
	width: 46vw;
	transition: 0.3s;
	max-width: 172px;
}

@media screen and (min-width: 768px) {
	.header__logo {
		width: 20vw;
		min-width: 200px;
		max-width: 320px;
	}
}

@media screen and (min-width: 768px) {
	.is-scroll .header__logo {
		width: 16vw;
	}
}

.footer__wrap {
	padding: 25px 15px 20px 15px;
	max-width: calc(654px - 30px);
	margin: auto;
}

.footer__info {
	margin-top: 10px;
	text-align: center;
}

@media screen and (min-width: 768px) {
	.footer__info {
		margin-top: 35px;
	}
}
.footer__info img {
	width: 290px;
}
@media screen and (max-width: 767px) {
	.footer__info img {
		width: 203px;
	}
}

.footer__info__text {
	margin-top: 10px;
	margin-bottom: 15px;
	font-size: 1.28rem;
	line-height: 1.75;
	letter-spacing: 1.6px;
}

.footer__info__copyright {
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: 1.6px;
}

@media screen and (min-width: 768px) {
	.go-to-hit__main {
		width: 750px;
		margin-left: auto;
		margin-right: auto;
	}
}

	.go-to-hit__ticket {
		margin-top: 40px;
	}
	@media screen and (max-width: 767px) {
		.go-to-hit__ticket {
			padding-left:15px;
			padding-right:15px;
			margin-top: 20px;
		}
	}

	.go-to-hit__text {
		padding-top: 20px;
		padding-bottom: 30px;
		font-size: 1.6rem;
		line-height: 1.57;
	}
	@media screen and (min-width: 768px) {
		.go-to-hit__text {
			font-size: 2.8rem;
			padding-top: 40px;
			padding-bottom: 60px;
		}
	}

		.go-to-hit__wrapper {
			padding-left:30px;
			padding-right:30px;
		}
	@media screen and (min-width: 768px) {
		.go-to-hit__wrapper {
			padding-left: 83px;
			padding-right: 83px;
		}
	}

	.go-to-hit__terms {
		background-color: #f2f2f2;
	}

	.go-to-hit__terms__list {
		padding-top: 20px;
		padding-bottom: 30px;
		font-size: 1.2rem;
		line-height: 1.5;
	}
	@media screen and (min-width: 768px) {
		.go-to-hit__terms__list {
			font-size: 2.0rem;
			padding-top: 20px;
			padding-bottom: 30px;
		}
	}