@charset "UTF-8";

/* ------------------------------
Base
------------------------------ */
:root {
	--colorBlue: #0097e0;
	--colorLightBlue01: #f6fbff;
	--colorLightBlue02: #d6f0ff;
	--colorOrange: #f6ab00;
	--colorLightOrange: #ffefcb;
	--colorGreen: #00bbc2;
}

html {
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}


/* Reset */
h1,h2,h3,h4,h5,h6,p,blockquote,ul,ol,dl,li,dt,dd,form {
	margin:0;
	padding:0;
	font-weight:normal;
}

li,dt,dd {list-style: none;}
img {
	border: none;
	max-width:100%;
	vertical-align:top;
}

div {
	box-sizing: border-box;
}

body {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	font-feature-settings: 'palt' 1;
	font-kerning: normal;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.05em;
	word-break: break-all;
	word-wrap: break-word;
	overflow-wrap: break-word;
	padding:0;
	margin:0;
	color:#333;
}

#wrapper {
	width:100%;
	font-size:16px;
	line-height:1.6;
}

.caution {
	color:#e00025;
}

/* Link */
a:link,
a:active{
	color: var(--colorBlue);
	text-decoration: underline;
	text-underline-offset: 0.25em;
}
a:visited{
	color: var(--colorBlue);
}
a:hover{text-decoration:none;}




/* ------------------------------
Header
------------------------------ */
#header {
	margin: 0 auto;
}

#header h1 {
	text-align: center;
	background-color: var(--colorLightBlue01);
}

#header h1 img {
	width: 70%;
	max-width: 600px;
	vertical-align: top;
	padding: 60px 0;
	box-sizing: border-box;
}

#header h2 {
	font-size: 32px;
	font-weight: bold;
	padding: 16px;
	text-align: center;
	color: #FFFFFF;
	background: linear-gradient(to right, var(--colorBlue) 0%, #109de2 25%, #26a6e5 50%, #3daee6 75%, #4cb6e8 90%);
	text-shadow: 1px 1px 0 var(--colorBlue), -1px -1px 0 var(--colorBlue);

}

@media screen and (max-width: 640px) {
	#header h1 img {
		padding: 30px 0;
	}

	#header h2 {
		font-size: 20px;
		padding: 8px 16px;
	}
}




/* ------------------------------
Footer
------------------------------ */
#footer {
	margin: 0 auto;
	padding: 16px 32px;
	background: linear-gradient(to right, var(--colorBlue) 0%, #109de2 25%, #26a6e5 50%, #3daee6 75%, #4cb6e8 90%);
	text-align: center;
	color: #FFF;
	font-size: 12px;
}

#footer .inner {
	max-width: 1024px;
	margin: 0 auto;
}

#footer .organizer {
	margin-bottom: 10px;
}

#footer .link li {
	display: inline-block;
	margin: 0 0 16px 0;
}

#footer .link li:after {
	content: '｜';
}

#footer .link li:last-of-type:after {
	content: '';
}

#footer .link li a {
	color: #FFF;
	text-decoration: none;
}

#footer .copyright {
	font-size: 11px;
}

@media screen and (max-width: 640px) {
	#footer {
		padding: 16px;
	}

	#footer .link li {
		margin: 0 0 8px 0;
	}

	#footer .copyright {
		font-size: 10px;
	}
}




/* ------------------------------
Contents
------------------------------ */
#contents {
	max-width: 1024px;
	background: #FFF;
	margin: 0 auto;
	padding: 64px 32px;
}

.section {
	margin: 0 0 48px 0;
	padding: 0 0 48px 0;
	border-bottom: solid 1px var(--colorLightBlue02);
}

#contents>.section:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.article h3 {
	position: relative;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 24px;
	line-height: 1.5;
	padding: 0 0 0 16px;
	text-box-trim: trim-both;
}

.article h3:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	display: block;
	width: 6px;
	height: 100%;
	background: var(--colorBlue);
	border-radius: 100vw;
}

.article p {
	margin-bottom: 0.5em;
}

.article ul.notes {
	margin: 0 0 16px 0;
}

.article ul.notes li {
	text-indent: -1em;
	padding-left: 1em;
	margin: 0 0 0.5em 0;
}

.article ul.notes li:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 640px) {
	#contents {
		padding: 32px 16px;
	}

	.section {
		margin: 0 0 24px 0;
		padding: 0 0 24px 0;
	}

	.article h3 {
		font-size: 20px;
		margin-bottom: 16px;
	}
}


/* ------------------------------
Flow
------------------------------ */
.flow {
	max-width: 640px;
	margin: 0 auto;
}

.flow .inner {
	margin: 0 auto 24px auto;
	position: relative;
}

.flow .inner:after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 16px solid transparent;
	border-right: 16px solid transparent;
	border-top: 16px solid var(--colorLightBlue02);
}

div.flow .inner:last-of-type:after {
	border: none;
}



.flow .inner dl {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
	background-color: var(--colorLightBlue02);
	margin-bottom: 0px;
	padding: 16px;
	border-radius: 20px;
	overflow: hidden;
}

.flow .inner dl dt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	aspect-ratio: 1 / 1;
	font-weight: bold;
	width: 40px;
	color: #FFF;
	background-color: var(--colorBlue);
	text-align: center;
	border-radius: 10px;
	text-box-trim: trim-both;
}


/* ------------------------------
Button
------------------------------ */
.btnContainer {
	margin: 0 auto 24px auto !important;
	max-width: 480px;
}

.btnContainer a {
	position: relative;
	font-weight: bold;
	display: block;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	margin: 0 auto;
	border-radius: 100vw;
	/* box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.04),
	-2px 2px 4px rgba(0, 0, 0, 0.04),
	2px -2px 4px rgba(0, 0, 0, 0.04),
	-2px -2px 4px rgba(0, 0, 0, 0.04); */
}

.btnContainer a:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-size: 24px;
	display: block;
	content: '\e315';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
}

.btnContainer a.btnTop:after {
	content: '\e314';
	right: auto;
	left: 10px;
}

.btnContainer a.btnEntry {
	font-size: 20px;
	height: 72px;
	line-height: 72px;
	background: linear-gradient(to right, var(--colorGreen) 10%, #0fc0c8 25%, #26c5cb 50%, #3dcad1 75%, #4cd0d5 90%);
	color: #FFF;
	text-shadow: 1px 1px 0 var(--colorGreen), -1px -1px 0 var(--colorGreen);
	box-shadow: 4px 4px 4px rgba(0, 187, 194, 0.07),
	-4px 4px 4px rgba(0, 187, 194, 0.07);
}

.btnContainer a.btnMypage,
.btnContainer a.btnDetail,
.btnContainer a.btnTop {
	font-size: 16px;
	height: 56px;
	line-height: 56px;
	color: #FFF;
}

.btnContainer a.btnMypage,
.btnContainer a.btnDetail,
.btnContainer a.btnTop {
	background: linear-gradient(to right, var(--colorOrange) 10%, #f7af0b 25%, #f7b41b 50%, #f9bb32 75%, #f9c349 90%);
	color: #FFF;
	text-shadow: 1px 1px 0 var(--colorOrange), -1px -1px 0 var(--colorOrange);
	box-shadow: 4px 4px 4px rgba(246, 171, 0, 0.07),
	-4px 4px 4px rgba(246, 171, 0, 0.07);
}

.btnContainer a:hover {
	opacity: 0.8;
}


/* リンクなし */
.btnContainer.nolink {
	position: relative;
	font-size: 16px;
	font-weight: bold;
	display: block;
	text-align: center;
	height: 48px;
	line-height: 48px;
	background-color: #7f7f7f;
	color: #FFF;
	border-radius: 4px;
	border-radius: 100vw;
}

.btnContainer.nolink:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-size: 20px;
	display: block;
	content: '\e315';
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translate(0, -50%);
}

@media screen and (max-width: 640px) {
	.btnContainer a {
		width: 90%;
	}

	/* .btnContainer a.btnEntry {
		font-size: 16px;
	} */

	/* .btnContainer a.btnMypage,
	.btnContainer a.btnDetail {
		font-size: 14px;
	} */

	/* .btnContainer.nolink {
		font-size: 14px;
	} */

	.btnContainer a:after {
		right: 8px;
	}

	.btnContainer a.btnTop:after {
		right: auto;
		left: 5px;
	}

	.btnContainer.nolink {
		width: 90%;
	}

	.btnContainer.nolink:after {
		right: 5px;
	}
}

@media screen and (max-width: 359px) {
	.btnContainer a.btnMypage,
	.btnContainer a.btnDetail {
		font-size: 14px;
	}

	.btnContainer.nolink {
		font-size: 14px;
	}
}


/* ------------------------------
チケット販売受付に関して
------------------------------ */
.important01 {
	background-color: var(--colorLightBlue02);
	padding: 24px;
	border-radius: 20px;
}

@media screen and (max-width: 640px) {
	.important01 {
		padding: 24px 16px;
	}
}


/* ------------------------------
Pagetop
------------------------------ */
#pageTop {
	width: 48px;
	height: 48px;
	position: fixed;
	right: 16px;
	bottom: 80px;
	opacity: 0;
	transform: translate(0, 50px);
	transition: all 1000ms;
}

#pageTop.fadein {
	opacity: 0.8;
	transform: translate(0, 0);
}

#pageTop.fadein:hover {
	opacity: 1.0;
}

#pageTop a {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	text-decoration: none;
	background: linear-gradient(to right, var(--colorOrange) 10%, #f7af0b 25%, #f7b41b 50%, #f9bb32 75%, #f9c349 90%);
	text-shadow: 1px 1px 0 var(--colorOrange), -1px -1px 0 var(--colorOrange);
	border-radius: 50%;
}

#pageTop a:before {
	font-family: 'Material Icons';
	font-size: 24px;
	content: '\e316';
	color: #fff;
	position: absolute;
	width: 24px;
	height: 24px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center
}

@media screen and (max-width: 640px) {
	#pageTop {
		width: 40px;
		height: 40px;
		right: 16px;
		bottom: 16px;
	}

	#pageTop a {
		width: 40px;
		height: 40px;
	}

	#pageTop a i {
		font-size: 20px;
		width: 20px;
		height: 20px;
		top: 0px;
	}
}




/* ------------------------------
利用規約
------------------------------ */
.terms h4 {
	font-size: 16px;
	font-weight: bold;
	margin: 0 0 0.5em 0;
}

.terms ol {
	margin: 0 0 2em 1.5em;
}

.terms ol>li {
	list-style-type: decimal;
	margin: 0 0 1em 0;
}

.terms>ul {
	margin: 0 0 2em 0;
}

.terms ol>li ul li,
.terms ul>li ul li {
	text-indent: -1em;
	padding-left: 1em;
	margin: 0 0 0.5em 0;
}

.terms ol>li ul.noindent li,
.terms ul>li ul.noindent li {
	text-indent: 0em;
	padding-left: 0em;
}

.terms ol>li ul.number li,
.terms ul>li ul.number li {
	text-indent: -1.75em;
	padding-left: 1.75em;
}

.terms ol>li ul.number li:nth-child(n+10),
.terms ul>li ul.number li:nth-child(n+10) {
	text-indent: -2.25em;
	padding-left: 2.25em;
}


/* module CSS
------------------------------------------ */
.tL {text-align: left;}
.tR {text-align: right;}
.tC {text-align: center;}
.fL {float: left;}
.fR {float: right;}
.pt00 {padding-top: 0 !important;}
.pt05 {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}
.pt20 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt40 {padding-top: 40px !important;}
.pb00 {padding-bottom: 0 !important;}
.pb05 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb1em {margin-bottom: 1em !important;}
.mb05em {margin-bottom: 0.5em !important;}
.mb2em {margin-bottom: 2em !important;}
.mb3em {margin-bottom: 3em !important;}
.mb4em {margin-bottom: 4em !important;}
.fz12 {font-size: 12px !important;}
.fz14 {font-size: 14px !important;}
.fz16 {font-size: 16px !important;}
.fz18 {font-size: 18px !important;}
.clrRed {color:#e00025;}


.pc_none {
	display: none;
}

.inl-bl {
	display: inline-block;
}


/* ------------------------------
PC/SP 表示出し分け
------------------------------ */
.pc_inline {display:inline;}
.pc_block {display:block;}
.sp_inline,.sp_block{display:none;}

@media screen and (max-width: 640px) {
	.pc_inline,.pc_block {display:none;}
	.pc_none,.sp_inline {display:inline;}
	.sp_block {display:block;}
}

