@charset "UTF-8";

:root {
	--mgscale: 1;
	--mgsize: 200px;
	/* --scrollbar-width: 36px; */
}

.main-fix-scdown {
	position: fixed;
	left: 1%;
	bottom: 1%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	mix-blend-mode: difference;
	/* opacity: 0.7; */
}

.main-fix-scdown .sc-text {
	display: block;
	text-transform: uppercase;
	color: #fff;
	font-family: 'pretendard';
	font-size: 14px;
	font-weight: 200;
	letter-spacing: .2em;
	writing-mode: vertical-lr;
	transform: rotateZ(180deg);
	margin-bottom: 0.5vw;
}

.main-fix-scdown .line-ani {
	display: block;
	margin: auto;
	width: 1px;
	height: 90px;
	background: #fff;
	animation: elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes elasticus {
	0% {
		transform-origin: 0% 0%;
		transform: scale(1, 0);
	}

	50% {
		transform-origin: 0% 0%;
		transform: scale(1, 1);
	}

	50.1% {
		transform-origin: 0% 100%;
		transform: scale(1, 1);
	}

	100% {
		transform-origin: 0% 100%;
		transform: scale(1, 0);
	}
}

.main-fix-scdown .arrow-down {
	display: block;
	margin: -8px auto 0;
	height: 12px;
}

.main-fix-scdown .arrow-down:after {
	content: '';
	display: block;
	margin: 0;
	padding: 0;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
	box-sizing: content-box;
}

@media (max-width: 1024px) {
	.main-fix-scdown {
		left: 0;
		bottom: 0;
	}

	.main-fix-scdown .sc-text {
		font-size: 10px;
		margin-bottom: 1.5vw;
		font-weight: 400;
	}

	.main-fix-scdown .line-ani {
		height: 50px;
	}
}

.link-arr {
	display: flex;
	align-items: flex-end;
}

.link-arr .length {
	display: block;
	width: 10vw;
	height: clamp(0.125rem, 0.104rem + 0.09vw, 0.25rem);
	background-color: #000;
}

.link-arr svg {
	width: clamp(0.938rem, 0.759rem + 0.89vw, 2.188rem);
	margin-left: -1vw;
}

.link-arr svg path {
	fill: transparent;
	stroke: #111;
	stroke-width: 3px;
}

@media (max-width: 1024px) {
	.link-arr svg {
		margin-left: -1.5vw;
	}
}

@media (max-width: 425px) {
	.link-arr svg {
		margin-left: -3vw;
	}
}

.tag-text {
	display: flex;
	gap: 1.5%;
}

.tag-text>span {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100vw;
	line-height: 1;
	font-weight: 500;
	padding: 1.6% 3.8% 0.8%;

	white-space: nowrap;
}

.tag-text .black {
	background-color: #111;
	color: #fff;
}

.tag-text .orange {
	background-color: #ff793d;
	color: #111;
}

.tag-text .line {
	background-color: #fff;
	color: #111;
	border: 2px solid #111;
}

@media (max-width: 425px) {
	.tag-text>span {
		padding: 3% 5% 2%;
	}

	.ios-device .tag-text>span {
		padding: 1.6% 5% 3%;
	}
}

.video-area video {
	width: 100%;
}

.ms1 {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
	animation: blurFadeIn 1.5s ease-in-out;
	overflow: hidden;
}

@keyframes blurFadeIn {
	from {
		filter: blur(5px);
		opacity: 0;
	}

	to {
		filter: blur(0);
		opacity: 1;
	}
}

.ms1-inner {
	width: 100%;
}

.ms1 h2 {
	font-size: clamp(2.9rem, 9cqw, 20vh);
	line-height: 1.1;
	letter-spacing: clamp(-0.3rem, -0.5vw, 0rem);
	text-transform: uppercase;
	white-space: nowrap;

	text-align: center;
}

.splitting .word {
	white-space: nowrap;
}

.ms1 h2 .word[data-word="ADDING"] {
	margin-left: 4cqw;
	font-family: 'pretendard';
}

.ms1 h2 .word[data-word="SPECIALITY"] {
	/* margin-left: 18cqw; */
	font-style: italic;
}

.ms1 h2 .word[data-word="TO"] {
	font-family: 'pretendard';
}

.ms1 h2 .word[data-word="THE"] {
	font-family: 'pretendard';
}

.ms1 .border {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -8% 0 0 -33%;
	z-index: -1;
	width: 53vw;
}

.ms1 .border svg {
	width: 100%;
	height: 100%;
}

.ms1 .border .path-ani {
	fill: transparent;
	stroke: #111;
	stroke-width: 3px;

	width: 100%;
	height: 100%;

	stroke-dasharray: 2450;
	stroke-dashoffset: 2450;
	animation: pathDash 3s ease-in-out infinite alternate;
}

@keyframes pathDash {
	0% {
		stroke-dashoffset: 2450;
	}

	15% {
		stroke-dashoffset: 2450;
	}

	85% {
		stroke-dashoffset: 0;
	}

	100% {
		stroke-dashoffset: 0;

	}
}

.ms1 .bottom {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: relative;
	z-index: 1;

	margin-top: 5vh;
	gap: 5rem;
}

.ms1 .tag-text {
	/* flex: 1 1 auto; */
}

.ms1 .tag-text span {
	font-size: clamp(1.1rem, 2.5vw, 2.5vw);
	opacity: 0;
	transform: translateX(-15%);
	animation: tagAppear 1s ease-in-out forwards;

	padding: 1.1rem 1.8rem 0.7rem;
}

@keyframes tagAppear {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.ms1 .tag-text span:nth-child(2) {
	animation-delay: 0.5s;
}

.ms1 .tag-text span:nth-child(3) {
	animation-delay: 1s;
}

.ms1 .link-arr {
	transition: 0.3s;
	cursor: pointer;
}

.ms1 .link-arr:hover {
	transform: translateX(-10%);
}

.ms1 .link-arr .length {
	animation: arrLine 0.7s ease-in 0.5s;
	transform-origin: 0 100%;
	transition: 0.3s;
}

@keyframes arrLine {
	from {
		transform: scaleX(0);
	}

	top {
		transform: scaleX(1);
	}
}

.ms1 .link-arr:hover .length {
	transform: scaleX(1.2) translateX(-16%);
}

.ms1 .link-arr svg path {
	stroke-dasharray: 41;
	stroke-dashoffset: 41;
	animation: arrDash 0.3s ease-out 1.2s forwards;
}

@keyframes arrDash {
	to {
		stroke-dashoffset: 0;
	}
}

.magnifying-glass {
	position: absolute;
	padding: 0;
	margin: 0;
	height: var(--mgsize);
	width: var(--mgsize);
	background: radial-gradient(#f5fcfc 45%, gray);
	overflow: hidden;
	border-radius: 50%;
	animation: fadeInMg 0.7s;
}

@keyframes fadeInMg {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.maintext-clone {
	position: absolute;
	/* margin: 10vw 0 0 40vw; */
	margin: 10vw 0 0 32vw;
	padding: inherit;
	/* height: 100vh; */
	/* width: 100vw; */
	/* width: calc(100vw - var(--scrollbar-width)); */
	transform: scale(var(--mgscale));

	white-space: nowrap;

	transform-origin: center;
}

@media (pointer:coarse),
screen and (orientation: portrait),
(max-width: 1440px) {

	.magnifying-glass,
	.maintext-clone {
		display: none;
	}
}

.ms1 .hidden-text {
	position: absolute;
	left: 0;
	top: 28%;
	font-size: 16px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text2 {
	position: absolute;
	right: 0;
	top: 28%;
	font-size: 16px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text3 {
	position: absolute;
	right: 3%;
	top: 5%;
	font-size: 16px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text4 {
	position: absolute;
	left: 35%;
	top: 12%;
	font-size: 28px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text5 {
	position: absolute;
	left: 5%;
	top: 12%;
	font-size: 16px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text6 {
	position: absolute;
	left: 29%;
	top: 46%;
	font-size: 28px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text7 {
	position: absolute;
	right: 15%;
	bottom: 14%;
	font-size: 28px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

.ms1 .hidden-text8 {
	position: absolute;
	right: 50%;
	bottom: 30%;
	font-size: 16px;
	letter-spacing: 0;
	text-align: left;
	line-height: 1.4;
}

@media (max-width: 1440px) {
	.ms1 .border {
		margin: -8.5% 0 0 -32.5%;
		width: 51vw;
	}
}

@media (max-width: 1024px) {
	.ms1 {
		height: auto;
		padding: 10% 0;
	}

	.ms1 .bottom {
		margin-top: 5%;
	}

	.ms1 .border {
		margin: -9.5% 0 0 -31.5%;
		width: 50vw;
	}

	.ms1 .tag-text span {
		padding: 0.8rem 1.2rem 0.5rem;
	}
}

@media (max-width: 768px) {
	.ms1 .bottom {
		gap: 2rem;
	}

	/* .ms1 .link-arr .length {
		width: 12vw;
	} */
}

@media (max-width: 640px) {
	.ms1 .border {
		margin: -10% 0 0 -32%;
		width: 50vw;
	}

	/* .ios-device .ms1 .border{
		margin: -45px 0 0 -174px;
	} */
}

@media (max-width: 425px) {
	.ms1 {
		padding: 20% 0;
	}

	.ms1 .bottom {
		margin-top: 9%;
	}

	.ms1 .tag-text span {
		padding: 0.6rem 0.7rem 0.4rem;
	}

	.ios-device .ms1 .tag-text span {
		padding: 0.3rem 0.7rem 0.6rem;
	}

	.ms1 .link-arr .length {
		width: 15vw;
	}

	.ms1 .border {
		margin: -59px 0 0 -164px;
		width: 260px;
	}

	.ios-device .ms1 .border {
		margin: -53px 0 0 -164px;
	}
}

.ms2 {
	position: relative;
}

/* .ms2 .video-area{
	height: 100vh;
    overflow: hidden;
} */
.ms2 .hidebox.left {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background-color: #fff;
}

.ms2 .hidebox.right {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 50%;
	background-color: #fff;
}

.ms3 {
	margin-top: 10%;
	margin-bottom: 10%;
	position: relative;
}

.ms3 .wrap {
	max-width: 94%;
}

.ms3 .intro {
	position: relative;
}

.ms3 .intro p {
	font-size: clamp(1.4rem, 2.6cqw, 6vh);
	text-indent: 35cqw;
	line-height: 1.2;
}

.ms3 .intro span {
	display: block;
	position: absolute;
	text-transform: uppercase;
	font-size: clamp(0.875rem, 1.5vw, 2rem);
	color: #444;
}

.ms3 .drag-wrap {
	position: relative;
	height: 15vw;
}

.ms3 .drag-wrap .element {
	display: inline-block;
	position: absolute;
}

.ms3 .drag-wrap .element>div {
	animation-delay: 0s;
	animation-iteration-count: infinite;
	animation-direction: normal;
	animation-fill-mode: none;
	animation-play-state: running;
}

.ms3 .drag-wrap .el-1 {
	transform: rotate(-30deg);
}

.ms3 .drag-wrap .el-3 {
	transform: rotate(15deg);
}

.ms3 .drag-wrap .el-4 {
	transform: rotate(15deg);
}

.ms3 .drag-wrap .el-6 {
	transform: rotate(-15deg);
}

.ms3 .drag-wrap .tag-text {
	font-size: 2.6vw;
	font-size: clamp(1.375rem, 2.6vw, 4.25rem);
	text-transform: uppercase;
}

.ms3 .drag-wrap .el-1 .tag-text {
	animation-name: dragAni1;
	animation-duration: 2.1s;
}

.ms3 .drag-wrap .el-4 .tag-text {
	animation-name: dragAni1;
	animation-duration: 1.8s;
}

.ms3 .drag-wrap .el-6 .tag-text {
	animation-name: dragAni3;
	animation-duration: 2.1s;
}

.ms3 .drag-wrap .tag-text span {
	padding: 1.2vw 2vw 0.8vw;
	white-space: nowrap;
}

.ms3 .drag-wrap .el-1:hover .tag-text span {
	background-color: #ff793d;
	color: #111;
	border: none;
}

.ms3 .drag-wrap .el-4:hover .tag-text span {
	background-color: #111;
	color: #fff;
}

.ms3 .drag-wrap .el-6:hover .tag-text span {
	background-color: #fff;
	color: #111;
	border: 2px solid #111;
}

.ms3 .drag-wrap .circle-1 {
	background-color: #000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(3.75rem, 9vw, 15rem);
	;
	aspect-ratio: 1;
	padding: 26%;
	position: relative;
	animation-name: dragAni2;
	animation-duration: 1.8s;
}

.ms3 .drag-wrap .circle-1::after {
	content: '';
	display: block;
	border: 1px solid #fff;
	border-radius: 50%;
	width: 90%;
	height: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.ms3 .drag-wrap .plus {
	width: clamp(1.75rem, 5vw, 8.25rem);
	aspect-ratio: 1;
	background: linear-gradient(to bottom, transparent 43%, #000 43%, #000 57%, transparent 57%),
		linear-gradient(to right, transparent 43%, #000 43%, #000 57%, transparent 57%);
	animation-name: dragAni3;
	animation-duration: 1.5s;
}

.ms3 .drag-wrap .circle-2 {
	background-color: #000;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10vw;
	width: clamp(4.5rem, 10vw, 16.25rem);
	;
	aspect-ratio: 1;
	position: relative;
	animation-name: dragAni2;
	animation-duration: 1.5s;
}

.ms3 .drag-wrap .circle-2 .text {
	letter-spacing: 0.1vw;
	text-transform: uppercase;
	font-family: 'pretendard';
	/* font-size: 0.84vw; */
	font-size: clamp(1rem, -1vw + 2rem, 1.188rem);
	fill: #fff;
}

.ms3 .drag-wrap .circle-2 svg {
	width: 90%;
	animation-name: rotate-circle;
	animation-duration: 10s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@keyframes rotate-circle {
	to {
		transform: rotate(1turn);
	}
}

.ms3 .drag-wrap .circle-2 img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 35%;
}

@keyframes dragAni1 {

	0%,
	28.5714% {
		transform: matrix(1, 0, 0, 1, 0, 0);
		animation-timing-function: linear;
	}

	76.1905% {
		transform: matrix(0.93, 0, 0, 0.93, 0, 0);
		animation-timing-function: linear;
	}

	100% {
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
}

@keyframes dragAni2 {

	0%,
	16.6667% {
		transform: matrix(1, 0, 0, 1, 0, 0);
		animation-timing-function: linear;
	}

	72.2222% {
		transform: matrix(0.9, 0, 0, 0.9, 0, 0);
		animation-timing-function: linear;
	}

	100% {
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
}

@keyframes dragAni3 {
	0% {
		transform: matrix(1, 0, 0, 1, 0, 0);
		animation-timing-function: linear;
	}

	66.6667% {
		transform: matrix(0.96, 0, 0, 0.96, 0, 0);
		animation-timing-function: linear;
	}

	100% {
		transform: matrix(1, 0, 0, 1, 0, 0);
	}
}

.ms3 .ft {
	border-top: 1px solid #111;
}

.ms3 .ft ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.5%;
}

.ms3 .ft li {
	display: flex;
	gap: 10%;
}

.ms3 .ft li span {
	display: block;
	font-family: 'pretendard';
	text-transform: uppercase;
	font-size: clamp(0.7rem, 1cqw, 1.8rem);
	white-space: nowrap;
}

@media (max-width: 425px) {
	.ms3 .drag-wrap {
		height: 35vw;
	}

	.ms3 .drag-wrap .tag-text span {
		padding: 1.5vw 2vw 0.5vw;
	}

	.ios-device .ms3 .drag-wrap .tag-text span {
		padding: 0.8vw 2vw 2vw;
	}
}

.ms4 {
	position: relative;
	/* background-color: #1c1916; */
}

.ms4 .oh {
	position: relative;
	overflow: hidden;
}

.ms4 .oh__inner {
	will-change: transform;
	display: inline-block;
}

.ms4 .heading {
	position: sticky;
	top: 6rem;
	left: 0;
	width: 100%;
	z-index: 1;
	pointer-events: none;
	mix-blend-mode: color-dodge;
	overflow: hidden;
}

.ms4 .heading__main {
	display: inline-block;
	color: #cb761f;
	font-weight: 300;
	font-size: clamp(2rem, 10vw, 5.5rem);
	white-space: nowrap;
	margin: 0;
	margin-left: calc(13.25vw + 25vw + 1vw);
	line-height: 0.8;
	margin-top: 1rem;
	will-change: transform;
}

.ms4 .heading__sub {
	display: inline-block;
	margin-left: calc(13.25vw + 25vw + 1vw + 1rem);
	color: #cb761f;
	font-size: clamp(0.9rem, 1vw, 1.4rem);
}

.ms4 .content {
	position: relative;
	padding: 20vh 13.25vw 2.5rem;
}

.ms4 .item {
	margin: 0 auto 15vh;
}

.ms4 .item>a {
	grid-gap: 5vh;
	grid-template-columns: 100%;
	align-content: center;
	justify-content: center;
	display: grid;
	grid-template-areas: 'caption' 'img';
}

.ms4 .item:last-child {
	margin-bottom: 10vh;
}

.ms4 .item__image-wrap {
	grid-area: img;
	width: 100%;
	aspect-ratio: 800/500;
	justify-self: center;
}

.ms4 .item__image {
	width: 100%;
	aspect-ratio: 800/500;
	position: relative;
	overflow: hidden;
	will-change: transform;
}

.ms4 .item__image-inner {
	width: 100%;
	height: 100%;
	background-size: cover;
	will-change: transform;
}

.ms4 .item__caption {
	grid-area: caption;
	position: relative;
	z-index: 10;
}

.ms4 .item__caption-title {
	white-space: nowrap;
	width: min-content;
	line-height: 1.2;
	font-size: clamp(1.4rem, 2.2vw, 3.4rem);
	font-weight: 600;
	margin: 0;
	color: hsla(0, 0%, 100%, 0.85);
}

.ms4 .item__caption-description {}

.ms4 .item__caption-description span {
	display: block;
	margin: 3% 0;
	line-height: 1.2;
	color: hsla(0, 0%, 100%, 0.5);
	font-size: clamp(0.875rem, 0.9vw, 1.25rem);
}

.ms4 .item__caption-number {
	display: inline-block;
	color: #cb761f;
	font-size: 1.25rem;
	font-size: clamp(0.938rem, 1.1vw, 1.625rem);
}

@media screen and (min-width: 53em) {
	.ms4 .item {}

	.ms4 .item>a {
		grid-gap: 5vw;
		grid-template-columns: 25vw 1fr;
		grid-template-areas: 'caption img';
	}

	.ms4 .content .item__image {
		grid-column: 2 / span 2;
	}

	.ms4 .heading {
		top: 0;
	}
}

@media (max-width: 1024px) {
	.ms4 .content {
		padding-top: 10vh;
	}

	.ms4 .item {
		margin: 0 auto 10vh;
	}
}

@media (max-width: 768px) {
	.ms4 .item>a {
		grid-gap: 1vh;
	}
}

@media (max-width: 425px) {
	.ms4 .item:last-of-type {
		margin-bottom: 5vh;
	}
}

.ms4 .more-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 20%;
}

.ms4 .more-btn a {
	display: flex;
	align-items: center;

	position: relative;
}

.ms4 .more-btn .text {
	position: relative;
	color: #fff;
	font-size: clamp(2.125rem, 5vw + 1rem, 7.5rem);

	transform: translateX(95px);
}

.ms4 .more-btn .text span {
	position: absolute;
	right: -10%;
	top: 0;
	font-size: 0.4em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ms4 .more-btn .link-arr {
	opacity: 0;
}

.ms4 .more-btn .link-arr .length {
	background-color: #fff;
}

.ms4 .more-btn .link-arr svg path {
	stroke: #fff;
}

@media (max-width: 1024px) {
	.ms4 .more-btn .text {
		transform: translateX(40px);
	}
}

@media (pointer:coarse),
(max-width: 768px) {
	.ms4 .more-btn .text {
		transform: none;
	}

	.ms4 .more-btn .link-arr {
		opacity: 1;
		transform: translateX(20px) !important;
	}
}

.ms5 {
	margin-bottom: 10%;
}

.ms5 .menu-wrap {
	display: flex;
	flex-direction: column;
	/* width: 100vw; */
	/* height: calc(100vh - 13rem); */
	position: relative;
	justify-content: center;
}

.ms5 .menu-wrap h3 {
	margin-bottom: 3%;
	text-align: center;
	font-size: 2vw;
	font-size: clamp(1.2rem, 2vw, 3.375rem);
}

.ms5 .menu__item {
	cursor: default;
	position: relative;
	overflow: hidden;
	text-align: center;
	box-shadow: 0 -1px #bbb;
}

.ms5 .menu__item:last-child {
	box-shadow: 0 1px #bbb, 0 -1px #bbb;
}

.ms5 .menu__item-link {
	display: block;
	position: relative;
	cursor: pointer;
	text-decoration: none;
}

/* .ms5 .menu__item-link:focus,
.ms5 .menu__item-link:focus-visible {
	color: red;
} */

.ms5 .menu__item-link:focus:not(:focus-visible) {
	color: #000;
}

.ms5 .marquee {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	background: #000;
	transform: translate3d(0, 101%, 0);
}

.ms5 .marquee__inner-wrap {
	height: 100%;
	width: 100%;
	transform: translate3d(0, -101%, 0);
}

.ms5 .marquee__inner {
	height: 100%;
	width: fit-content;
	align-items: center;
	display: flex;
	position: relative;
	animation: marquee 15s linear infinite;
	will-change: transform;
}

@keyframes marquee {
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.ms5 .menu__item-link,
.ms5 .marquee span {
	white-space: nowrap;
	font-weight: 700;
	padding: 0 1vw;
	font-family: 'pretendard';
	text-transform: uppercase;
	font-size: clamp(1.75rem, 4.3vw, 7.5rem);
}

.ms5 .marquee span {
	text-align: center;
	color: #fff;
	font-weight: 400;
}

.ms5 .marquee__img {
	width: 15vw;
	height: 70%;
	margin: 0 2vw;
	border-radius: 5vw;
	background-size: cover;
	background-position: 50% 50%;
}

/* @media screen and (min-width: 53em){
	.ms5 .menu-wrap {
		height: 100vh;
	}
} */
.ms6 {
	position: relative;
	padding: 5% 0;
	height: 100vh;
	display: flex;
	align-items: center;
}

.ms6 .ms6-inner {
	position: relative;
	overflow: hidden;
}

.ms6 .top-line {
	display: flex;
	align-items: center;
	gap: 3vw;
	margin-bottom: 3%;
}

.ms6 .top-line .line {
	display: block;
	background-color: #000;
	height: 1px;
	flex-grow: 2;
	flex-basis: 0;
}

.ms6 .top-line .more-btn {
	flex-grow: 1;
	flex-basis: 0;
	display: flex;
	align-items: center;
	gap: 2vw;
	font-size: clamp(1rem, 2vw, 3.375rem);
	white-space: nowrap;
}

.ms6 .top-line .more-btn .text {
	display: block;
}

.ms6 .top-line .more-btn .arr {
	display: flex;
	position: relative;
	align-items: center;
}

.ms6 .top-line .more-btn .arr::before {
	content: '(';
}

.ms6 .top-line .more-btn .arr::after {
	content: ')';
}

.ms6 .top-line .more-btn .arr .link-arr {
	margin: 0 0.5vw 0 4vw;
}

.ms6 .top-line .more-btn .arr .link-arr .length {
	transition: 0.3s;
}

.ms6 .top-line .more-btn:hover .arr .link-arr .length {
	width: 13vw;
}

.ms6 strong {
	display: block;
	font-size: 15vw;
	position: absolute;
	top: 10%;
	left: 0;
	z-index: -1;
	width: 100%;
	text-align: center;
	border-bottom: 1px solid #000;
	line-height: 1.4;
}

.ms6 .star {
	position: absolute;
	top: 50%;
	margin-top: 7%;
	left: 5vw;
	width: 15vw;
	animation: rotateStar 5s linear infinite;
}

@keyframes rotateStar {
	from {
		transform: rotate(0);
	}

	to {
		transform: rotate(360deg);
	}
}

.ms6 .mg-slider {
	display: flex;
	gap: 5vw;
	width: 125%;
}

.ms6 .mg-slider .mg-list {
	flex-grow: 1;
	flex-basis: 0;
	opacity: 0.85;
	transition: opacity 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.ms6 .mg-slider .mg-list:hover {
	opacity: 1;
}

.ms6 .mg-slider .mg-list a {
	display: block;
	position: relative;
}

.ms6 .mg-slider .mg-list a img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 3;
}

.ms6 .mg-slider .mg-list a .tit {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: transparent;
	word-break: keep-all;
	font-size: clamp(0.875rem, 1.25cqw, 1.5rem);
	;
	font-weight: 600;
	padding: 10%;
	transition: 0.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
	text-align: center;
	line-height: 1.4;
}

.ms6 .mg-slider .mg-list a:hover .tit {
	background: hsl(0deg 0% 0% / 70%);
	color: #fff;
}

@media (hover: none) {
	.ms6 .mg-slider .mg-list a .tit {
		position: static;
		height: auto;
		color: #111 !important;
		padding: 0;
		background: transparent !important;
		margin-top: 12px;
	}
}

@media (max-width: 768px) {
	.ms6 {
		height: auto;
		margin-bottom: 10%;
	}

	.ms6 .top-line {
		margin-bottom: 0;
	}

	.ms6 .top-line .line {
		flex-grow: 1.7;
	}

	.ms6 .top-line .more-btn {
		flex-grow: 1.3;
	}

	.ms6 strong {
		position: relative;
		top: 0;
		z-index: 0;
	}

	.ios-device .ms6 strong {
		padding-bottom: 5%;
	}

	.ms6 .mg-slider {
		width: 200%;
		margin-top: -10%;
	}

	.ms6 .top-line .more-btn .arr .link-arr {
		transform: scale(0.8);
	}

	.ms6 .top-line .more-btn .arr .link-arr .length {
		width: 15vw;
	}

	.ms6 .star {
		margin-top: -9%;
	}
}

@media (max-width: 425px) {
	.ms6 .ms6-inner {
		z-index: 1;
	}
}

.ms7 {
	margin-bottom: 2%;
}

.ms7 .wrap {
	background: url('/img/main/contact_bg.jpg') no-repeat center / cover;
	background-attachment: fixed;
	padding: 3%;
}

.ms7 .border-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 4vw;
	flex-wrap: wrap;

	border: 2px solid #000;
	border-radius: 2vw;
	padding: 6%;
}

.ms7 .border-box a {
	display: flex;
	justify-content: center;
}

.ms7 .border-box h3 {
	font-size: clamp(1.375rem, 3.2vw, 3.2vw);
	font-weight: 500;
	text-align: center;
	font-family: 'pretendard';
	line-height: 1.2;
	word-break: keep-all;
}

.ms7 .border-box .tag-text {
	justify-content: center;
}

.ms7 .tag-text-inner {
	/* font-size: clamp(1.125rem, 3.6vw, 3.6vw); */
	text-transform: uppercase;
	font-weight: 600;
	padding: 7% 9% 6%;

	opacity: 0;

	flex-direction: column;
	font-size: 1vw;
}

.ms7 .border-box .tag-text span em {
	display: block;
	/* line-height: 0; */
}

@media (min-width: 768px) {
	.ms7 .border-box {
		border: 4px solid #000;
	}

	.ms7 .border-box h3 br {
		display: none;
	}
}

@media (max-width: 425px) {
	.ms7 .tag-text-inner {
		padding: 6.2% 7.6% 5%;
	}

	.ios-device .ms7 .tag-text-inner {
		padding: 4.5% 7.6% 5.7%;
	}
}

@media (pointer:coarse) {
	.ms7 .wrap {
		background-attachment: scroll;
	}
}