@charset "UTF-8";

/* ローディング */
#js-loading.hide {
	opacity: 0;
	pointer-events: none;
	transition: opacity 500ms;
}

.loading {
	position: fixed;
	z-index: 99;
	width: 100%;
	height: 100%;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(#f3b020 0%, #f98a00 100%);
}

.loading__animation {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		radial-gradient(farthest-side, #fdcf73 94%, #0000) top/8px 8px no-repeat,
		conic-gradient(#0000 30%, #fdcf73);
	-webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - 8px), #000 0);
	animation: l13 1s infinite linear;
}

@keyframes l13 {
	100% {
		transform: rotate(1turn)
	}
}

.loading__text {
	font-size: 12px;
	color: #fdcf73;
}

/* 背景YouTube */
#youtubeWrap {
	position: fixed;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

#youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*縦横幅指定*/
	width: 177.77777778vh;
	/* 16:9 の幅→16 ÷ 9＝ 177.77% */
	height: 56.25vw;
	/* 16:9の幅 → 9 ÷ 16 = 56.25% */
	min-height: 100%;
	min-width: 100%;
}

/*youtubeがクリックされないためのマスク*/
#youtube-mask {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

/* 紙吹雪 */
#canvas {
	position: absolute;
	z-index: 10;
}

/* main */
.dream-main {
	padding-left: 0;
	padding-right: 0;
	position: relative;
	background-image: none;
	overflow-x: hidden;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}

.dream-main::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(rgba(243, 172, 31, 0) 0%, rgba(211, 84, 0, 0.35) 100%);
}

@media only screen and (max-width: 920px) {
	.dream-main {
		background-size: 150%;
	}
}

.dream-main img {
	width: 100%;
	height: auto;
}

.dream-main a {
	display: block;
}

@media (hover: hover) and (pointer: fine) {
	.dream-main a:hover {
		transition: all 0.3s ease-in-out;
		filter: contrast(1.25);
		transform: scale(1.05) !important;
	}
}

/* ファーストビュー */
.dream-fv {
	width: 100%;
	/* max-width: 1500px; */
	height: calc(1500/1200*100vw);
	max-height: 1500px;
	min-height: 750px;
	margin: max(-600px, calc(-600/1200*100vw)) auto 0;
	position: relative;
	overflow: hidden;
}

.dream-fv::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-image: linear-gradient(#f4af1f 40%, rgba(211, 84, 0, 0) 100%);
}

.dream-title {
	width: clamp(280px, calc(349/1200*100vw), 349px);
	margin: 0 auto;
	position: relative;
	z-index: 14;
}

.dream-fv__mainimg img,
.dream-fv__bgimg img {
	width: calc(1500/1200*100vw);
	max-width: 1500px;
	min-width: 800px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.dream-fv__mainimg img {
	z-index: 12;
}

.dream-fv__bgimg img {
	z-index: 9;
}

.dream-fv__challenge img {
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 13;
	width: clamp(240px, calc(324/1200*100vw), 324px);
}

.dream-fv__get img {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 14;
	width: clamp(291px, calc(646/1200*100vw), 646px);
}

.dream-fv__date {
	position: absolute;
	top: 77%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 29.5em;
	z-index: 15;
	font-size: clamp(12px, calc(17/1024*100vw), 17px);
	font-weight: 700;
	line-height: 2.5em;
	text-align: center;
	color: #fff;
	background-image: url(/assets/img/prospi_a_10th/fv_date_bg.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.dream-fv__date span {
	font-size: 1.5em;
	font-weight: 800;
}

/* メインコンテンツ */
.dream-content {
	position: relative;
	z-index: 15;
	margin-top: max(-280px, calc(-280/1200*100vw));
	padding: 0 15px;
}

/* ファーストビューとメインコンテンツの上端からの位置調整 */
@media only screen and (max-width: 767px) {
	.dream-fv {
		margin-top: max(-350px, calc(-350/767*100vw));
	}

	.dream-fv__get img {
		top: 73%;
	}

	.dream-fv__date {
		top: 80%;
	}

	.dream-content {
		margin-top: max(-140px, calc(-140/767*100vw));
	}
}

@media only screen and (max-width: 600px) {
	.dream-fv {
		margin-top: min(-270px, calc(-270/600*100vw));
	}

	.dream-content {
		margin-top: min(-110px, calc(-110/600*100vw));
	}
}

/* 応募券 */
.dream-ticket {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(253, 216, 6, 0.7);
	padding: clamp(10px, calc(20/1024*100vw), 20px);
	border-radius: clamp(10px, calc(20/1024*100vw), 20px);
	display: flex;
	align-items: center;
	gap: clamp(8px, calc(16/1024*100vw), 16px);
	margin-bottom: clamp(20px, calc(40/1024*100vw), 40px);
}

.dream-ticket__head {
	flex: 1;
}

.dream-ticket__img {
	border-radius: 50%;
	overflow: hidden;
	aspect-ratio: 3/2;
}

.dream-ticket__body {
	flex: 3;
	font-size: clamp(14px, calc(14/375*100vw), 21px);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.dream-ticket__body .is-pink {
	color: #ea5b5b;
}

.dream-ticket__body .is-big {
	font-size: 1.5em;
}

/* ダウンロード */
.dream-dl {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(253, 216, 6, 0.7);
	padding: clamp(15px, calc(30/1024*100vw), 30px);
	border-radius: clamp(10px, calc(20/1024*100vw), 20px);
	display: flex;
	align-items: center;
	gap: clamp(8px, calc(16/1024*100vw), 16px);
}

.dream-dl__head {
	flex: 1;
}

.dream-dl__body {
	flex: 3;
}

.dream-dl__title {
	font-size: clamp(20px, calc(20/375*100vw), 30px);
	font-weight: 800;
	line-height: 0.9;
}

.dream-dl__title span {
	font-size: 0.67em;
}

.dream-dl__icon {
	display: flex;
	justify-content: space-between;
	gap: clamp(5px, calc(10/1024*100vw), 10px);
	width: 100%;
	margin-top: clamp(5px, calc(10/1024*100vw), 10px);
}

/* キャンペーン */
.dream-campaign {
	width: 100;
	max-width: 980px;
	margin: clamp(25px, calc(40/1024*100vw), 40px) auto 0;
}

.dream-campaign__inner {
	border: solid clamp(4px, calc(8/1024*100vw), 8px) #ea5b5b;
	border-radius: clamp(10px, calc(20/1024*100vw), 20px);
	padding: clamp(25px, calc(50/1024*100vw), 50px);
	background-color: rgba(255, 255, 255, 0.8);
}

.dream-join__title {
	font-size: clamp(17px, calc(30/1024*100vw), 30px);
	font-weight: 700;
	color: #ea5b5b;
	text-align: center;
	width: fit-content;
	margin: 0 auto 1.25em;
	position: relative;
}

.dream-join__title::after {
	content: "";
	width: 106%;
	height: 0.25em;
	position: absolute;
	bottom: -0.5em;
	left: -3%;
	background-color: #ea5b5b;
}

.dream-join__text {
	font-size: clamp(10px, calc(16/1024*100vw), 16px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.dream-join__text.is-pink {
	font-size: clamp(10px, calc(18/1024*100vw), 18px);
	color: #ea5b5b;
}

.dream-join__link {
	margin: clamp(16px, calc(32/1024*100vw), 32px) 0;
}

.dream-join__link a {
	font-size: clamp(12px, calc(19/1024*100vw), 19px);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1;
	color: #fff;
	background-color: #ea5b5b;
	width: 20em;
	padding: 0.75em 0;
	text-align: center;
	border-radius: 1.25em;
	margin: 0 auto;
}

.dream-join__link.is-orange a {
	background-color: #ff8003;
}

.dream-ppc {
	border-top: #ea5b5b 5px dotted;
	margin-top: clamp(20px, calc(30/1024*100vw), 30px);
	padding-top: clamp(20px, calc(30/1024*100vw), 30px);
}

.dream-ppc__title {
	width: clamp(178px, calc(356/1024*100vw), 356px);
	margin: 0 auto clamp(15px, calc(25/1024*100vw), 25px);
}

/* モーダル共通部分 */
.dream-modal {
	width: calc(100vw - 15px*2);
	max-width: 625px;
	border: solid clamp(4px, calc(8/1024*100vw), 8px) #ea5b5b;
	border-radius: clamp(10px, calc(20/1024*100vw), 20px);
	padding: clamp(15px, calc(25/1024*100vw), 25px) clamp(20px, calc(50/1024*100vw), 40px) clamp(20px, calc(50/1024*100vw), 40px);
	background-color: #fff2d4;
	position: relative;
}

.dream-modal__close {
	width: clamp(30px, calc(60/1024*100vw), 60px);
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(40%, -40%);
	cursor: pointer;
}

.dream-modal__close img {
	width: 100%;
	height: auto;
}

/* キャンペーン参加方法 */
.dream-howto__title {
	font-size: clamp(21px, calc(21/375*100vw), 36px);
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #ea5b5b;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	border-bottom: solid clamp(2px, calc(2/375*100vw), 4px) currentColor;
}

.dream-howto__test {
	font-size: clamp(12px, calc(12/375*100vw), 18px);
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.44;
	color: #696969;
}

.dream-howto__test.is-pink {
	color: #ea5b5b;
}

.dream-howto p:not(:first-child) {
	margin-top: 1em;
}

/* 商品一覧 */
.dream-items {
	margin-top: clamp(40px, calc(60/1024*100vw), 60px);
}

.dream-items__title {
	width: clamp(110px, calc(200/1024*100vw), 200px);
	margin: 0 auto clamp(15px, calc(35/1024*100vw), 35px);
}

.dream-items__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	row-gap: 25px;
	width: 100%;
	max-width: 1085px;
	margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
	.dream-items__list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width: 600px) {
	.dream-items__list {
		grid-template-columns: 1fr;
	}
}

.dream-items__list>a {
	background-image: url(/assets/img/prospi_a_10th/item_bg.png);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: solid 3px #000;
	border-radius: 20px;
	box-shadow: 0 7px 0 #000;
	padding: clamp(15px, calc(25/1024*100vw), 25px);
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 1em;
}

.dream-item__title {
	font-size: clamp(15px, calc(15/375*100vw), 24px);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.2;
}

.dream-item__note {
	font-size: clamp(15px, calc(15/375*100vw), 24px);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-align: center;
	color: #ea5b5b;
}

/* 球団選択モーダル */
.dream-teams__title {
	font-size: clamp(23px, calc(23/375*100vw), 36px);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.28;
	color: #ea5b5b;
	margin-bottom: 0.75em;
}

.dream-teams__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(12.5px, calc(25/1024*100vw), 25px);
}

.dream-teams__list a {
	display: block;
}

@media (hover: hover) and (pointer: fine) {
	.dream-teams__list a:hover {
		transition: all 0.3s ease-in-out;
		filter: contrast(1.25);
		transform: scale(1.05);
	}
}

.dream-teams__list a img {
	width: 100%;
}

/* スマホ横置きモーダル内球団選択レイアウト調整 */
@media (orientation: landscape) and (max-height: 1023px) {
	.dream-teams__list {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (orientation: landscape) and (max-height: 767px) {
	.dream-modal {
		padding: 15px;
	}

	.dream-teams__title {
		font-size: 23px;
	}

	.dream-teams__list {
		grid-template-columns: repeat(6, 1fr);
	}
}

.games-store-banner {
	max-width: 500px;
	margin: 25px auto;
}

.campaign-notes {
	max-width: 1085px;
	margin: 0 auto;
	font-size: small;
	text-align: center;
}
.campaign-notes p {
	line-height: 1.5;
}
.campaign-notes a {
	display: inline;
}
