* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

@font-face {
	font-family: "Noto Sans KR";
	src: url("../fonts/NotoSansKR-Regular.woff2") format("woff2"),
		url("../fonts/NotoSansKR-Regular.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Noto Sans KR";
	src: url("../fonts/NotoSansKR-Bold.woff2") format("woff2"),
		url("../fonts/NotoSansKR-Bold.woff") format("woff");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Newsreader";
	src: url("../fonts/Newsreader.woff2") format("woff2"),
		url("../fonts/Newsreader.woff") format("woff");
}

@font-face {
	font-family: "DM Serif Display";
	src: url("../fonts/DMSerifDisplay-Regular.woff2") format("woff2"),
		url("../fonts/DMSerifDisplay-Regular.woff") format("woff");
}

html {
	font-size: 0.7vw;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans KR", sans-serif;
	color: #fff;
	font-size: 1.6rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	flex: 1;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 20%);
	background-color: #4B4B4B;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.container {
	width: 110rem;
	margin: auto;
}

.extra-bold {
	font-weight: 800;
}

.sub-page .title-area {
	background-color: #000000;
	padding: 7.2rem 0;
}

.sub-page .title-area h1 {
	font-weight: 400;
	font-family: "New York", "Newsreader", serif;
	font-size: 6.4rem;
	line-height: 1;
}

.sp-only {
	display: none;
}

.pager ul {
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 6.6rem;
}

.pager ul li {
	width: 4.2rem;
	text-align: center;
}

.pager ul li .page-numbers {
	color: #fff;
}

.pager ul li .page-numbers.current {
	color: #ffb500;
	font-weight: bold;
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.04rem;
}

.back-link .arrow {
	width: 4.8rem;
	height: 4.8rem;
	position: relative;
}

.back-link .arrow::before {
	content: "";
	width: 100%;
	height: 100%;
	transform: scale(0.6);
	border-radius: 50%;
	background-color: rgb(255 255 255 / 70%);
	display: inline-block;
	transition: .1s;
}

.back-link .arrow img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding-bottom: 0.6rem;
}

.back-link:hover .arrow::before {
	background-color: #ffb500;
	transform: scale(1);
}

.select-wrap {
	position: relative;
	display: inline-block;
}

.select-wrap select {
	border: none;
	border-bottom: 1px solid #fff;
	font-size: 1em;
	padding: 0.8rem 2.4rem 0.8rem 0.4rem;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: unset;
	cursor: pointer;
	outline: none;
	width: 100%;
	background-color: unset;
	letter-spacing: 0.5px;
	font-size: 1.6rem;
	font-family: "Noto Sans KR", sans-serif;
	letter-spacing: 0.1rem;
	border-radius: 0;
	color: #fff;
	line-height: 140%;
	min-width: 12.8rem;
}

.select-wrap::after {
	content: "";
	width: 0.4rem;
	height: 0.4rem;
	border-top: 0.1rem solid #FFB500;
	border-right: 0.1rem solid #FFB500;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0.8rem;
	margin: auto;
	pointer-events: none;
}

.select-wrap select option {
	color: #4a4a4a;
}

input[type="radio"] {
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	vertical-align: middle;
	position: relative;
	width: 1.6rem;
	height: 1.6rem;
}

input[type="radio"]::before,
input[type="radio"]::after {
	content: "";
	display: block;
	position: absolute;
	border-radius: 50%;
}

input[type="radio"]::before {
	background-color: #fff;
	width: 1.6rem;
	height: 1.6rem;
	transform: translateY(-50%);
	top: 50%;
	left: 0;
}

input[type="radio"]::after {
	opacity: 0;
	height: 1rem;
	width: 1rem;
	background-color: #FFB500;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

input[type="radio"]:checked::after {
	opacity: 1;
}

/* FORM */

.form-cat {
	border-bottom: 1px solid rgb(255 255 255 / 40%);
	margin-bottom: 2.4rem;
	padding-bottom: 0.8rem;
}

.form-item {
	margin-bottom: 2.4rem;
}

.form-item.col2 {
	display: flex;
	justify-content: space-between;
}

.form-item .half {
	width: 30rem;
}

.form-item .half.col2 {
	display: flex;
	gap: 3.2rem;
}

.form-item .half.col2 dl {
	width: 100%;
}

.form-item dt {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 150%;
	margin-bottom: 0.8rem;
}

.form-item dt .required {
	color: #FFB500;
}

.form-item dd {
	font-size: 1.4rem;
}

.form-item .input-text {
	appearance: none;
	border: none;
	background-color: #fff;
	font-size: 1.6rem;
	line-height: 150%;
	padding: 0.8rem 1.6rem;
	border-radius: 0.4rem;
	width: 100%;
	font-family: "Noto Sans KR", sans-serif;
	color: #000;
	height: 4rem;
}

.form-item .url dd .input-wrap:not(:last-child) {
	margin-bottom: 1.6rem;
}

.form-item textarea.input-text {
	height: 17.1rem;
	resize: vertical;
}

.form-item .url .wpcf7-form-control-wrap {
	margin-bottom: 1.6rem;
	display: block;
}

.form-item .select-wrap {
	width: 100%;
}

.form-item .select-wrap select {
	border: none;
	background-color: #fff;
	color: #000;
	padding: 0.8rem 3.2rem 0.8rem 1.6rem;
	border-radius: 0.4rem;
	height: 4rem;
}

.form-item .select-wrap select.disabled {
	background-color: #D4D4D4;
	pointer-events: none;
}

.form-item .select-wrap::after {
	content: "▼";
	border: none;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	color: #ffb500;
	width: auto;
	height: auto;
	font-size: 1.4rem;
}

.form-item .radio-wrap {
	display: flex;
	gap: 3.2rem;
}

.form-item .radio-wrap label {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	line-height: 150%;
	gap: 1rem;
	cursor: pointer;
}

.form-wrap .upload-item {
	margin-top: 4.6rem;
	margin-bottom: 4.8rem;
}

.mw_wp_form .form-item input[type="file"] {
	display: none;
}

.form-item .mwform-file-delete {
	display: none;
}

.form-item .file {
	cursor: pointer;
	display: inline-flex;
	gap: 1.6rem;
	margin-top: 0.8rem;
	margin-bottom: 1.6rem;
}

.form-item .file-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 9.5rem;
	height: 4rem;
	background: #fff;
	color: #000;
	border-radius: 0.4rem;
	flex-shrink: 0;
	font-size: 1.6rem;
}

.form-item .file-text {
	border: 1px solid #999;
	font-size: 1em;
	line-height: 150%;
	padding: 0.8rem 1.6rem;
	border-radius: 0.4rem;
	width: 100%;
	font-family: "Noto Sans KR", sans-serif;
	color: #ccc;
	height: 4rem;
	width: 30rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 1.6rem;
}

.form-item .notes {
	color: #ffb500;
	font-weight: bold;
	line-height: 150%;
}

.form-item .privacy-msg {
	line-height: 150%;
	margin-bottom: 1.6rem;
}

.form-item .privacy-msg a {
	text-decoration: underline;
	color: #FFB500;
}

.form-item .wpcf7-list-item {
	margin: 0;
}

.form-wrap .privacy label {
	display: flex;
	align-items: center;
	cursor: pointer;
	color: #ffb500;
	gap: 1rem;
}

.form-wrap .privacy input {
	appearance: none;
	position: relative;
	width: 1.6rem;
	height: 1.6rem;
	border: 1px solid #fff;
	cursor: pointer;
	flex-shrink: 0;
	border-radius: 0;
}

.form-wrap .privacy input:checked {
	background-color: #fff;
}

.form-wrap .privacy input:checked::after {
	content: "";
	position: absolute;
	top: 0.3rem;
	left: 0.1rem;
	width: 1rem;
	height: 0.4rem;
	border-bottom: 0.2rem solid #000;
	border-left: 0.2rem solid #000;
	transform: rotate(-45deg);
}

.form-wrap .btn-wrap {
	display: flex;
	justify-content: center;
	gap: 2.4rem;
	margin-top: 6.4rem;
}

.form-wrap .submit-btn {
	border: none;
	appearance: none;
	background-color: #ffb500;
	color: #000;
	border: none;
	padding: 1.6rem 4.8rem;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	font-weight: 600;
	border-radius: 3rem;
	cursor: pointer;
	min-width: 21rem;
	transition: .1s;
}

.form-wrap .submit-btn.back {
	background-color: #d4d4d4;
}

.form-wrap .submit-btn:hover {
	background-color: #fff;
	transition: .1s;
}

.mw_wp_form_input .mw-wp-form_file {
	display: none;
}

.mw_wp_form_confirm .input-wrap,
.mw_wp_form_confirm .select-wrap,
.mw_wp_form_confirm .mw-wp-form_file,
.mw_wp_form_confirm .radio-wrap {
	background-color: #D4D4D4;
	font-size: 1.6rem;
	line-height: 150%;
	padding: 0.8rem 1.6rem;
	border-radius: 0.4rem;
	width: 100%;
	color: #000;
	min-height: 4rem;
	word-break: break-word;
}

.mw_wp_form_confirm .mw-wp-form_file {
	margin-bottom: 1.6rem;
	margin-top: 0.8rem;
}

.mw_wp_form_confirm .form-item .file {
	display: none;
}

.mw_wp_form_confirm .textarea-wrap {
	background-color: #D4D4D4;
	font-size: 1.6rem;
	line-height: 150%;
	padding: 0.8rem 1.6rem;
	border-radius: 0.4rem;
	width: 100%;
	color: #000;
	min-height: 17.1rem;
	word-break: break-word;
}

.form-wrap .mw_wp_form .error {
	font-size: 1em;
	margin-top: 0.8rem;
}

/* ヘッダー */

header .logo {
	position: fixed;
	left: 4rem;
	top: 2.4rem;
	z-index: 99;
	mix-blend-mode: difference;
	width: 8rem;
}

header .navi-btn-wrap {
	position: fixed;
	right: 4rem;
	top: 2.4rem;
	z-index: 99;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.4rem;
	height: 3.2rem;
}

.navi-btn {
	width: 2.6rem;
	position: relative;
	cursor: pointer;
	display: inline-block;
	z-index: 1;
	height: 1.6rem;
}

.navi-btn span {
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 5px;
	transition: .3s;
}

.navi-btn span:nth-of-type(2) {
	top: 0.8rem;
	opacity: 1;
}

.navi-btn span:last-of-type {
	top: 1.6rem;
}

.navi-btn-on span {
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.navi-btn-on span:first-of-type {
	transform: rotate(-45deg);
	width: 100%;
}

.navi-btn-on span:nth-of-type(2) {
	transform: translateX(0);
	opacity: 0;
}

.navi-btn-on span:last-of-type {
	transform: rotate(45deg);
	width: 100%;
	top: 0;
}

#gnav {
	background-color: #000;
	position: fixed;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	height: 100svh;
	left: 0;
	top: 0;
	z-index: 98;
	display: none;
	overflow-y: scroll;
}

#gnav .gnav-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-bottom: 10.6rem;
}

#gnav .gnav-inner {
	display: flex;
	gap: 10rem;
}

#gnav ul {
	list-style: none;
	display: flex;
	flex-direction: column;
}

#gnav ul li {
	margin-bottom: 4rem;
}

#gnav ul li:last-child {
	margin-bottom: 0;
}

#gnav ul li a {
	color: #fff;
	font-family: "New York", "Newsreader", serif;
	font-size: 3.2rem;
	font-weight: bold;
	padding: 0.6rem 0 0;
	display: inline-block;
	letter-spacing: 0.06em;
	transition: .1s;
}

#gnav ul li a:not(.no-link):hover {
	text-shadow: 0px 0px 2rem #FFFFFF;
	transition: .1s;
}

#gnav ul li .sub {
	margin-top: 2.4rem;
	border-left: 1px solid #fff;
	padding-left: 1.6rem;
}

#gnav ul li .sub li:not(:last-child) {
	margin-bottom: 2.4rem;
}

#gnav ul li .sub a {
	font-size: 2rem;
	font-family: "Noto Sans KR", sans-serif;
	font-weight: 500;
	padding: 0.4rem 0;
}

#gnav ul .privacy-policy {
	font-size: 2rem;
	padding: 0.4rem 0 0;
}

#gnav ul .other {
	margin-top: auto;
}

#gnav ul .sns {
	list-style: none;
	display: flex;
	margin-top: 2.4rem;
	flex-direction: unset;
	gap: 3.2rem;
}

#gnav ul .sns li {
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#gnav ul .sns li a {
	padding: 0;
}

#gnav ul .sns li img {
	height: 3.2rem;
	transition: .1s;
}

#gnav ul .sns li a:hover img {
	filter: drop-shadow(0 0 1rem #fff);
	transition: .1s;
}

#gnav .bogo-language-switcher {
	flex-direction: row;
	gap: 0.4rem;
	margin-top: 3.2rem;
	margin-bottom: 0.4rem;
}

#gnav .bogo-language-switcher li {
	margin-bottom: 0;
}

#gnav .bogo-language-switcher li:not(:last-child)::after {
	content: "/";
	margin: 0 0.4rem;
	font-weight: bold;
}

#gnav .bogo-language-switcher li a {
	font-size: 2rem;
	padding: 0;
}

#gnav .bogo-language-switcher li:not(.current) a {
	text-decoration: underline;
}

#gnav .bogo-language-switcher li span {
	font-family: "New York", "Newsreader", serif;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.06em;
	display: inline-block;
}

#gnav .sp-nav {
	display: none;
}

/* フッター */

footer {
	background-color: #000000;
	position: relative;
}

.footer-content {
	max-width: 140rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 4.8rem;
	padding: 4.8rem 0;
}

footer .logo {
	flex-shrink: 0;
}

footer .logo img {
	width: 10.2rem;
}

footer .company-info {
	display: flex;
	flex-direction: column;
	gap: 3.2rem;
	font-size: 1.4rem;
	line-height: 160%;
	color: #999;
	letter-spacing: 0.06em;
}

footer .company-details .company-name {
	font-weight: bold;
}

footer .contact-info {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	color: #999;
}

footer .contact-info .label {
	font-weight: bold;
}

.foot-nav {
	flex-shrink: 0;
	display: flex;
	gap: 5.6rem;
	letter-spacing: 0.06em;
}

.foot-nav ul {
	list-style: none;
}

.foot-nav ul li:not(:last-child) {
	margin-bottom: 3.2rem;
}

.foot-nav a {
	color: #fff;
	font-family: "New York", "Newsreader", serif;
	font-weight: bold;
	transition: .3s;
}

.foot-nav a:hover {
	transition: .3s;
	color: #ffb500;
}

.foot-nav .sub {
	padding-left: 1.6rem;
	border-left: 0.1rem solid #fff;
	margin-top: 2.4rem;
	line-height: 150%;
	letter-spacing: 0;
}

.foot-nav .sub li:not(:last-child) {
	margin-bottom: 1.6rem;
}

.foot-nav .sub a {
	font-family: "Noto Sans KR", sans-serif;
	font-size: 1.4rem;
	font-weight: normal;
}

.foot-nav .sns ul {
	display: flex;
	gap: 1.6rem;
}

.foot-nav .sns ul li {
	width: 2.4rem;
	margin-bottom: 0;
}

.foot-nav .sns ul li a {
	display: block;
	position: relative;
}

.foot-nav .sns ul li a img {
	transition: .3s;
}

.foot-nav .sns ul li .on {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.foot-nav .sns ul li a:hover .on {
	opacity: 1;
	transition: .3s;
}

.foot-nav .sns ul li a:hover .off {
	opacity: 0;
	transition: .3s;
}

footer .language ul {
	display: flex;
	font-size: 1.4rem;
}

footer .language ul li {
	margin: 0;
}

footer .language ul li:not(:last-child):after {
	content: "/";
	margin: 0 0.4rem;
	font-weight: bold;
}

footer .language ul li a:not(.current) {
	text-decoration: underline;
}

.foot-nav .language ul li {
	margin-bottom: 0;
}

.copyright {
	border-top: 0.5px solid #999999;
	padding: 1.6rem 0 2.4rem;
	text-align: center;
	font-size: 1.4rem;
	color: #999999;
	letter-spacing: 0.06em;
}

#pagetop {
	position: absolute;
	bottom: calc(100% + 4rem);
	right: 4rem;
	z-index: 97;
}

#pagetop a {
	width: 6.4rem;
	height: 6.4rem;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 6px 30px 0px #00000033;
	border-radius: 50%;
	background: rgb(0 0 0 / 70%);
	color: #fff;
	font-family: "New York", "Newsreader", serif;
	font-size: 1.2rem;
	font-weight: bold;
	gap: 0.4rem;
}

#pagetop a::before {
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #FFB500;
	border-right: 1px solid #FFB500;
	transform: rotate(315deg);
	display: inline-block;
}

/* TOP */

.kv {
	height: 87rem;
	background: radial-gradient(82.1% 82.1% at 50% -2.21%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 63.94%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.kv .kv-swiper {
	width: 144rem;
	margin: 0 auto;
	position: relative;
}

.kv .swiper-wrapper {
	padding: 4rem 0;
}

.kv .swiper-wrapper .swiper-slide {
	width: 41.2rem;
	height: 58.4rem;
	flex-shrink: 0;
}

.kv .swiper-wrapper .swiper-slide .img-wrap {
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	background-color: #757171;
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	backdrop-filter: blur(5rem);
	width: 100%;
	height: 100%;
	transition-property: transform, opacity, scale;
	transition-duration: 0.6s, 0.6s, 0.3s;
	scale: 0.6;
}

.kv .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: none;
	transform: none;
}

.kv .swiper-wrapper .swiper-slide.is-center {
	z-index: 2;
	opacity: 1;
	background-color: rgb(75 75 75 / 10%);
}

.kv .swiper-wrapper .swiper-slide.is-center .img-wrap {
	scale: 1;
	transform: translateX(0);
	position: relative;
}

.kv .swiper-wrapper .swiper-slide.is-center .img-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background: radial-gradient(66.83% 66.83% at 50% 0%, var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top / 100% 60% no-repeat, radial-gradient(50% 33.17% at 50% 100%, var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom / 100% 60% no-repeat;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.kv .swiper-wrapper .swiper-slide.is-prev1 img,
.kv .swiper-wrapper .swiper-slide.is-next1 img {
	opacity: 0.7;
}

.kv .swiper-wrapper .swiper-slide.is-prev2 img,
.kv .swiper-wrapper .swiper-slide.is-next2 img {
	opacity: 0.4;
}

.kv .swiper-wrapper .swiper-slide.is-prev1 {
	opacity: 1;
	z-index: 1;
}

.kv .swiper-wrapper .swiper-slide.is-prev1 .img-wrap {
	scale: 0.83;
	transform: translateX(22.2rem);
}

.kv .swiper-wrapper .swiper-slide.is-prev2 {
	opacity: 1;
}

.kv .swiper-wrapper .swiper-slide.is-prev2 .img-wrap {
	scale: 0.6;
	transform: translateX(69.8rem);
}

.kv .swiper-wrapper .swiper-slide.is-next1 {
	opacity: 1;
	z-index: 1;
}

.kv .swiper-wrapper .swiper-slide.is-next1 .img-wrap {
	scale: 0.83;
	transform: translateX(-22.2rem);
}

.kv .swiper-wrapper .swiper-slide.is-next2 {
	opacity: 1;
}

.kv .swiper-wrapper .swiper-slide.is-next2 .img-wrap {
	scale: 0.6;
	transform: translateX(-69.8rem);
}

.kv .swiper-button-next {
	appearance: none;
	background-color: rgb(0 0 0 / 30%);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	position: fixed;
	border: none;
	padding-right: 0.4rem;
	cursor: pointer;
	position: absolute;
	top: 50%;
	right: 10.2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.kv .swiper-button-next::after {
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	display: inline-block;
}

.kv .swiper-button-prev {
	appearance: none;
	background-color: rgb(0 0 0 / 30%);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	position: fixed;
	border: none;
	padding-left: 0.4rem;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 10.2rem;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	z-index: 3;
}

.kv .swiper-button-prev::after {
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(225deg);
	display: inline-block;
}

#top .heading {
	font-family: "New York", "Newsreader", serif;
	font-weight: normal;
	font-size: 6.4rem;
	line-height: 120%;
	padding-top: 0.2em;
	letter-spacing: 0.05em;
}

.top-news {
	background: linear-gradient(180deg, #000000 44.23%, #333333 100%);
	padding: 12.8rem 0 12rem;
}

.top-news .heading {
	margin-bottom: 1.6rem;
}

.top-news .news-wrap {
	display: flex;
	justify-content: space-between;
}

.top-news .news-list {
	width: 81.7rem;
}

.top-artist {
	background: #4B4B4B;
	padding: 16rem 0 32rem 0;
}

.artist-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8rem;
	padding-right: 1.6rem;
}

.top-artist .artist-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	list-style: none;
}

.top-artist .artist-list li {
	position: relative;
}

.top-artist .artist-list li::before {
	content: "";
	display: inline-block;
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 50%;
	box-shadow: 0 0.4rem 10rem 8rem #D9D9D9;
	position: absolute;
	bottom: 8rem;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.top-artist .artist-list li a {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.top-artist .artist-list li a::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	transition: .1s;
	background-color: rgb(0 0 0 / 80%);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.top-artist .artist-list li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.top-artist .artist-name {
	color: #ffb500;
	font-size: 2rem;
	font-family: "New York", "Newsreader", serif;
	letter-spacing: 0.06em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	opacity: 0;
	transition: .1s;
	width: 100%;
	text-align: center;
}

.top-artist .artist-list li a:hover::before {
	opacity: 1;
	transition: .1s;
}

.top-artist .artist-list li a:hover .artist-name {
	opacity: 1;
	transition: .1s;
}

.top-btm-contents {
	background: linear-gradient(180deg, #000000 0%, #333333 100%);
	border-radius: 6rem 6rem 0 0;
}

.top-link {
	display: flex;
	height: 16.6rem;
}

.top-link a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}

.top-link .audition {
	background-color: #fff;
	color: #000;
}

.top-link .open-call {
	background-color: #222222;
	color: #fff;
}

.top-link a .text {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) translateX(0);
	display: inline-block;
	font-size: 3.2rem;
	font-family: "New York", "Newsreader", serif;
}

.top-link a::before {
	content: "";
	height: 0.1rem;
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.top-link .audition .text {
	right: 39rem;
	animation: bounceToRightBack 0.4s cubic-bezier(0.25, 1, 1, 1);
}

.top-link .audition:hover .text {
	animation: bounceToRight 0.4s cubic-bezier(0.25, 1, 1, 1);
	transform: translateY(-50%) translateX(19.5rem);
}

@keyframes bounceToRight {
	0% {
		transform: translateY(-50%) translateX(0);
	}

	60% {
		transform: translateY(-50%) translateX(22.5rem);
	}

	100% {
		transform: translateY(-50%) translateX(19.5rem);
	}
}

@keyframes bounceToRightBack {
	0% {
		transform: translateY(-50%) translateX(19.5rem);
	}

	60% {
		transform: translateY(-50%) translateX(-3rem);
	}

	100% {
		transform: translateY(-50%) translateX(0);
	}
}

.top-link .open-call .text {
	left: 37.2rem;
	animation: bounceToLeftBack 0.4s cubic-bezier(0.25, 1, 1, 1);
}

.top-link .open-call:hover .text {
	animation: bounceToLeft 0.4s cubic-bezier(0.25, 1, 1, 1);
	transform: translateY(-50%) translateX(-18.6rem);
}

@keyframes bounceToLeft {
	0% {
		transform: translateY(-50%) translateX(0);
	}

	60% {
		transform: translateY(-50%) translateX(-21.6rem);
	}

	100% {
		transform: translateY(-50%) translateX(-18.6rem);
	}
}

@keyframes bounceToLeftBack {
	0% {
		transform: translateY(-50%) translateX(-18.6rem);
	}

	60% {
		transform: translateY(-50%) translateX(3rem);
	}

	100% {
		transform: translateY(-50%) translateX(0);
	}
}

.top-link .audition::before {
	width: 36.6rem;
	right: 0;
	background-color: #000;
	transition: 0.3s;
}

.top-link .open-call::before {
	width: 34.8rem;
	left: 0;
	background-color: #fff;
	transition: 0.3s;
}

.top-link a:hover::before {
	opacity: 0;
	transition: 0.3s;
}

.top-company {
	padding-top: 24rem;
	padding-bottom: 21.4rem;
}

.view-all-btn {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: 0.04rem;
}

.view-all-btn .arrow {
	width: 4.8rem;
	height: 4.8rem;
	position: relative;
}

.view-all-btn .arrow::before {
	content: "";
	width: 100%;
	height: 100%;
	transform: scale(0.67);
	border-radius: 50%;
	background-color: rgb(255 255 255 / 70%);
	display: inline-block;
	transition: .1s;
}

.view-all-btn .arrow img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding-bottom: 0.6rem;
}

.view-all-btn:hover .arrow::before {
	background-color: #ffb500;
	transform: scale(1);
}

.content {
	flex: 1;
}

.news-list {
	list-style: none;
}

.news-item {
	padding-bottom: 4rem;
	margin-bottom: 3.2rem;
	border-bottom: 1px solid #4B4B4B;
}

.news-item:last-child {
	margin-bottom: 0;
}

.news-header {
	display: flex;
	align-items: center;
	gap: 1.6rem;
	margin-bottom: 0.7rem;
}

.news-header .new-badge {
	color: #ffb500;
	font-weight: 670;
	font-family: "New York", "Newsreader", serif;
}

.news-header .date {
	color: #999999;
	font-family: "New York", "Newsreader", serif;
	font-weight: 670;
}

.news-header .tags {
	display: flex;
	gap: 1.6rem;
}

.news-header .tag::before {
	content: "#";
}

.news-header .tag {
	color: #999999;
	font-size: 1.2rem;
}

.news-tag {
	color: #999999;
	font-size: 1.2rem;
	padding: 0.6rem 0.5rem 0 0.5rem;
}

.news-content {
	color: #fff;
	line-height: 150%;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	word-break: break-all;
}

.top-contents {
	padding-top: 10.4rem;
}

.top-contents .heading {
	margin-bottom: 8rem;
}

.contents-nav ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6.4rem;
	list-style: none;
}

.contents-nav ul li {
	background-color: rgb(255 255 255 / 10%);
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: 1rem;
	position: relative;
	overflow: hidden;
}

.contents-nav ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-top: 0.15rem solid transparent;
	border-image-slice: 1;
	border-image-source: radial-gradient(66.83% 66.83% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, rgba(0, 0, 0, 0) 99.61%);
}

.contents-nav ul li a {
	font-size: 3.2rem;
	line-height: 140%;
	font-family: "New York", "Newsreader", serif;
	font-weight: normal;
	color: #fff;
	background: linear-gradient(180deg, #222222 29.81%, #666666 100%);
	padding: 1.6rem;
	height: 21rem;
	display: block;
	transition: .3s;
	position: relative;
}

.contents-nav ul li a::before {
	content: "";
	background: linear-gradient(180deg, #222222 29.81%, #AAAAAA 100%);
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0;
	transition: .3s;
}

.contents-nav ul li a:hover::before {
	opacity: 1;
}

.contents-nav ul li a span {
	position: relative;
}

.top-company .heading {
	margin-bottom: 7.2rem;
}

.company-nav {
	font-size: 3.2rem;
}

.company-nav ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0 4rem;
}

.company-nav ul li {
	position: relative;
}

.company-nav ul li:not(:last-child):after {
	content: "/";
	font-size: 3.6rem;
	width: 4rem;
	text-align: center;
	display: inline-block;
	position: absolute;
}

.company-nav a {
	color: #fff;
	display: inline-block;
	font-family: "New York", "Newsreader", serif;
	font-weight: normal;
	letter-spacing: 0.06em;
	transition: .3s;
}

.company-nav a:hover {
	color: #ffb500;
	transition: .3s;
}

.split-container {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.split-container::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 25%;
	right: 25%;
	height: 0.1rem;
	background-color: #666;
	transform: translateY(-50%);
}

.section {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 6rem 4rem;
	position: relative;
}

.audition-section {
	background-color: #ffffff;
	justify-content: flex-start;
	padding-left: 16rem;
}

.opencall-section {
	background-color: #222222;
	justify-content: flex-end;
	padding-right: 16rem;
}

.audition-section a {
	color: #000;
	font-family: "New York", "Newsreader", serif;
}

.opencall-section a {
	color: #fff;
	font-family: "New York", "Newsreader", serif;
}

.section-content {
	display: flex;
	align-items: center;
}

.section-title {
	font-size: 3.2rem;
	font-weight: 300;
	letter-spacing: 0.2rem;
	white-space: nowrap;
}


/* NEWS　ARCIVE */

#news {
	background-color: #222222;
}

#news.archive .contents-area {
	padding: 7.2rem 0 12rem;
}

#news .news-category {
	margin-bottom: 8rem;
}

#news .news-category ul {
	display: flex;
	gap: 2.4rem;
	align-items: center;
	justify-content: center;
	list-style: none;
}

#news .news-category ul li a {
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.06rem;
	font-family: "New York", "Newsreader", serif;
	position: relative;
}

#news .news-category ul li a.active {
	color: #FFB500;
	font-weight: bold;
}

#news .news-category ul li a.active::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	padding-bottom: 0.1rem;
	border-bottom: 1px solid;
}

/* NEWS　SINGLE */

#news.single .contents-area {
	padding: 7.2rem 0 12rem;
}

#news .news-contents-wrap {
	width: 90rem;
	margin: auto;
}

#news.single .news-header {
	margin-bottom: 2.4rem;
}

#news.single .news-header .new-badge {
	font-size: 2.4rem;
}

#news.single .news-header .date {
	font-size: 2.4rem;
}

#news.single .news-header .tag {
	font-size: 1.6rem;
}

#news.single .title {
	line-height: 150%;
	font-size: 1.6rem;
	padding-bottom: 2.4rem;
	border-bottom: 1px solid #444444;
	margin-bottom: 3.2rem;
}

#news.single .contents {
	line-height: 150%;
	border-bottom: 1px solid #444444;
	word-break: break-word;
}

#news.single .contents .thumbnail {
	text-align: center;
	margin-bottom: 3.2rem;
}

#news.single .contents .thumbnail img {
	max-height: 55rem;
	width: auto;
}

#news.single .contents p {
	margin-bottom: 3.2rem;
}

#news.single .contents a {
	text-decoration: underline;
	color: #ffb500;
}

#news.single .contents ul,
#news.single .contents ol {
	list-style: inside;
}

#news.single .contents iframe {
	max-width: 100%;
}

#news.single .contents img {
	height: auto;
}

#news.single .link-wrap {
	text-align: center;
	margin-top: 6.4rem;
}

.aligncenter {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.alignright {
	margin-left: auto;
	display: block;
}

.alignleft {
	margin-right: auto;
	display: block;
}

/* ARTIST ARCIVE */

#artist.archive .contents-area {
	padding: 6.4rem 0 12rem;
}

#artist .artist-wrap {
	display: flex;
	gap: 5.6rem;
}

.artist-name-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	padding-top: 2rem;
	flex-shrink: 0;
	width: 20rem;
	list-style: none;
}

.artist-name-list a {
	color: #fff;
	font-size: 2rem;
	line-height: 150%;
	font-weight: bold;
	letter-spacing: 0.06em;
	transition: .1s ease-out;
}

.artist-name-list a:hover {
	opacity: 0.5;
	transition: .1s ease-out;
}

.artist-photo-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3.2rem;
	list-style: none;
}

.artist-photo-list li a {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.artist-photo-list li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.artist-photo-list li a::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	transition: .1s;
	background-color: rgb(0 0 0 / 80%);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.artist-photo-list .artist-name {
	color: #ffb500;
	font-size: 3.2rem;
	font-family: "New York", "Newsreader", serif;
	letter-spacing: 0.06em;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	opacity: 0;
	transition: .1s;
	width: 100%;
	text-align: center;
	font-weight: 600;
}

.artist-photo-list li a:hover::before {
	opacity: 1;
	transition: .1s;
}

.artist-photo-list li a:hover .artist-name {
	opacity: 1;
	transition: .1s;
}

/* ARTIST SINGLE */

#artist.single .artist-prof {
	padding: 7.2rem 0 12rem;
}

#artist.single .artist-prof .prof-wrap {
	display: flex;
	align-items: flex-start;
	gap: 6.4rem;
}

#artist.single .artist-prof .prof-img {
	width: 49.4rem;
	flex-shrink: 0;
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	background-color: rgb(255 255 255 / 5%);
	padding: 1.4rem 1.5rem 3rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	overflow: hidden;
	text-align: center;
}

#artist.single .artist-prof .prof-img::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background: radial-gradient(66.83% 66.83% at 50% 0%, var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top / 100% 60% no-repeat, radial-gradient(50% 33.17% at 50% 100%, var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom / 100% 60% no-repeat;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

#artist.single .artist-prof .img-area {
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

#artist.single .artist-prof .img-area img {
	height: auto;
	width: auto;
	max-height: 100%;
}

#artist.single .artist-prof .info-area {
	margin-top: 1.6rem;
}

#artist.single .artist-prof .birthday {
	font-weight: 500;
	letter-spacing: 0.06em;
}

#artist.single .artist-prof .sns {
	margin-top: 1.6rem;
	list-style: none;
	display: inline-flex;
	gap: 1.6rem;
}

#artist.single .artist-prof .sns a {
	display: block;
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#artist.single .artist-prof .sns img {
	width: 2.4rem;
	transition: .3s;
}

#artist.single .artist-prof .sns img.on {
	position: absolute;
	opacity: 0;
}

#artist.single .artist-prof .sns a:hover .on {
	opacity: 1;
	transition: .3s;
}

#artist.single .artist-prof .sns a:hover .off {
	opacity: 0;
	transition: .3s;
}

#artist.single .artist-prof .prof-detail {
	width: 100%;
}

#artist.single .artist-prof h2 {
	font-size: 3.2rem;
	font-family: "New York", "Newsreader", serif;
	letter-spacing: 0.06em;
	padding: 1.6rem 0 0.8rem;
	border-bottom: 1px solid #ccc;
	margin-bottom: 2.4rem;
}

#artist.single .artist-prof h3 {
	font-size: 2rem;
	font-family: "New York", "Newsreader", serif;
	letter-spacing: 0.06em;
	margin-bottom: 2.4rem;
	padding-top: 0.4rem;
}

#artist.single .artist-prof .biography-wrap {
	max-height: 49rem;
	overflow-y: scroll;
}

#artist.single .artist-prof .biography {
	line-height: 150%;
}

#artist.single .artist-contents {
	background-color: #222222;
	padding: 9.6rem 0 12rem;
}

#artist.single .artist-contents .link-wrap {
	text-align: center;
	margin-top: 4rem;
}

#artist.single .artist-contents .tab {
	display: flex;
	list-style: none;
	margin-bottom: 3.2rem;
}

#artist.single .artist-contents .tab li {
	width: 100%;
	text-align: center;
	font-size: 2rem;
	cursor: pointer;
	font-family: "New York", "Newsreader", serif;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 0.4rem;
	border-bottom: 1px solid #fff;
	transition: .3s;
}

#artist.single .artist-contents .tab li.active {
	background-color: #fff;
	color: #000;
	font-weight: bold;
	pointer-events: none;
}

#artist.single .artist-contents .tab li:hover {
	color: #ffb500;
	border-color: #ffb500;
	transition: .3s;
}

#artist.single .artist-contents .tab li.disabled {
	pointer-events: none;
	background-color: unset;
	opacity: 0.5;
	color: #fff;
	font-weight: 300;
}

#artist.single .artist-contents .contents {
	display: none;
}

#artist.single .artist-contents .contents.active {
	display: block;
}

#artist.single .artist-contents .contents ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3.2rem 2.4rem;
}

#artist.single .artist-gallery-item a {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: block;
}

#artist.single .artist-gallery-item a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#artist.single .discography .img-wrap {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	display: block;
}

#artist.single .discography .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#artist.single .discography .title {
	line-height: 150%;
	margin-top: 1.6rem;
	color: #fff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	word-break: break-word;
}

#artist.single .discography .date {
	font-size: 1.2rem;
	line-height: 2.8rem;
	font-weight: 500;
	color: #999;
}

#artist.single .youtube .img-wrap {
	height: 14.4rem;
	overflow: hidden;
}

#artist.single .youtube .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#artist.single .youtube .title {
	line-height: 150%;
	margin-top: 1.6rem;
	color: #fff;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	word-break: break-word;
}

#artist.single .youtube .date {
	font-size: 1.2rem;
	line-height: 2.8rem;
	font-weight: 500;
	color: #999;
}

#artist.single .pager {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4rem;
}

#artist.single .pager .page-numbers {
	width: 4.2rem;
	height: 3.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

#artist.single .pager .page-numbers.current {
	color: #ffb500;
	font-weight: bold;
}

.gallery-modal,
.disco-modal,
.youtube-modal {
	position: fixed;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	height: 100svh;
	z-index: 100;
	background-color: #1e1e1e;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	left: 0;
}

.gm-close {
	position: fixed;
	background: unset;
	appearance: none;
	color: #fff;
	border: none;
	top: 2.4rem;
	right: 4rem;
	width: 3.2rem;
	height: 3.2rem;
	cursor: pointer;
}

.gm-dialog {
	display: flex;
	align-items: center;
	position: relative;
}

.gm-stage {
	display: flex;
	align-items: center;
	justify-content: center;
}

.gm-image {
	height: auto;
	max-width: calc(100% - 3rem);
	max-height: calc(100vh - 16rem);
	max-height: calc(100dvh - 16rem);
	max-height: calc(100svh - 16rem);
}

.gm-prev {
	appearance: none;
	background-color: rgb(0 0 0 / 30%);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	position: fixed;
	border: none;
	left: 4.8rem;
	padding-left: 0.4rem;
	cursor: pointer;
}

.gm-prev::before {
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(225deg);
	display: inline-block;
}

.gm-next {
	appearance: none;
	background-color: rgb(0 0 0 / 30%);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4.8rem;
	height: 4.8rem;
	position: fixed;
	border: none;
	right: 4.8rem;
	padding-right: 0.4rem;
	cursor: pointer;
}

.gm-next::before {
	content: '';
	width: 1rem;
	height: 1rem;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	display: inline-block;
}

.gm-counter {
	position: absolute;
	top: 100%;
	height: 4.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.06em;
	font-weight: 500;
}

.dm-dialog {
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	background-color: rgb(255 255 255 / 5%);
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	width: 73.6rem;
	margin-top: 3.2rem;
}

.dm-dialog::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background: radial-gradient(66.83% 66.83% at 50% 0%, var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top / 100% 60% no-repeat, radial-gradient(50% 33.17% at 50% 100%, var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom / 100% 60% no-repeat;
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.dm-body {
	max-height: calc(100vh - 11.2rem);
	max-height: calc(100dvh - 11.2rem);
	max-height: calc(100svh - 11.2rem);
	overflow-y: scroll;
}

.dm-close {
	position: absolute;
	background: unset;
	appearance: none;
	color: #fff;
	border: none;
	width: 3.2rem;
	height: 3.2rem;
	cursor: pointer;
	right: 0;
	bottom: calc(100% + 1.6rem);
}

.discography-wrap {
	display: flex;
	gap: 2.4rem;
}

.discography-wrap .img-area {
	flex-shrink: 0;
	width: 35.2rem;
}

.discography-wrap .img-area img {
	height: auto;
}

.discography-wrap .detail-area {
	width: 100%;
	padding: 2.4rem 1.6rem 0 0;
}

.discography-wrap .detail-area .title {
	font-weight: bold;
	font-size: 2rem;
	line-height: 2.8rem;
	margin-bottom: 1rem;
}

.discography-wrap .detail-area .date {
	line-height: 2.8rem;
	font-size: 1.2rem;
	font-weight: 500;
	margin-right: 0.8rem;
}

.discography-wrap .detail-area .type-wrap {
	display: inline-flex;
	gap: 0.8rem;
}

.discography-wrap .detail-area .type {
	line-height: 2.8rem;
	font-size: 1.2rem;
	font-weight: 500;
	text-transform: uppercase;
}

.discography-wrap .detail-area .distribution-site {
	display: flex;
	gap: 1.6rem;
	margin-top: 1.6rem;
	list-style: none;
}

.discography-wrap .detail-area .distribution-site img {
	width: 2.4rem;
}

.discography-wrap .detail-area .track-list {
	margin-top: 3.2rem;
}

.discography-wrap .detail-area .track-list .label {
	font-size: 1.2rem;
	line-height: 2.8rem;
	border-bottom: 1px solid #999;
	margin-bottom: 0.8rem;
}

.discography-wrap .detail-area .track-list table {
	border-collapse: collapse;
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 2.8rem;
}

.discography-wrap .detail-area .track-list table th {
	font-weight: 500;
	padding-right: 1.6rem;
	white-space: nowrap;
	vertical-align: top;
}

.ym-dialog {
	position: relative;
	width: 86.9rem;
}

.ym-close {
	position: absolute;
	background: unset;
	appearance: none;
	color: #fff;
	border: none;
	width: 3.2rem;
	height: 3.2rem;
	cursor: pointer;
	right: 0;
	bottom: calc(100% + 1.6rem);
}

.movie-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* STAGE ARCHIVE */

#stage .contents-area {
	padding: 4rem 0 12rem;
}

#stage.archive .stage-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8rem 4.6rem;
	list-style: none;
}

#stage.archive .stage-head {
	margin-bottom: 8rem;
}

#stage.archive .stage-head form {
	display: flex;
	justify-content: flex-end;
	gap: 2.4rem;
}

#stage.archive .stage-box {
	color: #fff;
}

#stage.archive .stage-box .img-area {
	width: 100%;
	height: 34rem;
	margin-bottom: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(0 0 0 / 20%);
	box-shadow: 0 0.6rem 3rem 0 rgb(0 0 0 / 30%);
}

#stage.archive .stage-box .img-area img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
}

#stage.archive .stage-box .cat-wrap {
	display: flex;
	gap: 1.1rem;
}

#stage.archive .stage-box .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#stage.archive .stage-box .title {
	margin: 0.8rem 0;
	line-height: 150%;
	transition: .1s;
}

#stage.archive .stage-box .place {
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

#stage.archive .stage-box .place img {
	height: 1.2rem;
}

#stage.archive .stage-box:hover .title {
	color: #ffb500;
	transition: .1s;
}

#stage.archive .stage-btm {
	text-align: center;
	margin-top: 8.8rem;
}

.youtube-bnr {
	width: 65.7rem;
	display: inline-block;
}

/* STAGE SINGLE */

#stage.single .stage-head {
	margin-bottom: 4rem;
}

#stage.single .cat-wrap {
	display: flex;
	gap: 1.1rem;
	margin-bottom: 2.4rem;
}

#stage.single .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#stage.single .title {
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-family: "New York", "Newsreader", serif;
}

#stage.single .stage-contents {
	display: grid;
	grid-template-columns: 42.8rem 60.8rem;
	gap: 4rem 6.4rem;
	list-style: none;
}

.stage-contents .img-sec {
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	height: 60rem;
	background-color: rgb(255 255 255 / 5%);
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stage-contents .img-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background:
		radial-gradient(66.83% 66.83% at 50% 0%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top/100% 60% no-repeat,
		radial-gradient(50% 33.17% at 50% 100%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom/100% 60% no-repeat;

	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.stage-contents .img-sec img {
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

.stage-contents section dl:not(:last-child) {
	margin-bottom: 3.2rem;
}

.stage-contents section dt {
	font-family: "New York", "Newsreader", serif;
	font-size: 2rem;
	letter-spacing: 0.06em;
	font-weight: bold;
	padding: 0.8rem 0;
	border-bottom: 1px solid #FFFFFF66;
	margin-bottom: 0.8rem;
}

.stage-contents .info-sec {
	grid-column-start: 2;
	grid-column-end: 3;
	grid-row-start: 1;
	grid-row-end: 5;
}

.stage-contents .info-sec dd {
	line-height: 150%;
}

.stage-contents .ticket-sec dt {
	margin-bottom: 2.4rem;
}

.stage-contents .ticket-sec ul {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
}

.stage-contents .ticket-sec ul li a {
	background: #FFFFFFB2;
	border-radius: 3rem;
	height: 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "New York", "Newsreader", serif;
	font-weight: bold;
	letter-spacing: 0.06em;
	color: #000;
}

.stage-contents .ticket-sec ul li a span {
	padding-top: 0.2rem;
}

.stage-contents .ticket-sec .interpark {
	height: 2.4rem;
}

.stage-contents .ticket-sec .yes24 {
	height: 1.8rem;
}

.stage-contents .ticket-sec .ticketlink {
	height: 1.6rem;
}

.stage-contents .sns-sec dt {
	margin-bottom: 2.4rem;
}

.stage-contents .sns-sec ul {
	list-style: none;
	display: flex;
	gap: 1.6rem;
}

.stage-contents .sns-sec ul li img {
	height: 2.4rem;
}

#stage.single .link-wrap {
	text-align: center;
	margin-top: 8.8rem;
}

/* DRAMA/MOVIE ARCHIVE */

#drama-movie .contents-area {
	padding: 4rem 0 12rem;
}

#drama-movie.archive .drama-movie-head {
	margin-bottom: 8rem;
	text-align: right;
}

#drama-movie.archive .drama-movie-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8rem 4.6rem;
	list-style: none;
}

#drama-movie.archive .drama-movie-box {
	color: #fff;
}

#drama-movie.archive .drama-movie-box .img-area {
	width: 100%;
	height: 34rem;
	margin-bottom: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0.6rem 3rem 0 rgb(0 0 0 / 30%);
}

#drama-movie.archive .drama-movie-box .img-area img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
}

#drama-movie.archive .drama-movie-box .cat-wrap {
	display: flex;
	gap: 1.1rem;
}

#drama-movie.archive .drama-movie-box .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#drama-movie.archive .drama-movie-box .title {
	margin-top: 0.8rem;
	line-height: 150%;
	transition: .1s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	word-break: break-word;
}

#drama-movie.archive .drama-movie-box:hover .title {
	color: #ffb500;
	transition: .1s;
}

/* DRAMA/MOVIE SINGLE */

#drama-movie.single .drama-movie-head {
	margin-bottom: 4rem;
}

#drama-movie.single .cat-wrap {
	display: flex;
	gap: 1.1rem;
	margin-bottom: 2.4rem;
}

#drama-movie.single .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#drama-movie.single .title {
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-family: "New York", "Newsreader", serif;
}

#drama-movie.single .drama-movie-contents {
	display: flex;
	align-items: flex-start;
	gap: 6.4rem;
	list-style: none;
}

.drama-movie-contents .img-sec {
	width: 42.8rem;
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	background-color: rgb(255 255 255 / 5%);
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.drama-movie-contents .img-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background:
		radial-gradient(66.83% 66.83% at 50% 0%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top/100% 60% no-repeat,
		radial-gradient(50% 33.17% at 50% 100%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom/100% 60% no-repeat;

	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.drama-movie-contents .img-sec img {
	width: 100%;
	height: auto;
}

.drama-movie-contents .info-sec {
	width: 100%;
}

.drama-movie-contents .info-sec dl:not(:last-child) {
	margin-bottom: 3.2rem;
}

.drama-movie-contents .info-sec dt {
	font-family: "New York", "Newsreader", serif;
	font-size: 2rem;
	letter-spacing: 0.06em;
	font-weight: bold;
	padding: 0.8rem 0;
	border-bottom: 1px solid #FFFFFF66;
	margin-bottom: 0.8rem;
}

.drama-movie-contents .info-sec dd {
	line-height: 150%;
}

#drama-movie.single .link-wrap {
	text-align: center;
	margin-top: 8.8rem;
}

/* CONCERT/EVENT ARCHIVE */

#concert-event .contents-area {
	padding: 4rem 0 12rem;
}

#concert-event.archive .concert-event-head {
	margin-bottom: 8rem;
	text-align: right;
}

#concert-event.archive .concert-event-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8rem 4.6rem;
	list-style: none;
}

#concert-event.archive .concert-event-box {
	color: #fff;
}

#concert-event.archive .concert-event-box .img-area {
	width: 100%;
	height: 34rem;
	margin-bottom: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#concert-event.archive .concert-event-box .img-area img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
}

#concert-event.archive .concert-event-box .cat-wrap {
	display: flex;
	gap: 1.1rem;
}

#concert-event.archive .concert-event-box .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#concert-event.archive .concert-event-box .title {
	margin-top: 0.8rem;
	line-height: 150%;
	transition: .1s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	word-break: break-word;
}

#concert-event.archive .concert-event-box:hover .title {
	color: #ffb500;
	transition: .1s;
}

/* CONCERT/EVENT SINGLE */

#concert-event.single .concert-event-head {
	margin-bottom: 4rem;
}

#concert-event.single .cat-wrap {
	display: flex;
	gap: 1.1rem;
	margin-bottom: 2.4rem;
}

#concert-event.single .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#concert-event.single .title {
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-family: "New York", "Newsreader", serif;
}

#concert-event.single .concert-event-contents {
	display: flex;
	align-items: flex-start;
	gap: 6.4rem;
	list-style: none;
}

.concert-event-contents .img-sec {
	width: 42.8rem;
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	background-color: rgb(255 255 255 / 5%);
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.concert-event-contents .img-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background:
		radial-gradient(66.83% 66.83% at 50% 0%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top/100% 60% no-repeat,
		radial-gradient(50% 33.17% at 50% 100%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom/100% 60% no-repeat;

	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.concert-event-contents .img-sec img {
	width: 100%;
	height: auto;
}

.concert-event-contents .info-sec {
	width: 100%;
}

.concert-event-contents .info-sec dl:not(:last-child) {
	margin-bottom: 3.2rem;
}

.concert-event-contents .info-sec dt {
	font-family: "New York", "Newsreader", serif;
	font-size: 2rem;
	letter-spacing: 0.06em;
	font-weight: bold;
	padding: 0.8rem 0;
	border-bottom: 1px solid #FFFFFF66;
	margin-bottom: 0.8rem;
}

.concert-event-contents .info-sec dd {
	line-height: 150%;
}

#concert-event.single .link-wrap {
	text-align: center;
	margin-top: 8.8rem;
}

/* LIVE VIEWING ARCHIVE */

#liveviewing .contents-area {
	padding: 4rem 0 12rem;
}

#liveviewing.archive .liveviewing-head {
	margin-bottom: 8rem;
	text-align: right;
}

#liveviewing.archive .liveviewing-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8rem 4.6rem;
	list-style: none;
}

#liveviewing.archive .liveviewing-box {
	color: #fff;
}

#liveviewing.archive .liveviewing-box .img-area {
	width: 100%;
	height: 34rem;
	margin-bottom: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0.6rem 3rem 0 rgb(0 0 0 / 30%);
}

#liveviewing.archive .liveviewing-box .img-area img {
	max-width: 100%;
	max-height: 100%;
	height: auto;
}

#liveviewing.archive .liveviewing-box .cat-wrap {
	display: flex;
	gap: 1.1rem;
}

#liveviewing.archive .liveviewing-box .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#liveviewing.archive .liveviewing-box .title {
	margin-top: 0.8rem;
	line-height: 150%;
	transition: .1s;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	word-break: break-word;
}

#liveviewing.archive .liveviewing-box:hover .title {
	color: #ffb500;
	transition: .1s;
}

/* LIVE VIEWING SINGLE */

#liveviewing.single .liveviewing-head {
	margin-bottom: 4rem;
}

#liveviewing.single .cat-wrap {
	display: flex;
	gap: 1.1rem;
	margin-bottom: 2.4rem;
}

#liveviewing.single .cat {
	font-family: "New York", "Newsreader", serif;
	font-size: 1rem;
	width: 7.5rem;
	height: 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgb(255 255 255 / 40%);
	font-weight: bold;
	padding-top: 0.25rem;
}

#liveviewing.single .title {
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-family: "New York", "Newsreader", serif;
}

#liveviewing.single .liveviewing-contents {
	display: flex;
	align-items: flex-start;
	gap: 6.4rem;
	list-style: none;
}

.liveviewing-contents .img-sec {
	width: 42.8rem;
	--b: 0.15rem;
	--r: 1rem;
	--glow: rgba(255, 255, 255, .5);
	background-color: rgb(255 255 255 / 5%);
	padding: 0.8rem;
	box-shadow: 0 0.6rem 3rem rgb(0 0 0 / 30%);
	border-radius: var(--r);
	position: relative;
	overflow: hidden;
	flex-shrink: 0;
}

.liveviewing-contents .img-sec::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	padding: var(--b);
	background:
		radial-gradient(66.83% 66.83% at 50% 0%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) top/100% 60% no-repeat,
		radial-gradient(50% 33.17% at 50% 100%,
			var(--glow) 0%, rgba(0, 0, 0, 0) 70%) bottom/100% 60% no-repeat;

	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
}

.liveviewing-contents .img-sec img {
	width: 100%;
	height: auto;
}

.liveviewing-contents .info-sec {
	width: 100%;
}

.liveviewing-contents .info-sec dl:not(:last-child) {
	margin-bottom: 3.2rem;
}

.liveviewing-contents .info-sec dt {
	font-family: "New York", "Newsreader", serif;
	font-size: 2rem;
	letter-spacing: 0.06em;
	font-weight: bold;
	padding: 0.8rem 0;
	border-bottom: 1px solid #FFFFFF66;
	margin-bottom: 0.8rem;
}

.liveviewing-contents .info-sec dd {
	line-height: 150%;
}

#liveviewing.single .link-wrap {
	text-align: center;
	margin-top: 8.8rem;
}

/* COMPANY*/

#company section {
	padding: 7.2rem 0 12rem;
	box-shadow: 0 0.6rem 3rem 0 #00000033 inset;
}

#company .company-contents {
	width: 80rem;
	margin-left: auto;
	position: relative;
	z-index: 2;
}

#company .sec-title {
	font-family: "New York", "Newsreader", serif;
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 2.4rem;
	padding: 0.8rem 0;
	margin-bottom: 6.4rem;
}

#company .sec-title.right::before {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: #fff;
}

#company .sec-title.left::after {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: #fff;
}

#company .sec-title span {
	flex-shrink: 0;
	padding-top: 0.8rem;
}

#company .side-nav {
	padding-top: 7.2rem;
	position: sticky;
	width: 110rem;
	margin: auto;
	top: 0;
}

#company .side-nav ul {
	list-style: none;
}

#company .side-nav ul li {
	margin-top: 2.4rem;
}

#company .side-nav ul li a {
	color: #fff;
	font-size: 2rem;
	letter-spacing: 0.06em;
	font-family: "New York", "Newsreader", serif;
	transition: .1s;
}

#company .side-nav ul li a:hover {
	opacity: 0.6;
	transition: .1s;
}

#introduction {
	margin-top: -26.6rem;
}

#introduction .sec-contents {
	display: flex;
	gap: 4rem;
}

#introduction .sec-contents p:not(:last-child) {
	margin-bottom: 4rem;
}

#introduction .sec-contents .highlight {
	color: #FFB500;
}

#introduction .logo {
	flex-shrink: 0;
}

#introduction .logo img {
	width: 8.5rem;
}

#introduction .contents {
	line-height: 150%;
}

#business {
	background-color: #222222;
}

.business-img {
	margin-bottom: 9.6rem;
	margin-top: 8rem;
}

.business-list {
	list-style: none;
}

.business-list li:not(:last-child) {
	margin-bottom: 9.6rem;
}

.business-list li .img-area {
	height: 41.4rem;
	background-size: cover;
	background-position: center;
	border-radius: 2rem 2rem 0 0;
	position: relative;
}

.business-list li .num {
	position: absolute;
	top: 4.4rem;
	left: 4rem;
	width: 10.6rem;
	mix-blend-mode: difference;
}

.business-list li h3 {
	position: absolute;
	bottom: 2.4rem;
	left: 4rem;
	font-size: 4.8rem;
	letter-spacing: 0.06em;
	mix-blend-mode: difference;
	font-weight: 400;
	font-family: "New York", "Newsreader", serif;
}

.business-list .management .img-area {
	background-image: url(../img/bussiness_manegement.jpg);
}

.business-list .production .img-area {
	background-image: url(../img/bussiness_production.jpg);
}

.business-list .distribution .img-area {
	background-image: url(../img/bussiness_distribution.jpg);
}

.business-list li .detail-area {
	background-color: #fff;
	border-radius: 0 0 2rem 2rem;
	color: #000;
	line-height: 150%;
	padding: 2.4rem 4rem;
}

#partnership .map-img {
	margin-bottom: 6.4rem;
}

#partnership h3 {
	color: #FFB500;
	font-weight: 700;
	letter-spacing: 0.06em;
	font-size: 2.4rem;
	display: flex;
	align-items: center;
	gap: 1.6rem;
	padding: 0.8rem 0;
	margin-bottom: 2.4rem;
}

#partnership h3 small {
	font-size: 1.6rem;
	font-family: "New York", "Newsreader", serif;
	font-weight: normal;
	padding-top: 0.4rem;
}

#partnership .partnership-cat:not(:last-child) {
	margin-bottom: 6.4rem;
}

#partnership .group-cat:not(:last-child) {
	margin-bottom: 2.4rem;
}

#partnership .group-cat.col2 {
	display: flex;
	gap: 2.4rem;
}

#partnership .group-cat dl {
	width: 100%;
}

#partnership .group-cat dt {
	font-weight: 600;
	padding: 0.8rem 1.6rem;
	margin-bottom: 0.8rem;
}

#partnership .group-cat dd {
	background-color: rgb(255 255 255 / 10%);
	border-radius: 2rem;
	padding: 1.6rem 0;
}

#partnership .group-cat dd.col2 {
	display: flex;
	gap: 1.6rem;
}

#partnership .partnership-list {
	list-style: none;
	width: 100%;
	padding-left: 1.6rem;
}

#partnership .partnership-list li:not(:last-child) {
	margin-bottom: 1.6rem;
}

#partnership .partnership-list li {
	line-height: 150%;
}

#partnership .partnership-list li a {
	color: #fff;
}

#partnership .external-link {
	gap: 0.6rem;
}

#partnership .external-link::after {
	content: "";
	display: inline-block;
	background-image: url(../img/ico_external.png);
	width: 1.4rem;
	height: 1.4rem;
	background-size: cover;
	background-position: center;
	margin-left: 0.6rem;
}

#contact-us {
	background-color: #222222;
}

#contact-us .info {
	line-height: 150%;
	margin-bottom: 3.2rem;
}

#contact-us .company-name {
	color: #ffb500;
	font-weight: 700;
	margin-bottom: 0.8rem;
}

#contact-us .map iframe {
	width: 100%;
	height: 34rem;
}

/* AUDITION */

#audition .side-nav {
	padding-top: 7.2rem;
	padding-bottom: 10rem;
	position: sticky;
	width: 110rem;
	margin: auto;
	top: 0;
}

#audition .side-nav ul {
	list-style: none;
}

#audition .side-nav ul li {
	margin-top: 2.4rem;
}

#audition .side-nav ul li a {
	color: #fff;
	font-size: 2rem;
	letter-spacing: 0.06em;
	transition: .1s;
}

#audition .side-nav ul li a:hover {
	opacity: 0.6;
	transition: .1s;
}

#audition .side-nav .btn-wrap {
	margin-top: 4rem;
}

.apply-btn {
	background-color: #ffb500;
	color: #000;
	border: none;
	width: 19.6rem;
	height: 5rem;
	border-radius: 3rem;
	font-weight: 600;
	cursor: pointer;
	transition: .1s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	text-decoration: none;
}

.apply-btn:hover {
	background-color: #fff;
	transition: .1s;
}

.apply-btn::before {
	content: '';
	width: 0.6rem;
	height: 0.6rem;
	border-top: 0.2rem solid #000;
	border-right: 0.2rem solid #000;
	transform: rotate(45deg);
}

#audition section {
	padding: 7.2rem 0 12rem;
	box-shadow: 0 0.6rem 3rem 0 #00000033 inset;
}

#audition .company-contents {
	width: 80rem;
	margin-left: auto;
	position: relative;
	z-index: 2;
}

#audition .sec-title {
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 2.4rem;
	padding: 0.8rem 0;
	margin-bottom: 6.4rem;
}

#audition .audition-contents {
	width: 80rem;
	margin-left: auto;
	position: relative;
	z-index: 2;
}

#application-fields {
	margin-top: -52.8rem;
}

#application-fields .sec-contents {
	position: relative;
	text-align: center;
}

#application-fields .sec-contents::before {
	content: 'AUDITION';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-size: 16rem;
	font-weight: 400;
	color: #222222;
	letter-spacing: 0.04rem;
	font-family: "New York", "Newsreader", serif;
}

#application-fields .fields-list {
	display: inline-grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	position: relative;
}

#application-fields .fields-item {
	background-color: rgb(255 255 255 / 9%);
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	width: 17.6rem;
	height: 17.6rem;
	backdrop-filter: blur(5rem);
	-webkit-backdrop-filter: blur(5rem);
	box-shadow: 0 0.6rem 3rem 0 rgb(0 0 0 / 30%);
}

#application-fields .fields-item .icon img {
	max-width: 7.2rem;
	max-height: 7.2rem;
}

#application-fields .fields-item .label {
	font-weight: bold;
	line-height: 150%;
}

#audition-process {
	background-color: #222222;
}

#audition-process .step {
	list-style: none;
}

#audition-process .step li {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	margin-bottom: 4rem;
	height: 11rem;
	display: flex;
	align-items: center;
	text-align: center;
	position: relative;
}

#audition-process .step li:last-child {
	margin-bottom: 0;
}

#audition-process .step li:not(:last-child):after {
	content: "";
	height: 4rem;
	width: 1px;
	position: absolute;
	left: 3rem;
	top: 100%;
	background-color: #FFB500;
	z-index: -1;
}

#audition-process .step-num {
	flex-shrink: 0;
	width: 7.2rem;
	display: flex;
	flex-direction: column;
	font-family: "New York", "Newsreader", serif;
	letter-spacing: 0.06em;
	font-weight: 600;
}

#audition-process .step-num .label {
	color: #FFB500;
}

#audition-process .step-num .num {
	font-size: 3.6rem;
	padding-top: 0.4rem;
}

#audition-process .step-contents {
	width: 100%;
	font-weight: 700;
	line-height: 150%;
}

#how-to-apply .msg-area {
	margin-bottom: 3.2rem;
	line-height: 150%;
}

#required-attachment {
	background-color: #222222;
}

#required-attachment ul {
	list-style: none;
}

#required-attachment .list-area {
	margin-bottom: 5.6rem;
}

#required-attachment .list-area ul li {
	list-style: none;
}

#required-attachment .detail-area li {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	margin-bottom: 2.4rem;
}

#required-attachment .detail-area li:last-child {
	margin-bottom: 0;
}

#required-attachment .detail-area li .icon {
	background: #FFFFFF1A;
	border-radius: 50%;
	width: 6.4rem;
	height: 6.4rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#required-attachment .detail-area li .icon img {
	width: 4rem;
}

#required-attachment .detail-area li h3 {
	font-size: 2rem;
	line-height: 150%;
	flex-shrink: 0;
}

#required-attachment .detail-area li .contents {
	line-height: 150%;
}

#notice .notice-area {
	margin-bottom: 3.2rem;
}

#notice .notice-area ol {
	list-style: none;
	line-height: 150%;
}

#notice .qa-area details {
	border: 1px solid #fff;
	line-height: 150%;
	margin-bottom: 3.2rem;
	cursor: pointer;
}

#notice .qa-area details:last-child {
	margin-bottom: 0;
}

#notice .qa-area .question {
	padding: 1.6rem 8rem 1.6rem 2.4rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 3.2rem;
	font-weight: bold;
}

#notice .qa-area .question::before {
	content: "";
	width: 1.4rem;
	height: 0.2rem;
	background-color: #FFB500;
	position: absolute;
	right: 3rem;
}

#notice .qa-area .question::after {
	content: "";
	width: 1.4rem;
	height: 0.2rem;
	background-color: #FFB500;
	position: absolute;
	right: 3rem;
	transform: rotate(90deg);
	opacity: 1;
	transition: transform .3s ease, opacity .3s ease;
}

#notice .qa-area details[open] .question::after {
	opacity: 0;
	transform: rotate(0deg);
}

#notice .qa-area .answer {
	border-top: 1px dashed #fff;
	padding: 1.6rem 2.4rem;
	display: flex;
	align-items: center;
	gap: 3.2rem;
}

#notice .qa-area .icon {
	font-weight: 600;
	letter-spacing: 0.06em;
	font-size: 2.4rem;
	font-family: "New York", "Newsreader", serif;
	flex-shrink: 0;
}

#notice .qa-area .question .icon {
	color: #FFB500;
}

#audition.apply .contents-area {
	padding: 8.8rem 0 12rem;
}

#audition.apply .contents-area .container {
	width: 65.6rem;
}

#audition.apply .apply-title {
	display: flex;
	align-items: center;
	gap: 2.4rem;
	padding: 0.8rem 0;
	margin-bottom: 6.4rem;
}

.apply-title h2 {
	font-size: 4rem;
	letter-spacing: 0.06em;
	font-family: "New York", "Newsreader", serif;
}

.apply-title .notes {
	color: #FFB500;
	line-height: 150%;
}

#audition.apply .comp-msg {
	line-height: 150%;
}

#audition.apply .comp-msg .emphasis {
	font-size: 2rem;
}

#audition.apply .link-wrap {
	text-align: center;
	margin-top: 8rem;
}

/* OPENCALL */

#opencall.complete,
#opencall.confirm {
	background-color: #222222;
}

#opencall section {
	padding: 9.6rem 0 12rem;
	box-shadow: 0 0.6rem 3rem 0 #00000033 inset;
}

#opencall .sec-title {
	font-size: 4rem;
	letter-spacing: 0.04em;
	margin-bottom: 6.4rem;
}

#opencall .sec-contents {
	line-height: 150%;
}

#opencall .cat-title {
	color: #FFB500;
	font-size: 2.4rem;
	letter-spacing: 0.06em;
	margin-bottom: 3.2rem;
}

#opencall .about .sec-title {
	margin-bottom: 4rem;
}

#opencall .guidelines {
	background-color: #222222;
	padding-bottom: 8rem;
}

#opencall .guidelines .category {
	margin-bottom: 6.4rem;
}

#opencall .guidelines .category ul {
	list-style: none;
	display: flex;
	gap: 4.6rem;
}

#opencall .guidelines .category li {
	width: 100%;
	background-color: #FFB500;
	color: #000;
	font-size: 2rem;
	font-family: "New York", "Newsreader", serif;
	height: 11.6rem;
	border-radius: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

#opencall .guidelines .attachments ul {
	list-style: none;
}

#opencall .guidelines .attachments li {
	text-indent: -1.5em;
	padding-left: 1.5em;
}

#opencall .guidelines .attachments li::before {
	content: "・";
	padding: 0 0.25em;
}

#opencall details {
	border: 1px solid #fff;
	line-height: 150%;
	margin-bottom: 3.2rem;
	cursor: pointer;
}

#opencall details:last-child {
	margin-bottom: 0;
}

#opencall .question {
	padding: 1.6rem 8rem 1.6rem 2.4rem;
	position: relative;
	display: flex;
	align-items: center;
	gap: 3.2rem;
	font-weight: bold;
}

#opencall .question::before {
	content: "";
	width: 1.4rem;
	height: 0.2rem;
	background-color: #FFB500;
	position: absolute;
	right: 3rem;
}

#opencall .question::after {
	content: "";
	width: 1.4rem;
	height: 0.2rem;
	background-color: #FFB500;
	position: absolute;
	right: 3rem;
	transform: rotate(90deg);
	opacity: 1;
	transition: transform .3s ease, opacity .3s ease;
}

#opencall details[open] .question::after {
	opacity: 0;
	transform: rotate(0deg);
}

#opencall .answer {
	border-top: 1px dashed #fff;
	padding: 1.6rem 2.4rem;
	display: flex;
	align-items: center;
	gap: 3.2rem;
}

#opencall .icon {
	font-weight: 600;
	letter-spacing: 0.06em;
	font-size: 2.4rem;
	font-family: "New York", "Newsreader", serif;
	flex-shrink: 0;
}

#opencall .question .icon {
	color: #FFB500;
}

#opencall .apply {
	background-color: #222222;
	height: 100%;
}

#opencall.complete .apply,
#opencall.confirm .apply {
	box-shadow: none;
}

#opencall .apply .form-wrap {
	width: 65.6rem;
	margin: auto;
}

#opencall .apply .comp-msg {
	line-height: 150%;
}

#opencall .apply .comp-msg .emphasis {
	font-size: 2rem;
}

#opencall .apply .link-wrap {
	text-align: center;
	margin-top: 8rem;
}

/* PRIVACYPOLICY */

#privacypolicy .contents-area {
	padding: 7.2rem 0 12rem;
	line-height: 150%;
}

.privacy-title {
	color: #ffb500;
	font-size: 2rem;
	margin-bottom: 2.4rem;
	font-family: "New York", "Newsreader", serif;
}

.privacy-lead {
	margin-bottom: 3.2rem;
}

.privacy-section:not(:last-child) {
	margin-bottom: 3.2rem;
}

.privacy-section-title {
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	margin-bottom: 0.8rem;
	font-size: 1.6rem;
}

@media only screen and (min-width: 1440px) {
	html {
		font-size: 10px;
	}

	.sp-only {
		display: none;
	}
}