
body {
	background: url("../img/main_bg.jpg") top left / 50% repeat;
	font-family: "m-plus-2c", sans-serif;
	font-weight: 400;
	position: relative;
    left: 0;
    overflow-x: hidden;
	-webkit-text-size-adjust: 100%; /* iphone横向き 文字拡大防止 */
}
img {
	display: block;
	width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
a {
	text-decoration: none;
	color: #000;
	transition: all .3s;
}
a:hover {
	filter: brightness(1.1);
}
p {
	font-size: min(1.3vw,16px);
	line-height: 1.8;
}

:root {
    --red: #ca0f2a;
}
/*==================================================================================
ヘッダー
==================================================================================*/
header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
}
header .logo {
	display: block;
	width: 240px;
	margin: 0 0 0 auto;
	padding: 10px 20px;
	background: #fff;
}

/*==================================================================================
共通
==================================================================================*/
/* レイアウト */
section {
	padding: 4vw 0 0!important;
}
.container {
	width: 100%;
	max-width: 2400px;
    box-sizing: border-box;
	padding: 0 5vw;
	margin: auto;
	position: relative;
	z-index: 2;
}
.max1200 {
	max-width: 1200px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.row.align_center {
	align-items: center;
}
.row.align_start {
	align-items: flex-start;
}
.row.just_center {
	justify-content: center;
}
.row.just_start {
	justify-content: flex-start;
}

.mb_10 {
	margin-bottom: .5vw;
}
.mb_20 {
	margin-bottom: 1vw;
}
.mb_30 {
	margin-bottom: 1.5vw;
}
.mb_60 {
	margin-bottom: 3vw;
}
.mb_120 {
	margin-bottom: 6vw;
}

.wrap {
	display: inline-block;
}
.anker {
	padding-top: 5vw;
	margin-top: -5vw;
}

/* フォント */
.font_12 {
	font-size: max(.8vw, 12px);
}
.font_14 {
	font-size: max(1.2vw, 14px);
}
.font_16 {
	font-size: max(1.4vw, 16px);
}
.font_20 {
	font-size: max(1.8vw, 20px);
}
.font_24 {
	font-size: max(2.2vw, 24px);
}
.font_34 {
	font-size: max(3vw, 34px);
}
.font_46 {
	font-size: max(3.8vw, 46px);
}
.txt_center {
	text-align: center;
}
.bold {
	font-weight: 700;
}
.black {
	font-weight: 900;
}
.ttl {
	font-family: "sicgothicduex", sans-serif;
	font-weight: 400;
}
.ttl.bold {
	font-weight: 800;
}
.red {
	color: var(--red);
}
.white {
	color: #fff;
}
.line1 {
	line-height: 1;
}
.line1_2 {
	line-height: 1.2;
}
.line1_4 {
	line-height: 1.4;
}
.indent3 {
	padding-left: 3em;
	text-indent: -3em;
}

/* ボタン */
.btn {
	display: block;
	padding: .6em 3em;
	background: var(--red);
	border: 0.1em #fff solid;
	border-radius: 100px;
	color: #fff;
	font-size: max(2.4vw, 34px);
	font-family: "sicgothicduex", sans-serif;
	font-weight: 800;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.3);
}
.btn::after {
	content: "\025b6\0fe0e";
	display: inline-block;
	font-size: 0.3em;
	position: absolute;
	top: 50%;
	right: 3em;
	transform: translateY(-50%);
}
.btn.second {
	display: inline-block;
	width: auto;
	min-width: 0;
	background: rgba(255,255,255,0.5);
	border-color: var(--red);
	color: var(--red);
	font-size: max(1.4vw, 24px);
}
.btn.second::after {
	content: "\025bc";
	font-size: 0.5em;
	right: 2em;
}
.btn.disa {
	filter: grayscale(0.9) opacity(0.3);
	box-shadow: none;
	pointer-events: none;
}
.btn.second.disa {
	filter: grayscale(0.9) opacity(0.5);
	background: #fff;
}

/* アニメーション -----------*/
.animated.fadeinup {
	animation: fadeinup .6s;
}
@keyframes fadeinup {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinup.second {
	animation: fadeinup_2nd 1.2s;
}
@keyframes fadeinup_2nd {
	0% {opacity: 0; transform: translateY(30px);}
	50% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}
.animated.fadeinright {
	animation: fadeinright .6s;
}
@keyframes fadeinright {
	0% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.animated.fadeinright.second {
	animation: fadeinright_2nd 1.2s;
}
@keyframes fadeinright_2nd {
	0% {opacity: 0; transform: translateX(30px);}
	50% {opacity: 0; transform: translateX(30px);}
	100% {opacity: 1; transform: translateX(0);}
}
.yay {
    opacity: 0;
    transform: translateY(2px);
    transition: all 1s;
}
.yay.fadeinup {
    transform: translateY(20px);
}
.yay.on {
    transform: translateY(0);
    opacity: 1;
}
.yay.fadeinup.second.on {
    animation: yay_up_2nd 1.2s;
}
@keyframes yay_up_2nd {
	0% {opacity: 0; transform: translateY(20px);}
	16.66% {opacity: 0; transform: translateY(20px);}
	100% {opacity: 1; transform: translateY(0);}
}

/*==================================================================================
メイン
==================================================================================*/
section#main {
	position: relative;
}
section#main .img {
	width: 30vw;
	max-width: 800px;
	position: absolute;
	right: 5.5vw;
	bottom: -7vw;
	pointer-events: none;
}
h1 {
	font-size: max(2.6vw, 30px);
	font-weight: 700;
}
h1 span.nic {
	display: inline-block;
	padding: 10px 30px;
	background: var(--red);
	clip-path: polygon(0 10px, 10px 10px, 10px 0, calc(100% - 10px) 0, calc(100% - 10px) 10px, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 10px calc(100% - 10px), 0 calc(100% - 10px));
}
h1 span.ttl {
	display: inline-block;
	transform: skewX(-10deg);
}
h1 span.ttl.bold {
	font-size: max(5.4vw, 60px);
	text-shadow: 4px 4px 8px rgba(0,0,0,0.3);
}
.date {
	display: inline-block;
	padding: .1em .3em;
	background: rgba(255,255,255,0.5);
	font-size: max(3vw, 28px);
	text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}
.date span {
	display: inline-block;
	font-size: max(2.2vw, 24px);
}
.date span span {
	font-size: max(3.8vw, 46px);
	line-height: 1;
}
h2 {
	padding-right: 26vw!important;
	font-size: max(1.4vw, 20px);
	font-weight: 400;
	line-height: 1.8;
}
h3 {
	/*display: inline-block;
	padding-bottom: .06em!important;
	border-bottom: 0.1em var(--red) solid!important;*/
}
/* イベント詳細 --------------------------------------------------------------------*/
section#detail .boad {
	padding: 2vw 3vw;
	background: #fff;
	border: 0.15em var(--red) solid;
}
section#detail .boad .item {
	display: inline-block;
	margin-right: 0.5em;
	padding: 0.3em 0.6em;
	background: var(--red);
	color: #fff;
}
section#detail .boad .item.mt {
	margin-top: .5em;
}
.sepa {
	border-bottom: 1px #999 solid;
}
/* お問い合わせ先 ------------------------------------------------------------------*/
section#info .item {
	display: inline-block;
	padding: .4em 1em;
	background: #000;
	color: #fff;
}
section#info .item + div {
	width: calc(100% - 15vw);
}

/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 10vw 0 2vw!important;
}


/* ページトップへ戻るボタン */
.btn_pagetop {
	display: block;
	width: 40px;
	height: 40px;
	background: var(--red);
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 100;
}
.btn_pagetop span {
	display: block;
	width: 6px;
	height: 6px;
	border-top: 3px #fff solid;
	border-right: 3px #fff solid;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 45%;
	left: 50%;
}



.tb {display: none;}
.pc {display: inline;}
.sp {display: none;}

@media screen and (max-width : 960px) {
	.pc {display: none;}
	.tb {display: inline;}
	
	p { font-size: 14px; line-height: 1.6;}	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	header .logo {
		width: 200px;
		padding: 8px 10px;
	}
	/*==================================================================================
	共通
	==================================================================================*/
	/* レイアウト */
	section {
		padding: 60px 0 0!important;
	}
	.container {
		max-width: 780px;
		padding: 0 15px;
	}
	.mb_10 {
		margin-bottom: 8px;
	}
	.mb_20 {
		margin-bottom: 15px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mb_60 {
		margin-bottom: 40px;
	}
	.mb_120 {
		margin-bottom: 80px;
	}
	/* フォント */
	.font_12 {
		font-size: 12px;
	}
	.font_14 {
		font-size: 12px;
	}
	.font_16 {
		font-size: 14px;
	}
	.font_20 {
		font-size: 18px;
	}
	.font_24 {
		font-size: 22px;
	}
	.font_34 {
		font-size: 26px;
	}
	.font_46 {
		font-size: 34px;
	}
	/* ボタン */
	.btn {
		width: 100%;
		min-width: 0;
		padding: .6em 3em;
		font-size: max(3.8vw, 26px);
		text-align: center;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
		position: relative;
		z-index: 2;
	}
	.btn::after {
		font-size: 0.5em;
		right: 2em;
	}
	.btn.second {
		font-size: max(1.8vw, 20px);
	}
	/*==================================================================================
	メイン
	==================================================================================*/
	section#main {
		margin-bottom: 0;
	}
	section#main .img {
		width: 32vw;
		min-width: 140px;
		position: absolute;
		right: 6vw;
		bottom: auto;
		/*top: 29%;*/
		top: 32%;
	}
	h1 {
		font-size: max(4vw, 20px);
	}
	h1 span.nic {
		padding: 8px 20px;
		clip-path: polygon(0 8px, 8px 8px, 8px 0, calc(100% - 8px) 0, calc(100% - 8px) 8px, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 8px calc(100% - 8px), 0 calc(100% - 8px));
	}
	h1 span.ttl.bold {
		font-size: max(9.1vw, 38px);
		text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
	}
	.date {
		margin-bottom: 15vw;
		font-size: max(4vw, 20px);
		text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
	}
	.date span {
		font-size: max(3vw, 14px);
	}
	.date span span {
		font-size: max(6vw, 26px);
	}
	h2 {
		padding-right: 0!important;
		font-size: max(1.9vw, 12px);
	}
	/* イベント詳細 --------------------------------------------------------------------*/
	section#detail .boad .item {
		margin: 0 0 10px;
		padding: 0.4em 0.6em;
	}
	section#detail .boad .item.mt {
		margin-top: 0;
	}
	section#detail .boad .item + p {
		width: 100%;
	}
	/* お問い合わせ先 ------------------------------------------------------------------*/
	section#info .item {
		margin: 0 0 20px;
	}
	section#info .item + div {
		width: 100%;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	footer {
		padding: 40px 0 15px!important;
	}

	/* ページトップへ戻るボタン */
	.btn_pagetop {
		width: calc(30px - 2px);
		height: calc(30px - 2px);
	}
	.btn_pagetop span {
		width: 6px;
		height: 6px;
		border-width: 2px;
	}
}


@media screen and (max-width : 460px) {
	.tb {display: none;}
	.sp {display: inline;}
	
	header .logo {
		padding: 5px 10px;
	}
	.mb_60 {
		margin-bottom: 30px;
	}
	.mb_120 {
		margin-bottom: 60px;
	}
	/* フォント */
	.font_12 {
		font-size: 10px;
	}
	.font_20 {
		font-size: 16px;
	}
	.font_24 {
		font-size: 20px;
	}
	.font_34 {
		font-size: 24px;
	}
	.font_46 {
		font-size: 30px;
	}
	/* ボタン */
	.btn {
		padding: .6em 2em;
		font-size: max(3.6vw, 22px);
	}
	.btn.second {
		font-size: max(1.8vw, 16px);
	}
	/*==================================================================================
	メイン
	==================================================================================*/
	section#main .img {
		width: 34vw;
		min-width: 140px;
		position: absolute;
		bottom: auto;
		top: 160px;
	}
	h1 span.ttl {
		transform: skewX(-7deg);
	}
	h1 span.ttl.bold {
		text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	}
	.date {
		margin-bottom: 60px;
		text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
	}
	h2 {
		margin-bottom: 30px!important;
	}
	/*==================================================================================
	フッター
	==================================================================================*/
	/* ページトップへ戻るボタン */
	.btn_pagetop {
		display: none!important;
	}
}

