@charset "utf-8";
/* CSS Document */

/* ==============================
 * Google Fonts(BIZ UDPGothic) *
============================== */
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');

.eventWebpage {
  font-family: 'BIZ UDPGothic', sans-serif;
	font-weight: 400;
}

.topTxt {
	text-align: center;
	font-size: 18px;
	line-height: 1.75em;
}

.topTxt span {
	font-size: 24px;
	font-weight: 700;
	display: inline-block;
	margin: 0 0 0.5em;
}

.topTxt p:nth-of-type(2) {
  margin: 1em 0 0;
}

.conversion {
	margin: 2em 0 0;
	text-align: center;
}

.conversion a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #0099e3 !important;
  font-size: 24px;
  border-radius: 0px;
  width: 18em;
  font-weight: 700;
  border: 3px solid #0099e3;
  transition: 0.3s;
  box-shadow: 7px 7px 0px 0px rgba(0, 66, 142, 1);
  background-color: #ffee10;
  padding: 1em 0;
  margin: 0 auto;
  font-weight: 700;
}

.conversion a:hover {
  box-shadow: 0 0 #00428e;
  color: #ffee10 !important;
  background-color: #00428e;
	opacity: 1;
	/* border: 3px solid #fff100; */
}

.conversion span {
	display: block;
	margin: 1em 0 0;
}

#floating_bnr {
	position: fixed;
	/* width: 150px; */
	right: 30px;
	bottom: 120px;
	opacity: 0;
	z-index: 100;
	text-align: center;
}

#floating_bnr a {
	position: relative;
	display: block;
	text-decoration: none;
	background: #00428e;
	padding: 1em 0;
	width: 12em;
	border-radius: 100vh;
	color: #ffee10 !important;
  font-weight: 700;
}

#floating_bnr span {
	font-size: 10px;
	background: rgba(255, 255, 255, 0.5);
	display: inline-block;
	padding: 0 0.25em;
}

.eventWebpage .red {
  color: #ff0000;
}

.pic_gp {
	display: flex;
	flex-wrap: wrap;
  align-items: flex-end;
	/* justify-content: space-between; */
}

.pic_gp li {
	text-align: center;
	width: 40%;
	font-size: 18px;
}

.pic_gp li:nth-of-type(1) {
  margin: 0 5% 0 0;
}

.pic_gp li:nth-of-type(2) {
  width: 32%;
}

.pic_gp li:nth-of-type(n+4) {
	margin: 2% 0 0;
}

.pic_gp li img {
	vertical-align: middle;
	margin: 0 0 0.25em;
}

.pic_gp li span {
	font-size: 14px;
}

.playguide li {
	display: flex;
}

.playguide li span:first-child {
	width: 12em;
}

.entry_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff !important;
  font-size: 18px;
  border-radius: 0.5em;
  width: 16em;
  position: relative;
  transition: 0.3s;
  background: #0099e3;
  padding: 1em 1em 1em 0;
  margin: 1em 0 0.5em;
}

.entry_btn::before,
.entry_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform-origin: 100% 50%;
  height: 2px;
  width: 1em;
  background: #ffffff;
  border-radius: 4px;
  will-change: transform;
  transition: .3s;
}

.entry_btn::before {
  transform: translateY(-50%) rotate(30deg);
}

.entry_btn::after {
  transform: translateY(-50%) rotate(-30deg);
}

.entry_btn:hover {
  text-decoration: none;
  opacity: 0.9;
}

.entry_btn:hover::before {
  transform: translate(0.5em, -50%) rotate(30deg);
}

.entry_btn:hover::after {
  transform: translate(0.5em, -50%) rotate(-30deg);
}

.entry_note {
  font-weight: 400;
  font-size: 14px;
}

.deadline {
  color: #ff0000;
  margin: 0.5em 0 0;
}

.entry_other .program {
	display: flex;
	justify-content: space-evenly;
	font-weight: 700;
}

.entry_other .program dl {
	width: 48%;
}

.entry_other .program .part_ttl {
	font-size: 18px;
}

.entry_other .program .part_item {
	margin: 0.5em 0 0;
}

.entry_other .program dt {
	font-size: 16px;
}

.entry_other .program dt span {
	font-size: 14px;
}

.entry_other .program dd {
	color: #ff8d24;
}

.entry_other .caution {
	margin: 2em 0 0;
	padding: 2em 0 0;
	border-top: 2px dashed #bdd9ff;
	line-height: 1.75em;
}

.entry_other .caution span {
	font-size: 16px;
	font-weight: 700;
	margin: 0 0 0.25em;
	display: inline-block;
}

@media screen and (max-width: 899px) {
	.topTxt {
		text-align: left;
		font-size: 4vw;
	}
	
	.topTxt span {
		font-size: 5vw;
	}

	.conversion a {
		font-size: 4.5vw;
		width: 90%;
	}

  #floating_bnr {
		right: 2%;
    bottom: 150px;
    z-index: 3;
  }

  #floating_bnr a {
		margin: 0 0 0 auto;
		width: 10em;
	}

	#floating_bnr span {

	}

	.pic_gp li {
		width: 50%;
		font-size: 4vw;
	}

  .pic_gp li:nth-of-type(2) {
    width: 42%;
  }

	.pic_gp li:nth-of-type(n+3) {
		margin: 5% 0 0;
	}

	.pic_gp li span {
		font-size: 3vw;
	}

	.playguide li {
		display: block;
	}

	.playguide li:nth-of-type(n+2) {
		margin: 0.5em 0 0;
	}

	.playguide li span:first-child {
		display: block;
		width: auto;
	}

	.playguide li span:nth-of-type(2) {
		padding-left: 1em;
	}

	.playguide li:nth-of-type(6) span:nth-of-type(2) {
		display: none;
	}

  .entry_btn {
    font-size: 16px;
  }

  .entry_note {
    font-size: 12px;
  }

	.entry_other .program {
		display: block;
	}

	.entry_other .program dl {
		width: auto;
	}

	.entry_other .program dl:nth-of-type(2) {
		margin: 2em 0 0;
	}

	.entry_other .program .part_ttl {
		font-size: 16px;
	}

	.entry_other .program dt {
		font-size: 14px;
	}

	.entry_other .program dt span {
		font-size: 12px;
	}

	.entry_other .program dt span.sp-speace {
		font-size: 16px;
		width: 5em;
		display: inline-block;
	}

	.entry_other .caution span {
		font-size: 14px;
	}
}