h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.4px;
    margin-top: 40px;
    text-align: center;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.4px;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
}

#wrap {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.content {
    width: 92%;
    margin: 0 auto 100px;
}

.content::after {
    display: block;
    content: '';
    clear: both;
}

.btnArea {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btnArea button {
    width: 100%;
    margin: 40px auto;
}






.airSearch .obj {
    display: none;
}

.airSearch .motion {
    -webkit-animation: fade_in .5s ease-out, bottom_to_top 16s linear infinite;
    -moz-animation: fade_in .5s ease-out, bottom_to_top 16s linear infinite;
    animation: fade_in .5s ease-out, bottom_to_top 16s linear infinite
}

@-webkit-keyframes fade_in {
    0% {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

@-moz-keyframes fade_in {
    0% {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

@keyframes fade_in {
    0% {
        opacity: .3
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes bottom_to_top {
    0% {
        -webkit-transform: scale(1) translate(160px, 160px);
        -moz-transform: scale(1) translate(160px, 160px);
        transform: scale(1) translate(160px, 160px)
    }

    90%,
    to {
        -webkit-transform: scale(0.6) translate(-500px, -500px);
        -moz-transform: scale(0.6) translate(-500px, -500px);
        transform: scale(0.6) translate(-500px, -500px);
    }
}

@-moz-keyframes bottom_to_top {
    0% {
        -webkit-transform: scale(1) translate(160px, 160px);
        -moz-transform: scale(1) translate(160px, 160px);
        transform: scale(1) translate(160px, 160px)
    }

    90%,
    to {
        -webkit-transform: scale(0.6) translate(-500px, -500px);
        -moz-transform: scale(0.6) translate(-500px, -500px);
        transform: scale(0.6) translate(-500px, -500px);
    }
}

@keyframes bottom_to_top {
    0% {
        -webkit-transform: scale(1) translate(160px, 160px);
        -moz-transform: scale(1) translate(160px, 160px);
        transform: scale(1) translate(160px, 160px)
    }

    90%,
    to {
        -webkit-transform: scale(0.6) translate(-500px, -500px);
        -moz-transform: scale(0.6) translate(-500px, -500px);
        transform: scale(0.6) translate(-500px, -500px);
    }
}

.airSearch {
    width: 100%;
    background: #022c88;
    position: relative;
    padding-bottom: 40px;
}

.airSearch .inner {
    padding-top: 50px;
}

.airSearch .searchForm {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.airSearch .searchForm .area01 {
    padding-bottom: 16px;
}

.airSearch .searchForm .area01 .tablist {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.airSearch .searchForm .area01 .tablist span {
    padding: 6px 17px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.4px;
    color: var(--white);
    background: #022c88;
    border: 3px solid transparent;
    cursor: pointer;
}

.airSearch .searchForm .area01 .tablist span:hover {
    font-weight: 600;
    border: 3px solid var(--white);
    border-radius: 50px;
}

.airSearch .searchForm .area01 .tablist span.selected {
    font-weight: 600;
    border: 3px solid var(--primary);
    border-radius: 50px;
}

.airSearch .searchForm .area01 .opDirect {
    display: none;
}

.airSearch .searchForm .area02 {
    width: 92%;
    margin: 0 auto;
    background: #00257a;
    padding: 20px 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.airSearch .searchForm .area02 .way {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.airSearch .searchForm .area02 .way>div {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.airSearch .searchForm .area02 .way>div::after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background: #022c88;
    position: absolute;
    bottom: 0;
    left: 0;
}

.airSearch .searchForm .area02 .way .item {
    display: none;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.airSearch .searchForm .area02 .way span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}

.airSearch .searchForm .area02 .way .city {
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.airSearch .searchForm .area02 .way .city .code {
    width: 38%;
    display: flex;
    flex-direction: column;
}

.airSearch .searchForm .area02 .way .city .code:last-child {
    text-align: right;
}

.airSearch .searchForm .area02 .way .city .code .before {
    opacity: .3;
}

.airSearch .searchForm .area02 .way .city .code .after {
    opacity: 1;
}

.airSearch .searchForm .area02 .way .city .arrow {
    width: 18%;
    padding: 14px;
}

.airSearch .searchForm .area02 .way .city .arrow.type1 {
    background: url(../../../images/temp105/common/air_arrow_type01_white.svg) 50% 50% / 20px no-repeat;
}

.airSearch .searchForm .area02 .way .city .arrow.type2 {
    background: url(../../../images/temp105/common/air_arrow_type02_white.svg) 50% 50% / 20px no-repeat;
}

.airSearch .searchForm .area02 .way .date {
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: flex-start;
}

.airSearch .searchForm .area02 .way .date span:first-child {
    margin-right: 10px;
}

.airSearch .searchForm .area02 .way .date span:first-child svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

.airSearch .searchForm .area02 .way .date .item {
    margin-bottom: 0;
}

.airSearch .searchForm .area02 .option .add {
    width: 70px;
    height: 30px;
}

.airSearch .searchForm .area02 .option .add span {
    /*width: 30px; height: 30px;*/
    padding: 12px;
    border-radius: 50px;
    background: var(--black);
    position: absolute;
}

.airSearch .searchForm .area02 .option .add span::before {
    width: 12px;
    height: 2px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.airSearch .searchForm .area02 .option .add span::after {
    width: 2px;
    height: 12px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.airSearch .searchForm .area02 .option {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.airSearch .searchForm .area02 .option .info {
    display: flex;
    align-items: center;
}

.airSearch .searchForm .area02 .option .info span:first-child {
    font-size: 0;
    color: var(--white);
    margin-right: 10px;
}

.airSearch .searchForm .area02 .option .info span:first-child svg {
    fill: var(--white);
    width: 26px;
    height: 26px;
}

.airSearch .searchForm .area02 .option .info span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 19px;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}

.airSearch .searchForm .area02 .option .opDirect {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.airSearch .searchForm .area02 .option .inp_check>.label,
.inp_radio>.label {
    color: var(--white);
    font-size: 16px;
    line-height: 24px;
}

.airSearch .searchForm .area02 .option .inp_check>.label:before,
.inp_radio>.label:before {
    width: 22px;
    height: 22px;
}

.airSearch .searchForm .area02 .option .inp_check .label:before {
    padding: 6px;
    border: 1px solid var(--white);
    border-radius: 2px;
    background: transparent url('../../../images/common/check_01_off.svg') 55% 50%/ 18px no-repeat;
}

.airSearch .searchForm .area02 .option .inp_check>.label:hover:before {
    border-color: var(--black);
    background-image: url('../../../images/common/check_01_hover.svg');
}

.airSearch .searchForm .area02 .option .inp_check>input:checked+.label:before {
    background-color: transparent;
    background-image: url('../../../images/common/check_01_select.svg');
    border-color: var(--white);
    transition: background-color .25s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.airSearch .searchForm .area02 .option .inp_check>input:disabled+.label:before {
    background-color: transparent;
    background-image: url('../../../images/common/check_01_off.svg');
    border-color: var(--white);
}

.airSearch .searchForm .area02 .option .inp_check>input.checked+.label:before {
    background-color: transparent;
    background-image: url('../../../images/common/check_01_select.svg');
    border-color: var(--white);
    transition: background-color .25s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.airSearch .searchForm .area02 .btnSearch {
    width: 92%;
    margin: 20px auto 2px;
    height: 50px;
    min-height: 50px;
    border: 3px solid var(--primary);
    background: transparent;
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.airSearch .searchForm .area02 .multi {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.airSearch .searchForm .area02 .multi .wrap {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    margin-bottom: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.airSearch .searchForm .area02 .multi .wrap span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 19px;
    color: var(--white);
    font-weight: 600;
    white-space: nowrap;
}

.airSearch .searchForm .area02 .multi .wrap .city {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgb(255 255 255 / 16%);
    padding-bottom: 16px;
    margin-bottom: 14px;
}

.airSearch .searchForm .area02 .multi .wrap .city .code {
    width: 38%;
    display: flex;
    flex-direction: column;
}

.airSearch .searchForm .area02 .multi .wrap .city .code:last-child {
    text-align: right;
}

.airSearch .searchForm .area02 .multi .wrap .city .code .item {
    display: none;
}

.airSearch .searchForm .area02 .multi .wrap .city .code .before {
    opacity: .3;
}

.airSearch .searchForm .area02 .multi .wrap .city .code .after {
    opacity: 1;
}

.airSearch .searchForm .area02 .multi .wrap .city .arrow {
    width: 18%;
    padding: 0 40px;
}

.airSearch .searchForm .area02 .multi .wrap .city .arrow.type1 {
    background: url(../../../images/temp105/common/air_arrow_type01_white.svg) 50% 50% / 20px no-repeat;
}

.airSearch .searchForm .area02 .multi .wrap .city .arrow.type2 {
    background: url(../../../images/temp105/common/air_arrow_type02_white.svg) 50% 50% / 20px no-repeat;
}

.airSearch .searchForm .area02 .multi .wrap .date {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: center;
}

.airSearch .searchForm .area02 .multi .wrap .date .item {
    margin-bottom: 0;
    color: var(--primary);
    margin-right: 10px;
}

.airSearch .searchForm .area02 .multi .wrap .minus {
    position: absolute;
    right: 0;
    top: 54%;
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    background: var(--black);
    display: flex;
    align-items: center;
}

.airSearch .searchForm .area02 .multi .wrap .minus span:first-child {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-bottom: 0;
}

.airSearch .searchForm .area02 .multi .wrap .minus span:first-child::before {
    width: 16px;
    height: 2px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.airSearch .searchForm .area02 .multi .wrap .minus span:last-child {
    display: none;
}

.airSearch .searchForm .area02 .multi .wrap .add {
    position: absolute;
    right: 0;
    top: 54%;
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    background: var(--black);
    display: flex;
    align-items: center;
}

.airSearch .searchForm .area02 .multi .wrap .add span:first-child {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-bottom: 0;
}

.airSearch .searchForm .area02 .multi .wrap .add span:first-child::before {
    width: 16px;
    height: 2px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.airSearch .searchForm .area02 .multi .wrap .add span:first-child::after {
    width: 2px;
    height: 16px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.airSearch .searchForm .area02 .multi .wrap .add span:last-child {
    display: none;
}

/*검색기록*/
.airSearchHistory {
    margin: 40px auto 0;
    width: 100%;
}

.airSearchHistory h4 {
    color: var(--white);
    font-weight: 600;
    width: 92%;
    margin: 0 auto 14px;
}

.airSearchHistory .searchHistory_area {
    width: 100%;
    padding: 0 4%;
    overflow: hidden;
    box-sizing: border-box;
}

.airSearchHistory .searchHistory_area .swiper {
    position: relative;
}

.airSearchHistory .historyBox {
    position: relative;
    background: #f3f3f3;
    padding: 14px 20px;
    display: inline-flex;
    flex-direction: column;
    border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
}

.airSearchHistory .historyBox .close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: url(../../../images/temp105/layout/close.svg) no-repeat;
    width: 16px;
    height: 16px;
    cursor: pointer;
    z-index: 2;
}

.airSearchHistory .historyBox .area01 {
    display: flex;
    margin-bottom: 10px;
}

.airSearchHistory .historyBox .area01 .way {
    border: 1px solid var(--gray);
    border-radius: 10px;
    padding: 2px 6px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.airSearchHistory .historyBox .area02 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.airSearchHistory .historyBox .area02 .code {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
    margin-left: 3px;
}

.airSearchHistory .historyBox .area02 .cityName {
    max-width: 70px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.airSearchHistory .historyBox .area02 .arrow {
    width: 20px;
    height: 20px;
    margin: 0 10px;
}

.airSearchHistory .historyBox .area02 .arrow.type1 {
    background: url(../../../images/temp105/layout/air_arrow_type01.svg) 50% 50% / 20px no-repeat;
}

.airSearchHistory .historyBox .area02 .arrow.type2 {
    background: url(../../../images/temp105/layout/air_arrow_type02.svg) 50% 50% / 20px no-repeat;
}

.airSearchHistory .historyBox .area03 {
    color: var(--gray);
    font-size: 13.5px;
    letter-spacing: -0.2px;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*visual*/
.mainBanner {
    position: relative;
    width: 100%;
    height: 480px;
    max-height: 480px;
    overflow: hidden;
}

.mainBanner .visual {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.mainBanner .visual::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 15%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}


.slickBar {
    width: 92%;
    position: absolute;
    left: 50%;
    bottom: 60px;
    z-index: 2;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
}

.slickBar .count {
    text-align: right;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.slickBar .bar {
    width: 100%;
    height: 4px;
    background: rgb(255 255 255 / 60%);
}

.slickBar .bar .on {
    width: 40%;
    height: 4px;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    left: 0;
    z-index: 3;
}

.itemArrow {
    width: 100%;
    max-width: 1340px;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.itemArrow div {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: block;
    font-size: 0;
    cursor: pointer;
    background-color: rgb(255 255 255 /46%);
}

.itemArrow .prev {
    left: 0;
}

.itemArrow .prev::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 48%;
    width: 15px;
    height: 15px;
    border-top: solid 1px var(--black);
    border-left: solid 1px var(--black);
    transform: rotate(-45deg)translateY(-50%);
}

.itemArrow .prev::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--black)
}

.itemArrow .prev:hover {
    animation: bannerRightArrow 1s infinite alternate ease-in-out;
    background-color: rgb(255 255 255 /90%);
    box-shadow: 2px 8px 14px 2px rgb(0 0 0 / 26%);
}

.itemArrow .next {
    right: 0;
}

.itemArrow .next::before {
    content: '';
    position: absolute;
    right: 26px;
    top: 46%;
    width: 15px;
    height: 15px;
    border-top: solid 1px var(--black);
    border-right: solid 1px var(--black);
    transform: rotate(45deg)translateY(-50%);
}

.itemArrow .next::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 1px;
    background: var(--black)
}

.itemArrow .next:hover {
    animation: bannerLeftArrow 1s infinite alternate ease-in-out;
    background-color: rgb(255 255 255 /90%);
    box-shadow: 2px 8px 14px 2px rgb(0 0 0 / 26%);
}

.itemArea {
    overflow: hidden;
    width: 100%;
    position: relative;
    min-height: 300px;
}

.itemArea .item {
    position: relative;
}

.itemArea .item .item_img {
    border-radius: 10px;
    overflow: hidden;
    background: rgb(0 0 0 / 4%) url(../../../images/temp105/common/no_image.svg) 50% 50% / 4vw no-repeat;
}

.itemArea .item .item_img img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    cursor: pointer;
}

.itemArea .item .item_info {
    width: 100%;
}

.itemArea .item .item_info::after {
    display: block;
    content: '';
    clear: both;
}

.itemArea .item .item_info .badge_area {
    margin-bottom: 10px;
}

.itemArea .item .item_info .tit {
    width: 100%;
    color: var(--black);
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
    cursor: pointer;
}

.itemArea .item .item_info .sti {
    width: 100%;
    color: var(--gray);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
    cursor: pointer;
}

.itemArea .item .item_info .price {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
    cursor: pointer;
}

.m-tit {
    font-size: 28px;
    font-weight: 600;
    color: var(--black);
    letter-spacing: -0.4px;
    margin-bottom: 25px;
}

.mainItem01 {
    margin: 90px auto 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mainItem01 h2 {
    width: 92%;
    margin: 0 auto 30px;
}

.mainItem01 .itemArea {
    width: 100%;
    margin: 0 auto;
    padding: 0 4%;
    box-sizing: border-box;
}

.mainItem01 .itemArea .tourSwiper {
    position: relative;
}

.mainItem01 .itemArea .item .item_img {
    margin-bottom: 14px;
    width: 100%;
    height: 232px;
}

.mainItem01 .itemArrow {
    top: 34%
}


.mainItem02 {
    width: 100%;
    margin: 80px auto 0;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    border-top: 10px solid rgb(0 0 0 / 10%);
}

.mainItem02 h2 {
    margin-top: 0;
}

.mainItem02 .itemArea {
    width: 92%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.mainItem02 .itemArea .item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.mainItem02 .itemArea .item:last-child {
    margin-bottom: 0;
}

.mainItem02 .itemArea .item p {
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    padding: 10px 20px;
    background: rgb(0 0 0 / 10%);
    letter-spacing: -0.4px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.mainItem02 .itemArea .item .info {
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
}

.mainItem02 .itemArea .item .info dl {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
}

.mainItem02 .itemArea .item .info dl dt {
    font-weight: 500;
    color: var(--black);
    margin-right: 10px;
}

.mainItem02 .itemArea .item .info dl dd {
    display: flex;
    align-items: center;
    line-height: 26px;
    color: var(--gray);
    letter-spacing: -0.4px;
}

.mainItem02 .itemArea .item .info img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.mainItem02 .itemArea .item .info ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainItem02 .itemArea .item .info div:nth-child(3) {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainItem02 .itemArea .item .info div:nth-child(3) .price {
    font-size: 18px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: -0.4px;
    text-align: right;
    background: transparent;
    padding: 0;
}

.mainItem02 .itemArea .item .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    border-top: 1px solid #eaeaea;
    padding-top: 14px;
}

.mainItem02 .itemArea .item .bottom p {
    background: transparent;
    display: flex;
    align-items: center;
    padding: 0;
}

.mainItem02 .itemArea .item .bottom p img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.mainItem02 .itemArea .item .bottom .mainReservation {
    width: 140px;
    padding: 6px 0;
    min-height: 44px;
    border-radius: 7px;
    background: var(--red);
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    text-align: center;
}

.mainItem03 {
    width: 100%;
    background: #f3f3f3;
    padding: 50px 0;
}

.mainItem03 li:last-child {
    margin-left: 20px;
}

.mainItem03 .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 3%;
}

.mainItem03 .inner::-webkit-scrollbar {
    display: none;
}

.mainItem03 .inner li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mainItem03 .inner li > div {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 30px;
    height: 62px;
    line-height: 62px;
    background: var(--white);
    border-radius: 7px;
    cursor: pointer;
    margin-left: 16px;
}

.mainItem03 .inner li > div:first-child {
    margin-left: 0;
}

.mainItem03 .inner li > div span:first-child {
    font-size: 20px;
    margin-right: 6px;
    display: flex;
    margin-right: 10px;  
}

.mainItem03 .inner li > div span:last-child {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.mainItem04 {
    background: #fdfcf5;
    display: flex;
    flex-direction: column;
    padding: 50px 0;
}

.mainItem04 .m-tit {
    width: 100%;
    max-width: 1280px;
    display: flex;
    position: static;
    transform: translate(0%, 0%);
    margin: 0;
}

.mainItem04 .m_tit_wrap {
    width: 100%;
    display: block;
    position: static;
}

.mainItem04 .m_tit_wrap p {
    width: fit-content; 
}

.mainItem04 .m-tit p {
    display: inline;
    background: linear-gradient(to bottom, transparent 50%, var(--primary)50%);
    font-size: 30px;
    font-weight: 500;
    white-space: nowrap;
    margin-bottom: 20px;
}

.mainItem04 .m-tit .pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainItem04 .m-tit .pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainItem04 .m-tit .pagination ul::after {
    display: block;
    content: '';
    clear: both;
}

.mainItem04 .m-tit .pagination ul li {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 6px;
    background: rgb(0 0 0 / 20%);
    margin-right: 10px;
    cursor: pointer;
}

.mainItem04 .m-tit .pagination ul li.on {
    width: 28px;
    height: 10px;
    background: rgb(0 0 0 / 100%);
}

.mainItem04 .m-tit .pagination .more {
    margin: 20px 0;
    border: 1px solid rgb(0 0 0 / 50%);
    border-radius: 25px;
    padding: 7px 10px 7px 15px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.mainItem04 .m-tit .pagination .more svg {
    margin-right: 0;
}

.mainItem04 .itemArea {
    width: 92%;
    margin: 0 auto;
    height: auto;
    overflow: unset;
    min-height: auto;
    overflow: hidden;
}

.mainItem04 .itemArea .item {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mainItem04 .itemArea .item .area01 {
    width: 100%;
    height: 50vw;
    max-height: 518px;
}

.mainItem04 .itemArea .item .area01 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.mainItem04 .itemArea .item .area02 {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.mainItem04 .itemArea .item .area02 .reviewC {
    display: flex;
    flex-direction: column;
}

.mainItem04 .itemArea .item .area02 .reviewC .font-xl {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
    line-height: 1.3;
}

.mainItem04 .itemArea .item .area02 .reviewC .font-lg {
    font-size: 16px;
    font-weight: 400;
    color: var(--gray);
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    letter-spacing: -0.4px;
    max-height: auto;
    line-height: 1.4;
}

.mainItem04 .itemArea .item .area02 .reviewC button {
    background: transparent;
}

.mainItem04 .itemArea .item .area02 .btnTxt {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.4px;
    margin-top: 20px;
}

.mainItem04 .itemArea .item .area02 .btnTxt svg {
    width: 18px;
    height: 18px;
}

.mainItem04 .itemArea .item .area02 .itemArea {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    min-height: auto;
}

.mainItem04 .itemArea .item .area02 .itemArea .ti {
    font-weight: 600;
    font-size: 18px;
    background: #fffbf0;
    position: relative;
}

.mainItem04 .itemArea .item .area02 .itemArea .ti::after {
    position: absolute;
    bottom: 10px;
    right: 0;
    width: 76%;
    height: 1px;
    background: var(--black);
    content: '';
    z-index: 1;
}

.mainItem04 .itemArea .item .area02 .itemArea ul {
    display: flex;
    justify-content: start;
    align-items: start;
    padding-top: 20px;
}

.mainItem04 .itemArea .item .area02 .itemArea ul li.item_img {
    width: 38%;
    max-width: 112px;
    height: 112px;
    overflow: hidden;
    margin-right: 8%;
    border-radius: 0;
}

.mainItem04 .itemArea .item .area02 .itemArea ul li.item_img img {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.mainItem04 .itemArea .item .area02 .itemArea ul li.item_info {
    width: 54%;
}

.mainItem04 .itemArea .item .area02 .itemArea ul li.item_info .tit {
    margin-bottom: 6px;
    font-weight: 600;
    -webkit-line-clamp: 1;
}

.mainItem04 .itemArea .item .area02 .itemArea ul li.item_info .sti {
    margin-bottom: 10px;
    -webkit-line-clamp: 1;
}

.mainItem04 .itemArea .item .area02 .itemArea ul li.item_info .price {
    font-size: 16px;
}

.mainItem05 {
    width: 100%;
    margin: 80px auto;
    display: flex;
    flex-direction: column;
}

.mainItem05 .tit {
    width: 100%;
    font-size: 26px;
    font-weight: 600;
}

.mainItem05 .area01 {
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 10px solid rgb(0 0 0 / 10%);
}

.mainItem05 .area01 .tit {
    width: 92%;
    margin: 0 auto;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--black);
    cursor: pointer;
}

.mainItem05 .area01 ul {
    width: 92%;
    margin: 8px auto 0;
}

.mainItem05 .area01 ul li {
    display: flex;
    flex-direction: column-reverse;
    border-bottom: 1px solid rgb(0 0 0 / 10%);
    padding: 16px 0;
}

.mainItem05 .area01 ul li:last-child {
    border-bottom: 0
}

.mainItem05 .area01 ul li span:first-child {
    font-size: 18px;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    letter-spacing: -0.4px;
}

.mainItem05 .area01 ul li span:last-child {
    color: var(--gray);
    margin-bottom: 6px;
}

.mainItem05 .area01 ul li a:hover {
    text-decoration: underline;
}

.mainItem05 .area02 {
    width: 92%;
    margin: 70px auto 0;
}

.mainItem05 .area02 p:nth-child(2) {
    margin-top: 20px;
    font-size: 54px;
    font-weight: 600;
    color: var(--black)
}

.mainItem05 .area02 p:nth-child(3) {
    font-size: 18px;
    display: flex;
    flex-direction: column;
}

.mainItem05 .area02 p:nth-child(3) span {
    line-height: 26px;
}

.mainItem05 .area02 ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 24px;
}

.mainItem05 .area02 ul li {
    width: calc(100% / 2)
}

.mainItem05 .area02 ul li:first-child {
    width: 46%;
    margin-right: 4%;
}

.mainItem05 .area02 ul li:first-child button {
    font-size: 16px;
}

.mainItem05 .area02 ul li:last-child {
    display: flex;
    justify-content: start;
    align-items: center;
}

.mainItem05 .area02 ul .sns {
    height: 50px;
    line-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mainItem05 .area02 ul .sns div {
    margin-right: 6px;
    font-size: 0;
    width: 40px;
    height: 40px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mainItem05 .area02 ul .sns div:last-child {
    margin-right: 0;
}

.mainItem05 .area02 ul .sns img {
    width: 50%;
}


/*air*/
.air .obj {
    display: none;
}

.air .airSearch {
    width: 100%;
    background: var(--white);
    position: relative;
    padding-bottom: 0;
}

.air .airSearch .inner {
    padding-top: 80px;
}

.air .airSearch .searchForm {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.air .airSearch .searchForm .area01 {
    padding-bottom: 16px;
}

.air .airSearch .searchForm .area01 .tablist {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.air .airSearch .searchForm .area01 .tablist span {
    padding: 6px 17px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.4px;
    color: var(--black);
    background: var(--white);
    border: 3px solid transparent;
    cursor: pointer;
}

.air .airSearch .searchForm .area01 .tablist span:hover {
    font-weight: 600;
    border: 3px solid var(--white);
    border-radius: 50px;
}

.air .airSearch .searchForm .area01 .tablist span.selected {
    font-weight: 600;
    border: 3px solid var(--primary);
    border-radius: 50px;
}

.air .airSearch .searchForm .area01 .opDirect {
    display: none;
}

.air .airSearch .searchForm .area02 {
    width: 92%;
    margin: 0 auto;
    background: #f7f7f7;
    padding: 20px 0;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.air .airSearch .searchForm .area02 .way {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.air .airSearch .searchForm .area02 .way>div {
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.air .airSearch .searchForm .area02 .way>div::after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    background: #022c88;
    position: absolute;
    bottom: 0;
    left: 0;
}

.air .airSearch .searchForm .area02 .way .item {
    display: none;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 8px;
}

.air .airSearch .searchForm .area02 .way span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}

.air .airSearch .searchForm .area02 .way .city {
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.air .airSearch .searchForm .area02 .way .city .code {
    width: 38%;
    display: flex;
    flex-direction: column;
}

.air .airSearch .searchForm .area02 .way .city .code:last-child {
    text-align: right;
}

.air .airSearch .searchForm .area02 .way .city .code .before {
    opacity: .3;
}

.air .airSearch .searchForm .area02 .way .city .code .after {
    opacity: 1;
}

.air .airSearch .searchForm .area02 .way .city .arrow {
    width: 18%;
    padding: 14px;
}

.air .airSearch .searchForm .area02 .way .city .arrow.type1 {
    background: url(../../../images/temp105/common/air_arrow_type01_white.svg) 50% 50% / 20px no-repeat;
}

.air .airSearch .searchForm .area02 .way .city .arrow.type2 {
    background: url(../../../images/temp105/common/air_arrow_type02_white.svg) 50% 50% / 20px no-repeat;
}

.air .airSearch .searchForm .area02 .way .date {
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
    justify-content: flex-start;
}

.air .airSearch .searchForm .area02 .way .date span:first-child {
    margin-right: 10px;
}

.air .airSearch .searchForm .area02 .way .date span:first-child svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

.air .airSearch .searchForm .area02 .way .date .item {
    margin-bottom: 0;
}

.air .airSearch .searchForm .area02 .option .add {
    width: 70px;
    height: 30px;
}

.air .airSearch .searchForm .area02 .option .add span {
    /*width: 30px; height: 30px;*/
    padding: 12px;
    border-radius: 50px;
    background: var(--black);
    position: absolute;
}

.air .airSearch .searchForm .area02 .option .add span::before {
    width: 12px;
    height: 2px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.air .airSearch .searchForm .area02 .option .add span::after {
    width: 2px;
    height: 12px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.air .airSearch .searchForm .area02 .option {
    width: 90%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.air .airSearch .searchForm .area02 .option .info {
    display: flex;
    align-items: center;
}

.air .airSearch .searchForm .area02 .option .info span:first-child {
    font-size: 0;
    color: var(--black);
    margin-right: 10px;
}

.air .airSearch .searchForm .area02 .option .info span:first-child svg {
    fill: var(--black);
    width: 26px;
    height: 26px;
}

.air .airSearch .searchForm .area02 .option .info span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 19px;
    color: var(--black);
    font-weight: 500;
    white-space: nowrap;
}

.air .airSearch .searchForm .area02 .option .opDirect {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.air .airSearch .searchForm .area02 .option .inp_check>.label,
.inp_radio>.label {
    color: var(--black);
    font-size: 16px;
    line-height: 24px;
}

.air .airSearch .searchForm .area02 .option .inp_check>.label:before,
.inp_radio>.label:before {
    width: 22px;
    height: 22px;
}

.air .airSearch .searchForm .area02 .option .inp_check .label:before {
    padding: 6px;
    border: 1px solid var(--lightgray);
    border-radius: 2px;
    background: transparent url('../../../images/temp105/common/check_01_off.svg') 55% 50%/ 18px no-repeat;
}

.air .airSearch .searchForm .area02 .option .inp_check>.label:hover:before {
    border-color: var(--black);
    background-image: url('../../../images/temp105/common/check_01_hover.svg');
}

.air .airSearch .searchForm .area02 .option .inp_check>input:checked+.label:before {
    background-color: transparent;
    background-image: url('../../../images/temp105/common/check_01_select.svg');
    border-color: var(--white);
    transition: background-color .25s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.air .airSearch .searchForm .area02 .option .inp_check>input:disabled+.label:before {
    background-color: transparent;
    background-image: url('../../../images/temp105/common/check_01_off.svg');
    border-color: var(--white);
}

.air .airSearch .searchForm .area02 .option .inp_check>input.checked+.label:before {
    background-color: transparent;
    background-image: url('../../../images/temp105/common/check_01_select.svg');
    border-color: var(--white);
    transition: background-color .25s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.air .airSearch .searchForm .area02 .btnSearch {
    width: 92%;
    margin: 20px auto 2px;
    height: 50px;
    min-height: 50px;
    border: 3px solid var(--primary);
    background: var(--primary);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.air .airSearch .searchForm .area02 .multi {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.air .airSearch .searchForm .area02 .multi .wrap {
    width: 90%;
    margin: 0 auto;
    border-bottom: 1px solid rgb(0 0 0 / 16%);
    margin-bottom: 16px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.air .airSearch .searchForm .area02 .multi .wrap span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    font-size: 19px;
    color: var(--black);
    font-weight: 600;
    white-space: nowrap;
}

.air .airSearch .searchForm .area02 .multi .wrap .city {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgb(0 0 0 / 20%);
    padding-bottom: 16px;
    margin-bottom: 14px;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .code {
    width: 38%;
    display: flex;
    flex-direction: column;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .code:last-child {
    text-align: right;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .code .item {
    display: none;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .code .before {
    opacity: .3;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .code .after {
    opacity: 1;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .arrow {
    width: 18%;
    padding: 0 40px;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .arrow.type1 {
    background: url(../../../images/temp105/common/air_arrow_type01.svg) 50% 50% / 20px no-repeat;
}

.air .airSearch .searchForm .area02 .multi .wrap .city .arrow.type2 {
    background: url(../../../images/temp105/common/air_arrow_type02.svg) 50% 50% / 20px no-repeat;
}

.air .airSearch .searchForm .area02 .multi .wrap .date {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: start;
    align-items: center;
}

.air .airSearch .searchForm .area02 .multi .wrap .date .item {
    margin-bottom: 0;
    color: var(--primary);
    margin-right: 10px;
}

.air .airSearch .searchForm .area02 .multi .wrap .minus {
    position: absolute;
    right: 0;
    top: 54%;
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    background: var(--black);
    display: flex;
    align-items: center;
}

.air .airSearch .searchForm .area02 .multi .wrap .minus span:first-child {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-bottom: 0;
}

.air .airSearch .searchForm .area02 .multi .wrap .minus span:first-child::before {
    width: 16px;
    height: 2px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.air .airSearch .searchForm .area02 .multi .wrap .minus span:last-child {
    display: none;
}

.air .airSearch .searchForm .area02 .multi .wrap .add {
    position: absolute;
    right: 0;
    top: 54%;
    color: var(--white);
    padding: 16px;
    border-radius: 50px;
    background: var(--black);
    display: flex;
    align-items: center;
}

.air .airSearch .searchForm .area02 .multi .wrap .add span:first-child {
    width: 30px;
    height: 30px;
    position: absolute;
    margin-bottom: 0;
}

.air .airSearch .searchForm .area02 .multi .wrap .add span:first-child::before {
    width: 16px;
    height: 2px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.air .airSearch .searchForm .area02 .multi .wrap .add span:first-child::after {
    width: 2px;
    height: 16px;
    border-radius: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    margin: auto;
    background: var(--white);
    display: inline-block;
}

.air .airSearch .searchForm .area02 .multi .wrap .add span:last-child {
    display: none;
}

/*검색기록*/
.air .airSearchHistory {
    margin: 40px auto 0;
    width: 100%;
}

.air .airSearchHistory h4 {
    width: 92%;
    margin: 0 auto 16px;
    color: var(--black);
    font-weight: 500;
}

.air .airSearchHistory .searchHistory_area {
    width: 100%;
    overflow: hidden;
    padding-bottom: 12px;
}

.air .airSearchHistory .historyBox {
    position: relative;
    background: transparent;
    padding: 14px 20px;
    display: inline-flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 2px 5px 4px -3px rgb(0 0 0 / 9%);
    cursor: pointer;
}

.air .airSearchHistory .historyBox .close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: url(../../../images/temp105/layout/close.png) no-repeat;
    width: 16px;
    height: 16px;
    cursor: pointer;
    z-index: 2;
}

.air .airSearchHistory .historyBox .area01 {
    display: flex;
    margin-bottom: 10px;
}

.air .airSearchHistory .historyBox .area01 .way {
    border: 0;
    border-radius: 4px;
    padding: 2px 7px;
    background: var(--black);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.air .airSearchHistory .historyBox .area02 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.air .airSearchHistory .historyBox .area02 .code {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-left: 3px;
}

.air .airSearchHistory .historyBox .area02 .cityName {
    max-width: 70px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin-left: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.air .airSearchHistory .historyBox .area02 .arrow {
    width: 20px;
    height: 20px;
    margin: 0 10px;
}

.air .airSearchHistory .historyBox .area02 .arrow.type1 {
    background: url(../../../images/temp105/layout/air_arrow_type01.svg) 50% 50% / 20px no-repeat;
}

.air .airSearchHistory .historyBox .area02 .arrow.type2 {
    background: url(../../../images/temp105/layout/air_arrow_type02.svg) 50% 50% / 20px no-repeat;
}

.air .airSearchHistory .historyBox .area03 {
    color: var(--gray);
    font-size: 13.5px;
    letter-spacing: -0.2px;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.air .eventArea {
    margin: 60px auto 0;
    width: 92%;
}

.air .eventArea {
    display: flex;
    flex-direction: column;
    position: relative;
}

.air .eventArea .itemArrow {
    display: none;
}

.air .eventArea .titArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.air .eventArea .titArea .pagination {
    display: flex;
    justify-content: end;
    align-items: center;
}

.air .eventArea .titArea .pagination span {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    background: #d1d1d1;
    margin-left: 10px;
}

.air .eventArea .titArea .pagination span.on {
    width: 22px;
    height: 12px;
    border-radius: 6px;
    background: #2a2a2a;
}

.air .eventArea .itemArea {
    min-height: auto;
}

.air .eventArea .itemArea .item {
    width: calc((100% / 2) - 20px);
    height: 128px;
}

.air .eventArea .itemArea .item:first-child {
    margin-left: 0;
}

.air .eventArea .itemArea .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    overflow: hidden;
}

.air .airItemList {
    width: 92%;
    margin: 60px auto 134px;
}

.air .airItemList h3 {
    margin-bottom: 12px;
}

.air .airItemList p {
    margin-bottom: 26px;
}

.air .airItemList .itemTable {
    border-bottom: 1px solid #e2e2e2;
}

.air .airItemList .itemTable ul {
    border: 1px solid var(--white);
    border-top: 1px solid #e2e2e2;
    padding: 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.air .airItemList .itemTable ul:first-child {
    border-top: 1px solid var(--black);
}

.air .airItemList .itemTable ul:hover {
    border: 1px solid var(--primary);
}

.air .airItemList .itemTable ul li {
    display: flex;
    flex-direction: row;
    border-bottom: 1px dashed rgb(0 0 0 / 10%);
    margin-bottom: 12px;
    padding-bottom: 12px;
}

.air .airItemList .itemTable ul li:first-child .font-xl {
    font-weight: 500;
    line-height: 25px;
}

.air .airItemList .itemTable ul li:first-child .font-lg {
    font-size: 13px;
    font-weight: 500;
    margin-left: 10px;
    background: rgb(0 0 0 / 6%);
    border-radius: 25px;
    padding: 4px 7px;
}

.air .airItemList .itemTable ul li:nth-child(2) {
    border-bottom: 0;
    margin-bottom: 0;
}

.air .airItemList .itemTable ul li:nth-child(2) .airline {
    width: 50%;
    display: flex;
    align-items: center;
}

.air .airItemList .itemTable ul li:nth-child(2) .airline img {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.air .airItemList .itemTable ul li:nth-child(2) span {
    white-space: nowrap;
}

.air .airItemList .itemTable ul li:last-child {
    display: flex;
    justify-content: end;
    align-items: center;
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.air .airItemList .itemTable ul li:last-child span {
    color: var(--red);
    font-size: 18px;
    font-weight: 500;
}

.air .airItemList .itemTable ul li:last-child .reserve {
    width: auto;
    min-height: auto;
    background: var(--red);
    border-radius: 3px;
    border: 0;
    padding: 6px 12px;
    color: var(--white);
    font-size: 14px;
    margin: 0 0 0 16px;
}

.air .airItemList button {
    padding: 12px 0;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #7f7f7f;
    border-radius: 50px;
}

.air .airItemList button svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.air .airItemList button:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.air .airItemList button:hover svg {
    fill: var(--white);
}