.sec-keyvisual {
    padding: 0;
}

.sec-keyvisual__cont {
    position: relative;
    height: calc(var(--base-height) - var(--header-height));
}

.fixed-top-slider {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: var(--header-height);
}

.fixed-top-slider__slider {
    height: 100%;
}

.fixed-top-slider__slider .swiper-container {
    height: 100%;
}

.fixed-top-slider__item.swiper-slide {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 212px;
    min-height: 730px;
}

.keyvisual-search {
    position: absolute;
    z-index: 1;
    bottom: 159px;
    left: 0;
    padding: 0 var(--base-padding);
}

.keyvisual-slider {
    width: 100%;
    height: 100%;
    padding-top: var(--header-height);
}

.keyvisual-slider__slider {
    height: 100%;
}

.keyvisual-slider__slider .swiper-container {
    height: 100%;
}

.keyvisual-slider__item.swiper-slide {
    height: 100%;
    padding-top: 212px;
    min-height: 730px;
}

.keyvisual-slider__copy {
    text-align: center;
}

.keyvisual-slider__title {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    line-height: 88px; /* 110% */
}

.keyvisual-slider__title span {
    color: #fef1ac;
}

.keyvisual-slider__desc {
    color: #fff;
    font-size: 53px;
    font-weight: 700;
    line-height: 88px;
}

.keyvisual-slider .nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 120px);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}

.keyvisual-slider .nav button {
    width: 75px;
    height: 75px;
    pointer-events: visible;
    background-image: url();
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.keyvisual-slider .nav button.nav-prev {
    background-image: url(../img/assets/ico-key-nav-prev.svg);
}

.keyvisual-slider .nav button.nav-next {
    background-image: url(../img/assets/ico-key-nav-next.svg);
}

.search-basic {
    width: 100%;
}

.search-filter__wrapper {
    width: 100%;
    max-width: var(--content-wrapper);
    margin: 0 auto;
    position: relative;
}

.search-filter__ok {
    display: none;
}

.search-type {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.search-type__input {
    display: none;
}

.search-type__input + label {
    min-width: 182px;
    border-radius: 8px 8px 0px 0px;
    background: rgba(255, 255, 255, 0.3);
    height: 56px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-transform: capitalize;
    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;
}

.search-type__input + label:hover {
    background: rgba(255, 255, 255, 0.5);
}

.search-type__input:checked + label {
    background: #fff;
    color: #161e2d;
}

.search-filter {
    display: flex;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.search-filter__item {
    flex: 1;
    position: relative;
}

.search-filter__item--price {
    flex: 1.1;
}

.search-filter__item.disabled {
    pointer-events: none;
    opacity: 0.5;
    background-color: #e7e7e7;
}

.search-filter__item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: calc(100% - 28px);
    background: rgba(163, 171, 176, 0.4);
    transform: translateY(-50%);
}

.search-filter__btn {
    width: 100%;
    height: 100px;
    padding: 0 30px 0 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.search-filter__label {
    text-align: left;
    color: #5c6368;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
    text-transform: capitalize;
}

.search-filter__field {
    display: block;
    width: 100%;
    text-align: left;
    color: #161e2d;
    font-size: 18px;
    font-weight: 600;
    margin-top: 8px;
    height: 20px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    padding-right: 22px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
    background-image: url(../img/assets/ico-angle-filter.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    text-transform: capitalize;
}

.search-select {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    min-width: 100%;
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: #fff;
    overflow: hidden;
    display: none;
    animation: showDown 0.3s forwards;
    animation-timing-function: ease-out;
}

.search-filter__item.open .search-select {
    display: block;
}

.search-select__list {
    padding: 15px 20px;
    overflow-y: auto;
    max-height: 239px;
}

.search-select__list::-webkit-scrollbar {
    width: 4px;
}

.search-select__list::-webkit-scrollbar-track {
    background: #fff;
}

.search-select__list::-webkit-scrollbar-thumb {
    background: #878787;
    border-radius: 2px;
}

.search-select__item {
    display: block;
    width: 100%;
    padding: 0 5px;
    line-height: 40px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    white-space: nowrap;
    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;
}

.search-select__item.selected,
.search-select__item:hover {
    color: #ed2027;
}

.search-select__item.hide {
    display: none;
}

.search-filter__detail {
    flex: 0 0 158px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.search-filter__detail img {
    width: 28px;
}

.search-filter__detail span {
    margin-top: 1px;
    color: #161e2d;
    font-size: 18px;
    font-weight: 600;
}

.search-filter__confirm {
    flex: 0 0 133px;
    border-radius: 0px 12px 12px 0px;
    background: #ed2027;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
}

.filter-detail {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    padding: 38px 30px 50px;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
    background: #fff;
    animation: showDownCenter 0.3s forwards;
    animation-timing-function: ease-out;
    display: none;
}

.filter-detail.open {
    display: block;
}

.filter-form__row + .filter-form__row {
    margin-top: 30px;
}

.filter-form__row {
    display: flex;
    align-items: center;
}

.filter-form__col {
    flex: 1;
}

.filter-form__col + .filter-form__col {
    margin-left: 10px;
}

.filter-form__label {
    margin-bottom: 8px;
}

.filter-form__label p {
    color: #5c6368;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px; /* 171.429% */
}

.filter-form__select {
    border-radius: 8px;
    border: 1px solid #e4e4e4;
    background: #fff;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    padding-right: 26px;
    background-image: url(../img/assets/ico-angle-filter.svg);
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    background-size: 16px auto;
    color: #161e2d;
    font-size: 18px;
    font-weight: 400;
}

.option-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-template-columns: repeat(4, 1fr);
    column-gap: 70px;
    -ms-column-gap: 70px;
    row-gap: 20px;
    -ms-row-gap: 20px;
}

.option-list__checkbox {
    display: none;
}

.option-list__checkbox + label {
    display: inline-block;
    vertical-align: top;
    padding-left: 30px;
    position: relative;
    color: #5c6368;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px; /* 162.5% */
    cursor: pointer;
    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;
}

.option-list__checkbox + label::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background-image: url(../img/assets/ico-option-checkbox.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.option-list__checkbox--strong + label {
    color: #ed2027;
}

.option-list__checkbox + label:hover {
    color: #ed2027;
}

.option-list__checkbox:checked + label::before {
    background-image: url(../img/assets/ico-option-checkbox-checked.svg);
}

.prd-tab {
    margin-top: 32px;
}

.prd-tab__btns {
    display: flex;
    justify-content: center;
}

.prd-tab__btn {
    padding: 0 24px;
    line-height: 42px;
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: capitalize;
    background: #f7f7f7;
    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;
}

.prd-tab__btn.current,
.prd-tab__btn:hover {
    background: #ed2027;
    color: #fff;
}

.prd-tab__btn + .prd-tab__btn {
    margin-left: 12px;
}

.prd-tab__btns + .prd-tab__conts {
    margin-top: 54px;
}

.prd-list__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    -ms-column-gap: 30px;
    row-gap: 30px;
    -ms-row-gap: 30px;
}

.prd-list__item {
    grid-column: auto / span 1;
    -ms-grid-column: auto / span 1;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 73px;
}

.prd-list__loading {
    grid-column: auto / span 3;
    -ms-grid-column: auto / span 3;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    color: #161e2d;
}

.prd-list__empty {
    grid-column: auto / span 3;
    -ms-grid-column: auto / span 3;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prd-list__empty-copy {
    color: #161e2d;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

.prd-top {
    position: relative;
}

.prd-top__thumb {
    display: block;
    overflow: hidden;
    position: relative;
}

.prd-top__thumb::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
    opacity: 0;
}

.prd-list__item:hover .prd-top__thumb::after {
    opacity: 1;
}

.prd-top__img {
    width: 100%;
    padding-top: 66.6666666667%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: All 0.3s ease;
    -webkit-transition: All 0.3s ease;
    -moz-transition: All 0.3s ease;
    -o-transition: All 0.3s ease;
}

.prd-list__item:hover .prd-top__img {
    transform: scale(1.05);
}

.prd-top__label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 0 8px;
    border-radius: 4px;
    background: #fff;
    line-height: 24px;
    color: #161e2d;
    text-align: center;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.prd-top__id {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 0 8px;
    border-radius: 4px;
    background: #fff;
    line-height: 24px;
    color: #161e2d;
    text-align: center;
    font-family: 'Pretendard';
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 2;
}

.prd-top__wish {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-image: url(../img/assets/ico-wish-o.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    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;
}

.prd-top__wish:hover {
    background-image: url(../img/assets/ico-wish.svg);
}

.prd-top__wish.active {
    background-image: url(../img/assets/ico-wish-active.svg);
}

/* Zalo 공유 버튼 */
.prd-top__share {
    position: absolute;
    top: 56px; /* wish 버튼(top:16px + 32px + 8px 간격) 바로 아래 */
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(11, 33, 50, 0.4); /* Zalo 브랜드 컬러 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px 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;
    z-index: 2;
}

.prd-top__share:hover {
    background-color: #ed2027;
    transform: scale(1.1);
}

.prd-top__share.active {
    background-color: #0052cc;
    transform: scale(0.95);
}

.prd-mid {
    padding: 16px 20px;
}

.prd-mid__title {
    color: #161e2d;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px; /* 140% */
    text-transform: capitalize;
    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;
}

.prd-mid__title:hover {
    color: #ed2027;
}

.prd-mid__location {
    margin-top: 8px;
    color: #5c6368;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    padding-left: 20px;
    position: relative;
}

.prd-mid__location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 26px;
    background-image: url(../img/assets/ico-prd-list-location.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.prd-mid__option {
    margin-top: 12px;
    display: flex;
    align-items: center;
}

.prd-mid__item {
    display: flex;
    align-items: center;
}

.prd-mid__item + .prd-mid__item {
    margin-left: 30px;
}

.prd-mid__item img {
    width: 24px;
    margin-right: 8px;
}

.prd-mid__item span {
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px; /* 162.5% */
}

.prd-btm {
    padding: 16px 20px;
    border-top: 1px solid #e4e4e4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.prd-btm__author {
    display: flex;
    align-items: center;
}

.prd-btm__author-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    margin-right: 8px;
    border-radius: 50%;
}

.prd-btm__author-name {
    color: #161e2d;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
}

.prd-btm__price {
    font-size: 0;
}

.prd-btm__currency {
    margin-right: 3px;
    color: #161e2d;
    font-size: 12px;
    font-weight: 600;
    line-height: 30px; /* 250% */
}

.prd-btm__num {
    color: #161e2d;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px; /* 125% */
    letter-spacing: -0.4px;
}

.prd-btm__unit {
    margin-left: 3px;
    color: #5c6368;
    font-size: 14px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
}

.prd-list .btn-wrap {
    margin-top: 31px;
}

.prd-list .paging {
    margin-top: 50px;
}

.sec-main-hot {
    background-color: #f7f7f7;
}

.article-thumb-list {
    margin-top: 36px;
}

.article-thumb-list__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    -ms-column-gap: 30px;
}

.article-thumb-list__item {
    width: 100%;
    grid-column: auto / span 1;
    -ms-grid-column: auto / span 1;
}

.article-thumb-list__thumb {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.article-thumb-list__thumb::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    opacity: 0;
    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;
}

.article-thumb-list__item:hover .article-thumb-list__thumb::after {
    opacity: 1;
}

.article-thumb-list__img {
    width: 100%;
    padding-top: 73.1707317073%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #cecece;
    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;
}

.article-thumb-list__item:hover .article-thumb-list__img {
    transform: scale(1.05);
}

.article-thumb-list__info {
    margin-top: 28px;
}

.article-thumb-list__title {
    display: block;
    color: #161e2d;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    text-transform: capitalize;
    max-width: 230px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    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;
}

.article-thumb-list__title:hover {
    color: #ed2027;
}

.article-thumb-list__desc {
    display: block;
    margin-top: 17px;
    color: #5c6368;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px; /* 125% */
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.article-thumb-list .btn-wrap {
    margin-top: 48px;
}

.partner-slider__item.swiper-slide {
    width: calc((100% - 30px) / 3);
    border: 1px solid #cccccc;
    border-radius: 10px;
}

.sec-partners {
    background-color: #f7f7f7;
}

.partner-slider__item.swiper-slide img {
    width: 100%;
}

.sec-search-top {
    height: 460px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.search-top {
    position: relative;
}

.search-top__copy {
    position: absolute;
    top: 142px;
    left: 0;
    color: #f6f6f6;
    font-size: 96px;
    font-weight: 400;
    line-height: 96px; /* 100% */
}

.sec-search {
    margin-top: -140px;
    z-index: 10;
}

.prd-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.prd-badge span {
    display: block;
    padding: 0 15px;
    border-radius: 4px;
    line-height: 23px;
    height: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
}

.prd-badge__cate {
    background-color: #656565;
    color: #fff;
}

.prd-badge__type {
    background-color: #0b2132;
    color: #fff;
}

.prd-badge__id {
    background-color: #eaeaea;
    color: #000;
}

.prd-title {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 8px;
    border-bottom: 1px solid #e4e4e4;
}

.form-basic__field-price {
    position: relative;
}

.form-basic__field-price.form-basic__field-text input[type='text'] {
    text-align: right;
    padding-right: 48px;
}

.form-basic__price-label {
    position: absolute;
    top: 0;
    right: 0;
    font-family: 'Pretendard';
    height: 48px;
    padding-right: 17px;
    font-size: 16px;
    font-weight: 400;
    line-height: 48px;
}

.prd-title__title {
    /* max-width: 420px; */
    color: #161e2d;
    font-size: 36px;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    flex: 1;
}

.prd-title__price {
    font-size: 0;
    margin-left: 40px;
}

.prd-title__currency {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-right: 7px;
}

.prd-title__num {
    color: #000;
    font-size: 36px;
    font-weight: 400;
}

.prd-title__unit {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    margin-left: 3px;
}

.prd-title-sub {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prd-title-agent {
    display: flex;
    align-items: center;
}

.prd-title-agent__img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    object-fit: cover;
}

.prd-title-agent__name {
    color: #161e2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
}

.prd-title-option {
    display: flex;
    align-items: center;
}

.prd-title-option__item + .prd-title-option__item {
    margin-left: 30px;
}

.prd-title-option__wish {
    margin-left: 20px;
}

.prd-title-option__btn {
    width: 52px;
    height: 52px;
    background-image: url(../img/assets/ico-wish-o.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    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;
}

.prd-title-option__btn:hover,
.prd-title-option__btn.active {
    background-image: url(../img/assets/ico-wish.svg);
}

.prd-title-option__share {
    margin-left: 12px;
}

.prd-title-option__share-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(11, 33, 50, 0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92s2.92-1.31 2.92-2.92-1.31-2.92-2.92-2.92z'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 28px 28px;
    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;
}

.prd-title-option__share-btn:hover {
    background-color: #ed2027;
    transform: scale(1.1);
}

.prd-title-option__share-btn.active {
    background-color: #0052cc;
    transform: scale(0.95);
}

.prd-title-option__item {
    display: flex;
    align-items: center;
}

.prd-title-option__item img {
    width: 28px;
    margin-right: 8px;
}

.prd-title-option__item span {
    color: #161e2d;
    font-family: 'pretendard';
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.prd-detail-slider {
    margin-top: 70px;
    position: relative;
}

.prd-detail-slider__slider {
    border-radius: 16px;
    overflow: hidden;
}

.prd-detail-slider .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.prd-detail-slider .nav button {
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: visible;
}

.prd-detail-slider .nav button.nav-prev {
    background-image: url(../img/assets/ico-prd-nav-prev.svg);
    transform: translateX(-50%);
}

.prd-detail-slider .nav button.nav-next {
    background-image: url(../img/assets/ico-prd-nav-next.svg);
    transform: translateX(50%);
}

.prd-detail-slider__item.swiper-slide img {
    width: 100%;
}

.prd-detail-slider__img {
    width: 100%;
    padding-top: 52.7131782946%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.prd-detail-slider__img img {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.prd-detail-thumb {
    margin-top: 17px;
    position: relative;
}

.prd-detail-thumb__item.swiper-slide {
    width: calc((100% - 120px) / 11);
    position: relative;
}

.prd-detail-thumb__item.swiper-slide.current::after {
    content: '';
    border-radius: 8px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid #ed2027;
}

.prd-detail-thumb__thumb {
    width: 100%;
    padding-top: 75%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
    cursor: pointer;
}

.prd-detail-thumb .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.prd-detail-thumb .nav button {
    width: 60px;
    height: 60px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    pointer-events: visible;
}

.prd-detail-thumb .nav button.nav-prev {
    background-image: url(../img/assets/ico-prd-nav-prev.svg);
    transform: translateX(-50%);
}

.prd-detail-thumb .nav button.nav-next {
    background-image: url(../img/assets/ico-prd-nav-next.svg);
    transform: translateX(50%);
}

.prd-detail-block {
    margin-top: 48px;
}

.prd-detail-block--border {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 48px;
}

.block-title {
    margin-bottom: 20px;
}

.block-title__title {
    color: #161e2d;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
}

.detail-map {
    width: 100%;
    padding-top: 42.7906976744%;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

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

.detail-address {
    margin-top: 20px;
}

.detail-address__title {
    color: #161e2d;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.detail-address__desc {
    color: #5c6368;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.detail-desc__desc {
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #5c6368;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
}

.detail-desc__desc.show {
    display: block;
    white-space: pre-wrap;
}

.detail-desc__more {
    margin-top: 18px;
    border-bottom: 2px solid #161e2d;
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.detail-general {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-template-columns: repeat(6, 1fr);
    column-gap: 40px;
    -ms-column-gap: 40px;
    row-gap: 20px;
    -ms-row-gap: 20px;
}

.detail-general__item {
    display: flex;
    grid-column: auto / span 1;
    -ms-grid-column: auto / span 1;
    align-items: center;
}

.detail-general__info {
    margin-left: 12px;
}

.detail-general__ico {
    width: 52px;
}

.detail-general__label {
    color: #5c6368;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.detail-general__desc {
    color: #161e2d;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.detail-option {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-template-columns: repeat(4, 1fr);
    column-gap: 46px;
    -ms-column-gap: 46px;
    /* row-gap: 14px;
    -ms-row-gap: 14px; */
}

.detail-option__item {
    grid-column: auto / span 1;
    -ms-grid-column: auto / span 1;
    color: #5c6368;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    padding-top: 7px;
    padding-bottom: 7px;
}

.detail-option__item::before {
    content: '•';
    color: #5c6368;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    display: inline-block;
    vertical-align: top;
    margin-right: 3px;
}

.detail-video {
    border-radius: 16px;
    overflow: hidden;
}

.detail-near__copy {
    color: #161e2d;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.detail-near__list {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    -ms-column-gap: 40px;
    row-gap: 8px;
    -ms-row-gap: 8px;
}

.detail-near__item {
    display: flex;
    align-items: center;
}

.detail-near__item:nth-child(2n + 1) {
    grid-column: 1;
    -ms-grid-column: 1;
}

.detail-near__item:nth-child(2n) {
    grid-column: 2;
    -ms-grid-column: 2;
}

.detail-near__title {
    flex: 0 0 129px;
    color: #5c6368;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.detail-near__desc {
    flex: 1;
    color: #161e2d;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.round-box {
    border-radius: 16px;
    background: #f7f7f7;
    padding: 24px;
}

.contact-box {
    display: flex;
}

.contact-box__col {
    flex: 1;
}

.contact-box__col + .contact-box__col {
    margin-left: 20px;
}

.contact-box__label {
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 3px;
}

.contact-box__desc {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

.contact-box__title {
    margin-bottom: 3px;
    color: #000;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.contact-box__time {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.contact-box__info {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
}

.detail-agnet {
    display: flex;
}

.detail-agnet__img {
    flex: 0 0 200px;
    min-width: 0;
}

.detail-agnet__img img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.detail-agnet-info {
    margin-left: 70px;
    flex: 1;
}

.detail-agnet-info__list {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -ms-grid-template-columns: repeat(12, 1fr);
    column-gap: 30px;
    -ms-column-gap: 30px;
    row-gap: 30px;
    -ms-row-gap: 30px;
}

.detail-agnet-info__item {
    width: 100%;
    grid-column: auto / span 4;
    -ms-grid-column: auto / span 4;
}

.detail-agnet-info__item--msg {
    grid-column: auto / span 3;
    -ms-grid-column: auto / span 3;
}

.detail-agnet-info__sns {
    grid-column: 9 / span 4;
    -ms-grid-column: 9 / span 4;
    grid-row: 1 / span 1;
    -ms-grid-row: 1 / span 1;
}

.detail-agnet-info__label {
    color: #5c6368;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.detail-agnet-info__desc {
    margin-top: 17px;
    color: #161e2d;
    font-size: 24px;
    font-weight: 400;
    line-height: 26px;
    padding-bottom: 11px;
    border-bottom: 1px solid #a3abb0;
    word-break: break-all;
}

.detail-agnet-info__sns {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.detail-agnet-info__link {
    display: block;
    width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    font-size: 0;
    color: transparent;
    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;
}

.detail-agnet-info__link + .detail-agnet-info__link {
    margin-left: 20px;
}

.detail-agnet-info__link--ig {
    background-image: url(../img/product/ico-sns-instagram.svg);
}

.detail-agnet-info__link--ig:hover {
    background-image: url(../img/product/ico-sns-instagram-hover.svg);
}

.detail-agnet-info__link--yt {
    background-image: url(../img/product/ico-sns-youtube.svg);
}

.detail-agnet-info__link--yt:hover {
    background-image: url(../img/product/ico-sns-youtube-hover.svg);
}

.detail-agnet-info__link--fb {
    background-image: url(../img/product/ico-sns-facebook.svg);
}

.detail-agnet-info__link--fb:hover {
    background-image: url(../img/product/ico-sns-facebook-hover.svg);
}

.detail-agnet-info__text {
    margin-top: 50px;
    color: #161e2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    min-height: 120px;
}

.sec-detail-related__title {
    color: #161e2d;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    margin-bottom: 45px;
}

.article-list {
    margin-top: 135px;
}

.article-list__item:first-child {
    border-top: 1px solid #e4e4e4;
}

.article-list__item {
    border-bottom: 1px solid #e4e4e4;
}

.article-list__link {
    display: flex;
    padding: 0 15px;
    align-items: center;
}

.article-list__left {
    flex: 1;
    padding: 20px 0;
    display: flex;
    align-items: center;
    border-right: 1px solid #e4e4e4;
}

.article-list__thumb {
    flex: 0 0 90px;
    min-width: 0;
}

.article-list__img {
    width: 100%;
    padding-top: 66.6666666667%;
    border-radius: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.article-list__info {
    margin-left: 20px;
}

.article-list__title {
    color: #161e2d;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    font-family: 'Pretendard';
    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;
}

.article-list__title:hover {
    color: #ed2027;
}

.article-list__desc {
    margin-top: 4px;
    color: #161e2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    overflow: hidden;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-family: 'Pretendard';
}

.article-list__right {
    flex: 0 0 150px;
}

.article-list__data {
    color: #161e2d;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    font-family: 'Pretendard';
}

.article-list .paging {
    margin-top: 50px;
}

.board-detail-title {
    padding-bottom: 20px;
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 20px;
}

.board-detail-title__sub {
    color: #f00;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    text-transform: capitalize;
}

.board-detail-title__title {
    margin-top: 20px;
    color: #161e2d;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    text-transform: capitalize;
}

.board-detail-desc .comm-clip {
    border-radius: 16px;
    overflow: hidden;
}

.board-detail-desc img {
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.board-detail-nav {
    margin-top: 200px;
}

.board-detail-nav + .btn-wrap {
    margin-top: 30px;
}

.board-detail-desc p,
.board-detail-desc span,
.board-detail-desc strong,
.board-detail-desc b,
.board-detail-desc li,
.board-detail-desc a,
.board-detail-desc div {
    line-height: 1.4em;
}

.board-detail-desc ul,
.board-detail-desc ol {
    padding-left: 30px;
}
.board-detail-desc ul li,
.board-detail-desc ol li {
    list-style-type: inherit;
}

.board-detail-desc i,
.board-detail-desc em {
    font-style: italic;
}

.board-detail-desc em,
.board-detail-desc b,
.board-detail-desc strong {
    font-weight: bold;
}
.board-detail-desc ul {
    list-style-type: disc;
}

.board-detail-desc ol {
    list-style-type: decimal;
}

.board-detail-desc blockquote {
    border-left: 5px solid #ccc;
    font-style: italic;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.board-detail-desc ol ol {
    list-style-type: lower-latin;
}
.board-detail-desc ol ol ol {
    list-style-type: lower-roman;
}
.board-detail-desc ol ol ol ol {
    list-style-type: upper-latin;
}
.board-detail-desc ol ol ol ol ol {
    list-style-type: upper-roman;
}

.board-detail-desc ul {
    list-style-type: disc;
}
.board-detail-desc ul ul {
    list-style-type: circle;
}
.board-detail-desc ul ul ul,
.board-detail-desc ul ul ul ul {
    list-style-type: square;
}

.board-detail-desc table {
    width: 100%;
    border-collapse: collapse;
}

.board-detail-desc table td,
.board-detail-desc table th {
    border: 1px solid #ececec;
    padding: 5px 3px;
}

.board-detail-desc a {
    background-color: inherit;
    text-decoration: inherit;
    font-family: inherit;
    font-weight: inherit;
    color: #337ab7;
}

.board-detail-desc a:focus,
.board-detail-desc a:hover {
    color: #23527c;
    text-decoration: underline;
    outline: 0;
}

.customer-block {
    margin-top: 56px;
}

.customer-block + .customer-block {
    margin-top: 100px;
}

.customer-block__title {
    color: #161e2d;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.layer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 100;
    padding: 180px 60px;
    overflow-y: auto;
    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;
}

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

.layer-modal__wrapper {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 50px;
    padding: 30px 40px 50px;
    position: relative;
    display: none;
    animation: showUp 0.3s forwards;
}

.layer-modal.open .layer-modal__wrapper {
    display: block;
}

.layer-modal__title {
    padding: 15px 0;
    color: #161e2d;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-transform: capitalize;
}

.login-tab {
    margin-top: 45px;
}

.login-tab__btns {
    padding: 0 15px;
    font-size: 0;
}

.login-tab__btn {
    display: inline-block;
    vertical-align: top;
}

.login-tab__btn input {
    display: none;
}

.login-tab__btn input + label {
    display: block;
    text-align: center;
    line-height: 56px;
    border-radius: 8px 8px 0px 0px;
    background: rgba(0, 0, 0, 0.3);
    min-width: 140px;
    padding: 0 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    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;
}

.login-tab__btn input:checked + label {
    background: #ed2027;
    color: #fff;
}

.login-tab__conts {
    padding: 30px 24px;
    border-radius: 16px;
    background: #f7f7f7;
    border: 3px solid #ed2027;
}

.login-noti {
    margin-top: 30px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.login-noti__link {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-decoration: underline;
}

.layer-modal .btn-wrap {
    margin-top: 30px;
}

.register-agree {
    margin-top: 12px;
}

.register-agree input {
    display: none;
}

.register-agree input + label {
    display: inline-block;
    vertical-align: top;
    padding-left: 30px;
    position: relative;
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    height: 19px;
    line-height: 22px;
}

.register-agree input + label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 19px;
    height: 19px;
    background-image: url(../img/assets/ico-option-checkbox.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.register-agree input:checked + label::before {
    background-image: url(../img/assets/ico-option-checkbox-checked.svg);
}

.register-agree__btn {
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    height: 19px;
    line-height: 22px;
    text-decoration: underline;
}

.layer-modal__btn-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 30px;
    right: 40px;
    background-image: url(../img/assets/ico-btn-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.account-cont {
    margin: 0 auto;
    margin-top: 58px;
    width: 100%;
    max-width: 580px;
}

.account-cont .btn-wrap {
    margin-top: 33px;
}

.account-cont__desc {
    color: #161e2d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 24px;
    text-align: center;
}

.account-cont__copy {
    color: #161e2d;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.account-cont .round-box {
    padding: 50px 24px;
}

.table-prd {
    text-align: left;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.table-prd__thumb {
    flex: 0 0 180px;
    min-width: 0;
}

.table-prd__img {
    width: 100%;
    padding-top: 66.6666666667%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 8px;
}

.table-prd__info {
    flex: 1;
    margin-left: 20px;
    position: relative;
}

.table-prd-badge {
    position: absolute;
    top: 0;
    right: 0;
    height: 28px;
    display: flex;
    align-items: center;
}

.table-prd-badge__item {
    border-radius: 4px;
    padding: 0 9px;
    height: 18px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.table-prd-badge__item + .table-prd-badge__item {
    margin-left: 10px;
}

.table-prd-badge__item--cate {
    background: #656565;
}

.table-prd-badge__item--type {
    background: rgba(11, 33, 50, 0.4);
}

.table-prd__title {
    color: #161e2d;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    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;
}

.table-prd__title:hover {
    color: #ed2027;
}

.table-prd__location {
    margin-top: 8px;
    color: #161e2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.table-prd__btm {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
}

.table-prd-option {
    display: flex;
    align-items: center;
}

.table-prd-option__item + .table-prd-option__item {
    margin-left: 30px;
}

.table-prd-option__item img {
    width: 24px;
    margin-right: 8px;
}

.table-prd-option__item span {
    color: #161e2d;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
}

.table-prd-price {
    font-size: 0;
}

.table-prd-price__currency {
    color: #161e2d;
    font-size: 12px;
    font-weight: 700;
    line-height: 28px;
    margin-right: 4px;
}

.table-prd-price__num {
    color: #161e2d;
    text-align: right;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.table-prd-price__unit {
    color: #161e2d;
    font-size: 14px;
    font-weight: 400;
    line-height: 28px;
    margin-left: 4px;
}

/* .price-unit {
    color: #929292;
} */

.table-prd--column .table-prd-badge {
    position: static;
    margin-bottom: 12px;
}

.table-prd--column .table-prd__btm {
    display: block;
}

.table-prd--column .table-prd-price {
    margin-top: 15px;
}

.table-prd--column .table-prd__img {
    padding-top: 100%;
}

.form-basic-map__field {
    display: flex;
    align-items: center;
}

.form-basic-map__field .btn-basic {
    margin-left: 20px;
}

.form-basic-map__field .form-basic__field-text {
    flex: 1;
}

.form-basic-map__map {
    margin-top: 12px;
}

.form-basic__clip {
    display: flex;
    align-items: center;
}

.form-basic__clip .form-basic__field-select {
    flex: 0 0 160px;
    margin-right: 12px;
}

.form-basic__clip .form-basic__field-text {
    flex: 1;
}

.content-filter {
    margin-bottom: 35px;
    display: flex;
    align-items: flex-end;
}

.content-filter .btn-wrap {
    flex: 0 0 135px;
    margin-left: 20px;
    display: flex;
}

.content-filter .btn-wrap > * {
    flex: 1;
}

.content-filter .form-basic {
    flex: 1;
}

.inquiry-detail {
    border-radius: 20px;
    border: 1px solid #e4e4e4;
    background: #fff;
    /* overflow: hidden; */
    position: relative;
}

.inquiry-detail .comm-table {
    border: none;
    border-radius: 20px 20px 0 0;
    border-bottom: 1px solid #e4e4e4;
}

.inquiry-detail__content {
    margin-top: 30px;
    padding: 25px;
    padding-top: 0;
}

.inquiry-detail + .btn-wrap {
    margin-top: 20px;
}

.agent-img {
    display: flex;
}

.agent-img__thumb {
    flex: 0 0 130px;
    margin-right: 30px;
    min-width: 0;
}

.agent-img__img {
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.agent-img .form-basic {
    flex: 1;
    max-width: 520px;
}

.table-profile {
    text-align: center;
}

.table-profile__img {
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.table-profile__name {
    margin-top: 8px;
    color: #161e2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.table-profile--row {
    display: flex;
    align-items: center;
}

.table-profile--row .table-profile__name {
    margin-top: 0;
    margin-left: 9px;
}

.agent-profile {
    display: flex;
    position: relative;
}

.agent-profile__img {
    flex: 0 0 128px;
    min-width: 0;
}

.agent-profile__img img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-profile__info {
    margin-left: 22px;
}

.agent-profile__name {
    color: #161e2d;
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
}

.agent-profile__desc {
    margin-top: 13px;
    color: #161e2d;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

.agent-profile__field {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
}

.agent-profile__field > * + * {
    margin-left: 10px;
}

.comm-select--fixed-inquiry {
    position: absolute;
    bottom: calc(100% + 23px);
    right: 0;
    width: auto;
}

.form-basic + .btn-wrap {
    margin-top: 20px;
}

.partner-grid {
    width: 100%;
    min-height: 664px;
}

.partner-grid {
    padding: 20px;
}

.partner-grid__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-template-columns: repeat(6, 1fr);
    column-gap: 10px;
    -ms-column-gap: 10px;
    row-gap: 60px;
    -ms-row-gap: 60px;
}

.partner-grid__item {
    width: 100%;
    grid-column: auto / span 1;
    -ms-grid-column: auto / span 1;
    position: relative;
}

.partner-grid__img {
    width: 100%;
    padding-top: 68.06282722513%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.partner-grid__link {
    display: inline-block;
    margin-top: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    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;
}

.partner-grid__link:hover {
    color: #ed2027;
}

.partner-grid__checkbox {
    position: absolute;
    top: 10px;
    left: 10px;
}

.partner-img {
    display: flex;
    align-items: flex-end;
}

.partner-img__thumb {
    flex: 0 0 190px;
    min-width: 0;
}

.partner-img__img {
    width: 100%;
    padding-top: 68.4210526316%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
}

.partner-img .form-basic__field-attach {
    flex: 1;
    max-width: 500px;
    margin-left: 20px;
}

.compnay-top {
    height: 770px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.compnay-top__copy {
    position: absolute;
    top: 100px;
    left: 130px;
}

.compnay-top__desc {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    line-height: 60px;
}

.compnay-top__title {
    margin-top: 20px;
    color: #fff;
    font-size: 64px;
    font-weight: 500;
    line-height: 80px;
}

.company-mid {
    display: flex;
    margin-top: 100px;
    align-items: center;
}

.company-mid__copy {
    flex: 35;
    min-width: 0;
}

.company-mid__img {
    flex: 64;
    min-width: 0;
}

.company-mid__img img {
    width: 100%;
}

.company-mid__title {
    color: #000;
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
}

.company-mid__title br {
    display: none;
}

.ko .company-mid__title br {
    display: block;
}

.company-mid__desc {
    margin-top: 30px;
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.company-mid__desc br {
    display: none;
}

.ko .company-mid__desc {
    display: block;
}

.company-btm__title {
    color: #000;
    font-size: 34px;
    font-weight: 400;
    line-height: 40px;
}

.company-btm__list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-template-columns: repeat(4, 1fr);
    column-gap: 20px;
    -ms-column-gap: 20px;
}

.company-btm__item {
    width: 100%;
    grid-column: auto / span 1;
    -ms-grid-column: auto / span 1;
    border-radius: 30px;
    border: 1px solid #a3abb0;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 50px 32px 78px;
}

.company-btm__img {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
}

.company-btm__desc {
    margin-top: 50px;
    color: #000;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.company-btm__desc br {
    display: none;
}

.ko .company-btm__desc br {
    display: block;
}

.company-btm__sub {
    margin-top: 20px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.policy-cont p {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
}

.policy-cont__title {
    color: #000;
    font-size: 32px;
    font-weight: 600;
    line-height: 40px;
}

.policy-cont p.policy-cont__sub {
    color: #000;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 10px;
}

.policy-cont p.policy-cont__item {
    color: #000;
    font-family: 'Josefin Sans';
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 40px;
}

.policy-cont li {
    position: relative;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    padding-left: 25px;
}

.policy-cont li::before {
    content: '·';
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    text-align: center;
}

/* badge */
.badge {
    display: inline-block;
    vertical-align: top;
    padding: 0 5px;
    border-radius: 4px;
    line-height: 23px;
    height: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    margin-right: 5px;
    margin-top: 1px;
}

.badge.badge-gray {
    color: #fff;
    background-color: #656565;
}

.badge.badge-green {
    color: #fff;
    background-color: #28a745;
}
