@charset "utf-8";

/*==================
common
====================*/


html {
    font-size: 62.5%;

}

html[lang="ko"] {
    font-family: "Nanum Gothic", sans-serif;
}

html[lang="ja"] {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
}

body {
    color: var(--primary-black, #E5E7EB);
    background-color: var(--primary-white, #0E0D0D);
    line-height: 1;
    font-weight: 400;
    text-align: left;
    margin: 0;
}

image {
    max-width: 100%;
    height: auto;
}

.topic {
    margin-top: 80px;
    color: rgba(229, 231, 235, 0.60);
    font-family: Overpass;
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 1.6px;
}

.title {
    margin-top: 128px;
    color: rgba(229, 231, 235, 0.60);
    font-family: Overpass;
    font-size: 4.5rem;
    text-align: center;
    letter-spacing: 1.6px;
}

@media screen and (min-width: 769px) {
    .title {
        font-size: 6rem;
        margin-top: 200px;
    }

    .topic {
        font-size: 6rem;
    }

}

/*==================
header
====================*/

.menu-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.menu-btn img {
    width: 60%;
    height: auto;
    display: block;
    pointer-events: none;
}


.nav.active {
    transform: translateX(0);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1100;
}

body.is-menu-open .header.is-bg {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.glovalservice__logo {
    display: block;
    width: 120px;
}

.nav__header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin-block: 20px;
    right: 8.8%;
}

.close__round {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.close__btn {
    width: 20px;
    height: auto;
    display: block;
    position: absolute;
}

.header {
    position: fixed;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 16px;
    box-sizing: border-box;
    width: 100%;
    top: 0;
    transition: background-color .25s ease, backdrop-filter .25s ease, border-color .25s ease;
}

.header.is-bg {
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(7.5px);
    -webkit-backdrop-filter: blur(10px);
}

.header__group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* translation */

.translation {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
        font-weight: 200;
    font-size: 2rem;
    transition: color .3s ease, opacity .3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sep {
   font-size: 1.6rem;
}

.lang {
  transition: color 0.2s ease;
}

.lang.is-active {
  color: #2359E1;
  font-weight: 400;
}

.translation .lang:hover {
    opacity: 1;
}

.is-home.lang-kr .translation .lang-kr {
    color: #2359E1;
    opacity: 1;
}

.is-home.lang-jp .translation .lang-jp {
    color: #2359E1;
    opacity: 1;
}

.lang {
    letter-spacing: 0.14em;
}


/* 初期表示 */

.nav {
    width: 67vw;
    height: 100dvh;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.nav>* {
    position: relative;
    z-index: 1;
}

.menu__item a {
    font-size: 2.2rem;
    text-wrap: nowrap;
    transition: 0.2s;
    font-family: 'Noto Sans JP', Arial, sans-serif;;
    font-weight: 200;
}

.menu__item a:hover {
    color: #2359E1;
}

.menu-item-services {
    font-family: 'Rosario', sans-serif;
    font-size: 2rem;
}

.nav__list {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
    margin-inline: 25%;
    text-align: start;
}


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

    .header {
        margin: 0 auto;
        padding: 20px 2%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    .nav__header {
        display: none;
    }

    .menu-btn {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
        background: none !important;
        backdrop-filter: none !important;
        box-shadow: none !important;
    }

    .nav__list {
        margin-top: 0;
        flex-direction: row;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 64px;
        margin-inline: 0;
    }

    .menu__item a {
        font-size: 2.2rem;
    }

    .translation {
        font-size: 2.4rem;
    }

    .sep {
        font-size: 2rem;
    }

    .header__group {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 64px;
    }

}

/*==================
footer
====================*/

.footer {
    margin: 50px 0 20px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    padding-left: 4.8%;
}

.copy {
    font-size: 1.2rem;
}

.footer-nav-main {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
        font-weight: 200;
    font-size: 1.8rem;
    padding-left: 4.8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    position: relative;
}

.footer-nav-main::before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #707070;
    position: absolute;
    top: 233px;
    right: 0;
}

.footer-nav-main li {
    transition: 0.2s;
}

.footer-nav-main li:hover {
    color: #2359E1;
}

.footer-contact {
    margin-top: 20px;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    align-self: stretch;
    margin-inline: 14.8%;
    line-height: 1.5;
}

.footer-sns {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.instagram_logo,
.kakao_logo {
    display: block;
    width: 40px;
    transition: transform 0.3s ease;
}

.instagram_logo:hover,
.kakao_logo:hover {
    transform: scale(1.15);
}

.footer-tel {
    position: relative;
}

.footer-tel::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/tel_logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -21px;
    top: 53%;
    transform: translateY(-50%);
}

.footer-mail {
    position: relative;
}

.footer-mail::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/mail_logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -22px;
    top: 59%;
    transform: translateY(-50%);
}

.footer-address {
    position: relative;
}

.footer-address::after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../images/location_logo.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -21px;
    top: 27%;
    transform: translateY(-50%);
}

@media (min-width: 769px) {
    .footer {
        position: relative;
        margin-top: 100px;
    }

    .footer::before {
        content: "";
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 1px;
        background: #707070;
    }

    .footer-inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-inline: 2%;
        gap: 40px;
    }

    .footer-nav-main::before {
        display: none;
    }

    .footer-brand {
        padding: 0;
        justify-content: flex-start;
        gap: 17px;
    }

    .footer-contact {
        font-size: 1.8rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        text-align: end;
        gap: 22px;
        margin: 0px;
    }

    .footer-nav-main {
        padding: 0;
        display: grid;
        grid-template-columns: auto auto;
        row-gap: 40px;
        column-gap: 16rem;
    }

    .footer-nav-main li:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    /* TOP */
    .footer-nav-main li:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    /* PORTFOLIO or WORKS */
    .footer-nav-main li:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    /* RENTAL SPACE など */

    
    .footer-nav-main li:nth-child(4) {
        grid-column: 2;
        grid-row: 1;
    }

    /* COMPANY */
    .footer-nav-main li:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
    }

    /* CONTACT */

    .footer-nav a {
        font-size: 2rem;
    }

    .copy {
        font-size: 1.4rem;
    }
}

/*==================
btn
====================*/

.btn.is-active {
    color: var(--Base-white, #0E0D0D);
    background: #E5E7EB;
}

.btn {
    font-family: "Nanum Gothic", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 9px 6.2% 7px 6.2%;
    color: var(--Base-white, #E5E7EB);
    text-align: center;
    transition: 0.4s;
    border: 1px solid #E5E7EB;
    width: 130px;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.btn::after {
    background: #E5E7EB;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--Base-white, #0E0D0D);
    cursor: pointer;
}

.btn:hover::after {
    transform: scale(1, 1);
}

.btn--tabmenu {
    flex: 1;
    width: auto;
}

.btn--kakaotalk {
    border: none;
    color: #3C1E1E;
    position: relative;
    display: inline-flex;
    text-wrap: nowrap;
    align-items: flex-start;
    gap: 6px;
    align-items: center;
    background: #E5E7EB;
}

.btn--kakaotalk::before {
    content: '';
    width: 23px;
    height: 21px;
    background: url(../images/kakao_btn.png) center / contain no-repeat;
    flex: 0 0 auto;
}

.btn--kakaotalk:hover {
    background: #FAD700;
}

.btn--kakaotalk:hover::after {
    background: #FAD700;
}

@media screen and (min-width: 769px) {
    .btn {
        width: 189px;
        font-size: 2.6rem;
        padding: 12px 6.8% 9px;
    }

    .btn--kakaotalk::after {
        width: 35px;
        height: 35px;
        left: 10px;
    }
}