@charset "utf-8";

/* ---------------------------------------------------------------
	Reset
--------------------------------------------------------------- */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}

/* add to
---------------------------------------------------------- */
html{
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}
main{
	display: block;
}
img {
	border-style: none;
}
button, input, select, textarea {
	font-family: inherit;
	font-weight: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}
.main {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}



/* ---------------------------------------------------------------
	Base
--------------------------------------------------------------- */
body {
	color: #000;
	font-size: 15px;
	font-weight: normal;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	word-break: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-align: left;
}
header:after,
#content:after,
section:after,
.inner:after{
	content:" ";
	display:block;
	clear:both;
}

a {
	color: #333;
	text-decoration: underline;
}

strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 10px;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

img{
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: auto;
}

table{
	max-width: 100%;
}

/* ---------------------------------------------------------------
	Content
--------------------------------------------------------------- */
#content{
	caret-color: transparent;
}

/* PCのみ */
@media all and (min-width: 641px) {
	body{
		min-width: 640px;
	}
	#all{
		width: 640px;
		margin: auto;
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
	}
	a:hover{
		text-decoration: none;
	}
	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
}
/* SPのみ */
@media all and (max-width: 640px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	#all{
		width: 100%;
	}
}

/* ---------------------------------------------------------------
	エリアの表示・非表示切り替え
--------------------------------------------------------------- */
.contents-area {
	visibility: hidden;
	opacity: 0;
	height: 0;
	overflow: hidden;
}
.contents-area.is-active {
	visibility: visible;
	opacity: 1;
	height: auto;
	transition: .5s;
}

/* ---------------------------------------------------------------
	ボタン
--------------------------------------------------------------- */
.cv{
	position: relative;
}
.btn_ticket{
	position: absolute;
	width: 75%;
	left: 0;
	right: 0;
	margin: auto;
    animation-name: zoom-in-out;
    animation-duration: 1.75s;
    animation-iteration-count: infinite;
}
.btn_ticket_1{
	bottom: 27%;
}
.btn_ticket_2{
	bottom: 21%;
}
@keyframes zoom-in-out {
    0% { transform: scale(.95); }
    50% { transform: scale(1.04); }
    100% { transform: scale(.95); }
}

/* ---------------------------------------------------------------
	カウントダウンタイマー
--------------------------------------------------------------- */

.cdt_wrapper {
	font-weight: bold;
	line-height: 2;
	border: 2px solid #e88f6b;
	border-radius: 10px;
	position: absolute;
	width: 60%;
	left: 0;
	right: 0;
	margin: auto;
	color: #515151;
}
.cdt_1 {
	bottom: 8%;
}
.cdt_2 {
	bottom: 6%;
}
.cdt_wrapper colon {
	font-size: 1.0em;
	padding: 0 0.2em;
}
.cdt {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.cdt_txt {
	margin-right: 0.5em;
}
.cdt_txt span {
	display: block;
	line-height: 1;
	font-size: 1.2em;
}
.cdt_date {
	font-size: 2.2em;
}
.cdt_d {
	padding: 0 1.3em 0 1.7em;
}
.cdt_h {
	padding: 0 1.5em;
}
.cdt_m {
	padding: 0 1.4em;
}
.cdt_s {
	padding: 0 0.3em 0 2.0em;
}
.cdt_num {
	color: #fff;
	background-color: #000;
	padding: 0 0.15em;
	border-radius: 5px;
}
.cdt_time {
	text-align: center;
	font-size: 1.2em;
	margin-top: -0.8em;
}

/* SPのみ */
@media all and (max-width: 640px) {
	.cdt_wrapper small {
		font-size: 5.0vw;
	}
	.cdt_txt span {
		font-size: 3.0vw;
	}
	.cdt_date {
		font-size: 5.0vw;
	}
	.cdt_d {
		padding: 0 0 0 6.0vw;
	}
	.cdt_h {
		padding: 0 0 0 7.0vw;
	}
	.cdt_m {
		padding: 0 0 0 7.5vw;
	}
	.cdt_s {
		padding: 0 1.0vw 0 9.0vw;
	}
	.cdt_time {
		margin-top: -0.6em;
		font-size: 3.0vw;
	}
}
/* SP MoreSmall */
@media all and (max-width: 320px) {
	.cdt_m {
		padding: 0 0 0 7.0vw;
	}
}
/* SP MoreSmall */
@media all and (max-width: 260px) {
	.cdt_d {
		padding: 0 0 0 7.0vw;
	}
	.cdt_h {
		padding: 0 0 0 6.0vw;
	}
	.cdt_m {
		padding: 0 0 0 6.0vw;
	}
	.cdt_s {
		padding: 0 0 0 7.0vw;
	}
}

/* ---------------------------------------------------------------
	受け取り画面
--------------------------------------------------------------- */
/* 紙吹雪エリア */
.confetti{
	display: none;
	position: fixed;
	top: 0; left: 0;
	z-index: 2;
}
/* チケット受け取りページボタン・動画 */
.movie_dsp {
	width: 100%;
	vertical-align: bottom;
}

/* ---------------------------------------------------------------
	フッター
--------------------------------------------------------------- */
.footer_link{
	padding: 25px 2%;
	font-size: 20px;
	list-style: none;
}
.footer_link a{
	color: #0b4a99;
}
.copyright {
	padding: 10px;
	background-color: #7a377c;
	color: #fff;
	text-align: center;
	font-size: 1em;
}

