@import url(./fonts.css);
@import url(./layout.css);
@import url(./animation.css);

:root {
    --base-height: 100vh;
    --footer-height: 0;
    --header-height: 0;
    --base-padding: 84px;
    --gutter: 24px;
    --header-gap: 0;
    --content-wrapper: 1752px;
}

html,
body,
div,
ul,
li,
p,
h3,
h1,
h2,
h4,
h5 {
    padding: 0;
    margin: 0;
    line-height: 1;
    overflow-wrap: break-word;
}
ul,
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
}
optgroup,
select,
button {
    cursor: pointer;
}
input::-webkit-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
textarea::-webkit-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
input::-ms-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
textarea::-ms-input-placeholder {
    color: #96929d;
    font-weight: 400;
}
input::-moz-placeholder {
    color: #96929d;
    font-weight: 400;
}
textarea::-moz-placeholder {
    color: #96929d;
    font-weight: 400;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
select::-ms-expand {
    display: none;
}
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}
img {
    vertical-align: top;
}
body {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    overscroll-behavior-y: none;
}
caption {
    display: none;
}
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    -webkit-text-size-adjust: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    outline: none;
}
* {
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
        "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1em;
    color: #000;
    box-sizing: border-box;
    font-weight: normal;
    font-weight: 300;
    word-break: keep-all;
}
i,
em {
    line-height: inherit;
    font-style: normal;
}
.blind {
    font-size: 0 !important;
    color: transparent !important;
}
span,
i,
strong,
q {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    font-family: inherit;
}
q::before,
q::after {
    content: none;
}
b {
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    color: inherit;
    letter-spacing: inherit;
    font-family: inherit;
}
table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
}
button {
    border: none;
    background-color: transparent;
}

/* comm-wrapper */
.comm-wrapper {
    width: calc(100% - 160px);
    /* max-width: var(--content-wrapper); */
    margin: 0 auto;
}

/* button */
.btn-round {
    display: inline-block;
    vertical-align: top;
    border-radius: 60px;
    border: 1px solid #fff;
    line-height: 54px;
    padding: 0 34px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn-round:hover {
    color: #000;
    background-color: #fff;
}

.btn-round::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    height: 54px;
    width: 14px;
    background-image: url(../img/assets/ico-arrow-more.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 18px;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn-round:hover::after {
    background-image: url(../img/assets/ico-arrow-more-hover.svg);
}

.btn-round--plus {
    border: 1px solid #f60;
    color: #f60;
}

.btn-round--plus:hover {
    background-color: #f60;
    color: #fff;
}

.btn-round--plus::after {
    background-image: url(../img/assets/ico-more-plus.svg);
}

.btn-round--plus:hover::after {
    background-image: url(../img/assets/ico-more-plus-hover.svg);
}

.btn-round--more {
    border: 1px solid #f60;
    color: #f60;
}

.btn-round--more:hover {
    background-color: #f60;
    color: #fff;
}

.btn-round--more::after {
    background-image: url(../img/assets/ico-more-arrow-orange.svg);
}

.btn-round--more:hover::after {
    background-image: url(../img/assets/ico-more-arrow-orange-hover.svg);
}


.btn-round--more-down {
    border: 1px solid #f60;
    color: #f60;
}

.btn-round--more-down:hover {
    background-color: #f60;
    color: #fff;
}


.btn-round--more-down::after {
    background-image: url(../img/assets/ico-download-orange.svg);
}

.btn-round--more-down:hover::after {
    background-image: url(../img/assets/ico-download-orange-hover.svg);
}


.btn-round--list {
    border: 1px solid #f60;
    color: #f60;
}

.btn-round--list:hover {
    background-color: #f60;
    color: #fff;
}

.btn-round--list::after {
    background-image: url(../img/assets/ico-list-orange.svg);
}

.btn-round--list:hover::after {
    background-image: url(../img/assets/ico-list-orange-hover.svg);
}

.btn-round--download {
    border: 1px solid #f60;
    color: #f60;
}

.btn-round--download:hover {
    background-color: #f60;
    color: #fff;
}

.btn-round--download::after {
    background-image: url(../img/assets/ico-download-orange.svg);
}

.btn-round--download:hover::after {
    background-image: url(../img/assets/ico-download-orange-hover.svg);
}

.btn-more {
    display: inline-block;
    vertical-align: top;
    color: #f60;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
}

.btn-more::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 14px;
    height: 21px;
    margin-left: 18px;
    background-image: url(../img/assets/ico-arrow-more-orange.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-icon-round {
    display: inline-block;
    vertical-align: top;
    padding: 0 28px;
    border-radius: 60px;
    border: 1px solid #000;
    color: #000;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 46px;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn-icon-round:hover {
    background-color: #000;
    color: #fff;
}

.btn-icon-round:before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 16px;
    height: 46px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 12px;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn-icon-round--mail:before {
    background-image: url(../img/assets/ico-btn-mail.svg);
}

.btn-icon-round--arrow:before {
    background-image: url(../img/assets/ico-btn-arrow.svg);
}

.btn-icon-round--contact:before {
    background-image: url(../img/assets/ico-btn-contact.svg);
}

.btn-icon-round--cal:before {
    background-image: url(../img/assets/ico-cal.svg);
}

.btn-icon-round--mail:hover:before {
    background-image: url(../img/assets/ico-btn-mail-hover.svg);
}

.btn-icon-round--arrow:hover:before {
    background-image: url(../img/assets/ico-btn-arrow-hover.svg);
}

.btn-icon-round--contact:hover:before {
    background-image: url(../img/assets/ico-btn-contact-hover.svg);
}

.btn-icon-round--cal:hover:before {
    background-image: url(../img/assets/ico-cal-hover.svg);
}

.btn-icon {
    color: #000;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
}

.btn-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: top;
    margin-right: 2px;
    background-image: url(../img/assets/ico-btn-download.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 12px auto;
}

.btn-download {
    display: inline-block;
    vertical-align: top;
    color: #f60;
    text-align: center;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.btn-download::after {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 12px;
    height: 22px;
    background-image: url(../img/assets/ico-download-orange.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 18px;
}

.btn-circle-download {
    display: inline-block;
    vertical-align: top;
    color: #949494;
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn-circle-download::before {
    content: "";
    display: inline-block;
    vertical-align: top;
    border-radius: 60px;
    border: 1px solid #f60;
    width: 56px;
    height: 56px;
    background-image: url(../img/assets/ico-download-orange.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px auto;
    margin-right: 16px;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.btn-circle-download:hover::before {
    background-image: url(../img/assets/ico-download-orange-hover.svg);
    background-color: #f60;
}

/* section */

section {
    overflow: hidden;
}

/* comm-tab */
.comm-tab__cont {
    display: none;
    animation: showOpacity 0.3s forwards;
}

.comm-tab__cont.current {
    display: block;
}

/* .title-nav */

.title-nav {
    position: absolute;
    bottom: calc(100% + 41px);
    right: 0;
    z-index: 2;
    display: flex;
}

.title-nav button {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 48px;
    height: 48px;
    transition: All 0.3s ease-out;
    -webkit-transition: All 0.3s ease-out;
    -moz-transition: All 0.3s ease-out;
    -o-transition: All 0.3s ease-out;
    border: 1px solid #f60;
    border-radius: 50%;
}

.title-nav button:hover {
    background-color: #f60;
}

.title-nav button.swiper-button-disabled {
    opacity: 0.2;
    pointer-events: none;
}

.title-nav button + button {
    margin-left: 16px;
}

.title-nav button.nav_prev {
    background-image: url(../img/assets/img-small-nav-prev.svg);
}

.title-nav button.nav_prev:hover {
    background-image: url(../img/assets/ico-nav-prev.svg);
}

.title-nav button.nav_next {
    background-image: url(../img/assets/img-small-nav-next.svg);
}

.title-nav button.nav_next:hover {
    background-image: url(../img/assets/ico-nav-next.svg);
}

.title-nav--dark {
    bottom: calc(100% + 24px);
}

.title-nav--dark button {
    border: 1px solid #000;
}

.title-nav--dark button:hover {
    background-color: #000;
}

.title-nav--dark button.nav_prev {
    background-image: url(../img/assets/ico-nav-prev-dark.svg);
}

.title-nav--dark button.nav_next {
    background-image: url(../img/assets/ico-nav-next-dark.svg);
}

/* .comm-modal */
.comm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 600;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    padding: 100px;
    opacity: 0;
    pointer-events: none;
    transition: All 0.3s ease-out;
    -webkit-transition: All 0.3s ease-out;
    -moz-transition: All 0.3s ease-out;
    -o-transition: All 0.3s ease-out;
}

.comm-modal.open {
    opacity: 1;
    pointer-events: visible;
}

.comm-modal__scroll {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comm-modal__cont {
    width: 100%;
    max-width: 1160px;
    background-color: #fff;
    border-radius: 24px;
    position: relative;
    padding: 100px;
    display: none;
    animation: showUp 0.3s forwards;
}

.comm-modal.open .comm-modal__cont {
    display: block;
}

.comm-modal__btn-close {
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(../img/assets/img-btn-modal-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 36px;
    right: 36px;
}

.modal-option {
    position: fixed;
    top: 50%;
    left: 84px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.modal-option__link {
    padding: 0 28px;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: All 0.2s ease-out;
    -webkit-transition: All 0.2s ease-out;
    -moz-transition: All 0.2s ease-out;
    -o-transition: All 0.2s ease-out;
}

.modal-option__link img {
    height: 16px;
    margin-right: 12px;
}

.modal-option__link + .modal-option__link {
    margin-top: 16px;
}

.modal-option__link:hover {
    background-color: #000;
    color: #fff;
}

/* .modal-option__link::before {
    content: "";
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.modal-option__link--shop::before {
    background-image: url(../img/assets/ico-modal-shop.svg);
    margin-right: 12px;
}

.modal-option__link--book::before {
    background-image: url(../img/assets/ico-modal-book.svg);
    margin-right: 12px;
}

.modal-option__link--mail::before {
    background-image: url(../img/assets/ico-modal-mail.svg);
    margin-right: 12px;
}

.modal-option__link--contact::before {
    background-image: url(../img/assets/ico-modal-shop.svg);
    margin-right: 12px;
} */

/* img-fit */
.img-fit {
    width: 100%;
    display: block;
}

.img-round-m {
    border-radius: 24px;
}

.img-round-s {
    border-radius: 16px;
}

.img-cover {
    object-fit: cover;
}

.img-height {
    height: 100%;
}

.img-cover-wrap {
    width: 100%;
    padding-top: 100%;
    position: relative;
    z-index: 0;
}

.img-cover-wrap img,
.img-cover-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* clip-wrap */

.clip-wrap {
    width: 100%;
}

.clip-wrap__inner {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}

.clip-wrap__inner iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sec-workshop {
    padding-bottom: 100px;
}
