/* font : Gmarket-Sans */
@font-face {
    font-family: 'GMarketSans';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}
/* font : Noto sans */
@font-face {
    font-family: 'Noto Sans KR';
    src: url('https://file.osung.io/resource/osung_pm/fonts/NotoSansCJKkr-Regular.woff') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
/* Common */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
}

html,
body {
    width: 100%;
    height: 100dvh; /* 브라우저 높이에 딱 맞춤 */
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.contain {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
}
.upper-header{
    width: 100%;
    height: 70px;
    background: #fff;
    position: fixed;
    top: 0;
}

.header-inner{
    width: 1200px;
    margin: 0 auto;
    text-align: left;
}
.header-inner img{
    width: auto;
    height: 70px;
    margin: 0;
}

.wrapper {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: #41d1c8;
}

/* Title */
.title div {
    width: 100%;
    margin: 0;
    text-align: center;
}
.title .title-web img{
    width: 100%;
    min-width: 888px;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}
.title .title-mobile {
    width: 100%;
    margin: 0 auto;
}
.title .title-mobile img{
    width: 124%;
    margin-left: -12%;
}

/* Content */
.content {
    margin: 0 auto;
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
    color: #000;
}

.content.content-web {
    margin-top: 20px;
    font-size: 20px;
    line-height: 30px;
    word-spacing: -1px;
    letter-spacing: -1px;
}

.content.content-mobile {
    margin-top: 30px;
    font-size: clamp(12px, 4vw, 20px);
    line-height: 1.5;
    word-spacing: -0.05em;
    letter-spacing: -0.04em;
}

/* Data */
.date {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-family: 'GMarketSans';
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.date.date-web {
    height: 40px;
    margin-top: 20px;
    font-size: 36px;
    word-spacing: -2.5px;
    letter-spacing: -1.2px;
}

.date.date-mobile {
    margin-top: 20px;
    font-size: clamp(18px, 5vw, 32px);
    word-spacing: -0.1em;
    letter-spacing: -0.05em;
}



/* -----화면 너비에 따른 설정----- */
.title-mobile,
.content-mobile,
.date-mobile {
    display: none;
}

.title-web,
.content-web,
.date-web {
    display: block;
}

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
    .title-mobile,
    .content-web, 
    .date-mobile {
        display: none;
    }

    .title-web,
    .content-mobile,
    .date-web {
        display: block;
    }

    .header-inner{
        width: 100%;
        margin: 0;
        padding-left: 20px;
    }
}

/* 600px 이하 */
@media screen and (max-width: 600px) {
    .title-web,
    .content-web,
    .date-web {
        display: none;
    }

    .title-mobile,
    .content-mobile,
    .date-mobile {
        display: block;
    }
    .header-inner {
        width: 100%;
        margin: 0;
        padding-left: 20px;
    }
}