@charset "UTF-8";


/*---------------------------------------------------------------*\
$tab
\*---------------------------------------------------------------*/

.tab-wrap {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	overflow: hidden;
}

.tab-label {
	position: relative;
	font-size: 13px;
	cursor: pointer;
	flex: 1;
	order: -1;
	padding: 16px 0;
	white-space: nowrap;
	text-align: center;
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
	-webkit-tap-highlight-color: transparent;
	margin: 0 0 24px 0;
}

.tab-label:first-of-type {
	margin: 0 0 24px 6px;
	border-radius: 4px 0 0 4px;
}

.tab-label:last-of-type {
	margin: 0 6px 24px 0;
	border-radius: 0 4px 4px 0;
}

.tab-switch:checked+.tab-label {
	color: #282828;
	position: relative;
	z-index: 2;
}

.tab-label:after {
	background-color: #fff;
	content: '';
	display: block;
	width: calc((100% - 6px));
	height: calc((100% - 6px));
	border-radius: 3px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transform: translateX(100%);
	transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
	z-index: -1;
}

.tab-switch:checked~.tab-label:after {
	transform: translateX(-100%);
}

.tab-switch:checked+.tab-label:after {
	opacity: 1;
	transform: translateX(0);
}

.tab-content {
	height: 0;
	opacity: 0;
	pointer-events: none;
	transform: translateX(-30%);
	transition: transform .3s 80ms, opacity .3s 80ms;
	width: 100%;
}

.tab-switch:checked~.tab-content {
	transform: translateX(30%);
}

.tab-switch:checked+.tab-label+.tab-content {
	height: auto;
	opacity: 1;
	order: 1;
	pointer-events: auto;
	transform: translateX(0);
}

.tab-switch {
	display: none;
}



/*---------------------------------------------------------------*\
$floating CV
\*---------------------------------------------------------------*/

#floating_cv {
	visibility: hidden;
}


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

	#floating_cv {
		visibility: visible;
	}
}



/*---------------------------------------------------------------*\
$page frame
\*---------------------------------------------------------------*/

.boss {
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: start;
	justify-content: space-between;
	background-image: url('../img/top/pc_view_background.webp');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}


.header_bar {
	background-color: rgba(255, 255, 255, .6);
	width: 120px;
	height: calc((100vh - 68px));
	padding: 40px 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.header_bar .logo {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

.header_bar .qr_line {
	width: 80px;
	margin: 0 auto;
}

.catchcopy {
	max-width: 580px;
	min-width: 500px;
	width: calc(95% - 780px);
	margin: 0 auto;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.catchcopy .logo {
	width: 80%;
}

.blank_main_frame {
	position: relative;
	width: 440px;
	height: 100vh;
	flex-shrink: 0;
}

.main_frame {
	width: 440px;
	position: absolute;
	padding: 0 0 64px 0;
	right: 220px;
	top: 0;
	z-index: 10;
	border-radius: 10px 10px 0 0;
	overflow: clip;
}


.menu {
	width: 220px;
	height: calc((100vh - 68px));
	position: relative;
	padding: 64px 0 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.menu .tagline {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	font-size: 13px;
}

.menu .menu_button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	font-size: 13px;
}

.menu .icon_twitter {
	width: 20px;
}


@media screen and (min-width: 1780px) {

	.header_bar {
		width: 200px;
	}

	.header_bar .logo {
		width: 18px;
	}

	.header_bar .qr_line {
		width: 110px;
	}

	.catchcopy {
		max-width: 700px;
		width: calc(100% - 940px);
	}

	.blank_main_frame {
		width: 480px;
		margin-right: 100px;
	}

	.main_frame {
		width: 480px !important;
		right: 300px;
	}

	.menu {
		width: 200px;
	}

	.menu:before {
		position: absolute;
		display: block;
		content: '';
		left: 0;
		top: 0;
		height: 100%;
		width: 1px;
		background: #d8d8d8;
	}
}


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

	.catchcopy {
		max-width: 580px;
		min-width: 500px;
		width: calc(95% - 740px);
	}

	.blank_main_frame {
		width: 410px;
	}

	.main_frame {
		width: 410px;
		right: 180px;
	}

	.menu {
		width: 180px;
	}

	.menu .menu_button {
		width: 110px;
		height: 110px;
	}
}


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

	.catchcopy {
		max-width: 500px;
		min-width: 420px;
		width: calc(95% - 580px);
	}

	.blank_main_frame {
		margin-right: 50px;
	}

	.main_frame {
		right: 50px;
	}

	.menu {
		display: none;
	}
}


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

	.header_bar {
		width: 120px;
		border-right: solid 1px #d8d8d8;
		background-color: inherit;
	}

	.catchcopy {
		display: none;
	}

	.blank_main_frame {
		margin: 0;
	}

	.main_frame {
		right: 0px;
		left: 0;
		margin: auto;
	}

	.menu {
		display: flex;
		width: 120px;
	}

	.menu:before {
		position: absolute;
		display: block;
		content: '';
		left: 0;
		top: 0;
		height: 100%;
		width: 1px;
		background: #d8d8d8;
	}

	.menu .menu_button {
		width: 80px;
		height: 80px;
	}
}


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

	.main_frame {
		right: 0;
		left: 120px;
	}

	.menu {
		display: none;
	}
}


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

	.header_bar {
		width: 100px;
	}

	.header_bar .qr_line {
		width: 70px;
	}

	.main_frame {
		width: 400px;
		left: 100px;
	}
}


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

	.header_bar {
		display: none;
	}

	.main_frame {
		left: 0;
	}
}


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

	.main_frame {
		width: 100%;
		top: 0;
		border-radius: 0;
	}
}


/*---------------------------------------------------------------*\
$modal
\*---------------------------------------------------------------*/

.micromodal-slide {
	visibility: hidden;
}

.micromodal-slide.is-open {
	visibility: visible;
}

.modal__overlay {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	right: 0;
	background-color: rgb(0, 204, 240, .8);
	z-index: 100;
}

.modal__container {
	width: 88%;
	max-width: 410px;
	padding: 40px 16px;
	max-height: 90vh;
	overflow: scroll;
	z-index: 200;
	position: relative;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn 0.6s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut 0.6s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn 0.4s cubic-bezier(0.73, 0.26, 0.25, 1.62);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut 0.4s cubic-bezier(.37, .41, .04, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

.modal__close {
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 10;
	cursor: pointer;
	top: 12px;
	right: 12px;
}

.square_btn {
	display: block;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #282828;
	/* ボタンの背景色 */
}

.square_btn::before, .square_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2px;
	/* 棒の幅（太さ） */
	height: 14px;
	/* 棒の高さ */
	background: #fff;
	/* バツ印の色 */
}

.square_btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.square_btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* modal animation */
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: scale(1.3);
	}

	to {
		transform: scale(1);
	}
}

@keyframes mmslideOut {
	from {
		transform: scale(1);
	}

	to {
		transform: scale(1.3);
	}
}


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

	.modal__overlay {
		right: 0;
	}
}


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

	.modal__overlay {
		width: 100%;
	}
}



/*---------------------------------------------------------------*\
$modal
\*---------------------------------------------------------------*/

.modal-about-ranking .modal__container {
	padding: 0;
	border-radius: 10px;
}

.modal-about-ranking .modal__content {
	display: grid;
	gap: 40px;
	padding-bottom: 30px;
}

.modal-about-ranking .text_close_modal {
	margin: 0;
}



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

#firstview {
	position: relative;
	overflow: hidden;
}

#firstview .mascot {
	position: absolute;
	bottom: -22px;
	right: 2%;
	transform: rotate(11deg);
	width: 90px;
	z-index: 1;
}


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

	#firstview .mascot {
		width: 22vw;
	}
}



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

#about {
	display: flex;
	margin: 64px 0 0 0;
	flex-direction: column;
	gap: 32px;
	position: relative;
}

#about .background {
	width: calc((100% - 32px));
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	height: 100%;
	height: calc((100% - 18px));
	z-index: 0;
}

#about .headline {
	font-size: 30px;
	position: relative;
	padding: 0 5% 0 0;
	z-index: 1;
	margin: -16px 0 0 0;
	letter-spacing: -0.5px;
}

#about .subtitle {
	position: absolute;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	top: 48px;
	left: 40px;
	letter-spacing: 1px;
	font-feature-settings: inherit;
}

/* subject */
#about .subjects {
	display: flex;
	flex-direction: column;
	gap: 1px;
	position: relative;
	z-index: 1;
	width: calc((100% - 100px));
	margin: 0 0 0 auto;
}

#about .each_subject {
	display: flex;
	align-items: center;
	padding: 12px;
	gap: 16px;
}

#about .each_subject:first-child {
	border-radius: 6px 0 0 0;
}

#about .each_subject:last-child {
	border-radius: 0 0 0 6px;
}

#about .info {
	width: calc((100% - 116px));
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#about .thumbnail {
	width: 100px;
	height: 100px;
	border-radius: 4px;
	overflow: hidden;
}

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

#about .title {
	font-size: 14px;
	line-height: 1.2;
}

#about .button {
	font-size: 11px;
	cursor: pointer;
	width: 100px;
	height: 32px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}



/*---------------------------------------------------------------*\
$event_winner
\*---------------------------------------------------------------*/

#top {
	padding: 56px 0 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#top .wrap_headline {
	gap: 4px;
	padding: 0 20px;
}

#top .subtitle {
	font-size: 14px;
}

#top .headline {
	font-size: 30px;
	letter-spacing: -0.5px;
}

#top .subtitle_large {
	text-align: center;
}


/* profile slider */
#top .wrapper_supports_about_ew {
	overflow-x: scroll;
}

#top .supports_about_ew {
	width: 100%;
	display: flex;
	align-items: flex-start;
	padding: 0 6px;
	gap: 12px;
}

#top .each_support_about_ew {
	width: 100%;
	/* width: 170px; */
	height: 300px;
	border-radius: 6px;
	/* background-blend-mode: color-burn; */
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	background-image: url('../img/ranking/winter_2025/bg_birthday.png');
}

#top .conffetti_left {
	position: absolute;
	top: 0;
	left: 0px;
	width: 160px;
	aspect-ratio: 1 / .7;
	background-image: url('../img/ranking/conffetti_left_event_winner.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 2;
}

#top .conffetti_right {
	position: absolute;
	top: 0;
	right: 0px;
	width: 160px;
	aspect-ratio: 1 / .7;
	background-image: url('../img/ranking/conffetti_right_event_winner.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 2;
}

#top .mascot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 110px;
	aspect-ratio: 1/1;
	background-image: url('../img/ranking/mascot_event_winner.svg');
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#top .thumbnail_about_ew {
	width: 180px;
	aspect-ratio: 1/1;
	border: solid 3px #fff;
	margin: 0 auto;
	background-color: #f5f5f5;
}

#top .info_about_ew {
	position: relative;
	margin: -40px auto 0;
}

#top .badge {
	width: 170px;
}

#top .badge img {
	width: 100%;
}

#top .title_about_ew {
	font-size: 22px;
	margin-top: 16px;
}

#top .profile_link {
	font-size: 11px;
	padding: 4px 12px 5px;
	margin: 10px auto 0;
	width: fit-content;
}



/*---------------------------------------------------------------*\
$list
\*---------------------------------------------------------------*/

/* common */
#list {
	overflow: hidden;
	width: 100%;
	padding: 56px 0 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* color */
.bg_annual {
	background-color: #282828;
}

.bg_loyal {
	background: rgb(61, 146, 224);
	background: linear-gradient(90deg, rgba(61, 146, 224, 1) 0%, rgba(178, 53, 255, 1) 100%);
}

.bg_platinum {
	background: rgb(193, 248, 255);
	background: linear-gradient(90deg, rgba(193, 248, 255, 1) 0%, rgba(226, 239, 255, 1) 50%, rgba(255, 250, 239, 1) 100%);
}

.bg_gold {
	background-color: #DBBC6F;
}

.bg_next {
	background: rgb(158, 233, 123);
	background: linear-gradient(90deg, rgba(158, 233, 123, 1) 0%, rgba(112, 205, 104, 1) 100%);
}

.font_gold {
	color: #FCC87C;
}


/* departments */
.departments {
	gap: 6px;
}


/* department */
#list .each_department {
	overflow: hidden;
	border-radius: 6px;
	width: calc((100% - 12px));
	position: relative;
	padding-bottom: 16px;
}

#list .each_department:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	/* opacity: .7; */
	z-index: 1;
	display: block;
	background-size: contain;
	background-blend-mode: color-burn;
	background-repeat: no-repeat;
	background-position: top;
}


/* background */
#list .department_annual:after {
	background-image: url('../img/ranking/bg_annual.png');
}

#list .department_loyal:after {
	background-image: url('../img/ranking/bg_loyal.png');
}

#list .department_platinum:after {
	background-image: url('../img/ranking/bg_platinum.png');
}

#list .department_gold:after {
	background-image: url('../img/ranking/bg_gold.png');
}

#list .department_next:after {
	background-image: url('../img/ranking/bg_next.png');
}


/* month */
#list .month {
	gap: 4px;
}

#list .month .subject {
	font-size: 22px;
}

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

#list .headline {
	font-size: 30px;
	letter-spacing: -0.5px;
}


/* headline */
#list .wrap_headline {
	gap: 12px;
	position: relative;
	z-index: 2;
	padding: 40px 0 0 0;
	flex-direction: column;
	justify-content: center;
}

#list .wrap_headline .headline {
	font-size: 24px;
}

#list .wrap_headline .description {
	font-size: 13px;
}


/* list full */
#list .list_full {
	margin: 32px auto 0;
	position: relative;
	z-index: 2;
	border-radius: 3px 3px 0 0;
	padding: 8px;
	display: grid;
	width: calc((100% - 28px));
	background: #fff;
	gap: 8px;
	grid-template-columns: repeat(2, calc(50% - 4px));
}

#list .list_full .each_list:first-child {
	grid-column: span 2 / span 2;
}

#list .list_full .each_list:first-child .name {
	font-size: 19px;
}

#list .list_full .each_list:first-child .each_platform {
	width: 100px;
	height: 32px;
}

#list .list_full .each_list:nth-of-type(4) .badge,
#list .list_full .each_list:nth-of-type(5) .badge,
#list .list_full .each_list:nth-of-type(6) .badge,
#list .list_full .each_list:nth-of-type(7) .badge,
#list .list_full .each_list:nth-of-type(8) .badge,
#list .list_full .each_list:nth-of-type(9) .badge,
#list .list_full .each_list:nth-of-type(10) .badge {
	width: 32px;
	top: 4px;
	left: 4px;
}

#list .list_full .thumbnail {
	overflow: hidden;
	aspect-ratio: 1/1;
	background-color: #ddd;
	border-radius: 3px;
	position: relative;
}

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

#list .list_full .badge {
	width: 44px;
	position: absolute;
	top: 3px;
	left: 3px;
}

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

#list .list_full .info_list {
	padding: 6px 0 14px;
	gap: 6px;
}

#list .list_full .name {
	font-size: 16px;
	letter-spacing: -0.5px;
}

#list .list_full .profile_link {
	font-size: 11px;
	padding: 4px 12px 5px;
	border: solid 1px #00DAFF;
}

#list .platform {
	position: absolute;
	bottom: 4px;
	right: 4px;
	gap: 4px;
}

#list .each_platform {
	width: 72px;
	padding: 0 6px;
	height: 24px;
	border-radius: 2px;
}


/* list compact */
#list .list_compact {
	gap: 10px;
	padding: 0 8px;
}

#list .list_compact .each_list {
	gap: 14px;
	border-bottom: dashed 1px #ccc;
	padding: 0 0 14px 0;
}

#list .list_compact .each_list:first-child {
	border-top: dashed 1px #ccc;
	padding: 14px 0;
}

#list .list_compact .info {
	gap: 8px;
	width: calc((100% - 129px));
}

#list .list_compact .thumbnail {
	width: 115px;
	height: 115px;
	position: relative;
	background-color: #ccc;
	border-radius: 3px;
	overflow: hidden;
}

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

#list .list_compact .badge {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 26px;
}

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

#list .list_compact .name {
	font-size: 16px;
}

#list .list_compact .profile_link {
	font-size: 11px;
	padding: 4px 12px 5px;
	width: fit-content;
	border: solid 1px #00DAFF;
}

#list .list_compact .each_platform {
	width: 42px;
	padding: 0 2px;
	height: 16px;
}


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

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

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

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

#list .list_minimum .badge {
	width: 26px;
}

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

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

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


/* detail */
.detail {
	padding: 0 0 64px;
	border-radius: 0 0 3px 3px;
	position: relative;
	width: calc((100% - 28px));
	height: fit-content;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.detail .grad-btn-01:before,
.detail .grad-btn-02:before,
.detail .grad-btn-03:before,
.detail .grad-btn-total:before {
	content: "10位までを見る";
	position: absolute;
	color: #00CEF0;
	z-index: 1;
	cursor: pointer;
	right: 0;
	left: 0;
	bottom: 25px;
	display: inline-flex;
	font-size: 15px;
	justify-content: center;
	margin: auto;
}

.detail .grad-item-01,
.detail .grad-item-02,
.detail .grad-item-03,
.detail .grad-item-total {
	position: relative;
	overflow: hidden;
	height: 80px;
	/*隠した状態の高さ*/
}

.detail .grad-item-01:before,
.detail .grad-item-02:before,
.detail .grad-item-03:before,
.detail .grad-item-total:before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	/*グラデーションで隠す高さ*/
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
	background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
	content: "";
}

.detail .grad-trigger-01,
.detail .grad-trigger-02,
.detail .grad-trigger-03,
.detail .grad-trigger-total {
	display: none;
}

.detail .grad-trigger-01:checked~.grad-btn-01:before,
.detail .grad-trigger-02:checked~.grad-btn-02:before,
.detail .grad-trigger-03:checked~.grad-btn-03:before,
.detail .grad-trigger-total:checked~.grad-btn-total:before {
	content: "閉じる";
}

.detail .grad-trigger-01:checked~.grad-item-01,
.detail .grad-trigger-02:checked~.grad-item-02,
.detail .grad-trigger-03:checked~.grad-item-03,
.detail .grad-trigger-total:checked~.grad-item-total {
	height: auto;
}

.detail .grad-trigger-01:checked~.grad-item-01:before,
.detail .grad-trigger-02:checked~.grad-item-02:before,
.detail .grad-trigger-03:checked~.grad-item-03:before,
.detail .grad-trigger-total:checked~.grad-item-total:before {
	display: none;
}