/* color root */
:root {
    --brand-01 : #F04E06;
    --brand-02 : #F15D1B;
    --brand-03 : #F47A44;
    --brand-04 : #FAC4AC;
    --brand-05 : #FCE1D5;
    --brand-06 : #FEF0EA;

    --main-01 : #F04E06;
    --main-02 : #F76626;
    
    --red-10: #FB2C36;

    --blue-10: #007BFF;

    --white-10: #FFFFFF;
    --white-20: #E4E4E4;

    --black-10: #000000;
    --black-20: #333333;
    --black-30: #262627;
    --gray-01 : #5C5C5D;
    --gray-02 : #555555;
    --gray-03 : #828282;
    --gray-04 : #eeeeee;
}

/* reset */
body {
    position: relative;
}
a, span {
    display: block;
}

/* css */
/* top-bar */
.top-bar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 78px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 
              inset 0 4px 20px rgba(255, 255, 255, 0.3);
    z-index: 1000;
}
.top-bar .contents {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar .contents .login {
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1.5px solid var(--brand-02);
    color: var(--brand-02);
}
.top-bar .contents .login:hover {
    background-color: var(--brand-02);
    color: var(--white-10);
}
.top-bar .contents .login-icon {
    display: block;
    transition: all 0.3s;
    color: var(--brand-01);
}
.top-bar .contents .login-icon:hover {
    color: var(--brand-02);
}

/* top-bar.max */
.top-bar.max {
    display: none;
}
.top-bar.max  ul > li > a {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-bar.max  ul > li > a span {
    position: absolute;
    width: 100%;
    position: absolute;
    height: 4px;
    background-color: var(--brand-01);
    border-radius: 10px;
    transition: all 0.3s;
}
.top-bar.max  ul > li > a span:nth-child(1) {
  top: 12%;
}
.top-bar.max  ul > li > a span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.top-bar.max  ul > li > a span:nth-child(3) {
    bottom: -4%;
}
.top-bar.max  ul > li > a:hover span:nth-child(1) {
    top: 25%;
}
.top-bar.max  ul > li > a:hover span:nth-child(2) {
    width: 0px;
}
.top-bar.max  ul > li > a:hover span:nth-child(3) {
    bottom: 25%;
}

/* main */
.main-1 {
    margin-top: 120px;
    margin-bottom: 120px;
}
.main-1 .main-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 160px;
}
/* side-bar */
.side-bar {
    position: sticky;
    height: 100%;
    top: 100px;
    width: 278px;
    margin-right: 52px;
    white-space: nowrap;
}
.side-bar form {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}
.side-bar input {
    width: 100%;
    height: 54px;
    padding: 0 70px 0 24px;
    /* border-radius: 4px; */
    border-bottom: 1.5px solid var(--brand-01);
}
.side-bar input[type="search"]:focus {
    border: 1.5px solid #F15D1B;
    outline: none;
    border-radius: 4px;
    
}
.side-bar input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
.side-bar .submit {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent url(img/search.svg) 50% 50% no-repeat;
    background-size: 2em;
    cursor: pointer;
}
.side-bar .blind {
    position: absolute;
    overflow:  hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-indent: -999999em;
}
.side-bar > .content.s1 > li > a {
    border-radius: 8px 8px 0 0;
    border-top: solid 1px #e9e9e9;
}
.side-bar > ul:last-child > li > a {
    border-radius: 0 0 8px 8px;
}
.side-bar > ul > li > a {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px;
    background-color: #fefefe;
    border-right: solid 1px #e9e9e9;
    border-bottom: solid 1px #e9e9e9;
    border-left: solid 1px #e9e9e9;
}
.side-bar > ul > li > a > .arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    color: #444;
    background-color: #F8F8F8;
    transition: all 0.2s;
}
.side-bar > ul > li:hover > a > .arrow {
    background-color: white; 
}
.side-bar > ul > li.active > a > .arrow {
    transform: rotate(180deg);
    background-color: white;
    color: #444;
}
.side-bar > ul > li > ul {
    display: none;
}
.side-bar > ul > li > ul > li > a {
    background-color: #FFF9F6;
    padding: 20px 24px;
    border-right: solid 1px #e9e9e9;
    border-bottom: solid 1px #e9e9e9;
    border-left: solid 1px #e9e9e9;
}

/* contents-box */
.main-1 .contents-box  {
    width: 80%;
    position: relative;
}
.main-1 .contents-box .content {
    width: 100%;
}
.main-1 .contents-box .content .line {
    width: 100%;
    height: 1px;
    background-color: #d3d3d3;
    margin: 40px 0px;
}
.main-1 .contents-box .content .list {
    width: 100%;
}
.main-1 .contents-box .content .list .img-box {
    padding: 16px 0 16px 0;
    display: flex;
    justify-content: flex-start;
}
.main-1 .contents-box .content .list .img-box img {
    background-size: cover;
    background-repeat: no-repeat;
}

/* mobile-side-bar */
.mobile-side-bar-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: visibility 0.3s, opacity 0.3s;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
}
.mobile-side-bar-screen.active {
    display: block;
    top: 0;
}
.mobile-side-bar {
    width: 0px;
    height: 100%; 
    position: fixed;
    top: 0;
    right: 0;
    background-color: white;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: -2px 0px 25px 0px #00000010;
    z-index: 1002;
}
.mobile-side-bar.active {
    width: 480px;
}
/* side-top */
.mobile-side-bar .side-top {
    width: 100%;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile-side-bar .side-top .login-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    border: 1.5px solid var(--brand-02);
    border-radius: 10px;
    transition: all 0.3s;
    color: var(--brand-01);
}
.mobile-side-bar .side-top .login-btn:hover {
    color: white;
    background-color: var(--brand-02);
}
.mobile-side-bar .side-top .close-btn {
    font-family: "Pretendard";
    font-size: 40px;
    font-weight: 300;
    color: var(--brand-01);
    transition: all 0.2s;
}
.mobile-side-bar .side-top .close-btn:hover {
    transform: rotate(90deg);
}
/* form */
.mobile-side-bar form {
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 36px;
    padding: 0 24px 0 24px;
    overflow: hidden;
}
.mobile-side-bar .input {
    width: 100%;
    height: 54px;
    padding: 0 50px 0 6px;
    border-radius: 4px;
    border: 2.5px solid var(--brand-02);
    transition: all 0.1s ease-in-out;
}
.mobile-side-bar input[type="search"]:focus {
    border: 3px solid var(--brand-01);
    outline: none;
    border-radius: 4px;
}
.mobile-side-bar input[type="search"]::-webkit-search-cancel-button {
    display: none;
}
.mobile-side-bar .submit {
    position: absolute;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: transparent url(img/search.svg) 50% 50% no-repeat;
    background-size: 2em;
    cursor: pointer;
}
.mobile-side-bar .blind {
    position: absolute;
    overflow:  hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    font-size: 0;
    text-indent: -999999em;
}
/* content */
.mobile-side-bar > ul > li > a {
    display: flex;
    justify-content: space-between;
    padding: 24px 24px;
    border-bottom: solid 1px #d9d9d9;
    background-color: white;
}
.mobile-side-bar > ul > li > a > .arrow {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: #F8F8F8;
    transition: all 0.2s;
}
.mobile-side-bar > ul > li:hover > a > .arrow {
    color: #444;
    background-color: white; 
}
.mobile-side-bar > ul > li.active > a > .arrow {
    color: #444;
    transform: rotate(180deg);
    background-color: white;
}
.mobile-side-bar > ul > li > ul {
    width: 100%;
    display: none;
}
.mobile-side-bar > ul > li > ul > li > a {
    background-color: #FFF9F6;
    padding: 20px 24px;
    border-right: solid 1px #F3F3F3;
    border-bottom: solid 1px #F3F3F3;
    border-left: solid 1px #F3F3F3;
}

/* inquiry-banner */
.inquiry-banner {
    width: 100%;
    height: 174px;
    background: linear-gradient(101deg,rgba(241, 93, 27, 1) 0%, rgba(255, 146, 98, 1) 100%);
    border-radius: 14px 14px 14px 60px;
    display: flex;
    align-items: center;
    justify-content: start;
    position: relative;
}
.inquiry-banner .text-box {
    padding-left: 160px;
}
.inquiry-banner .img-box {
    width: 230px;
    height: 260px;
    background-image: url(../img/guide_page/inquiry-banner-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: -90px;
    right: 40px;
}
/* inquiry-banner-max */
.inquiry-banner-max {
    display: none;
    width: 100%;
    height: 130px;
    background-image: url(../img/guide_page/inquiry-banner-max-img.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* footer */
 .footer {
    width: 100%;
    height: 330px;
    background-color: #333;
    display: flex;
    align-items: center;
 }
 .footer .contents-box {
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
 }
 .footer .contents-box .text-box .list.l1 {
    margin-top: 16px;
 }
 .footer .contents-box .text-box .list.l2 {
    display: flex;
    gap: 8px;
    margin-top: 4px;
 }
 .footer .contents-box .text-box .list.l3 {
    margin-top: 32px;
 }
 .footer .contents-box ul  {
    display: flex;
    gap: 20px;
 }
 .footer .contents-box ul > li > a {
    padding: 16px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #bbb;
    border-radius: 100px;
    transition: all 0.3s;
 }
 .footer .contents-box ul > li > a:hover {
    background-color: #ffffff80;
    color: white;
    font-weight: 700;
 }

 /* kakaoTalk */
.kakao_btn {
    position: fixed;
    bottom: 124px;
    right: 50px;
    display: none; /* 초기에는 숨김 */
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.kakao_bt {
    color:  white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    padding-bottom: 4px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s, transform 0.3s;
    z-index: 1;
}
.kakao_bt:hover {
    opacity: 0.8;
    transform: scale(1.1);
}
 /* top_btn */
 .top_btn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    display: none; /* 초기에는 숨김 */
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.top_bt {
    background-color: var(--white-10);
    color:  var(--brand-01);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    transition: opacity 0.3s, transform 0.3s;
}
.top_bt:hover {
    opacity: 0.8;
    transform: scale(1.1);
}