html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
    color: inherit;
    vertical-align: baseline;

    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;

    /*cursor: none;*/

}

body {
    overflow-x: hidden !important;
}

#info-cur {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;  /* 이미지 크기 조절 가능 */
  height: 1.3rem;
  pointer-events: none;
  z-index: 9999;

  @media (pointer: coarse) {
    display: none !important;
}
}

::-webkit-scrollbar {
    display: none;
}

::selection {  
    color: rgb(255, 255, 255);  
    background-color: rgb(0, 170, 255, 0);
}

canvas { 
    display: block; 
    overflow-x: hidden;
}

#motion-btn {
    background-color: rgb(255, 255, 255);
    color: rgb(65, 65, 65);
    position: fixed;
    left: 50%;
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    transform: translateX(-50%);
    z-index: 9999;
    
    padding-left: 1.35rem;
    padding-right: 1.35rem;
    padding-top: 0.75rem;
    padding-bottom: 0.8rem;
    
    border-radius: 0.75rem;
    border: none;

    text-align: center;
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
    line-height: 1.25rem;
    text-transform: uppercase;

    white-space: pre;
}

a {
    text-decoration: none;
}

a:hover {
    color: white;
}

body {
    color: rgb(65, 65, 65);
    background-color: rgb(225, 225, 220);

    font-family: Gothic A1;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.5rem;

    word-spacing: 0.125em;

    word-break: keep-all;

    @media (min-width:0px) and (max-width:680px){
        font-size: 0.75rem;
        line-height: 1.25rem;

        word-spacing: 0.1em;
    }
}

#menu-fixed {
    color: rgb(165, 165, 160);
    position: fixed;
    top: 2.5rem;
    z-index: 1000;

    width: calc(100vw - 0rem);
    height: 2.5rem;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow-y: hidden;

    @media (min-width:0px) and (max-width:680px){
        width: calc(100vw - 2rem);
        top: 1rem;
        height: 2rem;
        padding: 1rem;
    }

}

#to-index {
    overflow-y: hidden;
    height: 100%;
    padding: 1rem;

}

#logo {

    @media (min-width:0px) and (max-width:680px){
        height: 2rem;
    }
}

.h-100 {
    height: 100%;
}

.center {
    width: calc(100vw - 20vw);
    margin-top: 6rem;
    margin-left: 10vw;
    
    display: flex;
    flex-direction: column;

    @media (min-width:1000px) and (max-width:1200px){
        width: calc(100vw - 10vw);
        margin-left: 5vw;
    }

    @media (min-width:500px) and (max-width:1000px){
            border-bottom: inherit;
        width: calc(100vw - 8rem);
        margin-left: 4rem;
    }

    @media (min-width:0px) and (max-width:500px){
            border-bottom: inherit;
        width: calc(100vw - 2rem);
        margin-left: 1rem;
    }
}

.center-thin {
    width: calc(100vw - 20vw);
    margin-top: 6rem;
    margin-left: 10vw;
    
    display: flex;
    flex-direction: column;

    @media (min-width:1000px) and (max-width:1200px){
        width: calc(100vw - 10vw);
        margin-left: 5vw;
    }

    @media (min-width:0px) and (max-width:1000px){
            border-bottom: inherit;
        width: calc(100vw - 30vw);
        margin-left: 15vw;
    }
}

.inner-center {
    text-align: center;
}

.info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;

    @media (min-width:680px) and (max-width:1400px){
        column-gap: 3.5rem;
    }

    @media (min-width:0px) and (max-width:680px){
        grid-template-columns: 1fr;
        column-gap: 3.5rem;
    }
}

.info-2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 5rem;

    @media (min-width:680px) and (max-width:1400px){
        grid-template-columns: 1fr 1fr;
        column-gap: 3.5rem;
    }

    @media (min-width:0px) and (max-width:680px){
        grid-template-columns: 1fr 1fr;
        column-gap: 3.5rem;
    }
}

.info-thin {
    background-color: red;
    width: 50%;
    margin-left: 25%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;

    @media (min-width:680px) and (max-width:1400px){
        width: 100%;
        margin-left: 0%;
        column-gap: 2.5rem;
    }

    @media (min-width:0px) and (max-width:680px){
        width: 100%;
        margin-left: 0%;
        grid-template-columns: 1fr 1fr;
    }
}

.info-black {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    column-gap: 3.5rem;

    @media (min-width:1000px) and (max-width:1400px){
        grid-template-columns: 1fr 2fr 1fr;
        column-gap: 3.25rem;
    }

    @media (min-width:0px) and (max-width:1000px){
        grid-template-columns: 1fr;
    }
}

.info-black-yet {
    display: none;
}

.list-black {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: fit-content;
    column-gap: 0.1rem;
    row-gap: 0.1rem;

    @media (min-width:0px) and (max-width:1000px){
        grid-template-columns: 1fr;
    }
}

.black-cell {
    background-color: rgb(230, 230, 230);
    color: rgb(65, 65, 65);
    width: calc(100% - 5rem);
    text-align: center;
    padding: 0.65rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    align-content: center;

    font-family: "Noto Serif KR", serif;
    font-weight: 500;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    word-spacing: 0.35em;
    line-height: 1.5rem;

    mix-blend-mode: multiply;

    @media (min-width:680px) and (max-width:1400px){
        width: calc(100% - 3.5rem);
        padding: 0.5rem;
        padding-left: 1.75rem;
        padding-right: 1.75rem;
    }

    @media (min-width:0px) and (max-width:680px){
        grid-template-columns: 1fr;
    }
}

.black-cell:hover {
    background-color: rgb(62, 62, 62);
    color: rgb(255, 255, 255);
    font-style: italic;
}

.hover-black{display:block;}
.hover-black > *{display:none;}

.roof {
    display: none;
    grid-template-columns: 1fr 2fr 1fr;
    column-gap: 5rem;
    margin-bottom: 0.1rem;

    @media (min-width:1000px) and (max-width:1400px){
        grid-template-columns: 1fr 2fr 1fr;
        column-gap: 3.5rem;
    }

    @media (min-width:0px) and (max-width:1000px){
        display: grid;
        grid-template-columns: 1fr;
        column-gap: 3.5rem;
    }
}

.roof-img {
    width: 100%;
}

.ground {
    display: none;

    @media (min-width:0px) and (max-width:1000px){
        display: block;
        background-color: rgb(65, 65, 65);
        width: 100%;
        height: 1rem;
        margin-top: 0.1rem;
    }
}










.kor {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;

    column-gap: 1rem;

    @media (min-width:0px) and (max-width:1400px){
        -moz-column-count: inherit;
        -webkit-column-count: inherit;
        column-count: inherit;

        word-spacing: 0.1em;
    }
}

.kor-black {
    @media (min-width:0px) and (max-width:1000px){
        display: none;
    }
}

.kor-right {
    text-align: right;

    @media (min-width:0px) and (max-width:1400px){
        word-spacing: 0.1em;
    }
}

.kor-center {
    text-align: center;

    @media (min-width:0px) and (max-width:1400px){
        word-spacing: 0.1em;
    }
}

.eng {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;

    column-gap: 1rem;

    letter-spacing: 0.02em;
    word-spacing: 0.0775em;

    @media (min-width:0px) and (max-width:1400px){
        -moz-column-count: inherit;
        -webkit-column-count: inherit;
        column-count: inherit;

        letter-spacing: 0.01em;
        word-spacing: 0.1em;
    }
}

.eng-black {
    letter-spacing: 0.02em;
    word-spacing: 0.0775em;

    @media (min-width:0px) and (max-width:1000px){
        display: none;
    }
}

.eng-left {
    letter-spacing: 0.02em;
    word-spacing: 0.0775em;

    text-align: left;

    @media (min-width:0px) and (max-width:1400px){
        letter-spacing: 0.01em;
        word-spacing: 0.1em;
    }
}

.eng-center {
    letter-spacing: 0.02em;
    word-spacing: 0.0775em;

    text-align: center;

    @media (min-width:0px) and (max-width:1400px){
        letter-spacing: 0.01em;
        word-spacing: 0.1em;
    }
}










#main-grid {
    width: calc(100vw - 20vw);
    margin-left: 10vw;

    display: grid;
    grid-template-columns: 1fr 1fr;

    @media (min-width:680px) and (max-width:1400px){
        grid-template-columns: 1fr 1fr;

        width: calc(100vw - 10vw);
        margin-left: 5vw;
    }

    @media (min-width:0px) and (max-width:680px){
        grid-template-columns: 1fr;
        width: calc(100vw - 2rem);
        margin-left: 1rem;
    }
}










#grid-soon {
    width: calc(100vw - 20vw);
    margin-left: 10vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    @media (min-width:680px) and (max-width:1400px){
        width: calc(100vw - 10vw);
        margin-left: 5vw;
    }

    @media (min-width:0px) and (max-width:680px){
        grid-template-columns: 1fr;
        width: calc(100vw - 2rem);
        margin-left: 1rem;
    }
}

.element-soon {
    width: 80%;
    margin-left: 10%;
}










.img-100 {
    width: 100%;
}

#mail {
    text-align: center;
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
}

.title {
    text-align: center;
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
    text-transform: uppercase;

}

.title-2 {
    text-align: center;
    margin-bottom: 2rem;
}

.title-space {
    text-align: center;
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
    text-transform: uppercase;
    margin-bottom: 2rem;

}

.title-space-lower {
    text-align: center;
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
    margin-bottom: 2rem;

}

.visible-Desktop {
    display: block;

    @media (min-width:0px) and (max-width:1400px){
        display: none;
    }
}

.visible-DT {
    display: block;

    @media (min-width:0px) and (max-width:680px){
        display: none;
    }
}

.blank-visible-mobile {
    display: none;

    @media (min-width:0px) and (max-width:680px){
        display: block;
        width: 100vw;
        height: 1.5rem;
    }
}

.blank-thin {
    width: 100%;
    height: 1.5rem;
}

.blank-solid {
    width: 100%;
    height: 2.5rem;
}

.blank-bold {
    width: 100%;
    height: 7.5rem;
}

.blank-top {
    width: 100%;
    height: 4rem;
}









.none {
    display: none;
}

#blank-bottom {
    height: 25vh;
}

#bg-img {
    position: fixed;
    z-index: -1000;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;

    display: flex;
    justify-self: center;
    align-self: center;
}

#copyright {
    letter-spacing: 0.1em;
    word-spacing: 0.5em;
    width: 100vw;
    position: fixed;
    bottom: 0;

    text-transform: uppercase;

    color: rgb(65, 65, 65);

    text-align: center;
    margin-bottom: 1rem;
}





#canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100svw;
    height: 100svh;
    pointer-events: none;

    overflow-x: hidden !important;
}
