@charset "UTF-8";

/* 기본 설정들 */
html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
}
html * {
    word-break: keep-all;
}
html,
body {
    font-family: "Pretendard", sans-serif;
}
/* body{position: relative;} */
img,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
div {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
div,
a,
input,
select,
textarea,
dd,
dt,
dl,
li,
button,
label,
input,
select,
option,
textarea,
input::placeholder,
textarea::placeholder {
    color: #222;
    font-family: "Pretendard", "Noto Sans KR", sans-serif;
}
a {
    text-decoration: none;
    color: #222;
}
ul,
ol {
    list-style: none;
}
textarea {
    resize: none;
}
button {
    cursor: pointer;
}
input,
textarea {
    background: #fff;
}

/* :root {
    --animate-delay: 400ms;
  } */

.container01 {
    width: 90%;
    max-width: 1720px;
    margin: 0 auto;
    height: 100%;
}
.container02 {
    width: 90%;
    max-width: 1360px;
    margin: 0 auto;
    height: 100%;
}
.container03 {
    width: 90%;
    max-width: 1520px;
    margin: 0 auto;
    height: 100%;
}
.subcontainer {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
}
.maxcontainer {
    width: 100%;
    max-width: unset;
    margin: unset;
    height: 100%;
}

/* 내용없음 css */
.content_is_none {
    text-align: center;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
    width: 100%;
    margin-top: 15px;
}
.content_is_none p {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 140%;
}

.pc_block {
    display: block;
}
.mobile_block {
    display: none;
}
.none768 {
    display: block;
}
.block768 {
    display: none;
}
@media screen and (max-width: 780px) {
    .pc_block {
        display: none;
    }
    .mobile_block {
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .none768 {
        display: none;
    }
    .block768 {
        display: block;
    }
}

.button {
    cursor: pointer;
}

/* 서브페이지에 한번 감싸야 함 네비게이션 공간 띄우기용 */
.top_wrap {
    margin-top: 80px;
}

@media screen and (max-width: 1240px) {
    .top_wrap {
        margin-top: 60px;
    }
}
/* 서브페이지 푸터에 붙는 곡선모양 무언가. 마지막 섹션에 클래스 추가해주면 됨*/
.s_bottom {
    padding-bottom: 80px !important;
}
/* .s_bottom::after {
    content: "";
    display: block;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 100% 0, transparent 73%, #f0e8f8 70%);
    margin-top: 80px;
}
@media screen and (max-width: 780px) {
    .s_bottom::after {
        margin-top: 0;
        width: 100px;
        height: 100px;
    }
} */

/* selectbox 공통 */
.selectBox {
    position: relative;
}
.selectBox .label {
    border: none;
    background: transparent;
    color: #171717;
    text-align: center;
}
.selectBox .optionList {
    position: absolute;
    z-index: 3;
    height: 0;
    overflow: hidden;
    transition: 0.3s ease-in;
    top: 100%;
    left: 0;
}
.selectBox .optionList > ul {
    display: flex;
    flex-direction: column;
}
.selectBox .optionList > div {
    display: flex;
    flex-direction: column;
}
.selectBox .optionList.active {
    height: fit-content;
}
[data-aos="fade-up"] {
    transform: translate3d(0, 30px, 0);
}
