@charset "UTF-8";


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

.font_bold {
	font-weight: 600;
	font-style: normal;
}

.font_gold {
	color: #c09d4c;
}


/* all,html,body,layout */
* {
	font-size: 20px;
	letter-spacing: 0.4px;
}


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

.wrap_heading {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.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;
}

.heading {
	font-size: 56px;
}


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

	.wrap_heading {
		gap: 12px;
	}

	.decolation_heading {
		width: 100px;
	}

	.heading {
		font-size: 28px;
	}
}


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

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

header .wrap_heading {
	gap: 8px;
	flex-direction: row;
}

header .icon {
	width: 22px;
}


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

	header {
		height: 48px;
	}

	header * {
		font-size: 14px;
	}

	header .icon {
		width: 18px;
	}
}


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

/* backgorund */
.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;
}

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


/* frame */
.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 */
.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;
}

.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 */
.border_top {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background-color: #c09d4c;
	z-index: 5;
}

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

.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 */
	.decolation_left {
		width: 400px;
	}

	.decolation_right {
		width: 400px;
	}
}


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

	/* decolation */
	.decolation_left,
	.decolation_right {
		width: 320px;
	}
}


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

	/* decolation */
	.decolation_left,
	.decolation_right {
		width: 320px;
	}

	.decolation_left {
		left: -90px;
	}

	.decolation_right {
		right: -90px;
	}
}


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

	.frame {
		display: none;
	}

	/* borders */
	.border_top {
		height: 6px;
	}

	.border_left,
	.border_right {
		width: 6px;
	}
}


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

	/* decolation */
	.decolation_left,
	.decolation_right {
		width: 300px;
	}

	.decolation_left {
		left: -120px;
	}

	.decolation_right {
		right: -120px;
	}
}


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

#firstview {
	padding: 100px 0 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 3;
	gap: 100px;
}

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

#firstview .left {
	width: 680px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

#firstview .trophy {
	max-width: 180px;
	width: 60%;
	margin: 0 auto;
}

#firstview .event_logo {
	width: 90%;
	max-width: 520px;
	margin: 0 auto;
}

#firstview .event_logo img {
	width: 100%;
}

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

#firstview .outline {
	line-height: 2;
}

#firstview .thumbnails {
	width: 100%;
	display: flex;
	gap: 32px;
	position: relative;
	z-index: 2;
}

#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;
}

#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);
}

#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);
}


#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;
}

#firstview .wrap_subjects {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

#firstview .subject {
	font-size: 40px;
}

#firstview .more {
	font-size: 13px;
	margin: 12px 0 0 0;
}

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

#firstview .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

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

#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) {

	#firstview {
		height: auto;
		padding: 150px 0 0;
	}

	#firstview .wrap {
		flex-direction: column;
		gap: 40px;
	}

	#firstview .left {
		width: 100%;
		gap: 40px;
	}

	#firstview .event_logo img {
		width: 500px;
		margin: 0 auto;
	}

	#firstview .outline {
		font-size: 18px;
	}

	#firstview .thumbnails {
		width: 100%;
		flex-direction: row;
	}

	#firstview .each_thumbnail {
		width: 50%;
	}

	#firstview .subtitle {
		font-size: 15px;
	}

	#firstview .subject {
		font-size: 24px;
	}
}


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

	#firstview .thumbnails {
		flex-direction: column;
	}

	#firstview .each_thumbnail {
		width: 100%;
	}
}


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

	#firstview {
		padding: 80px 0 64px;
		gap: 72px;
	}

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

	#firstview .left {
		gap: 32px;
	}

	#firstview .outline {
		font-size: 15px;
	}

	#firstview .event_logo img {
		width: 100%;
		max-width: 300px;
	}

	#firstview .each_thumbnail {
		padding: 18px;
	}

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

	#firstview .thumbnails {
		gap: 16px;
	}

	#firstview .subtitle {
		font-size: 12px;
	}

	#firstview .more {
		font-size: 11px;
	}

	#firstview .each_thumbnail:before,
	#firstview .each_thumbnail:after {
		width: 20px;
	}

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

	#firstview .wrap_decolation_bottom {
		gap: 20px;
	}

	#firstview .decolation_bottom {
		width: 80px;
	}

	#firstview .photo {
		width: 110px;
	}
}


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

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

.wrap_period {
	gap: 4px;
}

.period {
	color: #888;
	font-size: 14px;
}

.period_large {
	font-size: 20px;
	margin: 0 0 4px 0px;
}


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

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

	.period {
		font-size: 10px;
	}

	.period_large {
		font-size: 14px;
	}
}


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

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

/* heading */
#introduction .heading {
	font-size: 44px;
}

#introduction .description {
	display: flex;
	flex-direction: column;
	gap: 64px;
	line-height: 2;
}

/* content */
#introduction .wrap_details {
	gap: 32px;
}

#introduction .each {
	border: solid 1px #867A4F;
	padding: 40px;
	gap: 24px;
}

#introduction .title {
	font-family: "kinkakuji", sans-serif;
	font-size: 32px;
}

#introduction .info {
	gap: 6px;
	border-top: solid 1px #675F43;
	border-bottom: solid 1px #675F43;
	padding: 16px 0;
}

#introduction .info>span {
	font-size: 17px;
}

#introduction .explanation {
	font-size: 17px;
}


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

	#introduction {
		width: calc((100% - 32px));
		gap: 40px;
		padding: 64px 0;
	}

	/* heading */
	#introduction .heading {
		font-size: 21px;
	}

	#introduction .description {
		font-size: 14px;
		text-align: left;
	}

	#introduction .description>br {
		display: none;
	}

	/* content */
	#introduction .wrap_details {
		gap: 80px;
	}

	#introduction .each {
		padding: 0;
		border: none;
	}

	#introduction .title {
		font-size: 22px;
	}

	#introduction .explanation {
		font-size: 14px;
	}

	#introduction .info {
		padding: 14px 0;
	}

	#introduction .info>span {
		font-size: 13px;
	}
}


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

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

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

#about .notice {
	margin: 56px auto 0;
	gap: 32px;
}


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

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

	#about .paragraph {
		text-align: left;
	}

	#about .paragraph br {
		display: none;
	}

	#about .notice {
		flex-direction: column;
	}

	#about .notice .icon_cross {
		width: 32px;
	}
}



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

#mc {
	padding: 140px 0;
}

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

#mc .each_notice {
	gap: 24px;
}

#mc .name {
	font-size: 36px;
}


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

	#mc {
		padding: 64px 0;
	}

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

	#mc .name {
		font-size: 17px;
	}
}



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

#ranking {
	padding: 140px 0 0;
	border-top: solid 1px #414141;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

#ranking .youtube {
	width: calc((100% - 2px));
}

#ranking iframe {
	aspect-ratio: 2/1;
}


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

	#ranking {
		padding: 64px 0 0;
	}
}



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

#nominate {
	width: calc((100% - 84px));
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* 順位か50音順か */
#nominate.rank {
	padding: 100px 0 190px;
}

#nominate.alphabetical_order {
	padding: 100px 0 140px;
}

/* heading */
#nominate .subtitle {
	width: 180px;
}

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

#nominate .info {
	width: 480px;
	margin: 0 auto;
}

#nominate .thumbnail {
	width: 240px;
	aspect-ratio: 1/1;
	background: #444;
}

#nominate .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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

#nominate .platform {
	width: fit-content;
	padding: 0 24px;
	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;
}


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

	/* heading */
	#nominate .subtitle {
		width: 160px;
	}

	#nominate .info {
		width: 100%;
	}

	/* 順位か50音順か */
	#nominate.rank {
		padding: 64px 0 200px;
	}

	#nominate.alphabetical_order {
		padding: 64px 0;
	}

	#nominate .platform {
		height: 24px;
		padding: 0 8px;
		bottom: 6px;
		right: 6px;
	}
}


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

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

#nominate .list_full .thumbnail {
	overflow: hidden;
	aspect-ratio: 1/1;
	width: 100%;
	position: relative;
}

#nominate .list_full .thumbnail img {
	object-fit: cover;
}

#nominate .list_full .badge {
	width: 56px;
	position: absolute;
	top: 0;
	left: 0;
}

#nominate .list_full .badge img {
	width: 100%;
}

#nominate .list_full .info_list {
	padding: 20px 0 0px;
	gap: 20px;
}

#nominate .list_full .profile_link {
	font-size: 13px;
	padding: 8px 8%;
	border: solid 1px #c09d4c;
}

#nominate .each_platform {
	width: 64px;
}


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

	#nominate {
		width: calc((100% - 32px));
	}

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

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

	#nominate .name {
		font-size: 14px;
	}

	#nominate .list_full .profile_link {
		font-size: 10px;
	}

	#nominate .list_full .badge {
		width: 28px;
	}

	#nominate .list_full .info_list {
		padding: 10px 0;
		gap: 8px;
	}

	#nominate .each_platform {
		width: 48px;
	}
}


/* list compact */
#nominate .list_compact {
	gap: 10px;
}

#nominate .list_compact .each_list {
	gap: 40px;
	border-bottom: solid 1px #414141;
	padding: 0 0 14px 0;
}

#nominate .list_compact .each_list:first-child {
	border-top: solid 1px #414141;
	padding: 14px 0;
}

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

#nominate .list_compact .thumbnail {
	width: 30%;
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
}

#nominate .list_compact .thumbnail img {
	object-fit: cover;
}

#nominate .list_compact .badge {
	width: 28px;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 32px;
}

#nominate .list_compact .badge img {
	width: 100%;
}

#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) {

	#nominate .list_compact .each_list {
		gap: 16px;
	}

	#nominate .detail .grad-btn::before {
		padding: 20px 0;
		bottom: -120px;
		font-size: 13px;
	}

	#nominate .list_compact .thumbnail {
		width: 40%;
	}

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

	#nominate .list_compact .profile_link {
		font-size: 10px;
		scale: .85;
	}
}


/* list minimum */
#nominate .list_minimum {
	padding: 12px;
	gap: 10px;
}

#nominate .list_minimum .each_list {
	gap: 10px;
	border-bottom: dashed 1px #ccc;
	padding: 0 0 10px 0;
}

#nominate .list_minimum .info {
	gap: 8px;
}

#nominate .list_minimum .name {
	font-size: 14px;
}

#nominate .list_minimum .badge {
	width: 28px;
}

#nominate .list_minimum .badge img {
	width: 100%;
}

#nominate .list_minimum .platform {
	position: relative !important;
	bottom: 0 !important;
	right: 0 !important;
}

#nominate .list_minimum .each_platform {
	border: solid 1px #ddd !important;
}


/* detail */
#nominate .detail {
	position: relative;
	height: fit-content;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

#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;
}

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

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

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

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

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


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

	/* detail */
	#nominate .detail .grad-btn::before {
		font-size: 13px;
		padding: 24px 0;
		bottom: -100px;
	}
}


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

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

/* content */
#lottery .graphic_present {
	width: 35%;
	margin: 0 auto;
}

#lottery .banner {
	margin: 0 auto 48px;
}

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

#lottery .note {
	font-size: 13px;
}

#lottery .rules {
	padding: 40px 0;
	font-size: 21px;
	margin: 40px 0 0 0;
	border: solid 1px #c09d4c;
}


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

	/* description */
	#lottery .description {
		text-align: left;
	}

	#lottery .description br {
		display: none;
	}
}


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

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

	#lottery .graphic_present {
		width: 80%;
	}

	#lottery .banner {
		width: 100%;
	}

	#lottery .description {
		text-align: left;
		font-size: 14px;
	}

	#lottery .note {
		font-size: 10px;
	}

	#lottery .rules {
		font-size: 13px;
		padding: 24px 0;
	}
}


/* list full */
#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);
}

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

#lottery .list_full .thumbnail {
	overflow: hidden;
	aspect-ratio: 1/1;
	width: 100%;
	position: relative;
}

#lottery .list_full .thumbnail img {
	object-fit: cover;
}

#lottery .list_full .badge img {
	width: 100%;
}

#lottery .list_full .info_list {
	padding: 20px 0 0px;
	gap: 20px;
}

#lottery .list_full .profile_link {
	font-size: 10px;
	padding: 8px 8%;
	border: solid 1px #c09d4c;
}

#lottery .each_platform {
	width: 64px;
}

#lottery .name {
	line-height: 1.4;
}


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

	#lottery {
		gap: 16px;
	}

	#lottery .heading_list {
		font-size: 17px;
		padding: 20px 0;
	}

	#lottery .list_full .each_list:first-child {
		width: 100%;
	}

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

	#lottery .name {
		font-size: 14px;
	}

	#lottery .list_full .profile_link {
		font-size: 10px;
		scale: .9;
	}

	#lottery .list_full .info_list {
		padding: 10px 0;
		gap: 8px;
	}

	#lottery .each_platform {
		width: 48px;
	}
}