/* font */
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'Pre';
  src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}
/* //font */

:root {
  --pr : #1B1B1D;
  --red : #ff6767;
  --gray_6f : #6F7175;
  --gray_e0 : #E0E0E0;
  --gray_e1 : #E1DFDF;
  --gray_cb : #CBC9C9;
  --gray_9d : #9D9FA2;
  --wt : #FFFFFF;
  --wt_f5 : #F5F5F5;
  --wt_f9 : #f9f9f9;
}

body {font-family: 'Pre';}
.container {max-width: 1200px; width: 100%; height: auto; margin: 0 auto; box-sizing: border-box;}
section {padding: 150px 0;}

/* tit-box */
.tit-box {position: relative;}
.tit-box .tit {font-size: 45px;font-weight: 800; line-height: 1.2; color: var(--pr);}
.tit-box .sub {margin-bottom: 15px; font-size: 24px; font-weight: 600; line-height: 1.21; color: var(--pr);}
.tit-box .cs_btn {position: absolute; bottom: 0; right: 0; z-index: 2;}

/* address_btn */
.address_btn {
    position: relative;
    width: 100%;
    height: auto;
    padding: 15px 0;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-top: 1px solid #E5E7EA;
    border-bottom: 1px solid #E5E7EA;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #b8b8b8;
}

.address_btn .container {
    position: relative;
    padding: 0;
    text-align: left;
}

.address_btn .container::before {
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid #dbdbdb;
    border-bottom: 2px solid #dbdbdb;
    box-sizing: border-box;
    position: absolute;
    top: calc(50% - 8px);
    left: 134px;
    transform: rotate(45deg);
    transition: all .3s;
}

.address_btn.on .container::before {
    top: calc(50% - 5px);
    transform: rotate(-135deg);
}

.btn_hiddenzone {width: calc(100% - 60px); height: 60px; position: absolute; bottom: 0;}