@charset "UTF-8";


:where(.mod_award_2025) .font_heading {
	font-family: "kinkakuji", sans-serif;
	font-weight: 700;
	font-style: normal;
}

:where(.mod_award_2025) .font_bold {
	font-weight: 600;
	font-style: normal;
}

:where(.mod_award_2025) .font_gold {
	color: #c09d4c;
}

:where(.mod_award_2025) .award_deferred_image {
	position: absolute;
	inset: 0;
	display: block;
	background:
		linear-gradient(110deg, rgba(255, 255, 255, .08) 8%, rgba(255, 255, 255, .18) 18%, rgba(255, 255, 255, .08) 33%),
		radial-gradient(circle at top, rgba(192, 157, 76, .2), rgba(0, 0, 0, .14) 56%, rgba(0, 0, 0, .28));
	background-size: 220% 100%, cover;
	animation: awardImageSkeleton 1.4s linear infinite;
}

:where(.mod_award_2025) .award_deferred_image.is-loaded {
	background: none;
	animation: none;
}

:where(.mod_award_2025) .award_deferred_image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	opacity: 0;
	transition: opacity .28s ease;
}

:where(.mod_award_2025) .award_deferred_image.is-loaded img {
	opacity: 1;
}

@keyframes awardImageSkeleton {
	0% {
		background-position: 100% 0, center;
	}

	100% {
		background-position: -100% 0, center;
	}
}

/* Award is mounted inside a sliding tab panel, so AOS can leave nodes hidden. */
:where(.mod_award_2025) [data-aos] {
	opacity: 1 !important;
	transform: none !important;
	transition-property: none !important;
}


/* all,html,body,layout */
:where(.mod_award_2025) * {
	font-size: 20px;
}

/* fixed decorations should never block UI interactions (e.g., the outer tabs) */
:where(.mod_award_2025) .background,
:where(.mod_award_2025) .frame,
:where(.mod_award_2025) .decolation_left,
:where(.mod_award_2025) .decolation_right,
:where(.mod_award_2025) .border_top,
:where(.mod_award_2025) .border_left,
:where(.mod_award_2025) .border_right {
	pointer-events: none;
}


/*---------------------------------------------------------------*\
$heading
\*---------------------------------------------------------------*/

:where(.mod_award_2025) .wrap_heading {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

:where(.mod_award_2025) .decolation_heading {
	width: 140px;
	aspect-ratio: 5/1;
	background-size: contain;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../img/awards/decolation_headline.svg);
	margin: 0 auto;
}

:where(.mod_award_2025) .heading {
	font-size: 56px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) .wrap_heading {
		gap: 12px;
	}

	:where(.mod_award_2025) .decolation_heading {
		width: 100px;
	}

	:where(.mod_award_2025) .heading {
		font-size: 28px;
	}
}


/*---------------------------------------------------------------*\
$header
\*---------------------------------------------------------------*/

:where(.mod_award_2025) header {
	width: 100%;
	height: 64px;
	position: fixed;
	right: 0px;
	bottom: 0px;
	z-index: 5;
}

:where(.mod_award_2025) header .wrap_heading {
	gap: 8px;
	flex-direction: row;
}

:where(.mod_award_2025) header .icon {
	width: 22px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) header {
		height: 48px;
	}

	:where(.mod_award_2025) header * {
		font-size: 14px;
	}

	:where(.mod_award_2025) header .icon {
		width: 18px;
	}
}


/*---------------------------------------------------------------*\
$body
\*---------------------------------------------------------------*/

/* backgorund */
:where(.mod_award_2025) .background {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 0;
	background-image: url('../img/awards/awards_background.jpg');
	/* color */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	width: 100%;
	overflow: hidden;
}

:where(.mod_award_2025) .background .bg-overlay-white {
	position: absolute;
	inset: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	pointer-events: none;
	opacity: 0;
	/* 最初は見せない（color が見える） */
	will-change: opacity;
}


/* frame */
:where(.mod_award_2025) .frame {
	width: calc((100% - 40px));
	height: calc((100vh - 30px));
	position: fixed;
	z-index: 2;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	border: solid 1.5px #c09d4c;
}


/* decolations */
:where(.mod_award_2025) .decolation_left {
	position: fixed;
	top: 10px;
	left: 10px;
	background-image: url('../img/awards/decolation_left.png');
	width: 550px;
	aspect-ratio: 1.14/1;
	z-index: 1;
	background-size: contain;
	background-repeat: no-repeat;
	mix-blend-mode: screen;
}

:where(.mod_award_2025) .decolation_right {
	position: fixed;
	top: 10px;
	right: 10px;
	background-image: url('../img/awards/decolation_right.png');
	width: 550px;
	aspect-ratio: 1.14/1;
	z-index: 1;
	background-size: contain;
	background-repeat: no-repeat;
	mix-blend-mode: screen;
}

/* borders */
:where(.mod_award_2025) .border_top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background-color: #c09d4c;
	z-index: 5;
}

:where(.mod_award_2025) .border_left {
	position: fixed;
	top: 0;
	left: 0;
	width: 10px;
	height: 100vh;
	background-color: #c09d4c;
	z-index: 2;
}

:where(.mod_award_2025) .border_right {
	position: fixed;
	top: 0;
	right: 0;
	width: 10px;
	height: 100vh;
	background-color: #c09d4c;
	z-index: 2;
}


@media screen and (max-width: 1200px) {

	/* decolation */
	:where(.mod_award_2025) .decolation_left {
		width: 400px;
	}

	:where(.mod_award_2025) .decolation_right {
		width: 400px;
	}
}


@media screen and (max-width: 800px) {

	/* decolation */
	:where(.mod_award_2025) .decolation_left,
	:where(.mod_award_2025) .decolation_right {
		width: 320px;
	}
}


@media screen and (max-width: 680px) {

	/* decolation */
	:where(.mod_award_2025) .decolation_left,
	:where(.mod_award_2025) .decolation_right {
		width: 320px;
	}

	:where(.mod_award_2025) .decolation_left {
		left: -90px;
	}

	:where(.mod_award_2025) .decolation_right {
		right: -90px;
	}
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) .frame {
		display: none;
	}

	/* borders */
	:where(.mod_award_2025) .border_top {
		height: 6px;
	}

	:where(.mod_award_2025) .border_left,
	:where(.mod_award_2025) .border_right {
		width: 6px;
	}
}


@media screen and (max-width: 480px) {

	/* decolation */
	:where(.mod_award_2025) .decolation_left,
	:where(.mod_award_2025) .decolation_right {
		width: 300px;
	}

	:where(.mod_award_2025) .decolation_left {
		left: -120px;
	}

	:where(.mod_award_2025) .decolation_right {
		right: -120px;
	}
}


/*---------------------------------------------------------------*\
$firstview
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #award_2025_firstview {
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 3;
	gap: 100px;
}

:where(.mod_award_2025) #award_2025_firstview .wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 0 0 0;
	width: calc((94% - 40px));
}

:where(.mod_award_2025) #award_2025_firstview .left {
	width: 680px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

:where(.mod_award_2025) #award_2025_firstview .trophy {
	max-width: 180px;
	width: 60%;
	margin: 0 auto;
}

:where(.mod_award_2025) #award_2025_firstview .event_logo {
	width: 90%;
	max-width: 520px;
	margin: 0 auto;
}

:where(.mod_award_2025) #award_2025_firstview .event_logo img {
	width: 100%;
}

:where(.mod_award_2025) #award_2025_firstview .date {
	width: 100%;
	margin: 0 auto;
	padding: 14px 32%;
	border-top: solid 1px #c09d4c;
	border-bottom: solid 1px #c09d4c;
}

:where(.mod_award_2025) #award_2025_firstview .outline {
	line-height: 2;
}

:where(.mod_award_2025) #award_2025_firstview .thumbnails {
	width: 100%;
	display: flex;
	gap: 32px;
	position: relative;
	z-index: 2;
}

:where(.mod_award_2025) #award_2025_firstview .each_thumbnail {
	width: calc((100% - 32px)/2);
	position: relative;
	border: solid 1px #c09d4c;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: rgba(0, 0, 0, .5);
	padding: 28px;
	position: relative;
	gap: 8px;
}

:where(.mod_award_2025) #award_2025_firstview .each_thumbnail:before {
	display: block;
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	width: 32px;
	aspect-ratio: 1;
	clip-path: polygon(0 0, 100% 0, 0 100%);
	background: linear-gradient(45deg, #c09d4c, #c09d4c);
}

:where(.mod_award_2025) #award_2025_firstview .each_thumbnail:after {
	display: block;
	content: '';
	position: absolute;
	bottom: -1px;
	right: -1px;
	width: 32px;
	aspect-ratio: 1;
	clip-path: polygon(0 100%, 100% 0, 100% 100%);
	background: linear-gradient(45deg, #c09d4c, #c09d4c);
}


:where(.mod_award_2025) #award_2025_firstview .each_thumbnail .frame {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: calc((100% - 12px));
	height: calc((100% - 12px));
	border: solid 1px #c09d4c;
}

:where(.mod_award_2025) #award_2025_firstview .wrap_subjects {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

:where(.mod_award_2025) #award_2025_firstview .subject {
	font-size: 40px;
}

:where(.mod_award_2025) #award_2025_firstview .more {
	font-size: 13px;
	margin: 12px 0 0 0;
}

:where(.mod_award_2025) #award_2025_firstview .photo {
	width: 160px;
	aspect-ratio: 1/1;
	border-radius: 50%;
	overflow: hidden;
	background-color: #444;
	border: solid 2px #c09d4c;
}

:where(.mod_award_2025) #award_2025_firstview .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

:where(.mod_award_2025) #award_2025_firstview .wrap_decolation_bottom {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

:where(.mod_award_2025) #award_2025_firstview .border {
	width: calc(((100% - 120px - 80px)/2));
	height: 1px;
	background-color: #c09d4c;
}

:where(.mod_award_2025) #award_2025_firstview .decolation_bottom {
	background-image: url('../img/awards/decolation_bottom.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 120px;
	aspect-ratio: 2/1;
}


@media screen and (max-width: 960px) {

	:where(.mod_award_2025) #award_2025_firstview {
		height: auto;
		padding: 0;
	}

	:where(.mod_award_2025) #award_2025_firstview .wrap {
		flex-direction: column;
		gap: 40px;
	}

	:where(.mod_award_2025) #award_2025_firstview .left {
		width: 100%;
		gap: 40px;
	}

	:where(.mod_award_2025) #award_2025_firstview .event_logo img {
		width: 500px;
		margin: 0 auto;
	}

	:where(.mod_award_2025) #award_2025_firstview .outline {
		font-size: 18px;
	}

	:where(.mod_award_2025) #award_2025_firstview .thumbnails {
		width: 100%;
		flex-direction: row;
	}

	:where(.mod_award_2025) #award_2025_firstview .each_thumbnail {
		width: 50%;
	}

	:where(.mod_award_2025) #award_2025_firstview .subtitle {
		font-size: 15px;
	}

	:where(.mod_award_2025) #award_2025_firstview .subject {
		font-size: 24px;
	}
}


@media screen and (max-width: 760px) {

	:where(.mod_award_2025) #award_2025_firstview .thumbnails {
		flex-direction: column;
	}

	:where(.mod_award_2025) #award_2025_firstview .each_thumbnail {
		width: 100%;
	}
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_firstview {
		padding: 0;
		gap: 72px;
	}

	:where(.mod_award_2025) #award_2025_firstview .wrap {
		width: calc((94% - 24px));
		gap: 32px;
	}

	:where(.mod_award_2025) #award_2025_firstview .left {
		gap: 32px;
	}

	:where(.mod_award_2025) #award_2025_firstview .outline {
		font-size: 15px;
	}

	:where(.mod_award_2025) #award_2025_firstview .event_logo img {
		width: 100%;
		max-width: 300px;
	}

	:where(.mod_award_2025) #award_2025_firstview .each_thumbnail {
		padding: 18px;
	}

	:where(.mod_award_2025) #award_2025_firstview .each_thumbnail .frame {
		width: calc((100% - 8px));
		height: calc((100% - 8px));
	}

	:where(.mod_award_2025) #award_2025_firstview .thumbnails {
		gap: 16px;
	}

	:where(.mod_award_2025) #award_2025_firstview .subtitle {
		font-size: 12px;
	}

	:where(.mod_award_2025) #award_2025_firstview .more {
		font-size: 11px;
	}

	#award_2025_firstview .each_thumbnail:before,
	:where(.mod_award_2025) #award_2025_firstview .each_thumbnail:after {
		width: 20px;
	}

	:where(.mod_award_2025) #award_2025_firstview .border {
		width: calc(((100% - 80px - 40px)/2));
	}

	:where(.mod_award_2025) #award_2025_firstview .wrap_decolation_bottom {
		gap: 20px;
	}

	:where(.mod_award_2025) #award_2025_firstview .decolation_bottom {
		width: 80px;
	}

	:where(.mod_award_2025) #award_2025_firstview .photo {
		width: 110px;
	}
}


/*---------------------------------------------------------------*\
$content
\*---------------------------------------------------------------*/

:where(.mod_award_2025) .content {
	max-width: 1100px;
	width: calc((94% - 40px));
	border: solid 1px #867A4F;
	margin: 100px auto 0;
	background-color: rgba(0, 0, 0, .5);
	position: relative;
	z-index: 3;
}

:where(.mod_award_2025) .wrap_period {
	gap: 4px;
}

:where(.mod_award_2025) .period {
	color: #888;
	font-size: 14px;
}

:where(.mod_award_2025) .period_large {
	font-size: 20px;
	margin: 0 0 4px 0px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) .content {
		width: calc((94% - 24px));
		margin: 32px auto 0;
	}

	:where(.mod_award_2025) .period {
		font-size: 10px;
	}

	:where(.mod_award_2025) .period_large {
		font-size: 14px;
	}
}


/*---------------------------------------------------------------*\
$introduction
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #award_2025_introduction {
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding: 100px 0 48px;
	width: calc((100% - 84px));
	margin: 0 auto;
}

/* heading */
:where(.mod_award_2025) #award_2025_introduction .heading {
	font-size: 44px;
}

:where(.mod_award_2025) #award_2025_introduction .description {
	display: flex;
	flex-direction: column;
	gap: 64px;
	line-height: 2;
}

/* content */
:where(.mod_award_2025) #award_2025_introduction .wrap_details {
	gap: 32px;
}

:where(.mod_award_2025) #award_2025_introduction .each {
	border: solid 1px #867A4F;
	padding: 40px;
	gap: 24px;
}

:where(.mod_award_2025) #award_2025_introduction .title {
	font-family: "kinkakuji", sans-serif;
	font-size: 32px;
}

:where(.mod_award_2025) #award_2025_introduction .info {
	gap: 6px;
	border-top: solid 1px #675F43;
	border-bottom: solid 1px #675F43;
	padding: 16px 0;
}

:where(.mod_award_2025) #award_2025_introduction .info>span {
	font-size: 17px;
}

:where(.mod_award_2025) #award_2025_introduction .explanation {
	font-size: 17px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_introduction {
		width: calc((100% - 32px));
		gap: 40px;
		padding: 64px 0;
	}

	/* heading */
	:where(.mod_award_2025) #award_2025_introduction .heading {
		font-size: 21px;
	}

	:where(.mod_award_2025) #award_2025_introduction .description {
		font-size: 14px;
		text-align: left;
	}

	:where(.mod_award_2025) #award_2025_introduction .description>br {
		display: none;
	}

	/* content */
	:where(.mod_award_2025) #award_2025_introduction .wrap_details {
		gap: 80px;
	}

	:where(.mod_award_2025) #award_2025_introduction .each {
		padding: 0;
		border: none;
	}

	:where(.mod_award_2025) #award_2025_introduction .title {
		font-size: 22px;
	}

	:where(.mod_award_2025) #award_2025_introduction .explanation {
		font-size: 14px;
	}

	:where(.mod_award_2025) #award_2025_introduction .info {
		padding: 14px 0;
	}

	:where(.mod_award_2025) #award_2025_introduction .info>span {
		font-size: 13px;
	}
}


/*---------------------------------------------------------------*\
$about
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #about {
	padding: 140px 0 110px;
	border-top: solid 1px #414141;
	width: calc((100% - 84px));
	margin: 0 auto;
}

:where(.mod_award_2025) #about .paragraph {
	margin: 32px auto 0;
	line-height: 2;
}

:where(.mod_award_2025) #about .notice {
	margin: 56px auto 0;
	gap: 32px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #about {
		padding: 64px 0 0;
		width: calc((100% - 32px));
	}

	:where(.mod_award_2025) #about .paragraph {
		text-align: left;
	}

	:where(.mod_award_2025) #about .paragraph br {
		display: none;
	}

	:where(.mod_award_2025) #about .notice {
		flex-direction: column;
	}

	:where(.mod_award_2025) #about .notice .icon_cross {
		width: 32px;
	}
}



/*---------------------------------------------------------------*\
$MC
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #award_2025_mc {
	padding: 140px 0;
}

:where(.mod_award_2025) #award_2025_mc .notice {
	margin: 56px auto 0;
	gap: 32px;
	width: calc((100% - 84px));
}

:where(.mod_award_2025) #award_2025_mc .each_notice {
	gap: 24px;
}

:where(.mod_award_2025) #award_2025_mc .name {
	font-size: 36px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_mc {
		padding: 64px 0;
	}

	:where(.mod_award_2025) #award_2025_mc .notice {
		width: calc((100% - 32px));
		gap: 12px;
	}

	:where(.mod_award_2025) #award_2025_mc .name {
		font-size: 17px;
	}
}


/*---------------------------------------------------------------*\
$ranking
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #award_2025_ranking {
	padding: 100px 0 80px;
	border-top: solid 1px #414141;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

:where(.mod_award_2025) #award_2025_ranking .youtube {
	width: 100%;
	margin: 0 auto;
}

:where(.mod_award_2025) #award_2025_ranking iframe {
	aspect-ratio: 2/1;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_ranking {
		padding: 64px 0;
	}

	:where(.mod_award_2025) #award_2025_ranking .youtube {
		width: 100%;
	}
}


/*---------------------------------------------------------------*\
$nominate
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #award_2025_nominate {
	width: calc((100% - 84px));
	padding: 100px 0 80px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

:where(.mod_award_2025) #award_2025_nominate.alphabetical_order {
	padding: 100px 0 140px;
}

/* heading */
:where(.mod_award_2025) #award_2025_nominate .subtitle {
	width: 180px;
}

:where(.mod_award_2025) #award_2025_nominate .heading {
	width: 100%;
	border-top: solid 1px #675F43;
	border-bottom: solid 1px #675F43;
	padding: 20px 0;
	margin: 10px 0;
}

:where(.mod_award_2025) #award_2025_nominate .info {
	width: 480px;
	margin: 0 auto;
}

:where(.mod_award_2025) #award_2025_nominate .thumbnail {
	width: 240px;
	aspect-ratio: 1/1;
	background: #444;
}

:where(.mod_award_2025) #award_2025_nominate .thumbnail img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

:where(.mod_award_2025) #award_2025_nominate .name {
	font-size: min(3vw, 30px);
}

:where(.mod_award_2025) #award_2025_nominate .platform {
	width: fit-content;
	padding: 0 16px;
	background-color: #fff;
	height: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-radius: 80px;
	position: absolute;
	bottom: 10px;
	right: 10px;
	gap: 4px;
	z-index: 2;
}


@media screen and (max-width: 600px) {

	/* heading */
	:where(.mod_award_2025) #award_2025_nominate .subtitle {
		width: 160px;
	}

	:where(.mod_award_2025) #award_2025_nominate .info {
		width: 100%;
	}

	/* 順位か50音順か */
	:where(.mod_award_2025) #award_2025_nominate.rank {
		padding: 64px 0;
	}

	:where(.mod_award_2025) #award_2025_nominate.alphabetical_order {
		padding: 64px 0;
	}

	:where(.mod_award_2025) #award_2025_nominate .platform {
		height: 20px;
		padding: 0 8px;
		bottom: 6px;
		right: 6px;
	}
}


/* list full */
:where(.mod_award_2025) #award_2025_nominate .list_full {
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, calc(50% - 20px));
}

/* 順位表示の時は1位を大きく */
/* #award_2025_nominate.rank .list_full .each_list:first-child {
	grid-column: span 2 / span 2;
	width: 55%;
	margin: 0 auto;
} */

:where(.mod_award_2025) #award_2025_nominate .list_full .thumbnail {
	overflow: hidden;
	aspect-ratio: 1/1;
	width: 100%;
	position: relative;
	background-color: rgba(255, 255, 255, .04);
}

:where(.mod_award_2025) #award_2025_nominate .list_full .thumbnail img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

:where(.mod_award_2025) #award_2025_nominate .list_full .badge {
	display: none;
	width: 56px;
	position: absolute;
	top: 0;
	left: 0;
}

:where(.mod_award_2025) #award_2025_nominate .list_full .badge img {
	width: 100%;
}

:where(.mod_award_2025) #award_2025_nominate .list_full .info_list {
	padding: 20px 0 0px;
	gap: 20px;
}

:where(.mod_award_2025) #award_2025_nominate .list_full .profile_link {
	font-size: 13px;
	padding: 8px 8%;
	border: solid 1px #c09d4c;
}

:where(.mod_award_2025) #award_2025_nominate .each_platform {
	width: 64px;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_nominate {
		width: calc((100% - 32px));
	}

	/* 順位表示の時は1位を大きく */
	:where(.mod_award_2025) #award_2025_nominate.rank .list_full .each_list:first-child {
		width: 100%;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_full {
		grid-template-columns: repeat(2, calc(50% - 8px));
		gap: 16px;
	}

	:where(.mod_award_2025) #award_2025_nominate .name {
		font-size: 14px;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_full .profile_link {
		font-size: 10px;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_full .badge {
		width: 28px;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_full .info_list {
		padding: 10px 0 0;
		gap: 8px;
	}

	:where(.mod_award_2025) #award_2025_nominate .each_platform {
		width: 48px;
	}
}


/* list compact */
:where(.mod_award_2025) #award_2025_nominate .list_compact {
	gap: 10px;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .each_list {
	gap: 40px;
	border-bottom: solid 1px #414141;
	padding: 0 0 14px 0;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .each_list:first-child {
	border-top: solid 1px #414141;
	padding: 14px 0;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .info {
	gap: 12px;
	width: calc((100% - 30% - 40px));
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .thumbnail {
	width: 30%;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .thumbnail img {
	object-fit: cover;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .badge {
	width: 28px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 32px;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .badge img {
	width: 100%;
}

:where(.mod_award_2025) #award_2025_nominate .list_compact .profile_link {
	font-size: 10px;
	padding: 8px 6%;
	max-width: 200px;
	width: fit-content;
	border: solid 1px #c09d4c;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_nominate .list_compact .each_list {
		gap: 16px;
	}

	:where(.mod_award_2025) #award_2025_nominate .detail .grad-btn::before {
		padding: 20px 0;
		bottom: -120px;
		font-size: 13px;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_compact .thumbnail {
		width: 40%;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_compact .info {
		width: calc((100% - 40% - 16px));
		flex-direction: column;
	}

	:where(.mod_award_2025) #award_2025_nominate .list_compact .profile_link {
		font-size: 10px;
		scale: .85;
	}
}


/* list minimum */
:where(.mod_award_2025) #award_2025_nominate .list_minimum {
	padding: 12px;
	gap: 10px;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .each_list {
	gap: 10px;
	border-bottom: dashed 1px #ccc;
	padding: 0 0 10px 0;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .info {
	gap: 8px;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .name {
	font-size: 14px;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .badge {
	width: 28px;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .badge img {
	width: 100%;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .platform {
	position: relative !important;
	bottom: 0 !important;
	right: 0 !important;
}

:where(.mod_award_2025) #award_2025_nominate .list_minimum .each_platform {
	border: solid 1px #ddd !important;
}


/* detail */
:where(.mod_award_2025) #award_2025_nominate .detail {
	position: relative;
	height: fit-content;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

:where(.mod_award_2025) #award_2025_nominate .detail .grad-btn::before {
	content: "30位までを見る";
	position: absolute;
	color: #c09d4c;
	border: solid 1px #c09d4c;
	z-index: 1;
	cursor: pointer;
	right: 0;
	padding: 40px 0;
	left: 0;
	bottom: -140px;
	display: inline-flex;
	font-size: 21px;
	justify-content: center;
	margin: auto;
}

:where(.mod_award_2025) #award_2025_nominate .detail .grad-item {
	position: relative;
	overflow: hidden;
	height: 80px;
	/*隠した状態の高さ*/
}

:where(.mod_award_2025) #award_2025_nominate .detail .grad-trigger {
	display: none;
	/*チェックボックスは常に非表示*/
}

:where(.mod_award_2025) #award_2025_nominate .detail .grad-trigger:checked~.grad-btn::before {
	content: "閉じる";
	/*チェックされていたら、文言を変更する*/
}

:where(.mod_award_2025) #award_2025_nominate .detail .grad-trigger:checked~.grad-item {
	height: auto;
	/*チェックされていたら、高さを戻す*/
}

:where(.mod_award_2025) #award_2025_nominate .detail .grad-trigger:checked~.grad-item::before {
	display: none;
	/*チェックされていたら、grad-itemのbeforeを非表示にする*/
}


@media screen and (max-width: 600px) {

	/* detail */
	:where(.mod_award_2025) #award_2025_nominate .detail .grad-btn::before {
		font-size: 13px;
		padding: 24px 0;
		bottom: -100px;
	}
}


/*---------------------------------------------------------------*\
$lottery
\*---------------------------------------------------------------*/

:where(.mod_award_2025) #award_2025_lottery {
	width: calc((100% - 84px));
	padding: 100px 0 48px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin: 0 auto;
}

/* content */
:where(.mod_award_2025) #award_2025_lottery .graphic_present {
	width: 35%;
	margin: 0 auto;
}

:where(.mod_award_2025) #award_2025_lottery .banner {
	margin: 0 auto 48px;
}

:where(.mod_award_2025) #award_2025_lottery .description {
	width: calc((100% - 86px));
	margin: 0 auto;
	line-height: 2;
}

:where(.mod_award_2025) #award_2025_lottery .note {
	font-size: 13px;
}

:where(.mod_award_2025) #award_2025_lottery .rules {
	padding: 40px 0;
	font-size: 21px;
	margin: 40px 0 0 0;
	border: solid 1px #c09d4c;
}


@media screen and (max-width: 760px) {

	/* description */
	:where(.mod_award_2025) #award_2025_lottery .description {
		text-align: left;
	}

	:where(.mod_award_2025) #award_2025_lottery .description br {
		display: none;
	}
}


@media screen and (max-width: 600px) {

	/* common */
	:where(.mod_award_2025) #award_2025_lottery {
		width: calc((100% - 32px));
		padding: 64px 0;
	}

	:where(.mod_award_2025) #award_2025_lottery .graphic_present {
		width: 80%;
	}

	:where(.mod_award_2025) #award_2025_lottery .banner {
		width: 100%;
	}

	:where(.mod_award_2025) #award_2025_lottery .description {
		text-align: left;
		font-size: 14px;
	}

	:where(.mod_award_2025) #award_2025_lottery .note {
		font-size: 10px;
	}

	:where(.mod_award_2025) #award_2025_lottery .rules {
		font-size: 13px;
		padding: 24px 0;
	}
}


/* list full */
:where(.mod_award_2025) #award_2025_lottery .heading_list {
	font-size: 28px;
	border-top: solid 1px rgba(96, 156, 190, .4);
	border-bottom: solid 1px rgba(96, 156, 190, .4);
	padding: 32px 0;
	background-color: rgba(255, 255, 255, .5);
}

:where(.mod_award_2025) #award_2025_lottery .list_full {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(2, calc(50% - 20px));
}

:where(.mod_award_2025) #award_2025_lottery .list_full .thumbnail {
	overflow: hidden;
	aspect-ratio: 1/1;
	width: 100%;
	position: relative;
}

:where(.mod_award_2025) #award_2025_lottery .list_full .thumbnail img {
	object-fit: cover;
}

:where(.mod_award_2025) #award_2025_lottery .list_full .badge img {
	width: 100%;
}

:where(.mod_award_2025) #award_2025_lottery .list_full .info_list {
	padding: 20px 0 0px;
	gap: 20px;
}

:where(.mod_award_2025) #award_2025_lottery .list_full .profile_link {
	font-size: 10px;
	padding: 8px 8%;
	border: solid 1px #c09d4c;
}

:where(.mod_award_2025) #award_2025_lottery .each_platform {
	width: 64px;
}

:where(.mod_award_2025) #award_2025_lottery .name {
	line-height: 1.4;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) #award_2025_lottery {
		gap: 16px;
	}

	:where(.mod_award_2025) #award_2025_lottery .heading_list {
		font-size: 17px;
		padding: 20px 0;
	}

	:where(.mod_award_2025) #award_2025_lottery .list_full .each_list:first-child {
		width: 100%;
	}

	:where(.mod_award_2025) #award_2025_lottery .list_full {
		grid-template-columns: repeat(2, calc(50% - 8px));
		gap: 16px;
	}

	:where(.mod_award_2025) #award_2025_lottery .name {
		font-size: 14px;
	}

	:where(.mod_award_2025) #award_2025_lottery .list_full .profile_link {
		font-size: 10px;
		scale: .9;
	}

	:where(.mod_award_2025) #award_2025_lottery .list_full .info_list {
		padding: 10px 0;
		gap: 8px;
	}

	:where(.mod_award_2025) #award_2025_lottery .each_platform {
		width: 48px;
	}
}

/* video placeholders (iframe removed for tabs) */
:where(.mod_award_2025) .award_2025_video_placeholder {
	position: relative;
	width: 100%;
	aspect-ratio: 16/9;
	overflow: hidden;
	border: 1px solid rgba(192, 157, 76, 0.35);
	background: #050505;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

:where(.mod_award_2025) .award_2025_video_placeholder iframe,
:where(.mod_award_2025) .award_2025_video_trigger {
	width: 100%;
	height: 100%;
}

:where(.mod_award_2025) .award_2025_video_trigger {
	appearance: none;
	position: relative;
	display: block;
	padding: 0;
	border: 0;
	background: #050505;
	cursor: pointer;
}

:where(.mod_award_2025) .award_2025_video_scrim {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.5) 100%),
		radial-gradient(circle at center, rgba(192, 157, 76, 0.24) 0%, rgba(0, 0, 0, 0) 44%);
}

:where(.mod_award_2025) .award_2025_video_poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

:where(.mod_award_2025) .award_2025_video_play,
:where(.mod_award_2025) .award_2025_video_label {
	position: absolute;
	left: 50%;
	z-index: 1;
}

:where(.mod_award_2025) .award_2025_video_play {
	top: 50%;
	width: 88px;
	height: 88px;
	transform: translate(-50%, -58%);
}

:where(.mod_award_2025) .award_2025_video_play svg {
	display: block;
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
}

:where(.mod_award_2025) .award_2025_video_play circle {
	fill: rgba(255, 255, 255, 0.95);
}

:where(.mod_award_2025) .award_2025_video_play path {
	fill: #8a7242;
}

:where(.mod_award_2025) .award_2025_video_label {
	bottom: 22px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px 8px 8px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.52);
	backdrop-filter: blur(10px);
	color: #fff;
	font-size: 13px;
	transform: translateX(-50%);
	white-space: nowrap;
}

:where(.mod_award_2025) .award_2025_video_label::before {
	content: "YouTube";
	display: inline-block;
	padding: 8px;
	border-radius: 999px;
	background: #c09d4c;
	color: #111;
	font-size: 10px;
}

:where(.mod_award_2025) .award_2025_video_trigger:focus-visible {
	outline: 3px solid rgba(255, 255, 255, 0.85);
	outline-offset: -3px;
}

:where(.mod_award_2025) .award_2025_video_trigger:hover .award_2025_video_play,
:where(.mod_award_2025) .award_2025_video_trigger:focus-visible .award_2025_video_play {
	transform: translate(-50%, -58%) scale(1.05);
}

:where(.mod_award_2025) .award_2025_video_play {
	transition: transform .35s ease;
}

:where(.mod_award_2025) .award_2025_video_placeholder.is-ready {
	background: #000;
}

:where(.mod_award_2025) .award_2025_video_placeholder.is-ready iframe {
	display: block;
	border: 0;
}


@media screen and (max-width: 600px) {

	:where(.mod_award_2025) .award_2025_video_play {
		width: 72px;
		height: 72px;
	}

	:where(.mod_award_2025) .award_2025_video_label {
		bottom: 14px;
		font-size: 12px;
	}
}