@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
:root{
    --main-puple:#A661FF;
    --main-blue:#4469E1;
    --main-green:#00BEBE;
    --main-txt-block:#222;
    --main-txt-content:#555;
    --main-txt-gray:#888;
}

/* reset */
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;
	vertical-align: baseline;
    box-sizing: border-box;
    scroll-behavior: auto;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
    text-decoration: none;
    color:inherit;
}
img{
    display: block;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox  */
input[type='number'] {
    -moz-appearance: textfield;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none; 
    appearance: none;
    
}
html{
    display:block;
    width:100%;
    margin:0 auto;
    font-size:62.5%;
    background: #fff;
}
/* 바디 */
body{
    font-family: 'Noto Sans KR', sans-serif;
    font-weight:400;
    font-size:1.6rem;
    width:100%;
    max-width:1920px;
    min-width: 320px;
    min-height:100vh;
    margin:0 auto;
    word-break: keep-all;
    letter-spacing: -0.05em;
    color:var(--main-txt-block);
    background:transparent;
    position:relative;
    padding-top:0;
}
header{
    display:block;
    width:100%;
    max-width:1920px;
    margin:0 auto;
    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);
    background:#fff;
    z-index: 100;
}
.header_wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width:calc(100% - 200px);
    margin:0 auto;
}
h1{
    text-indent: -9999px;
    font-size:1.6rem;
    background-image: url(../img/logo.png);
    background-size:100%;
    background-position:center;
    background-repeat: no-repeat;
    width:152px;
    height:42px;
    margin:24px 0 23px;
}
.menu{
    display:flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height:100%;
}
.menu > li > a{
    font-weight:500;
    font-size:1.8rem;
    padding:0 20px 0 19px;
}
.menu > li.on > a{
    color:var(--main-puple);
}
/*-----------content*/
.content_area{
    display:block;
    width:100%;
    margin:89px auto 0;
}
.section_01{
    margin-bottom:82px;
}
.main_visual_wrap{
    width:100%;
    aspect-ratio: 1920 / 848;
    min-height:800px;
    background-image: url(../img/main_visual_bg.png);
    background-repeat: no-repeat;
    background-size:cover;
    background-position:center;
    padding:0 100px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    flex-wrap: wrap;
    color:#fff;
    position:relative;
    margin-bottom:120px;
    background-color:darkseagreen
}
.main_text_bx{
    margin-bottom:206px;
    margin-right:453px;
}
.main_text_bx > .title{
    font-weight: 600;
    font-size:5.5rem;
    line-height:1.2em;
    white-space: pre-line;
    margin-bottom:40px;
}
.main_text_bx > .content{
    white-space: pre-line;
    font-size:1.8rem;
    line-height:1.4em;
}
.main_img_bx{
    display: block;
    position: absolute;
    bottom: 0;
    right: 100px;
}
.scrolldown{
    background:none;
    border:0;
    position:absolute;
    left:50%;
    transform: translateX(-50%);
    bottom:44px;
}
.num_data_wrap{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    padding:0 100px;
    flex-wrap: wrap;
}
.num_data_wrap > li{
    background-color:var(--main-green);
    background-image: url(../img/icon_num_item_01.png);
    background-repeat: no-repeat;
    background-position:right 25px bottom 27px;
    background-size:100px;
    width:calc(33.3333% - 31.5px);
    border-radius: 10px;
    padding:45px 61px 42px 67px;
    color:#fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}
.num_data_wrap > li:nth-child(2){
    background-color: var(--main-blue);
    background-image: url(../img/icon_num_item_02.png);
}
.num_data_wrap > li:nth-child(3){
    background-color: var(--main-puple);
    background-image: url(../img/icon_num_item_03.png);
}
.num_data_wrap > li > .data_title{
    font-size:2rem;
    font-weight:500;
    margin-bottom:16px;
}
.num_data_wrap > li > .data_title strong{
    font-weight: 600;
}
.num_data_wrap > li > .data_num{
    font-size:2.4rem;
    font-weight:600;
    margin-bottom:28px;
}
.num_data_wrap > li > .data_num .data_number{
    font-size:4.8rem;
    line-height:1em;
    margin-right:16px;
}
.num_data_wrap > li > .data_content{
    font-size:1.6rem;
    line-height:1.4em;
    white-space: pre-line;
}
.num_data_wrap > li > .data_date{
    font-size:1.6rem;
    line-height:1em;
    margin-top:32px;
}
.section_02{
    padding:0 0 120px 0;
}
.title_area{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width:100%;
    margin-bottom:146px;
}
.title_area > h2{
    font-size: 3.6rem;
    line-height:1em;
    margin-bottom:33px;
    font-weight:500;
}
.title_area > h2 > strong{
    font-weight:600;
}
.title_area > .eng_exp{
    color:var(--main-txt-gray);
    font-size:2rem;
    line-height:1em;
}
.explain{
    display:block;
    width:100%;
    margin-top:22px;
    color:var(--main-txt-gray);
    text-align: right;
    width:100%;
    padding-right:100px;
}
.section_03{
    padding:0 0 120px 0; 
}
.section_03 > .title_area{
    margin-bottom:48px;
}
.co_company_list {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin:0 auto;
}
.co_company_list .swiper-slide img{
    display: block;
    width:100%;
    height:100%;
    object-fit: contain;
}
.section_04{
    background:#F9F9F9;
    padding:124px 94px 120px 100px;
}
.flex_row_bx{
    display:flex;
    width:100%;
    flex-direction: row;
    justify-content: flex-start;
    align-items:flex-start;
    flex-wrap: wrap;
}
/*-------------키오스크*/
.naerdream_ksk_slide{
    display: block;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    position:relative;
}
.swiper-button-next, .swiper-button-prev{
    color:#888;
}
.naerdream_ksk_slide .swiper-slide{
    background:#E8FAF9;
    padding:108px 0 107px;
}
.naerdream_ksk_slide .swiper-slide.store{
    background:#EFF6FF;
}
.kiosk_slide_bx{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width:calc(100% - 200px);
    max-width:1400px;
    margin:0 auto;
}
.kiosk_slide_bx > .image_bx{
    display:block;
    position:relative;
    width:100%;
    max-width:432px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    aspect-ratio: 432 / 743;
}
.kiosk_slide_bx > .image_bx > img{
    display: block;
    width:100%;
    height:100%;
    object-fit: cover;
}
.kiosk_slide_bx > .image_bx > a{
    position:absolute;
    width:88px;
    height:88px;
    background-color: #00BEBE60;
    border-radius:44px;
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.store .kiosk_slide_bx > .image_bx > a{
    background-color:#4469E160;
}
.kiosk_slide_bx > .content_bx{
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width:100%;
    max-width:928px;
    padding-left:32px;
}
.kiosk_slide_bx > .content_bx > li{
    display:block;
    width:100%;
    background:#fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding:48px 32px 50px 46px;
    border-radius: 10px;
}
.store .kiosk_slide_bx > .content_bx > li{
    padding-bottom:73px;
}
.kiosk_slide_bx > .content_bx > li > .title{
    font-weight:600;
    font-size:2.2rem;
    padding-left:54px;
    line-height:1.5em;
    color:var(--main-green);
    background-image: url(../img/icon_ksk_01.png);
    background-repeat: no-repeat;
    background-position:left center;
    background-size:46px;
    margin-bottom:20px;
}
.kiosk_slide_bx > .content_bx > li:nth-child(2) > .title{
    background-image: url(../img/icon_ksk_02.png);
}
.kiosk_slide_bx > .content_bx > li:nth-child(3) > .title{
    background-image: url(../img/icon_ksk_03.png);
}
.store .kiosk_slide_bx > .content_bx > li > .title{
    color:var(--main-blue);
    background-image: url(../img/icon_ksk_04.png);
}
.store .kiosk_slide_bx > .content_bx > li:nth-child(2) > .title{
    background-image: url(../img/icon_ksk_05.png);
}
.store .kiosk_slide_bx > .content_bx > li:nth-child(3) > .title{
    background-image: url(../img/icon_ksk_06.png);
}
.kiosk_info > li{
    padding-left:36px;
    position:relative;
    width:100%;
    margin-bottom:20px;
    font-size:1.6rem;
    line-height:1em;
}
.kiosk_info > li:last-child{
    margin-bottom:0;
}
.kiosk_info > li::before{
    display: block;
    content:'';
    width:6px;
    height:6px;
    border-radius: 3px;
    background-color: var(--main-green);
    position:absolute;
    left:11px;
    top:5px;
}
.store .kiosk_info > li::before{
    background-color: var(--main-blue);
}
.row_title{
    width:310px;
}
.row_title > h2{
    white-space: pre-line;
    font-weight: 500;
}
.row_title > h2 > strong{
    font-weight:600;
}
.content_date{
    font-size:2rem;
    color:var(--main-txt-gray);
}
.row_bx{
    display:block;
    width:calc(100% - 310px);
}
.ins_cmpn_list{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width:100%;
}
.ins_cmpn_list > li{
    width:calc(33.3333% - 19px);
    background:#fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.05);
    padding:42px 45px 31px;
    display:flex;
    /*flex-direction: row;*/
    flex-direction: column;
    /*justify-content: center;*/
    text-align: center;
    /*align-items: flex-start;*/
    flex-wrap: wrap;
}
.ins_cmpn_list > li > .title{
    font-size:2.2rem;
    width:165px;
    padding:7px 0 8px;
    line-height:1.5em;
    background-color: var(--main-green);
    color:#fff;
    border-radius: 30px;
    /*margin-bottom:29px;*/
    margin: 0 auto 29px auto;
    text-align: center;
    font-weight: 600;
}
.ins_cmpn_list > li:nth-child(2) > .title{
    background-color: var(--main-blue);
}
.ins_cmpn_list > li:nth-child(3) > .title{
    background-color: var(--main-puple);
}
.cmpn_list_bx{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width:100%;
    flex-wrap: wrap;
}
.cmpn_list_bx > li{
    width:calc(50% - 8px);
}
.cmpn_list_bx > li > img{
    display: block;
    width:100%;
}
.section_05{
    padding:120px 0 120px 100px;
}
.section_05 > .flex_row_bx > .row_bx{
    width:calc(100% - 310px);
}
.kiosk_setting_slide{
    width:100%;
    overflow: hidden;
}
.gallery-btn{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width:100%;
}
.gallery-btn > .kiosk_img{
    display: flex;
    width:100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #eee;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom:26px;
    padding: 10px;
}

.gallery-btn > .kiosk_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gallery-btn > .hspt_name{
    font-size:2rem;
}
.gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.gallery-popup .popup-content {
    background: transparent;
    padding: 33px 0 0 0;
    border-radius: 8px;
    text-align: center;
    position: relative;
    width:calc(100% - 32px);
    max-width:588px;
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}

.gallery-popup .close-btn {
    top:0;
    right:0
}

.gallery-popup .main-image{
    display:block;
    width:100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom:16px;
    position: relative;
}
.gallery-popup .main-image img {
    width: 100%;
    height:100%;
    object-fit: cover;
}
.layer_hspt_name{
    position: absolute;
    left:32px;
    bottom:26px;
    color:#fff;
    font-size:2.8rem;
    font-weight: 600;
}
.thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.thumbnails img {
    width:109px;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 10px;
}

.thumbnails img.active {
    border-color: #007bff;
}

.section_06{
    background-color:#FAFAFF;
    background-image: url(../img/history_bg_item.png);
    background-position: right 78px bottom 68px;
    background-repeat: no-repeat;
    background-size: auto;
    padding:120px 100px;
}
.section_06 > .title_area{
    margin-bottom:68px;
}
.history_area{
    padding-left:22.3%;
    position:relative;
    width:100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top:27px;
}
.history_area::before{
    display: block;
    content:'';
    border-right:1.5px dashed var(--main-puple);
    top:0;
    left:calc(22.3% + 129px);
    width:0;
    height:100%;
    position:absolute;
}
.history_area > li{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width:100%;
    margin-bottom:66px;
}
.history_area > li > .year{
    width:129px;
    position: relative;
    font-size:3.2rem;
    line-height:1.5em;
    color:var(--main-puple);
    font-weight:600;
}
.history_area > li > .year::after{
    display: block;
    content:'';
    width:11px;
    height:11px;
    border-radius: 7px;
    background-color: var(--main-puple);
    position:absolute;
    top:18.5px;
    right:-6px;
}
.history_content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding:10px 0 0 52px;
    width: calc(100% - 128px);
}
.history_content > li{
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    font-size:1.8rem;
    margin-bottom:22px
}
.history_content > li:last-child{
    margin-bottom:0;
}
.history_content > li > .month{
    margin-right:39px;
}
.section_07{
    width:100%;
    padding:120px 100px;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
}
.map_area{
    display: block;
    width:calc(50% - 46px);
    border:1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.map_area > img{
    display: block;
    width:100%;
    height: 100%;
    object-fit: cover;
}
.section_07 > .contect_area{
    width:calc(50% - 46px);
}
.contect_form{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width:100%;
    margin:auto;
}
.contect_form > h3{
    font-size:3.6rem;
    font-weight:500;
    margin-bottom:21px
}
.contect_form > h3 > strong{
    font-weight:600;
}
.contect_form > .sub_content{
    font-size:2rem;
    color:var(--main-txt-gray);
    margin-bottom:40px;
    width:100%;
}
.form_input{
    display: block;
    width:100%;
    margin-bottom:30px;
}
.form_input.half{
    width:calc(50% - 13px);
}
.form_input.check_bx{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.form_input > label,
.form_input > h4{
    font-size:1.8rem;
    line-height:1.5em;
    margin-bottom:11px;
    display:block;
    width:100%;
    font-weight:400;
}
.form_input > h4{
    margin-bottom:20px;
}
.contect_form > button,
.form_input > textarea,
.form_input > input{
    width:100%;
    border:1px solid #cccccc80;
    border-radius: 5px;
    padding:11px 20px 15px 21px;
    font-size:1.6rem;
    line-height:1.5em;
    box-sizing: border-box;
}
.form_input > input[type="radio"]{
    width:19px;
    height:19px;
    border:1px solid #aaa;
    border-radius: 3px;
    margin:0;
    margin-right:4px;
}
.form_input.check_bx > label{
    width:auto;
    display: inline-block;
    font-size:1.6rem;
    color:#fff;
    background:var(--main-green);
    border-radius: 40px;
    padding:0 15px 2px 14px;
    line-height:1.5em;
    margin-bottom:0;
    margin-right:27px;
}
.form_input.check_bx > label.bg_blue{
    background:var(--main-blue);
}
.contect_form > button{
    background: var(--main-puple);
    text-align: center;
    color:#fff;
    font-size:1.8rem;
    font-weight:500;
    padding:17px 0 18px;
    margin-bottom:23px;
}
.notice{
    display: block;
    padding:15px 16px;
    border:1px solid #CDDEF5;
    background:#EFF6FF;
    color:var(--main-blue);
}

.notice > p{
    padding-left:28px;
    font-size:1.6rem;
    line-height:1.5em;
    position:relative;
}
.notice > p::before{
    display: block;
    content:'※';
    position:absolute;
    top:0;
    left:0;
}
/*-------------footer*/
footer{
    padding:78px 0 77px;
    background-color: var(--main-txt-content);
    color:#fff;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size:1.6rem;
}
footer > .copy{
    margin:22px auto 0;
    color:#ccc;
    font-size:1.5rem
}

/*----------레이어팝업*/
.layer-popup {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 반투명 배경 */
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.layer-popup .popup-content {
    background: #fff;
    width:calc(100% - 32px);
    max-width:1000px;
    height:90%;
    max-height:750px;
    padding:59px 80px;
    border-radius: 10px;
    box-shadow: 0 0px 20px rgba(0, 0, 0, 0.05);
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
}
.kiosk_popup_bx{
    display: block;
    width:100%;
    height:100%;
    overflow-y: scroll;
}
.kiosk_popup_bx > .title{
    padding:8px 27px;
    color:#fff;
    background-color: var(--main-green);
    border-radius: 20px;
    margin-bottom:28px;
    font-weight: 600;
    font-weight:1.8rem;
    display:inline-block;
}
.kiosk_popup_bx.store > .title{
    background-color: var(--main-blue);
}
.ksk_big_text{
    font-size:3.2rem;
    line-height:1.5em;
    margin-bottom:30px;
    font-weight:600;
}
.ksk_color_text{
    color:var(--main-green);
    font-size:2.2rem;
    line-height: 1.5em;
    margin-bottom:23px;
    font-weight:600;
    white-space: pre-line;
}
.store .ksk_color_text{
    color:var(--main-blue);
}
.ksk_info_list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width:100%;
    margin-bottom:40px;
}
.ksk_info_list > li{
    display:block;
    padding-left:22px;
    margin-bottom:10px;
    position:relative;
}
.ksk_info_list > li:last-child{
    margin-bottom:0;
}
.ksk_info_list > li::before{
    position: absolute;
    content:'';
    display:block;
    width:6px;
    height:6px;
    border-radius: 3px;
    background-color: var(--main-green);
    top:9px;
    left:0;
}
.store .ksk_info_list > li::before{
    background-color: var(--main-blue);
}
.kiosk_popup_bx > .image_bx{
    display:flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width:100%;
    margin-bottom:62px;
}
.kiosk_popup_bx > .image_bx > img{
    margin-right:40px;
}
.kiosk_popup_bx > .image_bx > img:last-child{
    margin-right:0;
}
.ksk_store_info{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.ksk_store_info_bx{
    padding-left:107px;
    position:relative;
}
.ksk_store_info_bx::before{
    display: block;
    content:'';
    width:75px;
    height:75px;
    background-image: url(../img/icon_store_01.png);
    background-size: 54px;
    background-position: center;
    background-repeat: no-repeat;
    border:solid 7px var(--main-blue);
    border-radius: 80px;
    position:absolute;
    top:0;
    left:0;
}
.ksk_store_info_bx:nth-child(2):before{
    background-image: url(../img/icon_store_02.png);
    border:solid 7px var(--main-puple);
}
.second_list .ksk_store_info_bx{
    padding-left:0;
}
.second_list .ksk_store_info_bx::before{
    display:none;
}
.ksk_store_info_bx > .title{
    font-size:2.2rem;
    font-weight: 600;
    line-height: 1.5em;
    color:var(--main-blue);
    margin-bottom:12px;
}
.ksk_store_info_bx:nth-child(2) > .title{
    color:var(--main-puple);
}
.ksk_store_info_bx .ksk_info_list > li{
    min-width:310px;
}
.ksk_store_info_bx:nth-child(2) .ksk_info_list > li::before{
    background-color: var(--main-puple);
}
.store_blue_text{
    background-color: #EFF6FF;
    display: block;
    white-space: pre-line;
    width:100%;
    text-align: center;
    color:var(--main-blue);
    margin-bottom:54px;
    padding:17px 0 19px;
    font-size:2.2rem;
    line-height:1.5em;
    font-weight:600;
}
.store_blue_text > strong{
    font-weight:700;
}
.color_gray{
    display: block;
    color:var(--main-txt-gray);
    width:100%;
}
.close-btn {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 18px;
    height: 18px;
    text-indent: -9999px;
    cursor: pointer;
    background-image: url(../img/icon_close_popup.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto;
    background-color: transparent;
    border: 0;
}
@media screen and (max-width: 1440px) {
    .header_wrap{
        width:calc(100% - 128px);
    }
    .main_visual_wrap{
        padding:0 64px;
    }
    .main_img_bx{
        right:64px;
    }
    .num_data_wrap{
        padding:0 64px;
    }
    .section_04 {
        padding: 124px 32px 120px 64px;
    }
    .section_05 {
        padding: 120px 64px 120px 64px;
    }
    .section_07,
    .section_06{
        padding:120px 64px;
    }
    .explain{
        padding-right:64px;
    }
    .title_area{
        margin-bottom:80px;
    }
    .row_title{
        width:100%;
        margin-bottom:24px;
    }
    .row_title > h2{
        white-space: normal;
    }

    .section_05 > .flex_row_bx > .row_bx,
    .row_bx {
        width: 100%;
    }
    .num_data_wrap > li{
        width:calc(33.3333% - 16px);
    }
    .kiosk_slide_bx{
        width:calc(100% - 128px);
    }
    .section_07 > .contect_area,
    .map_area{
        width:calc(50% - 16px);
    }
    .form_input.check_bx > label{
        margin-right:16px;
    }
}
@media screen and (max-width: 1050px) {
    .header_wrap{
        width:calc(100% - 64px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    h1{
        margin-bottom:0;
    }
    .menu > li > a{
        padding:16px;
        display: inline-block;
    }
    .menu > li:first-child > a{
        padding-left: 0;
    }
    .content_area{
        margin:121px auto 0;
    }
    .main_visual_wrap{
        padding:0 32px;
    }
    .main_img_bx{
        right:32px;
    }
    .num_data_wrap{
        padding:0 32px;
    }
    .section_04 {
        padding: 80px 16px 80px 32px;
    }
    .section_05 {
        padding: 80px 32px;
    }
    .section_07,
    .section_06{
        padding:80px 32px;
    }
    .explain{
        padding-right:32px;
    }
    .naerdream_ksk_slide .swiper-slide {
        padding: 80px 0;
    }
    .kiosk_slide_bx {
        width: calc(100% - 64px);
    }
    .kiosk_slide_bx > .image_bx {
        aspect-ratio: 432 / 614;
    }
    .kiosk_slide_bx > .image_bx > img{
        object-position: center bottom;
    }
    .form_input.half{
        width:100%;
    }
    .kiosk_slide_bx > .content_bx > li{
        padding:32px 24px 36px 30px;
    }
    .num_data_wrap > li{
        width:100%;
        padding:32px 62px;
        margin-bottom:32px;
    }
    .num_data_wrap > li:last-child{
        margin-bottom:0;
    }
    .ins_cmpn_list{
        flex-wrap: wrap;
    }
    .ins_cmpn_list > li{
        margin-bottom:32px;
        width:100%;
        padding:32px;
        justify-content: flex-start;
    }
    .ins_cmpn_list > li > .title{
        margin-top:16px;
    }
    .cmpn_list_bx{
        width: calc(100% - 165px);
        justify-content: flex-start;
    }
    .cmpn_list_bx > li{
        width:25%;
    }
}
@media screen and (max-width: 980px) {
    .kiosk_slide_bx > .content_bx > li{
        padding:28px 24px 30px 30px
    }
}
@media screen and (max-width: 950px) {
    .kiosk_slide_bx > .image_bx{
    max-width: 360px;
    aspect-ratio: 360 / 580;
    }
    .kiosk_slide_bx > .content_bx{
        padding-left:24px;
    }
    .kiosk_slide_bx > .content_bx > li {
        padding: 28px 16px 30px 20px;
    }
}
@media screen and (max-width: 860px) {
    .main_text_bx{
        margin-right:320px;
    }
    .main_text_bx > .title{
        font-size:4.8rem;
    }
    .kiosk_slide_bx{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
    .kiosk_slide_bx > .image_bx{
        width: 100%;
        aspect-ratio: 830 / 360;
        max-width: inherit;
        margin-bottom:16px;
    }
    .kiosk_slide_bx > .image_bx > img{
        object-position: 0 -373px;
    }
    .kiosk_slide_bx > .content_bx{
        padding-left:0;
        max-width: inherit;
    }
    .store .kiosk_slide_bx > .content_bx > li{
        padding-bottom:32px;
    }
    .kiosk_slide_bx > .content_bx > li{
        margin-bottom:16px;
    }
}
@media screen and (max-width: 768px) {
    .main_visual_wrap{
        min-height:700px;
        margin-bottom:60px;
    }
    .main_img_bx > img{
        width:320px;
    }
    .ins_cmpn_list > li{
        flex-direction: column;
    }
    .cmpn_list_bx{
        width: 100%;
    }
    .section_07{
        flex-direction: column;
    }
    .section_07 > .contect_area, .map_area{
        width:100%;
    }
    .map_area{
        aspect-ratio: 780 / 324;
        margin-bottom:24px;
    }
    .form_input.half {
        width: calc(50% - 13px);
    }
    .section_06 > .title_area{
        margin-bottom:32px;
    }
    .history_area{
        padding-left: 12.3%;
    }
    .history_area::before {
        left: calc(12.3% + 129px);
    }
    footer{
        padding:32px;
        text-align: center;
        word-break: keep-all;

    }
}
@media screen and (max-width: 651px) {
    nav{
        width:100%;
        overflow-x: scroll;
    }
    .menu{
        min-width:651px;
    }
}
@media screen and (max-width: 650px) {
    .main_text_bx{
        margin-right:0;
        margin-bottom:180px;
        position:relative;
        z-index: 2;
    }
    .main_img_bx {
        right: 0px;
    }
    .main_img_bx > img {
        width: 260px;
    }
}
@media screen and (max-width: 509px) {
    .form_input.half {
        width: 100%;
    }
}
@media screen and (max-width: 480px) {
    .cmpn_list_bx > li {
        width: 33.3333%;
    }
    .history_area {
        padding-left: 0;
    }
    .history_area::before {
        left: 129px;
    }
    .history_area > li > .year{
        width:96px;
    }
    .history_area::before {
        left: 96px;
    }
    .history_content > li{
        flex-direction: column;
    }
    .title_area{
        margin-bottom:40px;
    }
    .title_area > h2{
        margin:0;
    }
    .eng_exp{
        display:none;
    }
    .naerdream_ksk_slide .swiper-slide{
        padding:40px 0;
    }

    .layer-popup .popup-content {
        padding:15px 10px;
    }
    .close-btn {
        top: 17px;
        right: 16px;
    }
}

@media screen and (max-width: 360px) {
    .cmpn_list_bx > li {
        width: 50%;
    }
}

#tost_btn {
    display: block;
    margin: 40px auto;
    padding: 10px 20px;
    background-color: royalblue;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
}
#tost_btn:hover {
    box-shadow: 3px 4px 11px 0px #00000040;
}

/*토스트 메시지*/
#tost_message {
    opacity: 0;
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translate(-50%,0);
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.70);
    border-radius: 100px;
    color: #fff;
    box-shadow: 3px 4px 11px 0px #00000040;
    transition: all 0.5s;
}
/*토스트 메시지 활성화 되었을 때*/
#tost_message.active {
    opacity: 100%;
    bottom: 50px;
}