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

body{
	overflow-x: hidden;
	font-family: -apple-system, BlinkMacSystemFont, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "Helvetica Neue", "Yu Gothic", YuGothic, "メイリオ", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	margin:0!important;
}

/*img要素センタリング*/
img {
    display: block;
    margin: 0 auto;
}

/*インナー要素*/
.inner{
	width:1000px;
	margin:0 auto;
	position:relative;
	background-color:#150301;
	padding:0 0 47px;
}

main #mainContents{
	background-image:url(../img/bg_main.jpg);
	background-position:top;
	background-size:cover;
	background-repeat:no-repeat;
	position:relative;
}

main #mainContents:before{
	content: "";
	background-image: url(../img/title_sub_main.png);
	background-repeat: no-repeat;
	width: 340px;
	height: 71px;
	position: absolute;
	top:-3px;
	left:0;
	right: 0;
	margin: auto;
	z-index: 10;
}

/*タイトル*/
.titleWrap{
	background-image:url(../img/bg_title02.jpg);
	background-position:center top;
	background-size:cover;
	background-repeat:no-repeat;
	position:relative;
	height: 690px;
	padding: 40px 80px 40px;
}

.titleWrap.end{
	background-image:url(../img/bg_title.jpg);
}

.titleWrap h1 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto 20px;
}

.titleWrap .imgWrap01 {
	position: absolute;
	top: -30px;
	right: -10px;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
}

.titleWrap .imgWrap02 {
	position: absolute;
	top: 0px;
	right: 120px;
}

.titleWrap .imgWrap03{
	position: absolute;
	bottom: 0;
	right: 0;
}

.titleWrap:before{
	content: "";
	background-image: url(../img/img_confetti.png);
	background-repeat: no-repeat;
	width: 1100px;
	height: 850px;
	position: absolute;
	top: -120px;
	left: -80px;
}

/*画像ブロック*/
.imgArea{
}

.imgArea img{
	width: 100%;
}

/*テキスト*/
.textWrap{
	font-size:19px;
	color:#FFF;
	font-weight:bold;
	text-align:center;
	margin:20px 0 36px;
	line-height:1.5em;
}

/*イベント日時*/
.dateWrap{
	padding-top: 70px;
	margin-bottom:30px;
}

/*イベント告知*/
.eventWrap{
	background-image:url(../img/bg_event.png);
	margin-bottom:44px;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-size: cover;
	width: 700px;
	margin: 50px auto 44px;
	position: relative;
}

.eventWrap h2{
	position: absolute;
	top: -30px;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 10;
}

.eventWrap .eventGroup{
	box-sizing: border-box;
	width: 100%;
	list-style-type: none;
	padding: 35px 20px 30px;
}

.eventWrap li{
	box-sizing: border-box;
	position: relative;
}

.eventWrap li img{
	width:100%;
}

.eventWrap .event01{
	float: left;
	width: 50%;
}

.eventWrap .event02{
	float: right;
	width: 50%;
}

/*告知テキスト*/
.noticeWrap{
	background-color: #FFF;
	color: #231815;
	padding: 10px;
	text-align: center;
	font-size: 23px;
	line-height: 1.2em;
	width: 700px;
	margin: 0 auto 50px;
	font-weight: bold;
	box-sizing: border-box;
}

/*注意テキスト*/
.cautionWrap{
	width: 620px;
	margin: auto;
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 1px;
	line-height: 1.7em;
}

.cautionWrap .text{
	display: inline-block;
	padding-left:1em;
	text-indent:-1em;
}

/*電話ボタン*/
.telWrap{
	margin-bottom:50px;
	cursor: default;
    pointer-events: none;
}

/*確認メール*/
.mailWrap{
	color:#FFF;
	border: 1px solid #fff;
	margin: 2em 6em 4em;
	padding: 2em;
}

/*リンクボタン*/
.btnWrap{
	margin-bottom: 15px;
}

.btnWrap02{
	margin: 50px auto 20px;
}

/*フッター*/
footer{
	background-color:#150301;
	padding: 40px 90px;
	text-align:center;
}

footer .btn{
	display: inline-block;
}

/*改行クラス（PCのみ）*/
.breakLinePCOnly{
	display:block;
}

/*改行クラス（PC）*/
.breakLinePC{
	display:block;
}

/*改行クラス（SP）*/
.breakLineSP{
	display:inline;
}

.onlyPC{
	display:block  !important;
}

.onlySP{
	display:none  !important;
}

/*レスポンシブ用記述*/
/*画面サイズが1150px以下の場合*/
@media screen and (max-width: 1150px) {
	img{
		width:100%;
	}
	
	/*インナー要素*/
	.inner{
		width:100%;
		padding:0 20px 50px;
	}
	
	.titleWrap .imgWrap02{
		top: 10px;
		right: -5px;
		width:30%;
	}
	
	.eventWrap h2 {
		width: 60%;
		top: -9%;
	}
	
	.titleWrap .imgWrap02 {
		top: -35px;
		right: 10px;
		width: 25%;
	}	

	/*リンクボタン*/
	.btnWrap{
		margin-bottom: 30px;
	}
	
	.btnWrap02{
		width: 40%;
		margin: 50px auto 20px;
	}
}


/*レスポンシブ用記述*/
/*画面サイズが960px以下の場合*/
@media screen and (max-width: 960px) {
	/*タイトル*/
	.titleWrap{
		padding: 20px 0 0;
	}
	
	.telWrap img{
		width:100%;
	}
	
	.eventWrap {
		width: 100%;
	}
	
	.titleWrap .imgWrap01 {
		position: absolute;
		top: 30px;
		right: -10px;
		width: 35%;
	}
	
	/*告知テキスト*/
	.noticeWrap{
		font-size: 18px;
		width: 100%;
	}
	
	/*改行クラス（PCのみ）*/
	.breakLinePCOnly{
		display:inline;
	}
}

	/*イベント告知*/
	.eventWrap{
		background-size: contain;
	}


/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {
	img{
		width:100%;
	}
	
	.titleWrap {
		height: 490px;
	}
	
	.titleWrap:before {
		content: "";
		width: 120%;
		height: 500px;
		top: -120px;
		left: -50px;
	}
	
	.titleWrap .imgWrap01 {
		width: 30%;
	}
	
	.titleWrap .imgWrap02 {
		top: -35px;
		right: 10px;
		width: 25%;
	}
	
	/*インナー要素*/
	.inner{
		width:auto;
		padding:15px 20px;
	}
	
	/*テキスト*/
	.textWrap{
		font-size:16px;
		margin:20px 0 36px;
	}
	
	.eventWrap{
		margin: 50px auto 44px;
	}
	
	.eventWrap h2 {
		width: 50%;
		top: -5%;
	}
	
	/*告知テキスト*/
	.noticeWrap{
		font-size: 16px;
		margin: 0 auto 30px;
	}
	
	/*確認メール*/
	.mailWrap{
	font-size:14px;
	margin: 1em 0 4em;
	padding: 1em;
}

	/*イベント日時*/
	.dateWrap{
		padding-top: 40px;
		margin-bottom:10px;
	}
	
	/*イベント告知*/
	.eventWrap{
		margin-bottom:30px;
	}
	
	/*電話ボタン*/
	.telWrap{
		margin-bottom:30px;
		pointer-events: auto;
	}
	
	.telWrap img{
		width:100%;
	}
		
	/*リンクボタン*/
	.btnWrap {
		margin-bottom: 40px;
	}
	
	.btnWrap02{
		width: 60%;
		margin: 30px auto 0;
	}
	
	/*注意テキスト*/
	.cautionWrap {
		width: auto;
		font-size: 16px;
		line-height: 1.5em;
	}
	
	/*フッター*/
	footer{
		padding:30px 20px;
	}
	
	/*改行クラス（PCのみ）*/
	.breakLinePCOnly{
		display:inline;
	}
	
	/*改行クラス（SP）*/
	.breakLineSP{
		display:block;
	}
	
	/*改行クラス（PC）*/
	.breakLinePC{
		display:inline;
	}
	
	.onlyPC{
		display:none !important;
	}
	
	.onlySP{
		display:block  !important;
	}
}

/*画面サイズが480px以下の場合*/
@media screen and (max-width: 600px) {
	main #mainContents:before {
		content: "";
		width: 50%;
		background-size: 100%;
	}
	
	.titleWrap {
		height: 400px;
	}
	
	.titleWrap .imgWrap01 {
		top:0;
		width: 40%;
	}
	
	.titleWrap .imgWrap02 {
		top: -20px;
	}
	
	/*イベント告知*/
	
	.eventWrap h2 {
		width: 75%;
		top: -3%;
	}
	
	.eventWrap{
		background-image:url(../img/bg_event_sp.png);
		background-size: contain;
		width: 100%;
	}
	
	.eventWrap .event01{
		float: none;
		width: auto;
	}

	.eventWrap .event02{
		float: none;
		width: auto;
	}
	
}

/*画面サイズが480px以下の場合*/
@media screen and (max-width: 480px) {
	.titleWrap {
		height: 350px;
	}
}

/*回り込み解除クラス*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}