@charset "UTF-8";

html,
body {
	color: #111;
	font-size: 16px;
	line-height: 1.6;
	min-width: 320px;
	font-family: "playfair-display", "pretendard", sans-serif;
	background-color: #fff;
}

.wrap {
	position: relative;
	max-width: 96%;
	margin: 0 auto;
}

table {
	width: 100%;
	table-layout: fixed;
}

table th {
	border-top: 2px solid #111;
	border-bottom: 1px solid #111;
	padding: 0.8rem 1.6rem;
	font-weight: 700;
	text-align: center;
	background-color: #f7f7f7;
}

table td {
	border-bottom: 1px solid #ddd;
	padding: 0.8rem 1.6rem;
	vertical-align: middle;
	color: #444;
}

table tr:hover {
	background-color: #f7f7f7;
}

.checkbox {
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

input[type="checkbox"] {
	width: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
	height: clamp(1.25rem, 1.179rem + 0.36vw, 1.5rem);
	border: 2px solid #111;
}

input[type="checkbox"]:checked {
	background: url('../img/contents/check_ic.png') no-repeat center;
}

.checkbox span {
	font-size: clamp(0.938rem, 0.884rem + 0.27vw, 1.125rem);
	line-height: 1;
}

input[type="text"],
input[type="date"],
input[type="password"],
select {
	display: flex;
	align-items: center;
	height: 3.5rem;
	background-color: #f5f5f5;
	font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
	padding: 0 1.5rem;
	border: 1px solid #f5f5f5;
	transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	border-radius: 10rem;
	font-family: 'pretendard';
	width: 100%;
}

input[type="date"],
select {
	width: auto;
}

select {
	padding: 0 3rem 0 1.5rem;
	background: url('../img/common/select_arr.png') #f5f5f5 no-repeat right 1.5rem center;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
select:focus {
	border-color: #111;
	background-color: #fff;
}

textarea {
	width: 100%;
	height: 15rem;
	background-color: #f5f5f5;
	font-size: clamp(1rem, 0.964rem + 0.18vw, 1.125rem);
	padding: 1rem 1.5rem;
	border: 1px solid #f5f5f5;
	transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	border-radius: 0.5rem;
}

textarea:focus {
	border-color: #111;
	background-color: #fff;
}

input::placeholder,
textarea::placeholder {
	color: #999;
}

.radio-btn-wrap {
	display: flex;
}

.radio-btn {
	display: flex;
	height: 3.5rem;
	flex: 1;
	background-color: #f5f5f5;
}

.radio-btn input[type=radio] {
	display: none;
}

.radio-btn label {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	cursor: pointer;
	font-size: 1.125rem;
	padding: 0 1rem;
	transition: 0.2s cubic-bezier(0.46, 0.03, 0.52, 0.96);
	white-space: nowrap;
}

.radio-btn input[type=radio]:checked+label {
	background: #111;
	color: #fff;
}

.radio-btn-wrap.small {
	width: 300px;
}

.radio-btn-wrap.medium {
	width: 600px;
}

.radio-btn-wrap.large {
	width: 100%;
}

@media (max-width: 1024px) {

	input[type="text"].medium,
	.radio-btn-wrap.medium {
		width: 100%;
	}
}

@media (max-width: 425px) {
	.radio-btn-wrap.small {
		width: 100%;
	}

	input[type="date"] {
		width: 100%;
	}
}

.btn-submit {
	pointer-events: auto;
	cursor: pointer;
	background: #e7e7e7;
	border: none;
	padding: 1.8rem 3rem;
	margin: 0;
	font-family: inherit;
	position: relative;
	display: inline-block;
	overflow: hidden;
	font-size: clamp(1.125rem, 1.071rem + 0.27vw, 1.313rem);
	color: #fff;
	line-height: 1;
}

.btn-submit::before,
.btn-submit::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.btn-submit span {
	display: block;
	position: relative;
	mix-blend-mode: difference;
	z-index: 10;
}

.btn-submit:hover span {
	animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
}

@keyframes MoveScaleUpInitial {
	to {
		transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
		opacity: 0;
	}
}

@keyframes MoveScaleUpEnd {
	from {
		transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
		opacity: 0;
	}

	to {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.btn-submit::before {
	content: '';
	background: #000;
	width: 120%;
	height: 0;
	padding-bottom: 120%;
	top: -110%;
	left: -10%;
	border-radius: 50%;
	transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
}

.btn-submit:hover::before {
	transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-submit::after {
	content: '';
	background: #000;
	transform: translate3d(0, -101%, 0);
	transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn-submit:hover::after {
	transform: translate3d(0, 0, 0);
	transition-duration: 0.05s;
	transition-delay: 0.4s;
	transition-timing-function: linear;
}

.btn-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 20px;
	white-space: nowrap;
}
.bt-link2 {
padding-top: 2%;
/*flex: 1;*/
}



.bt-link2 .btn-link .text {
	display: block;
	font-weight: 600;
	float:left;
}

.btn-link .text {
	display: block;
	font-weight: 600;
}

.btn-link .arr {
	display: flex;
	position: relative;
	align-items: center;
}

.btn-link .arr::before {
	content: '(';
}

.btn-link .arr::after {
	content: ')';
}

.btn-link .arr .link-arr {
	margin: 0 5px 0 10px;
}

.btn-link .arr .link-arr .length {
	transition: 0.3s;
	width: clamp(3.438rem, 5vw + 1rem, 5.625rem);
	height: 2px;
}

.btn-link:hover .arr .link-arr .length {
	width: 120px;
}

.btn-link .arr .link-arr svg {
	width: 17px;
	margin-left: -13px;
}

@media (max-width: 1440px) {
	.btn-link {
		font-size: 18px;
	}
}

@media (max-width: 1024px) {
	.btn-link .arr .link-arr svg {
		width: 15px;
		margin-left: -11px;
	}

	.btn-link:hover .arr .link-arr .length {
		width: 100px;
	}
}

@media (max-width: 768px) {
	.btn-submit {
		padding: 1.6rem 2rem;
	}

	.btn-link .arr .link-arr {
		margin: 0 3px 0 6px;
	}

	.btn-link {
		font-size: 16px;
		gap: 8px;
	}

}

@media (max-width: 425px) {
	.btn-submit {
		padding: 1.2rem 1.6rem;
	}

	.btn-link .arr .link-arr .length {
		height: 1px;
	}

	.btn-link .arr .link-arr svg {
		width: 11px;
		margin-left: -8px;
	}
}

header {
	position: relative;
	z-index: 12;
	mix-blend-mode: difference;
}

header .logo {
	position: fixed;
	top: 2%;
	left: 2%;
	width: clamp(3.2rem, 4vw, 6rem);
}

header .logo a {
	display: block;
}

header .logo svg {
	fill: #fff;
}

.nav-but-wrap {
	position: fixed;
	right: 2%;
	top: 4%;
	/* z-index: 100; */
	transition: all 0.3s ease-out;
}

.menu-icon {
	position: relative;
	z-index: 2;
	cursor: pointer;
	height: 37px;
}

.menu-icon__line {
	height: 3px;
	width: 54px;
	display: block;
	background-color: #fff;
	margin-bottom: 14px;
	cursor: pointer;
	-webkit-transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: background-color .5s ease, -webkit-transform .2s ease;
	transition: transform .2s ease, background-color .5s ease;
	transition: transform .2s ease, background-color .5s ease, -webkit-transform .2s ease;
}

.menu-icon__line-left {
	width: 50%;
	transition: all 200ms linear;
}

.menu-icon__line-right {
	width: 50%;
	float: right;
	transition: all 200ms linear;
}

.menu-icon:hover .menu-icon__line-left,
.menu-icon:hover .menu-icon__line-right {
	width: 100%;
}

@media (max-width: 768px) {
	.nav-but-wrap {
		transform: scale(0.8);
		top: 2.7%;
	}
}

.nav {
	position: fixed;
	z-index: 11;
}

.nav:before,
.nav:after {
	content: "";
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgba(20, 21, 26, 0.6);
	border-bottom-left-radius: 200%;
	z-index: -1;
	-webkit-transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, -webkit-transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
	transform: translateX(100%) translateY(-100%);
}

.nav:after {
	background: rgba(9, 9, 12, 0.9);
	transition-delay: 0s;
}

.nav:before {
	transition-delay: .2s;
}

.nav__content {
	position: fixed;
	visibility: hidden;
	top: 50%;
	left: 4%;
	transform: translate(0%, -47%);
	width: 92%;
	text-align: center;

	display: flex;
	justify-content: center;
	gap: 4vw;
}

.nav__list {
	position: relative;
	z-index: 2;
}

.nav__content .info {
	color: hsla(0, 0%, 100%, 0.5);
	font-size: 14px;
	font-family: 'pretendard';

	opacity: 0;
	transition: opacity .2s ease;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 4rem 0;
}

.nav-active .nav__content .info {
	opacity: 1;
	transition: opacity .3s ease;
	transition-delay: 1.4s;
}

.nav__content .info::before {
	content: '';
}

.nav__content .info-inner {
	display: flex;
	flex-direction: column;
	gap: 4vh;
}

.nav__content .info div span {
	display: block;
	text-align: left;
}

.nav__list-item {
	position: relative;
	display: block;
	transition-delay: 0.8s;
	opacity: 0;

	text-align: left;
	padding-left: 40px;
	margin: 2rem 0;

	color: #fff;
	overflow: hidden;
	/* font-family: 'pretendard'; */
	font-size: clamp(2.5rem, 2vw + 2rem, 6.875rem);
	font-size: clamp(2rem, 3vw + 1rem, 4.25rem);
	font-weight: 600;
	line-height: 1.15;
	letter-spacing: 3px;
	transform: translate(100px, 0%);
	-webkit-transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, -webkit-transform .3s ease;
	transition: opacity .2s ease, transform .3s ease;
	transition: opacity .2s ease, transform .3s ease, -webkit-transform .3s ease;
}

.nav__list-item a {
	position: relative;
	text-decoration: none;
	color: rgba(255, 255, 255, 0.5);
	/* overflow: hidden;  */
	cursor: pointer;
	padding-left: 5px;
	padding-right: 5px;
	z-index: 2;
	display: inline-block;
	text-transform: uppercase;
	transition: all 200ms linear;
	white-space: nowrap;
}

.nav__list-item a::before {
	display: block;
	position: absolute;
	top: 0;
	left: -40px;
	font-size: 0.25em;
}

.nav__list-item:nth-child(1) a::before {
	content: '01';
}

.nav__list-item:nth-child(2) a::before {
	content: '02';
}

.nav__list-item:nth-child(3) a::before {
	content: '03';
}

.nav__list-item:nth-child(4) a::before {
	content: '04';
}

.nav__list-item:nth-child(5) a::before {
	content: '05';
}

.nav__list-item:nth-child(6) a::before {
	content: '06';
}

.nav__list-item:nth-child(7) a::before {
	content: '07';
}

.nav__list-item a:after {
	position: absolute;
	content: '';
	top: 50%;
	margin-top: -0.5vw;
	left: 50%;
	width: 0;
	height: 0;
	opacity: 0;
	background-color: #ff793d;
	z-index: 1;
	transition: all 200ms linear;
}

.nav__list-item a:hover:after {
	height: 4px;
	opacity: 1;
	left: 0;
	width: 100%;
}

.nav__list-item a:hover {
	color: rgba(255, 255, 255, 1);
}

.nav__list-item.active-nav a {
	color: rgba(255, 255, 255, 1);
	font-style: italic;
}

.nav__list-item.active-nav a:after {
	height: 4px;
	opacity: 1;
	left: 0;
	width: 100%;
}

.nav-active .nav__content {
	visibility: visible;
}

.nav-active .menu-icon__line {
	background-color: #fff;
	transform: translate(0px, 0px) rotate(-45deg);
}

.nav-active .menu-icon__line-left {
	/* width: 15px; */
	transform: translate(3px, 7px) rotate(45deg);
}

.nav-active .menu-icon__line-right {
	/* width: 15px; */
	/* float: right; */
	transform: translate(-4px, -7px) rotate(45deg);
}

.nav-active .menu-icon:hover .menu-icon__line-left,
.nav-active .menu-icon:hover .menu-icon__line-right {
	width: 50%;
}

.nav-active.nav {
	visibility: visible;
}

.nav-active.nav:before,
.nav-active.nav:after {
	transform: translateX(0%) translateY(0%);
	border-radius: 0;
}

.nav-active.nav:after {
	transition-delay: .1s;
}

.nav-active.nav:before {
	transition-delay: 0s;
}

.nav-active .nav__list-item {
	opacity: 1;
	transform: translateX(0%);
	-webkit-transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, color .3s ease, -webkit-transform .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease;
	transition: opacity .3s ease, transform .3s ease, color .3s ease, -webkit-transform .3s ease;
}

.nav-active .nav__list-item:nth-child(0) {
	transition-delay: 0.7s;
}

.nav-active .nav__list-item:nth-child(1) {
	transition-delay: 0.8s;
}

.nav-active .nav__list-item:nth-child(2) {
	transition-delay: 0.9s;
}

.nav-active .nav__list-item:nth-child(3) {
	transition-delay: 1s;
}

.nav-active .nav__list-item:nth-child(4) {
	transition-delay: 1.1s;
}

.nav-active .nav__list-item:nth-child(5) {
	transition-delay: 1.2s;
}

.nav-active .nav__list-item:nth-child(6) {
	transition-delay: 1.3s;
}

.nav-active .nav__list-item:nth-child(7) {
	transition-delay: 1.4s;
}

.nav-active .nav__list-item:nth-child(8) {
	transition-delay: 1.5s;
}

.nav-active .nav__list-item:nth-child(9) {
	transition-delay: 1.6s;
}

.nav-active .nav__list-item:nth-child(10) {
	transition-delay: 1.7s;
}

@media (max-width: 768px) {
	.nav__list-item {
		padding-left: 30px;
	}

	.nav__list-item a::before {
		left: -30px;
		font-size: 0.3em;
	}

	.nav__content .info {
		display: none;
	}
}

@media (max-width: 425px) {
	.nav__list-item {
		padding-left: 20px;
	}

	.nav__list-item a::before {
		left: -20px;
	}
}

.mobius-ani {
	position: fixed;
	right: 1.5%;
	bottom: 2%;
	z-index: 2;
	mix-blend-mode: difference;
	opacity: 0.7;
}

.mobius-ani a {
	display: block;
	width: 120px;
}

.mobius-ani svg {
	width: 100%;
	height: auto;
	overflow: visible;
}

.mobius-ani svg path {
	fill: transparent;
	stroke: transparent;
	stroke-width: 0;
}

.mobius-ani svg text {
	font-size: 12px;
	font-weight: 100;
	letter-spacing: 2px;
	fill: white;
}

.mobius-ani .shadow {
	width: 100%;
	height: 3px;
	background-color: #fff;
	filter: blur(5px);
	border-radius: 50%;
	opacity: 0.8;
	margin-top: 1vh;
}

@media (max-width: 768px) {
	.mobius-ani {
		right: 2%;
		bottom: 1%;
	}

	.mobius-ani a {
		width: 80px;
	}

	.mobius-ani .shadow {
		height: 2px;
		filter: blur(4px);
		margin-top: 0.5vh;
	}
}

footer {
	position: relative;
	padding: 2% 0;
	background-color: #111;
	font-family: 'pretendard';
	color: hsla(0, 0%, 100%, 0.7);
	font-size: clamp(0.75rem, 0.83vw, 1.25rem);
}

footer .info {
	display: flex;
	align-items: center;
	gap: 0 2vw;
	flex-wrap: wrap;

	justify-content: center;
}

footer .info strong {
	font-size: 1.2em;
	font-weight: 500;
}

footer .info span {
	display: flex;
	align-items: center;
	gap: 0.5vw;
}

footer .contact {
	display: flex;
	align-items: center;
	gap: 1.2vw;
}

footer .contact li {
	display: flex;
	align-items: center;
	gap: 0.5vw;
}

footer .copyright {
	margin-top: 1%;
	opacity: 0.7;
	font-size: 0.9em;
	font-weight: 300;
	letter-spacing: 0.05vw;
	text-align: center;
}

@media (max-width: 768px) {
	footer {
		padding: 6% 0;
	}

	footer .contact {
		gap: 3vw;
	}

	footer .contact li {
		gap: 1.5vw;
	}
}

@media (max-width: 425px) {
	footer .info {
		flex-direction: column;
		gap: 1vw 0;
	}

	footer .copyright {
		margin-top: 3%;
	}
}

.mouse-cursor {
	pointer-events: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	mix-blend-mode: difference;
	animation: fadeInCursor 2s;
}

.cursor__ball {
	margin: -20px 0 0 -20px;
}

@keyframes fadeInCursor {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.mouse-cursor.link-grow .cursor__ball {
	margin: -10px 0 0 -20px;
}

.mouse-cursor.link-grow svg circle {
	fill: #fff;
}

@media (pointer:coarse) {
	.mouse-cursor {
		display: none;
	}
}

html.lenis {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-scrolling iframe {
	pointer-events: none;
}

.pageload-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	visibility: hidden;

	background: #fff;
	z-index: 11;
}

.pageload-overlay.show {
	visibility: visible;
}

.pageload-overlay::after,
.pageload-overlay::before {
	content: '';
	position: fixed;
	width: 2vw;
	height: 2vw;
	top: 50%;
	left: 50%;
	margin: -1vw 0 0 -1vw;
	border-radius: 50%;
	visibility: visible;
	z-index: 1000;
	-webkit-transition: opacity 0.15s, visibility 0s 0.15s;
	transition: opacity 0.15s, visibility 0s 0.15s;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.pageload-overlay::after {
	background: #222;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	-webkit-animation: moveRight 0.6s linear infinite alternate;
	animation: moveRight 0.6s linear infinite alternate;
}

.pageload-overlay::before {
	background: transparent;
	border: 2px solid #222;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	-webkit-animation: moveLeft 0.6s linear infinite alternate;
	animation: moveLeft 0.6s linear infinite alternate;
}

@-webkit-keyframes moveRight {
	to {
		-webkit-transform: translateX(20px);
	}
}

@keyframes moveRight {
	to {
		transform: translateX(20px);
	}
}

@-webkit-keyframes moveLeft {
	to {
		-webkit-transform: translateX(-20px);
	}
}

@keyframes moveLeft {
	to {
		transform: translateX(-20px);
	}
}