@font-face {
    font-family: "Pretendard";
    font-weight: 100;
    font-display: swap;
    src: local("Pretendard Thin"), url("./../fonts/Pretendard/Pretendard-Thin.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-Thin.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 200;
    font-display: swap;
    src: local("Pretendard ExtraLight"), url("./../fonts/Pretendard/Pretendard-ExtraLight.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 300;
    font-display: swap;
    src: local("Pretendard Light"), url("./../fonts/Pretendard/Pretendard-Light.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-Light.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 400;
    font-display: swap;
    src: local("Pretendard Regular"), url("./../fonts/Pretendard/Pretendard-Regular.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-Regular.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 500;
    font-display: swap;
    src: local("Pretendard Medium"), url("./../fonts/Pretendard/Pretendard-Medium.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-Medium.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 600;
    font-display: swap;
    src: local("Pretendard SemiBold"), url("./../fonts/Pretendard/Pretendard-SemiBold.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 700;
    font-display: swap;
    src: local("Pretendard Bold"), url("./../fonts/Pretendard/Pretendard-Bold.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-Bold.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 800;
    font-display: swap;
    src: local("Pretendard ExtraBold"), url("./../fonts/Pretendard/Pretendard-ExtraBold.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
    font-family: "Pretendard";
    font-weight: 900;
    font-display: swap;
    src: local("Pretendard Black"), url("./../fonts/Pretendard/Pretendard-Black.woff2") format("woff2"), url("./../fonts/Pretendard/Pretendard-Black.woff") format("woff");
}
/******************** RESET ********************/
*, *:before, *:after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    margin: 0;
    color: #2a323b;
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-size: 10px;
    line-height: 1;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

blockquote {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

dl, dd {
    margin: 0;
}

figure {
    margin: 0;
}

fieldset {
    margin: 0;
    padding: 0;
    border: none;
}

legend {
    padding: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

em {
    font-style: normal;
}

small {
    font-size: inherit;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

button, input, select, textarea {
    font-family: inherit;
}

button {
    color: inherit;
    cursor: pointer;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

th, td {
    padding: 0;
}

address {
    font-style: inherit;
}

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    white-space: nowrap;
    clip: rect(0, 0, 0, 0);
}

.input-text,
.input-textarea,
.input-select {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    background-color: #fff;
    color: #000;
    font-size: 16px;
    outline: 0;
    appearance: none;
    transition: border-color 0.2s ease;
}
.input-text:focus,
.input-textarea:focus,
.input-select:focus {
    border-color: #ff6d00;
}

.input-text::placeholder,
.input-textarea::placeholder {
    color: #acaaa7;
}

.input-text,
.input-select {
    display: inline-block;
    height: 56px;
    padding: 0 19px;
    vertical-align: middle;
}

.input-textarea {
    padding: 19px 19px;
    line-height: 26px;
    resize: vertical;
}

.input-select {
    padding-right: 53px;
    background-image: url(./../images/common/input_select_chevron.svg);
    background-repeat: no-repeat;
    background-position: top 50% right 19px;
    background-size: 24px 24px;
}

.input-checkbox,
.input-radio {
    display: inline-block;
    margin: 0;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: auto 100%;
    vertical-align: middle;
    cursor: pointer;
    appearance: none;
}
.input-checkbox:checked,
.input-radio:checked {
    background-position: -20px 0;
}

.input-checkbox {
    background-image: url(./../images/common/input_checkbox.svg);
}

.input-radio {
    background-image: url(./../images/common/input_radio.svg);
}

.input-label {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
}
.input-label > span {
    padding-left: 4px;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.03em;
}

.input-dropdown {
    height: 56px;
    padding-right: 53px;
    padding-left: 15px;
    border-color: #ddd;
    color: #000;
    font-size: 16px;
    line-height: 54px;
    transition: border-color 0.2s ease;
}
.input-dropdown:after {
    top: 16px;
    right: 20px;
    width: 24px;
    height: 24px;
    margin-top: 0;
    border: none;
    background: url(./../images/common/input_select_chevron.svg) no-repeat 0 0/100% 100%;
    transform-origin: 50% 50%;
    transform: rotate(0);
    transition: none;
}
.input-dropdown:active, .input-dropdown.open, .input-dropdown:focus {
    border-color: #ff6d00;
}
.input-dropdown.open:after {
    transform: rotate(180deg);
}
.input-dropdown .list {
    left: -1px;
    margin-top: 2px;
    padding: 11px 0;
    border: 1px solid #ddd;
    box-shadow: none;
    transition: none;
}
.input-dropdown .option {
    min-height: auto;
    line-height: 34px;
}
.input-dropdown .option.selected {
    color: #ff6d00;
    font-weight: normal;
}
.input-dropdown .option.disabled {
    color: #acaaa7;
}
.input-dropdown.wide .list {
    right: -1px !important;
    left: -1px !important;
}

.pagination {
    display: flex;
    justify-content: center;
}
.pagination .paging {
    overflow: hidden;
    width: 32px;
    height: 32px;
    background: url(./../images/common/pagination.svg) no-repeat 0 -32px;
    white-space: nowrap;
    text-indent: 100%;
}
.pagination .paging.first {
    background-position-x: 0;
}
.pagination .paging.prev {
    margin-right: 8px;
    background-position-x: -32px;
}
.pagination .paging.next {
    margin-left: 8px;
    background-position-x: -64px;
}
.pagination .paging.end {
    background-position-x: -96px;
}
.pagination .paging.active {
    background-position-y: 0;
}
.pagination .number {
    display: flex;
}
.pagination .number a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 4px;
    font-size: 16px;
    line-height: 20px;
}
.pagination .number a.active {
    background-color: #ff6d00;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .pagination .paging.prev {
        margin-right: 4px;
    }
    .pagination .paging.next {
        margin-left: 4px;
    }
    .pagination .number a {
        margin: 0 2px;
    }
}
#header {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 84px;
    padding: 0 80px;
}
#header .logo {
    overflow: hidden;
    position: relative;
    width: 110px;
    height: 40px;
    white-space: nowrap;
    text-indent: 100%;
}
#header .logo:before, #header .logo:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat 0 0/100% 100%;
    transition: opacity 0.2s ease;
}
#header .logo:before {
    background-image: url(./../images/common/logo.png);
}
#header .logo:after {
    background-image: url(./../images/common/logo_white.png);
    opacity: 0;
}
#header .gnb-mo-open {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 -10px 0 auto;
    padding: 0;
    border: none;
    background-color: transparent;
}
#header .gnb-mo-open:before, #header .gnb-mo-open:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat 50% 50%/20px 20px;
    transition: opacity 0.2s ease;
}
#header .gnb-mo-open:before {
    background-image: url(./../images/common/ico_hamburger.svg);
}
#header .gnb-mo-open:after {
    background-image: url(./../images/common/ico_hamburger_white.svg);
    opacity: 0;
}
#header.lighten .logo:before {
    opacity: 0;
}
#header.lighten .logo:after {
    opacity: 1;
}
#header.lighten .gnb-mo-open:before {
    opacity: 0;
}
#header.lighten .gnb-mo-open:after {
    opacity: 1;
}

#gnb {
    margin-left: auto;
}
#gnb a {
    font-weight: 600;
    font-size: 18px;
    transition: color 0.2s ease;
}
#gnb a + a {
    margin-left: 40px;
}
.lighten #gnb a {
    color: #fff;
}

#gnb-mo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1010;
    width: 100%;
    height: 100%;
    padding: 96px 20px 40px;
    background-color: #fff;
    opacity: 0;
    transition: visibility 0.4s, opacity 0.4s ease;
}
#gnb-mo .logo {
    overflow: hidden;
    position: absolute;
    top: 13px;
    left: 20px;
    width: 80px;
    height: 30px;
    background: url(./../images/common/logo.png) no-repeat 0 0/100% 100%;
    white-space: nowrap;
    text-indent: 100%;
}
#gnb-mo .gnb-mo-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: url(./../images/common/ico_close.svg) no-repeat 50% 50%/20px 20px;
}
#gnb-mo a {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
}
#gnb-mo a + a {
    margin-top: 40px;
}
#gnb-mo.visible {
    visibility: visible;
    opacity: 1;
}

@media (max-width: 1440px) {
    #header {
        padding: 0 40px;
    }
    #header .logo {
        width: 118px;
        height: 44px;
    }
    #gnb a {
        font-size: 16px;
    }
}
@media (max-width: 1024px) {
    #header {
        height: 56px;
        padding: 0 20px;
    }
    #header .logo {
        width: 80px;
        height: 30px;
    }
    #header .gnb-mo-open {
        display: block;
    }
    #gnb {
        display: none;
    }
}
.sub-visual {
    position: relative;
    padding: 164px 80px 64px;
    background: no-repeat 50% 50%/cover;
}
.sub-visual .txts {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
}
.sub-visual h1 {
    font-size: 72px;
    line-height: 94px;
}
.sub-visual p {
    margin-top: 16px;
    color: #ddd;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
}

#contents {
    padding: 80px 80px 100px;
}

@media (max-width: 1440px) {
    .sub-visual {
        padding: 100px 40px 76px;
    }
    .sub-visual h1 {
        font-size: 48px;
        line-height: 62px;
    }
    .sub-visual p {
        font-size: 20px;
        line-height: 26px;
    }
    #contents {
        padding: 48px 40px 100px;
    }
}
@media (max-width: 1024px) {
    .sub-visual {
        padding: 88px 20px 34px;
    }
    .sub-visual h1 {
        font-size: 32px;
        line-height: 42px;
    }
    .sub-visual p {
        margin-top: 8px;
        font-size: 16px;
        line-height: 21px;
    }
    #contents {
        padding: 32px 20px 80px;
    }
}
#footer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    border-top: 1px solid #ddd;
    padding: 56px 80px 104px;
}
#footer .company-name {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 80px;
}
#footer .company-name .logo {
    width: 154px;
    height: 56px;
    background: url(./../images/common/logo.png) no-repeat 0 0/100% 100%;
}
#footer .company-name strong {
    margin-top: 24px;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
}
#footer .terms {
    display: flex;
}
#footer .terms a {
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
#footer .terms a + a {
    margin-left: 20px;
}
#footer .company-info {
    display: flex;
    margin-top: 14px;
}
#footer .company-info dl {
    display: flex;
    font-size: 14px;
    line-height: 22px;
}
#footer .company-info dt {
    font-weight: 700;
}
#footer .company-info dd {
    margin-left: 8px;
    color: #626262;
    font-weight: 500;
}
#footer .company-info dd a {
    text-decoration: underline;
}
#footer .company-info dl ~ dl {
    margin-left: 16px;
}
#footer .extra {
    display: flex;
    margin-top: 16px;
    color: #626262;
    font-size: 14px;
    line-height: 22px;
}
#footer .extra p {
    margin-left: 16px;
}
#footer .sns {
    display: flex;
    margin-top: 24px;
}
#footer .sns li + li {
    margin-left: 12px;
}
#footer .top-button {
    visibility: hidden;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    right: 16px;
    z-index: 900;
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: url(./../images/common/btn_top.svg) no-repeat 0 0/100% 100%;
    opacity: 0;
    white-space: nowrap;
    text-indent: 100%;
    transition: visibility 0.4s, opacity 0.4s ease;
}
#footer .top-button.visible {
    visibility: visible;
    opacity: 1;
}
#footer .top-button.static {
    position: absolute;
    bottom: 100%;
}

@media (max-width: 1440px) {
    #footer {
        padding: 56px 40px 76px;
    }
    #footer .company-name {
        left: 40px;
    }
    #footer .company-info {
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    #footer .company-info dl {
        align-items: flex-end;
    }
    #footer .company-info .break {
        flex-basis: 100%;
        height: 0;
    }
    #footer .company-info .break ~ dl {
        margin-top: 8px;
    }
}
@media (max-width: 1024px) {
    #footer {
        align-items: flex-start;
        padding: 48px 20px;
    }
    #footer .company-name {
        position: static;
    }
    #footer .company-name .logo {
        width: 98px;
        height: 36px;
    }
    #footer .company-name strong {
        margin-top: 12px;
        font-size: 14px;
        line-height: 17px;
    }
    #footer .terms {
        flex-direction: column;
        margin-top: 40px;
    }
    #footer .terms a + a {
        margin-top: 20px;
        margin-left: 0;
    }
    #footer .company-info {
        flex-direction: column;
        margin-top: 40px;
    }
    #footer .company-info dl ~ dl {
        margin-top: 12px;
        margin-left: 0;
    }
    #footer .company-info .break ~ dl {
        margin-top: 12px;
    }
    #footer .extra {
        flex-direction: column;
        margin-top: 40px;
    }
    #footer .extra p {
        margin-top: 16px;
        margin-left: 0;
    }
}
.popup {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 1100;
    width: 100%;
    max-width: 320px;
}
.popup img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}
.popup .button-bar {
    display: flex;
}
.popup button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    padding: 0 16px;
    border: none;
    background-color: #fff;
    color: #888;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}
.popup button.popup-close-today {
    width: 100%;
}
.popup button.popup-close {
    flex-shrink: 0;
    color: #000;
}
.popup button.popup-close:after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 6px;
    background: url(./../images/common/popup_close.svg) no-repeat 0 0/100% 100%;
}

@media (max-width: 480px) {
    .popup {
        max-width: none;
    }
}
.order-solution {
    max-width: 1320px;
    margin: 0 auto;
}
.order-solution .hgroup {
    margin: 84px 0 80px;
    text-align: center;
}
.order-solution .hgroup h1 {
    font-weight: 700;
    font-size: 72px;
    line-height: 94px;
}
.order-solution .hgroup h1 em {
    color: #ff6d00;
}
.order-solution .hgroup p {
    margin-top: 24px;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
}
.order-solution .viewer {
    display: flex;
}
.order-solution .viewer .swiper-container {
    overflow: hidden;
    height: 680px;
    border-radius: 32px;
}
.order-solution .viewer .swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    padding: 48px 48px;
}
.order-solution .viewer .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-solution .viewer h2 {
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
}
.order-solution .viewer p {
    margin-top: 8px;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
}
.order-solution .viewer .controller {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    margin-left: 24px;
}
.order-solution .viewer .controller button {
    position: relative;
    width: 123px;
    padding: 0;
    border-radius: 16px;
    border: none;
    background-color: transparent;
}
.order-solution .viewer .controller button:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.order-solution .viewer .controller button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    border: 4px solid #ff6d00;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.order-solution .viewer .controller button img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}
.order-solution .viewer .controller button.active:after {
    opacity: 1;
}

@media (max-width: 1440px) {
    .order-solution {
        max-width: 944px;
    }
    .order-solution .hgroup {
        margin: 92px 0 56px;
    }
    .order-solution .hgroup h1 {
        font-size: 48px;
        line-height: 62px;
    }
    .order-solution .hgroup p {
        margin-top: 16px;
        font-size: 20px;
        line-height: 26px;
    }
    .order-solution .viewer .swiper-slide {
        padding: 40px 40px;
    }
    .order-solution .viewer h2 {
        font-size: 24px;
        line-height: 31px;
    }
    .order-solution .viewer p {
        font-size: 18px;
        line-height: 23px;
    }
    .order-solution .viewer .controller {
        margin-left: 16px;
    }
}
@media (max-width: 1024px) {
    .order-solution {
        max-width: 480px;
    }
    .order-solution .hgroup {
        margin: 72px 0 48px;
    }
    .order-solution .hgroup h1 {
        font-size: 40px;
        line-height: 52px;
    }
    .order-solution .hgroup p {
        font-size: 18px;
        line-height: 23px;
    }
    .order-solution .viewer {
        flex-direction: column;
    }
    .order-solution .viewer .swiper-container {
        height: auto;
        border-radius: 16px;
    }
    .order-solution .viewer .swiper-slide {
        padding: 24px 24px;
    }
    .order-solution .viewer .swiper-slide:before {
        content: "";
        display: block;
        padding-bottom: 125.3731%;
    }
    .order-solution .viewer .swiper-slide .txts {
        position: absolute;
        right: 24px;
        bottom: 24px;
        left: 24px;
    }
    .order-solution .viewer h2 {
        font-size: 20px;
        line-height: 26px;
    }
    .order-solution .viewer p {
        font-size: 16px;
        line-height: 21px;
    }
    .order-solution .viewer .controller {
        flex-direction: row;
        margin-top: 12px;
        margin-left: 0;
    }
    .order-solution .viewer .controller button {
        width: 18.8059%;
        border-radius: 8px;
    }
    .order-solution .viewer .controller button:after {
        border-width: 2px;
    }
}
#container.sub-news .sub-visual {
    background-image: url(./../images/news/sub_visual_desk.png);
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 32px;
    max-width: 1024px;
    margin: 0 auto;
}
.news-list li {
    width: calc(33.3333333333% - 21.3333333333px);
}
.news-list a {
    display: flex;
    flex-direction: column;
}
.news-list a .txts {
    padding: 32px 32px 56px;
    border-radius: 16px 16px 0 0;
    background-color: #f3f3f3;
}
.news-list a .subject {
    overflow: hidden;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-list a .lead {
    overflow: hidden;
    height: 72px;
    margin-top: 24px;
    color: #626262;
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.news-list a .thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 0 0 16px 16px;
}
.news-list a .thumb:before {
    content: "";
    display: block;
    padding-bottom: 66.6666%;
}
.news-list a .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-list + .pagination {
    margin-top: 64px;
}

@media (max-width: 1440px) {
    #container.sub-news .sub-visual {
        background-image: url(./../images/news/sub_visual_tab.png);
    }
    .news-list {
        gap: 48px 24px;
    }
    .news-list li {
        width: calc(33.3333333333% - 16px);
    }
    .news-list a .txts {
        padding: 24px 24px;
    }
    .news-list a .subject {
        font-size: 18px;
        line-height: 23px;
    }
    .news-list a .lead {
        height: 48px;
        margin-top: 12px;
        -webkit-line-clamp: 2;
    }
    .news-list + .pagination {
        margin-top: 48px;
    }
}
@media (max-width: 1024px) {
    #container.sub-news .sub-visual {
        background-image: url(./../images/news/sub_visual_mo.png);
    }
}
@media (max-width: 768px) {
    .news-list li {
        width: calc(50% - 12px);
    }
}
@media (max-width: 480px) {
    .news-list {
        gap: 24px 0;
    }
    .news-list li {
        width: 100%;
    }
    .news-list a .subject {
        font-size: 18px;
        line-height: 23px;
    }
    .news-list + .pagination {
        margin-top: 24px;
    }
}
#container.sub-event .sub-visual {
    background-image: url(./../images/event/sub_visual_desk.png);
}

.event-list {
    display: flex;
    flex-wrap: wrap;
    gap: 64px 32px;
    max-width: 1024px;
    margin: 0 auto;
}
.event-list li {
    width: calc(33.3333333333% - 26.6666666667px);
}
.event-list a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.event-list a .thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 16px;
}
.event-list a .thumb:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}
.event-list a .thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.event-list a .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    margin-top: 24px;
    padding: 0 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.event-list a .tag.ing {
    background-color: rgba(255, 109, 0, 0.12);
    color: #ff6d00;
}
.event-list a .tag.end {
    background-color: rgba(107, 118, 132, 0.12);
    color: #6b7684;
}
.event-list a .subject {
    overflow: hidden;
    margin-top: 16px;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-list + .pagination {
    margin-top: 64px;
}

@media (max-width: 1440px) {
    #container.sub-event .sub-visual {
        background-image: url(./../images/event/sub_visual_tab.png);
    }
    .event-list {
        gap: 48px 24px;
    }
    .event-list li {
        width: calc(33.3333333333% - 16px);
    }
    .event-list a .subject {
        font-size: 20px;
        line-height: 26px;
    }
    .event-list + .pagination {
        margin-top: 48px;
    }
}
@media (max-width: 1024px) {
    #container.sub-event .sub-visual {
        background-image: url(./../images/event/sub_visual_mo.png);
    }
}
@media (max-width: 768px) {
    .event-list li {
        width: calc(50% - 12px);
    }
}
@media (max-width: 480px) {
    .event-list {
        gap: 24px 0;
    }
    .event-list li {
        width: 100%;
    }
    .event-list a .subject {
        font-size: 18px;
        line-height: 23px;
    }
    .event-list + .pagination {
        margin-top: 24px;
    }
}
.article-detail {
    max-width: 750px;
    margin: 0 auto;
    padding-top: 20px;
}
.article-detail .hgroup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
}
.article-detail .tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 34px;
    margin-bottom: 16px;
    padding: 0 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.article-detail .tag.ing {
    background-color: rgba(255, 109, 0, 0.12);
    color: #ff6d00;
}
.article-detail .tag.end {
    background-color: rgba(107, 118, 132, 0.12);
    color: #6b7684;
}
.article-detail h2 {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
}
.article-detail .content {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #d9d9d9;
    font-size: 16px;
    line-height: 1.5;
}
.article-detail .list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 56px;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #ff6d00;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

@media (max-width: 1440px) {
    .article-detail {
        padding-top: 0;
    }
    .article-detail h2 {
        font-size: 20px;
        line-height: 26px;
    }
    .article-detail .list {
        font-size: 16px;
        line-height: 21px;
    }
}
@media (max-width: 1024px) {
    .article-detail .hgroup {
        margin-bottom: 24px;
    }
    .article-detail h2 {
        font-size: 18px;
        line-height: 23px;
    }
    .article-detail .content {
        padding-bottom: 0;
        border-bottom: none;
    }
    .article-detail .list {
        width: 100%;
    }
}
#container.sub-inquiry .sub-visual {
    background-image: url(./../images/inquiry/sub_visual_desk.png);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 684px;
    margin: 0 auto;
}
.inquiry-form .guide {
    width: 100%;
    padding: 18px 24px;
    border-radius: 8px;
    background-color: #f3f3f3;
}
.inquiry-form .guide p {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
}
.inquiry-form .guide p:before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url(./../images/common/ico_time.svg) no-repeat 0 0/100% 100%;
}
.inquiry-form .label {
    display: inline-flex;
    align-items: flex-start;
    margin: 32px 0 8px;
    color: #626262;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}
.inquiry-form .label:first-child {
    margin-top: 0;
}
.inquiry-form .label .required {
    width: 4px;
    height: 4px;
    margin-left: 4px;
    border-radius: 50%;
    background-color: #ff6d00;
}
.inquiry-form .agree {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
}
.inquiry-form .agree .detail {
    display: inline-flex;
    align-items: center;
    color: #ff6d00;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
}
.inquiry-form .agree .detail:after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(./../images/common/ico_chevron_right_orange.svg) no-repeat 0 0/100% 100%;
}
.inquiry-form .submit {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 56px;
    margin-top: 40px;
    padding: 0;
    border-radius: 8px;
    border: none;
    background-color: #ff6d00;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

@media (max-width: 1440px) {
    #container.sub-inquiry .sub-visual {
        background-image: url(./../images/inquiry/sub_visual_tab.png);
    }
}
@media (max-width: 1024px) {
    #container.sub-inquiry .sub-visual {
        background-image: url(./../images/inquiry/sub_visual_mo.png);
    }
    .inquiry-form {
        max-width: 480px;
    }
    .inquiry-form .guide {
        padding: 18px 16px;
    }
}
.br-mo,
.br-tab {
    display: inline;
    font-size: inherit;
}

.br-desk {
    display: block;
    font-size: 0;
}

@media (max-width: 1440px) {
    .br-mo,
    .br-desk {
        display: inline;
        font-size: inherit;
    }
    .br-tab {
        display: block;
        font-size: 0;
    }
}
@media (max-width: 1024px) {
    .br-tab,
    .br-desk {
        display: inline;
        font-size: inherit;
    }
    .br-mo {
        display: block;
        font-size: 0;
    }
}
.color-white {
    color: #fff !important;
}