@charset "UTF-8";
body {
    overflow-x: hidden !important;
}

/* preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-black);
    z-index: 99;
}

.preloader svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20%;
    opacity: 1;
}

.preloader.finished {
    animation: slideUp 0.6s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(-100%);
    }
}

video {
    max-width: 100%;
}

/* container padding */
.container {
    padding: 0 1.5vw;
}

.pt1_5 {
    padding-top: 1.5vw;
}

.row.split {
    overflow: hidden;
}

.glyphset_section_row1 .text,
.fonts_frame_lib_section .row_4,
.styleistic_section_row_2 {
    padding-bottom: 15vw;
}

[data-name='letters_up_box'] {
    overflow: hidden;
}

.dot_list .dot {
    position: relative;
    font-size: 6vw;
    font-weight: bold;
    padding-left: 13vw;
}

.dot_list .dot:before {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    border-radius: 50%;
    background-color: var(--color-white);
}

.exat_section svg>path {
    --fadeUpVal: 100%;
    opacity: 0;
}

.exat_section.active svg>path:nth-child(1) {
    animation: fadeUp 0.3s 0.2s 1 forwards;
}
.exat_section.active svg>path:nth-child(2) {
    animation: fadeUp 0.3s 0.25s  1 forwards;
}
.exat_section.active svg>path:nth-child(3) {
    animation: fadeUp 0.3s 0.3s 1 forwards;
}
.exat_section.active svg>path:nth-child(4) {
    animation: fadeUp 0.3s 0.35s 1 forwards;
}

@keyframes fadeUp {
    0% { transform: translateY(var(--fadeUpVal)); opacity: 0;} 
    100% { transform: translateY(0); opacity: 1;} 
}


/* header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 1.5vw 1.5vw 1.1vw;
    transition: .3s;
}

header,
.header_left,
.header_right,
.header_right .inner_left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img,
footer .logo img {
    width: 1.8vw;
}

header .logo_text,
footer .bottom * {
    font-weight: bold;
}

header .logo_text,
.header_right .inner_left,
footer .bottom * {
    font-size: 1vw;
    cursor: pointer;
}

header>div {
    gap: 0.95rem;
}

.header_right .inner_left {
    position: relative;
    gap: 0.5vw;
    font-weight: bold;
    transition: 0.3s;
}

.header_hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: .1s;
    cursor: pointer;
}

.header_hamburger span {
    position: relative;
    width: 26px;
    height: 2px;
    background-color: var(--color-black);
    transition: .3s;
}

.header_hamburger:hover span:nth-child(1) {
    transform: translateY(1px);
}

.header_hamburger:hover span:nth-child(2) {
    transform: translateY(-1px);
}


/* exat_section */
.exat_section {
    width: 100%;
    height: 100vh;
}

.exat_wrap {
    display: flex;
    align-items: flex-end;
    height: 100vh;
    width: 100%;
    padding-bottom: 2.8vw;
}

/* about section */
.about_section {
    background-color: var(--color-black);
}

.about_section * {
    color: var(--color-white);
}

.title_list.--ver1 {
    position: relative;
    padding-bottom: 6vw;
    border-bottom: 1px solid;
}

.title_list.--ver1 .section_title {
    position: relative;
    font-size: 1.1vw;
    padding-left: 1.5vw;
    line-height: 2vw;
}

.title_list.--ver1 .section_title:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '';
    display: block;
    width: 1vw;
    height: 1vw;
    background: var(--color-white);
    border-radius: 50%;
}

.title_list.--ver1+div {
    position: relative;
}

.title_list.--ver1:before,
.about_section .title_list.--ver1:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    width: 100%;
    height: 0.1vw;
    background: var(--color-white);
}

.title_list.--ver1.black .section_title:before,
.title_list.--ver1.black:before {
    background: var(--color-black);
}

.title_list.--ver1.black+div {
    border-top-color: var(--color-black);
}

.about_row_1 {
    display: flex;
    justify-content: space-between;
    padding: .5vw 0 18vw;
}

.about_row_1 .left {
    width: 62.3vw;
}

.about_row_1 .left .row * {
    font-size: 2.4vw;
    letter-spacing: -0.15vw;
    font-weight: 600;
    line-height: 2.5vw;
}

.about_row_1 .right {
    width: 11.69vw;
}

.about_row_1 .right img {
    width: 100%;
}

.about_row_1 .right figcaption {
    font-size: 0.9vw;
}

.about_row_2 {
    display: flex;
    margin-bottom: 20.84vw;
}

.about_row_2>div {
    display: flex;
    width: 50%;
    gap: 1vw;
}

.about_row_2>.right {
    flex-direction: column;
}

.about_row_2 .left>div,
.about_row_2 .right .a_desc,
.about_row_3 .video_desc,
.mouse_event_section_row2 .right {
    font-size: 1.091vw;
    line-height: 1.3vw;
}

.mouse_event_section_row2>.left {
    gap: 1.1vw;
}

.about_row_2 .right .a_box {
    position: relative;
    width: 48vw;
    height: 48vw;
    overflow: hidden;
}

.about_row_2 .right .a_img {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about_row_2 .right .a_img.before {
    background-image: url(../images/main/about_section/a_before.webp);
}

.about_row_2 .right .a_img.after {
    background-image: url(../images/main/about_section/a_after.svg);
    clip-path: polygon(0px 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about_row_2 .right .a_desc {
    width: 19.5vw;
}

.about_row_3 {
    display: flex;
    justify-content: space-between;
}

.about_row_3 .left {
    width: 47.5vw;
}

.about_row_3 .left img {
    width: 100%;
}

.about_row_3 .right {
    width: 23.38vw;
}

.about_row_3 .right video {
    width: 100%;
}

.about_row_4 {
    position: relative;
    margin-top: 12.615vw;
}

.about_row_4::before {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    top: 0;
    background-color: var(--sub-color);
}

.about_row_4 .title_list {
    display: flex;
}

.about_row_4 .title_list .arrow {
    flex: 2.2;
    font-size: 10vw;
    line-height: 6vw;
    text-align: left;
    color: var(--sub-color);
}

.about_row_4 .title_list .title {
    flex: 7.7;
}

.about_row_4 .title * {
    font-size: 7.4vw;
    letter-spacing: -0.15vw;
    font-weight: 600;
    line-height: 6.8vw;
    color: var(--sub-color);
    overflow: hidden;
}

.about_row_5 {
    margin-top: 12.615vw;
}

.about_row_5 .s_box {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
}

.about_row_5 .s {
    height: 16vw;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    overflow: hidden;
}

.about_row_5 .s:nth-child(7n) {
    border-right: none;
}

.about_row_5 .s:nth-last-child(-n+7) {
    border-bottom: none;
}

.about_row_5 .rotate_img {
    background: url(../images/main/about_section/S.webp) no-repeat 0 90px / 100%;
    width: 12vw;
    height: 30vw;
}

/* font_section */
.font_section {
    background-color: #FFCF4E;
    padding-top: 1vw;
}

.font_section * {
    font-size: 1.5vw;
}

.font_section .font_selector {
    display: flex;
    gap: 10px;
    font-size: 1.1vw;
}

.font_section .selector {
    background: transparent;
    border: none;
    border-bottom: 2px solid;
    width: 16%;
}

.font_section .text_align {
    display: flex;
        align-items: center;
    gap: 1vw;
}

.font_section .text_align svg {
    display: flex;
    opacity: .3;
    width: 1vw;
    cursor: pointer;
}

.font_section .text_align label.on svg {
    opacity: 1;
}

.font_section .text_align input {
    display: none;
}

.font_section input[type=range] {
    appearance: none;
    cursor: pointer;
    outline: none;
    width: 100%;
    height: 1vw;
    margin: 0 0 0 0.6vw;
    padding: 0;
    background-color: transparent;
}

.font_section input[type=range]::-webkit-slider-runnable-track {
    background: #000;
    height: 2px;
}

.font_section input[type=range]::-webkit-slider-thumb {
    appearance: none; 
    width: 0.8vw; 
    height: 0.8vw;
    border: none;
    background-color: #000;
    color: #000;
    transition: all 0.15s ease-in-out;
    margin-top: calc((0.5rem - 1.5rem) * 0.5);
    border-radius: 50%;
}

.font_section .selector.font_family {
    margin-right: 1vw;
}

.font_size, .line_height, .letter_spacing {
    display: flex;
    align-items: center;
    margin-right: 0.6vw;
}

.font_section .background {
    margin-left: 1vw;
    margin-top: -2px;
}

.font_section .background input {
    display: none;
}

.font_section .background label {
    display: inline-block;
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
    background-color: var(--own-color);
    cursor: pointer;
}

.font_section .background label.on {
    border: 2px solid;
}

.font_section .background label[for="yellow"] {
    --own-color: #FFD062;
}

.font_section .background label[for="blue"] {
    --own-color: #4B90F2;
}

.font_section .background label[for="orange"] {
    --own-color: #FF6835;
}

.font_section .background label[for="pink"] {
    --own-color: #FF9AEF;
}

.font_section .background label[for="green"] {
    --own-color: #00753B;
}

.font_section textarea {
    width: 100%;
    height: 828px;
    min-height: 1vw;
    resize: none;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 5vw;
    padding-top: 3vw;
}

/* mouse_event_section */
.mouse_event_section {
    background-color: #EEEFEB;
    padding-top: 1.5vw;
}

.mouse_event_section_row1,
.mouse_event_section_row1 .right>.top,
.mouse_event_section_row1 .right .bottom {
    display: flex;
}

.mouse_event_section_row1>div {
    width: 50%;
}

.mouse_event_section_row1 .right {
    background-color: var(--color-black);
    padding: 1.2vw;
}

.mouse_event_section_row1 .top * {
    width: 50%;
    color: var(--color-white);
}

.mouse_event_section_row1 .top .inner_right li {
    width: 100%;
    line-height: 15px;
}

.mouse_event_section_row1 .right .bottom {
    padding-top: 4vw;
}

.mouse_event_section_row1 .right .bottom .inner_left {
    background-color: #007526;
    padding: 1.2vw;
}

.mouse_event_section_row1 .right .bottom>div {
    width: 50%;
    padding: 1.1vw;
}

.mouse_event_section_row1 .rotate_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.2vw;
    height: 100%;
}

.mouse_event_section_row1 .circle {
    position: relative;
    width: calc(((100%)/5) - 0.3vw);
    height: 4vw;
    background: var(--color-black);
    border-radius: 100%;
}

.mouse_event_section_row1 .circle .rotate_img {
    position: relative;
    top: 28%;
    left: 28%;
    transform: translate(-50%, -50%);
    width: 1.5vw;
    height: 1.5vw;
}

.mouse_event_section_row1 .circle .rotate_img:before {
    position: absolute;
    content: '';
    display: block;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 95%;
    border-radius: 100%;
    background-color: var(--sub-color);
}

.mouse_event_section_row1 .left {
    position: relative;
}

.mouse_event_section_row1 .left .num {
    position: absolute;
    background-color: var(--color-black);
    color: transparent;
    font-size: 21vw;
    line-height: 16.5vw;
    font-weight: bold;
    top: 29%;
}

.mouse_event_section_row1 .left .num:after {
    position: absolute;
    content: '28';
    display: block;
    top: -16px;
    width: 100%;
    height: 100%;
    color: var(--color-white);
}

.mouse_event_section_row2 {
    padding: 1.1vw 0;
}

.mouse_event_section_row2,
.mouse_event_section_row2>div,
.mouse_event_section_row3,
.mouse_event_section_row4,
.mouse_event_section_row4>div {
    display: flex;
}

.mouse_event_section_row2>div,
.mouse_event_section_row2>div>div,
.mouse_event_section_row3>div,
.mouse_event_section_row3>div>video,
.mouse_event_section_row4>div,
.mouse_event_section_row4>div,
.mouse_event_section_row4>div>div {
    width: 50%;
}

.mouse_event_section_row2 .right .inner_right {
    font-weight: bold;
}

:root {
    --blue1: #1E00C3;
    --blue2: #3144F6;
    --blue3: #5591F8;
    --blue4: #C2EDFC;
}

.mouse_event_section_row2 [data-color="blue1"],
.z_index {
    color: var(--blue1);
    z-index: 1;
}

.mouse_event_section_row2 [data-color="blue2"] {
    color: var(--blue2);
    z-index: 2;
    padding-left: 5px;
}

.mouse_event_section_row2 [data-color="blue3"] {
    color: var(--blue3);
    z-index: 3;
    padding-left: 10px;
}

.mouse_event_section_row2 [data-color="blue4"] {
    color: var(--blue4);
    z-index: 4;
    padding-left: 15px;
}

.mouse_event_section_row2 .inner_right {
    height: fit-content;
    padding-bottom: 3.3vw;
}

.mouse_event_section_row2 .inner_row {
    position: relative;
    height: 5.9vw;
}

.mouse_event_section_row2 .inner_row>div {
    position: absolute;
    content: '';
    display: block;
    top: -4vw;
    left: 0;
    width: 100%;
    font-size: 10.5vw;
    letter-spacing: -0.5vw;
    padding-right: 7px;
    transition: 0.1s;
    pointer-events: none;
}

.mouse_event_section_row2 .inner_row:nth-child(even) div {
    margin-left: 3vw;
}

.mouse_event_section_row4 {
    font-size: 1.1vw;
    letter-spacing: -0.1vw;
    font-weight: 500;
    padding-bottom: 8.3vw;
}

.mouse_event_section_row4 .left {
    gap: 2vw;
}

.mouse_event_section_row5 {
    width: 75%;
    margin: 0 0 0 auto;
}

.mouse_event_section_row5 video {
    width: 100%;
}

.mouse_event_section_row6 {
    display: flex;
    background-color: var(--color-black);
    margin-top: 12vw;
    height: 32.5vw;
}

.mouse_event_section_row6>.num_box {
    position: relative;
    display: flex;
    flex: 1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: .8s;
}

.mouse_event_section_row6>.num_box:hover {
    flex: 2;
    transition: .8s;
}

.mouse_event_section_row6>.num_box>div {
    position: absolute;
    content: '';
    display: block;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 43vw;
    font-weight: 800;
    color: #EEEFEB;
    transition: .8s;
}

.mouse_event_section_row6>.num_box:hover>div {
    left: 55%;
    transition: .8s;
}


.mouse_event_section_row6>.num_box:nth-child(1):hover>div {
    color: var(--yellow-color);
}

.mouse_event_section_row6>.num_box:nth-child(2):hover>div {
    color: var(--blue-color);
}

.mouse_event_section_row6>.num_box:nth-child(3):hover>div {
    color: var(--pink-color);
}

.mouse_event_section_row6>.num_box:nth-child(4):hover>div {
    color: var(--sub-color);
}

.mouse_event_section_row6>.num_box:nth-child(5):hover>div {
    color: var(--red-color);
}

.glyphs_section {
    background-color: #EEEFEB;
    padding-bottom: 1.5vw;
}

.glyphs_section .title_list.--ver1 {
    border: none;
}

.border-top {
    border-top: 0.1vw solid var(--color-black);
}

.border-top.white {
    border-top-color: var(--color-white);
}

.gap_sub_title {
    display: flex;
    gap: 1.1vw;
    margin-bottom: 15.84vw;
}

.gap_sub_title>.left {
    flex: 7.5;
    font-size: 5vw;
    font-weight: bold;
    letter-spacing: -0.5px;
    line-height: 1;
}

.gap_sub_title>.left [aria-hidden] {
    font-size: clamp(14px, 5vw, 48px);
}

.gap_sub_title>.right {
    flex: 2.5;
    font-size: 1.1vw;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.glyphs_section_row2,
.glyphs_section_row3,
.glyphs_section_row3 .left {
    display: flex;
}

.glyphs_section_row2 .left,
.glyphs_section_row3 {
    width: 50%;
}

.glyphs_section_row2 .left>video,
.glyphs_section_row3 .left {
    width: 100%;
    gap: 1.5vw;
}

.glyphs_section_row2 .right {
    width: 25%;
    margin: 0 0 0 auto;
}

.glyphs_section_row2 .right .gif_ani {
    position: relative;
}

.glyphs_section_row2 .right .gif_ani>img {
    position: absolute;
    top: 0;
    left: 0;
}

.glyphs_section_row3 .left {
    padding-top: 1vw;
}

.glyphs_section_row3 .left>div {
    width: 50%;
}

.glyphs_section_row3 .left .inner_right {
    background-color: #007526;
}

.glyphs_section_row3 .rotate_box {
    position: relative;
    width: 100%;
    height: 100%;
}

.glyphs_section_row3 .rotate_box .rotate_img {
    position: absolute;
    top: 45%;
    left: 43%;
    width: 10%;
    height: 10%;
    scale: 10;
}

.glyphs_section_row4 {
    display: flex;
    gap: 1.5vw;
    padding-top: 1.5vw;
}

.glyphs_section_row4 .left {
    position: sticky;
    top: 10vw;
    width: 25%;
    height: 28vw;
}

.glyphs_section_row4 .left .inner_bottom {
    width: 65%;
    padding-top: 1vw;
    font-size: .8vw;
    font-weight: 600;
}


.glyphs_section_row4 .right {
    position: relative;
    width: 75%;
    background-color: var(--color-black);
    height: 69.8vw;
    overflow: hidden;
}

.glyphs_section_row4 .right .rotate_circle {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.glyphs_section_row4 .right .rotate_circle._1 {
    background-image: url(../images/main/glyphs_section/rotate_img1.webp);
    animation: rotateCircle 24s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._2 {
    background-image: url(../images/main/glyphs_section/rotate_img2.webp);
    animation: rotateCircle 21s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._3 {
    background-image: url(../images/main/glyphs_section/rotate_img3.webp);
    animation: rotateCircle 18s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._4 {
    background-image: url(../images/main/glyphs_section/rotate_img4.webp);
    animation: rotateCircle 15s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._5 {
    background-image: url(../images/main/glyphs_section/rotate_img5.webp);
    animation: rotateCircle 12s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._6 {
    background-image: url(../images/main/glyphs_section/rotate_img6.webp);
    animation: rotateCircle 9s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._7 {
    background-image: url(../images/main/glyphs_section/rotate_img7.webp);
    animation: rotateCircle 6s linear infinite;
}

.glyphs_section_row4 .right .rotate_circle._8 {
    background-image: url(../images/main/glyphs_section/rotate_img8.webp);
    animation: rotateCircle 3s linear infinite;
}

@keyframes rotateCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.glyphs_section_row2 .gif_ani img {
    visibility: hidden;
}

.glyphs_section_row2 .gif_ani img:nth-child(1) {
    animation: gifImg1 2s infinite;
}

.glyphs_section_row2 .gif_ani img:nth-child(2) {
    animation: gifImg2 2s infinite;
}

.glyphs_section_row2 .gif_ani img:nth-child(3) {
    animation: gifImg3 2s infinite;
}

@keyframes gifImg1 {
    0% {
        visibility: visible;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes gifImg2 {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: visible;
    }

    100% {
        visibility: hidden;
    }
}

@keyframes gifImg3 {
    0% {
        visibility: hidden;
    }

    50% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

.glyphset_section {
    background-color: var(--color-black);
}

.glyphset_section * {
    color: var(--color-white);
}

/* accordion */
.glyphset_section_row2 .accordion_box {
    display: flex;
    flex-direction: column;
}

.glyphset_section_row2 .accordion_box .sub_list {
    display: grid;
    grid-template-columns: repeat(40, 1fr);
    text-align: center;
    border-top: 1px solid #343532;
    border-left: 1px solid #343532;
}

.glyphset_section_row2 .accordion_box .sub_list>li {
    border-bottom: 1px solid #343532;
    border-right: 1px solid #343532;
    padding: 0.5vw 0;
    font-size: 1vw;
}

.glyphset_section_row2 .accordion:after {
    position: absolute;
    content: '↓';
    display: block;
    top: 0;
    right: 0;
    scale: 0.6;
    transition: 0.5s;
}

.glyphset_section_row2 .accordion.on:after {
    transform: rotate(180deg);
    transition: 0.5s;
}

.accordion,
.accordion_box .sub_list>li {
    cursor: pointer;
}

/* proximity letters */
.proximity-letters {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    width: 100%;
    overflow: hidden;
}

.proximity-letters .frame {
    display: flex;
    position: relative;
    height: 4vw;
    font-weight: 200;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.proximity-letters .letter {
    position: absolute;
    top: 21.8%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 6.5vw;
    text-align: center;
    font-weight: 200;
    color: #3144F6;
    opacity: 1;
    transition: opacity .1s;
}

/* glyphset_section */
.glyphset_section_row1 .letter {
    font-size: 25vw;
    letter-spacing: -1.2vw;
    font-weight: 500;
    line-height: 0.8;
}

.glyphset_section_row1 .text {
    position: relative;
    left: -1.2vw;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    pointer-events: none;
}

.glyphset_section_row2 {
    margin-bottom: 28vw;
}

.glyphset_section_row2 .accordion {
    position: relative;
    font-size: 2.2vw;
    font-weight: 600;
    margin-bottom: 4vw;
    padding-left: 3vw;
    transition: margin-bottom 1s;
}

.glyphset_section_row2 .accordion:before {
    position: absolute;
    content: '';
    display: block;
    top: 2vw;
    left: 0;
    transform: translateY(-50%);
    width: 2vw;
    height: 2vw;
    background-color: var(--color-white);
    border-radius: 50%;
}

.glyphset_section .panel {
    position: relative;
    margin-top: -2vw;
    margin-bottom: 1.5vw !important;
}

.glyphset_section .tool_tip {
    position: absolute;
    width: 20vw;
    background-color: #EEEFEB;
    z-index: 9;
    display: none;
}

.glyphset_section .tool_tip .detail .row {
    color: var(--sub-color);
    font-size: 0.7vw;
    font-weight: bold;
    min-height: 3vw;
    border-top: 1px dotted #F0E4DB;
    padding: 0 1vw;
}

.glyphset_section .tool_tip .letter {
    position: absolute;
    font-size: 10.3vw;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-black);
}

/* Design Space */
.container:has(.gap_sub_title) .title_list.--ver1,
.design_space_section_row1 .title_list {
    border-bottom: none;
}

.hover_weight_ani {
    display: flex;
    gap: 1.1vw;
    overflow: hidden;
    padding-bottom: 5vw;
}

.hover_weight_ani .border-top,
.gap_sub_title>.border-top {
    border-width: 0.2vw;
}

.hover_weight_ani .left {
    flex: 2.5;
    padding-top: 1.1vw;
}

.hover_weight_ani .right {
    position: relative;
    flex: 7.5;
    pointer-events: none;
}

.hover_weight_ani .change_li {
    position: relative;
    cursor: pointer;
    font-size: 1.1vw;
    transition: .15s;
}

.hover_weight_ani .change_li:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.hover_weight_ani .change_li:hover {
    padding-left: 1.8vw;
}

.hover_weight_ani .change_li:before {
    position: absolute;
    content: '';
    display: block;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    transition: .15s;
}

.hover_weight_ani .change_li:hover:before {
    width: 1.2vw;
    height: 1.2vw;
    border-radius: 50%;
    background-color: var(--color-black);
    transition: .15s;
}

[data-font-weight="100"] {
    font-weight: 100;
}

[data-font-weight="300"] {
    font-weight: 300;
}

[data-font-weight="500"] {
    font-weight: 500;
}

[data-font-weight="600"] {
    font-weight: 600;
}

[data-font-weight="700"] {
    font-weight: 700;
}

[data-font-weight="800"] {
    font-weight: 800;
}

[data-font-weight="900"] {
    font-weight: 900;
}

.hover_weight_ani .change_text {
    font-size: 32vw;
    line-height: 1;
    letter-spacing: -20px;
    transition: .3s;
}


.fonts_frame_lib_section {
    position: relative;
    background-color: var(--color-black);
}

.fonts_frame_lib_section * {
    color: var(--color-white);
    font-size: 1vw;
    line-height: 1.4vw;
}

.fonts_frame_lib_section .rotate_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.2vw;
    height: 100%;
}

.fonts_frame_section .pinContainer {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.fonts_frame_section .outRow {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    height: 100vh;
    padding: 1.5vw;
    background: white; 
}

.fonts_frame_section .outRow .left {
    position: relative;
    flex: 2.5;
    font-size: 1.1vw;
    padding-left: 1.5vw;
}

.fonts_frame_section .outRow .left:before {
    position: absolute;
    content: '';
    display: block;
    top: 0.3vw;
    left: 0;
    width: 1vw;
    height: 1vw;
    border-radius: 50%;
}

.fonts_frame_section .outRow .right {
    flex: 7.5;
    letter-spacing: -5.5px;
}

.fonts_frame_section .outRow .right div {
    line-height: 1;
    font-size: clamp(16px, 4vw, 48px);
    letter-spacing: -3px;
}

.fonts_frame_section .condensed {
    background-color: var(--yellow-color);
}

.fonts_frame_section .standard {
    background-color: var(--sub-color);
}

.fonts_frame_section .wide {
    background-color: #1E00C4;
}

.fonts_frame_section .condensed * {
    color: #FF1909;
}

.fonts_frame_section .standard * {
    color: #1E00C4;
}

.fonts_frame_section .wide * {
    color: var(--pink-color);
}

.fonts_frame_section .outRow:nth-child(1) .left:before {
    background-color: #FF1909;
}

.fonts_frame_section .outRow:nth-child(2) .left:before {
    background-color: #1E00C4;
}

.fonts_frame_section .outRow:nth-child(3) .left:before {
    background-color: var(--pink-color);
}

.fonts_frame_lib_section .row {
    padding-bottom: 1.5vw;
}

.fonts_frame_lib_section .row,
.fonts_frame_lib_section .row_2 .left,
.fonts_frame_lib_section .row_2>div,
.fonts_frame_lib_section .row_3>div,
.fonts_frame_lib_section .row_4>div {
    display: flex;
    gap: 1.5vw;
}

.fonts_frame_lib_section .row>div,
.fonts_frame_lib_section .row_2 div,
.fonts_frame_lib_section .row_3 div,
.fonts_frame_lib_section .row_4 div {
    width: 50%;
}

/* 작은 a (eyes) */
.fonts_frame_lib_section .row_1 .eyeACircle {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    background-color: var(--yellow-color);
    width: 50%;
    height: 50%;
    padding: 0.5vw;
}

.fonts_frame_lib_section .row_1 .eyeACircleItems {
    background-color: var(--color-black);
    border-radius: 50%;
}

.fonts_frame_lib_section .row_1 .eyeACircle .rotate_img {
    background-image: url(../images/main/fonts_frame_lib_section/circle-a.webp);
    background-position: center;
    width: 1.8vw;
    height: 2.1vw;
}

/* 밑에 큰 a */
.fonts_frame_lib_section .a_box {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.fonts_frame_lib_section .a {
    height: 20vw;
    border-right: 3px solid var(--color-white);
    border-bottom: 3px solid var(--color-white);
    overflow: hidden;
}

.fonts_frame_lib_section .a:nth-child(5n) {
    border-right: none;
}

.fonts_frame_lib_section .a:nth-last-child(-n+5) {
    border-bottom: none;
}

.fonts_frame_lib_section .rotate_img {
    background: url(../images/main/fonts_frame_lib_section/big-a.webp) no-repeat 0 50px / 100%;
    width: 20vw;
    height: 24vw;
}

.fonts_frame_lib_section>.rotate_box {
    gap: 0;
    background-color: var(--sub-color);
}

.fonts_frame_lib_section>.rotate_box .a {
    padding: 0;
    border-color: var(--color-black);
}

/* styleistic_section */
.styleistic_section {
    background-color: #EEEFEB;
}

.styleistic_section_row_2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(7, 1fr);
    gap: 1.5vw;
}

.styleistic_section_row_2 .inner_tit {
    font-weight: 600;
    font-size: 1.1vw;
}

.styleistic_section_row_2 .inner_desc {
    font-size: 0.9vw;
}

.styleistic_section_row_2 .box.text {
    max-width: 14vw;
}

.styleistic_section_row_2 .box img {
    width: 100%;
}

.styleistic_section_row_2 .box.img {
    position: relative;
}

.styleistic_section_row_2 .box.img img.hover_img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .3s;
}

.styleistic_section_row_2 .box.img:hover img {
    opacity: 0;
    transition: .3s;
}

.styleistic_section_row_2 .box.img:hover img.hover_img {
    opacity: 1;
    transition: .3s;
}

/* otf_section */
.otf_section {
    background-color: #3144F6;
    padding-bottom: 14vw;
}

.otf_section2 {
    background-color: var(--color-black);
}

.otf_section * {
    color: var(--color-white);
}

.otf_section .hover_weight_ani .change_li:hover:before {
    background-color: var(--color-white);
}

.design_space_section_row1 .svgs>svg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
}

/* 핑노파주빨초 */
.design_space_section_row2 {
    position: relative;
    padding: 1.5vw;
    height: 34vw;
}

.design_space_section_row2 .design_space_Swiper {
    height: 100%;
}

.design_space_section_row2 .desc {
    font-size: 7vw;
    line-height: 1;
    letter-spacing: -0.2vw;
    font-weight: 500;
}

.design_space_section_row2 .country {
    position: absolute;
    bottom: 0;
    font-size: 1.1vw;
}

.design_space_section_row2 .row_1 * {
    color: #FF98FB
}

.design_space_section_row2 .row_2 * {
    color: rgb(255, 206, 46)
}

.design_space_section_row2 .row_3 * {
    color: rgb(37, 70, 255)
}

.design_space_section_row2 .row_4 * {
    color: rgb(255, 98, 0)
}

.design_space_section_row2 .row_5 * {
    color: rgb(255, 11, 0)
}

.design_space_section_row2 .row_6 * {
    color: rgb(28, 117, 17)
}

.design_space_section_row3 .right .change_text {
    position: relative;
    left: -2.5vw;
    transform: scaleX(1.5);
    transform-origin: left center;
    transition: transform 0.2s ease, font-weight 0.2s ease;
}

.support_section {
    padding-bottom: 15vw;
}

.support_sec_swiper01 .swiper-slide>div {
    font-size: 2.2vw;
    font-family: 'Gilroy';
    font-weight: 600;
    line-height: 1;
    letter-spacing: -2px;
}

.support_sec_swiper01 .swiper-wrapper {
    padding-top: 4vw;
}

.support_section,
.flow_img_section {
    background-color: #EEEFEB;
}

.flow_img_section {
    overflow: hidden;
    padding-bottom: 1.5vw;
}

.support_section .gap_sub_title>.border-top {
    border-width: 1px;
}

.support_sec_swiper01:before {
    position: absolute;
    top: 3vw;
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
}


.support_sec_swiper01 .btns {
    position: absolute;
    top: 20px;
    right: 0;
}

.support_sec_swiper01 .btns .swiper-button-next:after, .support_sec_swiper01 .swiper-rtl .swiper-button-prev:after {
    content: '→';
}
.support_sec_swiper01 .swiper-button-prev:after, .support_sec_swiper01 .swiper-rtl .swiper-button-next:after {
    content: '←';
}

.support_sec_swiper01 .swiper-button-prev {
    left: -100px;
}

.support_sec_swiper01 .btns .swiper-button-next:after, .support_sec_swiper01 .swiper-rtl .swiper-button-prev:after, 
.support_sec_swiper01 .swiper-button-prev:after, .support_sec_swiper01 .swiper-rtl .swiper-button-next:after {
    color: #000;
}

.flow_img_section .swiper-wrapper {
    transition-timing-function: linear !important;
}

.flow_img_section .img_box.swiper-slide {
    width: auto;
    height: 250px;
    padding-left: 1.5vw;
}

.flow_img_section .img_box.swiper-slide img {
    height: 100%;
}

.flow_img_section .flow {
    padding-top: 1.5vw;
}

footer {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

footer .letters_up {
    display: flex;
}

footer .letters_up .letter {
    font-size: 18vw;
    letter-spacing: -1.2vw;
    font-weight: 800;
    line-height: 0.9;
    color: var(--color-white);
}

footer .text:hover {
    color: var(--color-black);
}

footer .letter.space {
    margin-right: -14vw;
}

footer .ft_arrow {
    position: absolute;
    top: 0;
    right: 3vw;
    font-size: 15vw;
    line-height: 18vw;
    font-weight: bold;
    color: var(--color-white);
    transition: transform 0.3s;
}

footer [data-name="letters_up_box"] {
    cursor: pointer;
}

footer [data-name="letters_up_box"]:hover,
footer [data-name="letters_up_box"]:hover *,
footer [data-name="letters_up_box"]:hover .letter,
footer [data-name="letters_up_box"]:hover .rotate_arrow,
.header_right .inner_left .rotate_arrow,
.header_right .inner_left:hover .rotate_arrow {
    transition: 0.3s;
}

footer [data-name="letters_up_box"]:hover * {
    color: var(--color-black);
}

.header_right .inner_left:hover .rotate_arrow,
footer [data-name="letters_up_box"]:hover .rotate_arrow {
    will-change: transform;
    transform: rotate(-45deg);
}

footer .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

footer .bottom .header_left,
footer .bottom,
footer .bottom .left {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

footer .bottom {
    justify-content: space-between;
    padding-bottom: 1vw;
}

footer .bottom .right,
footer .bottom .header_left * {
    cursor: text;
}

footer .bottom .header_left {
    margin-right: 2vw;
}

footer .bottom .right span {
    cursor: pointer;
}

.under_line {
    position: relative;
}

.under_line:before {
    position: absolute;
    content: '';
    display: block;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: var(--color-black);
    transition: 0.3s;
}

.under_line:hover:before {
    width: 100%;
}

header .under_line:before,
footer .bottom .right span.under_line:before {
    height: 2px;
}