@charset "utf-8";

/* 背景 */

.l-content-wrapper {
	padding-bottom: 160px;
	overflow: hidden;
	background-color: #43bbb2;
	background-image:
		url(../images/parts-bg-frame-corner-lt.png),
		url(../images/parts-bg-frame-corner-rt.png),
		url(../images/parts-bg-frame-corner-lb.png),
		url(../images/parts-bg-frame-corner-rb.png),

		url(../images/parts-bg-frame-side-l-pc.png),
		url(../images/parts-bg-frame-side-r-pc.png),

		url(../images/parts-bg.png);
	background-repeat:
		no-repeat,
		no-repeat,
		no-repeat,
		no-repeat,

		repeat-y,
		repeat-y,

		no-repeat;
	background-position:
		left top,
		right top ,
		left bottom,
		right bottom,

		left top,
		right top,

		center top;
	background-size:
		500px auto,
		500px auto,
		500px auto,
		500px auto,

		200px auto,
		200px auto,

		100% 100%;
}

@media screen and (min-width: 768px) and (max-width: 1119px) {

}

@media screen and (max-width: 767px) {
	.l-content-wrapper {
		padding-bottom: 30vw;
		background-image:
			url(../images/parts-bg-frame-corner-lt.png),
			url(../images/parts-bg-frame-corner-rt.png),
			url(../images/parts-bg-frame-corner-lb.png),
			url(../images/parts-bg-frame-corner-rb.png),

			url(../images/parts-bg-frame-side-l-sp.png),
			url(../images/parts-bg-frame-side-r-sp.png),

			url(../images/parts-bg.png);
	background-position:
		left top,
		right top ,
		left bottom,
		right bottom,

		left top,
		right top,

		center top;
		background-size:
			60vw auto,
			60vw auto,
			60vw auto,
			60vw auto,

			22vw auto,
			22vw auto,

			100% 100%;
	}
}

/* section-head */

.section-head {
	position: relative;
	overflow: hidden;
	padding: 50px 0 0;;
}

@media screen and (max-width: 767px) {
	.section-head {
		padding: 15vw 0 0;;
	}
}

.kv {
	position: relative;
	overflow: hidden;
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
}

.kv__image {
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 1119px) {
	.kv__image {
	}
}

@media screen and (max-width: 767px) {
	.kv__image {
	}
}

.kv__image__alt {
	display: none;
}

.kv__image__image {
}

.kv__image__image--pc {
	display: block;
	width: 100%;
}

.kv__image__image--sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.kv__image__image--pc {
		display: none;
	}

	.kv__image__image--sp {
		display: block;
		width: 100%;
	}
}

/* date */

.date {
	position: relative;
	overflow: hidden;
	max-width: 590px;
	width: 100%;
	margin: 30px auto 0;
}

@media screen and (max-width: 767px) {
	.date {
		margin-top: 6vw;
	}
}

.date__image__alt {
	display: none;
}

.date__image {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.date__image {
	}
}

.date__image--pc {
	display: block;
}

.date__image--sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.date__image {
	}

	.date__image--pc {
		display: none;
	}

	.date__image--sp {
		display: block;
	}
}

/* section-body */

.section-body {
}

@media screen and (max-width: 1119px) {
	.section-body {
		padding: 0 7vw;;
	}
}

@media screen and (max-width: 767px) {
	.section-body {
		padding: 0 7vw;;
	}
}

.detail {
	position: relative;
	max-width: 800px;
	margin: 0 auto 0;
}

@media screen and (max-width: 1119px) {
	.detail {
		max-width: none;
		margin: 0;
	}
}

@media screen and (max-width: 767px) {
	.detail {
		max-width: none;
		margin: 0;
	}
}

.detail-item {
	position: relative;
	overflow: hidden;
	margin-top: 40px;
	border-radius: 16px;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.detail-item {
		margin-top: 10vw;
		border-radius: 8px;
	}
}

.detail-item + .detail-item {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.detail-item + .detail-item {
		margin-top: 10vw;
		margin-left: -7vw;;
		margin-right: -7vw;;
	}
}

.detail__btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 35px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.detail__btn-anchor {
	position: relative;
	display: block;
	width: auto;
	margin: 0 auto;
	padding: 20px 20px;
	border-radius: 500px;
	background: #ea6896;
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	opacity: 1;
	transition: background-color .5s;
}

@media screen and (max-width: 1119px) {
	.detail__btn {
		bottom: 3.5vw;
		width: auto;
	}
	.detail__btn-anchor {
		width: 80%;
		padding: 3vw 0;
	}
}

@media screen and (max-width: 767px) {
	.detail__btn {
		bottom: 6vw;
		width: auto;
	}
	.detail__btn-anchor {
		width: 80%;
		padding: 6vw 0;
		font-size: 15px;
	}
}
	
.detail__btn-anchor:hover {
	opacity: 1;
	background-color: #f29200;
	transition: background-color .1s;
}

@media screen and (max-width: 1119px) {
	.detail__btn-anchor:hover {
		opacity: 1;
		background-color: #ea6896;
		transition: none;
	}
}

.detail__btn-anchor > .icon {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -.4em;
    font-size: 15px;
    color: #fff;
}

.detail__image__alt {
	display: none;
}

.detail__image {
	display: block;
	width: 100%;
	height: auto;
}

@media screen and (max-width: 767px) {
	.detail__image {
	}
}

.detail__image--pc {
	display: block;
}

.detail__image--sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.detail__image {
	}

	.detail__image--pc {
		display: none;
	}

	.detail__image--sp {
		display: block;
	}
}

/* ボタン */

.detail__btn-img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.detail__btn-img--pc {
	display: block;
}

.detail__btn-img--sp {
	display: none;
}

@media screen and (max-width: 767px) {
	.detail__btn-img--pc {
		display: none;
	}

	.detail__btn-img--sp {
		display: block;
	}
}

/* マップの会場アイコン */

.detail__mapicon-holder {
	position: absolute;
	left: 54%;
	top: 43.5%;
	width: 1px;
	height: 1px;
	overflow: visible;
}

.detail__mapicon-img {
	display: block;
	width: 60px;
	height: 60px;
	margin-top: -30px;
	margin-left: -30px;
	/* filter: drop-shadow(0 3px 3px rgba(0,0,0,0.2)); */
}

@media screen and (max-width: 767px) {
	.detail__mapicon-holder {
		left: 51.5%;
		top: 44%;
	}

	.detail__mapicon-img {
		width: 12vw;
		height: 12vw;
		margin-top: -6vw;
		margin-left: -6vw;
		/* filter: drop-shadow(0 3px 3px rgba(0,0,0,0.2)); */
	}
}

/* 注記 */

.detail-note {
	padding: 0 30px 30px;
	font-feature-settings: "palt";
	text-align: justify;
}

@media screen and (max-width: 767px) {
	.detail-note {
		padding: 0 20px 20px;
	}
}

.detail-note * {
	color: #000;
}

/* note */

.note {
	max-width: 800px;
	margin: 0 auto 0;
	overflow: hidden;
	font-feature-settings: "palt";
	text-align: justify;
	color: #fff;
}

.note * {
	color: #fff;
}

@media screen and (max-width: 1119px) {
	.note {
		margin: 20px 20px 0;
	}
}

@media screen and (max-width: 767px) {
	.note {
		margin: 10vw 0 0;
	}
}

/* 泡エフェクト */

.yurayura--l {
	width: 20vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	transform: scaleY(-1);
	user-select: none;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.yurayura--l {
		width: 50vw;
	}
}

.yurayura--r {
	width: 20vw;
	height: 100vh;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 1;
	transform: scaleX(-1) scaleY(-1);
	user-select: none;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.yurayura--r {
		width: 50vw;
	}
}
