body,
html {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans TC", -apple-system, BlinkMacSystemFont, "Segoe UI",
        "Microsoft JhengHei", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    line-height: 1.5;
    color: #1a1311;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
ol,
ul {
    margin-bottom: 0;
}

ol,
ul {
    list-style: none;
}

ul {
    padding-left: 0;
}

a {
    text-decoration: none;
    color: #1a1311;
}
a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input[type="password"]::-ms-reveal {
    display: none;
}

input[type="password"]::-ms-clear {
    display: none;
}

input[type="password"]::-o-clear {
    display: none;
}

textarea {
    resize: none;
}

.loadingOuter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../img/bg1.jpg") center/cover no-repeat;
    z-index: 2;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.svgOuter {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
@media (max-width: 767px) {
    .svgOuter svg {
        height: 100px;
    }
}
@media (max-width: 320px) {
    .svgOuter svg {
        height: 80px;
    }
}
.svgOuter svg path {
    stroke: black;
    stroke-width: 0.3;
    fill-opacity: 0;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: fill-opacity 0.5s ease-out;
}

.navBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    border-bottom: 1px solid #dbd8d8;
    position: fixed;
    z-index: 999;
    width: 100%;
    background-color: #fafafa;
}
@media (max-width: 1200px) {
    .navBar {
        border-bottom: none;
    }
}
@media (max-width: 767px) {
    .navBar {
        height: 57px;
    }
}
.navBar .logo {
    width: 430px;
    height: 78px;
    margin-right: 80px;
    background-color: #ebebeb;
    -webkit-clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
    display: flex;
    align-items: center;
}
@media (max-width: 767px) {
    .navBar .logo {
        height: 57px;
        margin-right: 0;
        width: 300px;
    }
}
@media (max-width: 414px) {
    .navBar .logo {
        width: 210px;
    }
}
@media (max-width: 375px) {
    .navBar .logo {
        width: 200px;
    }
}
@media (max-width: 320px) {
    .navBar .logo {
        width: 170px;
    }
}
.navBar .logoImg {
    margin-left: 60px;
}
@media (max-width: 1200px) {
    .navBar .logoImg {
        margin-left: 20px;
    }
}
@media (max-width: 767px) {
    .navBar .logoImg {
        margin-right: 20px;
    }
}
.navBar .other {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 510px);
    height: 100%;
    padding: 15px 0;
    background: linear-gradient(to right, #fafafa, #ebebeb);
}
@media (max-width: 1200px) {
    .navBar .other {
        justify-content: flex-end;
    }
}
@media (max-width: 767px) {
    .navBar .other {
        width: calc(100% - 300px);
    }
}
@media (max-width: 414px) {
    .navBar .other {
        width: calc(100% - 210px);
    }
}
@media (max-width: 375px) {
    .navBar .other {
        width: calc(100% - 200px);
    }
}
.navBar .searchOuter {
    display: flex;
    width: 70%;
    position: relative;
    margin-right: 36px;
}
@media (max-width: 1200px) {
    .navBar .searchOuter {
        position: absolute;
        width: 100%;
        top: 78px;
        left: 0;
        height: 47px;
        box-shadow: 0 4px 10px rgba(128, 128, 128, 0.3);
    }
}
@media (max-width: 767px) {
    .navBar .searchOuter {
        top: 57px;
    }
}
.navBar .searchOuter .search {
    display: flex;
    width: 100%;
    height: 100%;
}
.navBar .searchOuter .search .searchInput {
    border: 1px solid #dbd8d8;
    border-left: 2px solid #00286e;
    background-color: #ebebeb;
    font-size: 18px;
    padding: 0 20px;
}
@media (max-width: 1200px) {
    .navBar .searchOuter .search .searchInput {
        background-color: #fff;
    }
}
.navBar .searchOuter .searchIcon {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00286e;
    color: #fff;
    cursor: pointer;
    font-size: 22px;
}
.navBar .searchOuter .searchListOuter {
    position: absolute;
    top: 47px;
    left: 0;
    width: 100%;
    border: 1px solid #dbd8d8;
    border-top: none;
    background-color: #fff;
    font-size: 20px;
    padding: 20px 20px 0 20px;
    overflow-y: auto;
    height: 407px;
    display: none;
}
.navBar .searchOuter .searchListOuter::-webkit-scrollbar {
    display: none;
}
.navBar .searchOuter .searchListOuter::-moz-scrollbar {
    display: none;
}
.navBar .searchOuter .searchListOuter::-ms-scrollbar {
    display: none;
}
@media (max-width: 1500px) {
    .navBar .searchOuter .searchListOuter {
        height: 520px;
    }
}
@media (max-width: 1200px) {
    .navBar .searchOuter .searchListOuter {
        height: 540px;
    }
}
@media (max-width: 1025px) {
    .navBar .searchOuter .searchListOuter {
        height: 480px;
    }
}
@media (max-width: 360px) {
    .navBar .searchOuter .searchListOuter {
        height: 370px;
    }
}
.navBar .searchOuter .relatedText {
    margin-bottom: 5px;
}
.navBar .searchOuter .searchList {
    display: flex;
    flex-wrap: wrap;
}
.navBar .searchOuter .searchList li {
    width: calc(100% / 2 - 10px);
    border: 1px solid #dbd8d8;
    margin-right: 20px;
    margin-bottom: 20px;
    transition: 0.5s;
}
@media (max-width: 1500px) {
    .navBar .searchOuter .searchList li {
        width: 100%;
        margin-right: 0;
    }
}
.navBar .searchOuter .searchList li:nth-child(2n + 2) {
    margin-right: 0;
}
.navBar .searchOuter .searchList li:hover {
    border-color: #f38200;
}
.navBar .searchOuter .searchList li:hover p {
    color: #f38200;
}
.navBar .searchOuter .searchList a {
    padding: 15px;
    display: flex;
    align-items: center;
}
@media (max-width: 1200px) {
    .navBar .searchOuter .searchList a {
        padding: 10px;
    }
}
.navBar .searchOuter .searchList .img {
    width: 65px;
    height: 65px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin-right: 10px;
}
.navBar .searchOuter .searchList p {
    transition: 0.5s;
    word-break: break-all;
}
.navBar .otherItems {
    display: flex;
    align-items: center;
    margin-right: 60px;
}
@media (max-width: 1200px) {
    .navBar .otherItems {
        margin-right: 20px;
    }
}
.navBar .inquiryCart {
    width: 145px;
    margin-right: 60px;
    font-size: 20px;
    letter-spacing: 0.72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    cursor: pointer;
}
@media (max-width: 1300px) {
    .navBar .inquiryCart {
        margin-right: 55px;
    }
}
@media (max-width: 1200px) {
    .navBar .inquiryCart {
        display: none;
    }
}
.navBar .inquiryCart:hover {
    color: #f38200;
}
.navBar .inquiryCart .num {
    color: #f38200;
}
.navBar .inquiryCart .shoppingCart {
    margin-left: 5px;
}
.navBar .language {
    background-color: #fff;
    display: flex;
    position: relative;
    width: 100px;
}
@media (max-width: 1200px) {
    .navBar .language {
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .navBar .language {
        margin-right: 20px;
        width: 80px;
    }
}
.navBar .chinese,
.navBar .english {
    font-size: 18px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    color: #b2bed3;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10;
}
@media (max-width: 767px) {
    .navBar .chinese,
    .navBar .english {
        font-size: 14px;
        width: 40px;
    }
}
.navBar .chinese.active,
.navBar .english.active {
    color: #fff;
}
.navBar .selectSlideBar {
    position: absolute;
    width: 50px;
    height: 100%;
    background-color: #00286e;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
@media (max-width: 767px) {
    .navBar .selectSlideBar {
        width: 40px;
    }
}
.navBar .selectSlideBar.active {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}
@media (max-width: 767px) {
    .navBar .selectSlideBar.active {
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
}

.menuBtnOuter {
    width: 30px;
    height: 30px;
    position: relative;
    transition: 0.5s;
    overflow: hidden;
    display: none;
}
@media (max-width: 1200px) {
    .menuBtnOuter {
        display: block;
        cursor: pointer;
    }
}
@media (max-width: 767px) {
    .menuBtnOuter {
        width: 25px;
        height: 20px;
    }
}
.menuBtnOuter .line {
    height: 2px;
    background-color: #00286e;
    position: absolute;
    transition: 0.5s;
}
.menuBtnOuter .line1 {
    width: 15px;
    top: 0;
    right: 0;
    -webkit-transform-origin: right top;
    transform-origin: right top;
}
.menuBtnOuter .line1.active {
    width: 24px;
    -webkit-transform: translate(0, -1px) rotate(-45deg);
    transform: translate(0, -1px) rotate(-45deg);
}
@media (max-width: 767px) {
    .menuBtnOuter .line1.active {
        width: 18px;
        -webkit-transform: translate(0, -1px) rotate(-40deg);
        transform: translate(0, -1px) rotate(-40deg);
    }
}
.menuBtnOuter .line2 {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 50px;
}
.menuBtnOuter .line2.active {
    width: 45px;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 767px) {
    .menuBtnOuter .line2.active {
        width: 30px;
        -webkit-transform: translate(-50%, -50%) rotate(38deg);
        transform: translate(-50%, -50%) rotate(38deg);
    }
}
.menuBtnOuter .line3 {
    width: 15px;
    left: 0;
    bottom: 0;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
}
.menuBtnOuter .line3.active {
    width: 24px;
    -webkit-transform: translate(0, 2px) rotate(-45deg);
    transform: translate(0, 2px) rotate(-45deg);
}
@media (max-width: 767px) {
    .menuBtnOuter .line3.active {
        width: 18px;
        -webkit-transform: translate(0, 2px) rotate(-40deg);
        transform: translate(0, 2px) rotate(-40deg);
    }
}

.menuBarOuter {
    position: fixed;
    top: 78px;
    z-index: 900;
    width: 100%;
    background: linear-gradient(to right, #fafafa, #ebebeb);
    box-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
    display: flex;
    justify-content: center;
}
@media (max-width: 1200px) {
    .menuBarOuter {
        display: block;
        top: 125px;
        background: #00286e;
        color: #fff;
        height: calc(100% - 125px);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        overflow-y: auto;
        z-index: 800;
    }
    .menuBarOuter::-webkit-scrollbar {
        display: none;
    }
    .menuBarOuter::-moz-scrollbar {
        display: none;
    }
    .menuBarOuter::-ms-scrollbar {
        display: none;
    }
}
@media (max-width: 767px) {
    .menuBarOuter {
        top: 104px;
        height: calc(100% - 104px);
    }
}
.menuBarOuter.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.menuBarOuter .menuList {
    font-size: 20px;
    display: flex;
}
@media (max-width: 1200px) {
    .menuBarOuter .menuList {
        flex-wrap: wrap;
    }
}
.menuBarOuter .menuList > li {
    display: flex;
    align-items: center;
    position: relative;
}
@media (max-width: 1200px) {
    .menuBarOuter .menuList > li {
        width: 100%;
        border-bottom: 1px solid #31538e;
        flex-direction: column;
    }
}
.menuBarOuter .menuList > li:hover > a,
.menuBarOuter .menuList > li:hover .lineArrow {
    color: #f38200;
}
.menuBarOuter .menuList > li:hover .list {
    opacity: 1;
    pointer-events: auto;
}
.menuBarOuter .menuList .mobileInquiry {
    display: none;
}
.menuBarOuter .menuList .mobileInquiry:hover .shoppingCart,
.menuBarOuter .menuList .mobileInquiry:active .shoppingCart {
    color: #f38200;
}
.menuBarOuter .menuList .mobileInquiry a {
    align-items: center;
}
@media (max-width: 1200px) {
    .menuBarOuter .menuList .mobileInquiry {
        display: block;
    }
}
.menuBarOuter .menuList .mobileInquiry .num {
    color: #f38200;
}
.menuBarOuter .menuList .mobileInquiry .shoppingCart {
    margin-left: 5px;
    color: #fff;
    transition: 0.5s;
}
.menuBarOuter .menuList a {
    display: flex;
    padding: 15px 30px;
    transition: 0.5s;
}
@media (max-width: 1200px) {
    .menuBarOuter .menuList a {
        color: #fff;
        width: 100%;
        padding-left: 46px;
        letter-spacing: 2px;
    }
}
.menuBarOuter .menuList a.active {
    color: #f38200;
}
.menuBarOuter .lineArrow {
    margin-left: -10px;
    margin-right: 20px;
    font-size: 14px;
    transition: 0.5s;
}
.menuBarOuter .lineArrow.active {
    color: #f38200;
    -webkit-transform: rotateX(180deg) translateZ(2px);
    transform: rotateX(180deg) translateZ(2px);
}
@media (max-width: 1200px) {
    .menuBarOuter .lineArrow {
        position: absolute;
        right: 28px;
        top: 22px;
    }
}
.menuBarOuter .list {
    width: 225px;
    position: absolute;
    top: 60px;
    left: -30px;
    background-color: #ebebeb;
    border-top: 2px solid #00286e;
    opacity: 0;
    z-index: -10;
    pointer-events: none;
    transition: 0.5s;
}
@media (max-width: 1200px) {
    .menuBarOuter .list {
        position: static;
        width: 100%;
        background-color: #00286e;
        border-top: 1px solid #31538e;
        left: 0;
        opacity: 1;
        z-index: 200;
        display: none;
        transition: none;
    }
    .menuBarOuter .list.active {
        display: block;
    }
}
.menuBarOuter .list li {
    border-bottom: 1px solid #dbd8d8;
}
@media (max-width: 1200px) {
    .menuBarOuter .list li {
        border-bottom: 1px solid #31538e;
    }
}
.menuBarOuter .list li:last-child {
    border-bottom: none;
}
.menuBarOuter .list a {
    padding: 15px 0;
    display: block;
    text-align: center;
}
@media (max-width: 1200px) {
    .menuBarOuter .list a {
        text-align: left;
        padding-left: 65px;
    }
}
.menuBarOuter .list a:hover,
.menuBarOuter .list a .active {
    color: #f38200;
}

.mask {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #1a1311;
    opacity: 0.5;
    z-index: -10;
    display: none;
}
.mask.active {
    display: block;
    z-index: 900;
}

.footer {
    background-color: #00286e;
    color: #fff;
    padding: 110px 0 42px 0;
    font-size: 20px;
    position: relative;
}
@media (max-width: 1500px) {
    .footer {
        padding: 110px 20px 42px 20px;
    }
}
@media (max-width: 1200px) {
    .footer {
        padding-top: 54px;
        padding-bottom: 28px;
    }
}
@media (max-width: 320px) {
    .footer {
        font-size: 18px;
    }
}
.footer a {
    color: #fff;
}
.footer span {
    font-size: 20px;
}
@media (max-width: 320px) {
    .footer span {
        font-size: 18px;
    }
}
.footer .bgImg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
@media (max-width: 1200px) {
    .footer .bgImg {
        height: auto;
        top: unset;
        bottom: 0;
    }
}
@media (max-width: 414px) {
    .footer .bgImg {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.footerList {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    position: relative;
    z-index: 5;
}
@media (max-width: 1200px) {
    .footerList {
        flex-wrap: wrap;
    }
}
.footerList .contactInfo {
    width: 640px;
}
@media (max-width: 1450px) {
    .footerList .contactInfo {
        width: 610px;
    }
}
@media (max-width: 1350px) {
    .footerList .contactInfo {
        margin-right: 10px;
    }
}
@media (max-width: 1200px) {
    .footerList .contactInfo {
        width: 100%;
        margin-bottom: 30px;
    }
}
.footerList .contactInfoList {
    margin-bottom: 80px;
}
@media (max-width: 1200px) {
    .footerList .contactInfoList {
        margin-bottom: 40px;
    }
}
.footerList .contactInfoList li {
    display: flex;
    margin-bottom: 10px;
}
@media (max-width: 1200px) {
    .footerList .contactInfoList li {
        flex-wrap: wrap;
    }
}
.footerList .contactInfoList li:last-child {
    margin-bottom: 0;
}
.footerList .contactInfoList .logo {
    margin-bottom: 26px;
}
.footerList .contactInfoList .listTitleOuter {
    display: flex;
    width: 140px;
    justify-content: space-between;
    font-weight: 600;
}
@media (max-width: 767px) {
    .footerList .contactInfoList .listTitleOuter {
        width: auto;
        letter-spacing: 1px;
    }
}
.footerList .contactInfoList .listTitle {
    font-weight: 600;
}
.footerList .contactInfoList .listText {
    letter-spacing: 1px;
}
.footerList .contactInfoList .emphasizeOuter {
    align-items: center;
}
.footerList .contactInfoList .emphasize {
    font-size: 28px;
}
@media (max-width: 384px) {
    .footerList .contactInfoList .emphasize {
        font-size: 24px;
    }
}
@media (max-width: 320px) {
    .footerList .contactInfoList .emphasize {
        font-size: 18px;
    }
}
.footerList .socalIcon {
    display: flex;
}
.footerList .socalIcon a {
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    transition: 0.5s;
}
.footerList .socalIcon a:hover {
    color: #f38200;
}
.footerList .sitemapList {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 640px);
}
@media (max-width: 1350px) {
    .footerList .sitemapList {
        flex: 1;
    }
}
@media (max-width: 1200px) {
    .footerList .sitemapList {
        flex-wrap: wrap;
    }
}
.footerList .sitemapList > li {
    width: calc(100% / 3 - 24px);
    margin-right: 26px;
}
@media (max-width: 1450px) {
    .footerList .sitemapList > li {
        margin-right: 10px;
    }
}
@media (max-width: 1200px) {
    .footerList .sitemapList > li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .footerList .sitemapList > li:last-child {
        margin-bottom: 0;
    }
}
.footerList .sitemapList > li:last-child {
    margin-right: 0;
}
@media (max-width: 1350px) {
    .footerList .sitemapList .productFooterList {
        width: 34%;
    }
}
@media (max-width: 1200px) {
    .footerList .sitemapList .productFooterList {
        width: 100%;
    }
}
.footerList .sitemapList .planFooterList {
    width: 250px;
}
@media (max-width: 1200px) {
    .footerList .sitemapList .planFooterList {
        width: 100%;
    }
}
@media (max-width: 1350px) {
    .footerList .sitemapList .aboutFooterList {
        width: 22%;
    }
}
@media (max-width: 1200px) {
    .footerList .sitemapList .aboutFooterList {
        width: 100%;
    }
}
.footerList .sitemapTitleOuter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
@media (max-width: 1200px) {
    .footerList .sitemapTitleOuter {
        cursor: pointer;
    }
}
.footerList .sitemapTitle {
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.72px;
}
.footerList .icon {
    margin-right: 8px;
    font-size: 8px;
}
@media (max-width: 1200px) {
    .footerList .icon {
        margin-right: 10px;
    }
}
.footerList .arrowIcon {
    display: none;
}
@media (max-width: 1200px) {
    .footerList .arrowIcon {
        display: block;
        transition: 0.5s;
        font-size: 18px;
    }
}
.footerList .arrowIcon.active {
    -webkit-transform: rotateX(180deg) translateZ(2px);
    transform: rotateX(180deg) translateZ(2px);
}
.footerList .list {
    padding: 20px 0 0 20px;
}
@media (max-width: 1350px) {
    .footerList .list {
        padding-left: 0;
    }
}
@media (max-width: 1200px) {
    .footerList .list {
        display: none;
        padding-left: 22px;
    }
}
.footerList .list li {
    margin-bottom: 10px;
}
.footerList .list li:last-child {
    margin-bottom: 0;
}
.footerList .list a {
    transition: 0.5s;
}
.footerList .list a:hover {
    color: #f38200;
}

.copyright {
    text-align: center;
    font-size: 16px;
    position: relative;
    z-index: 5;
    letter-spacing: 0.58px;
}

.containerOuter {
    max-width: 1400px;
    margin: 0 auto;
}

.dac {
    max-height: 0;
    overflow: hidden;
}

.mainSwiperOuter {
    position: relative;
    padding-top: 138px;
}
@media (max-width: 1200px) {
    .mainSwiperOuter {
        padding-top: 125px;
    }
}
@media (max-width: 767px) {
    .mainSwiperOuter {
        padding-top: 104px;
    }
}
.mainSwiperOuter .mainSwiper {
    height: calc(100vh - 138px);
}
@media (max-width: 1200px) {
    .mainSwiperOuter .mainSwiper {
        height: calc(100vh - 125px);
    }
}
@media (max-width: 767px) {
    .mainSwiperOuter .mainSwiper {
        height: calc(100vh - 104px);
    }
}
.mainSwiperOuter .textOuter {
    width: 1400px;
    position: absolute;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    max-height: calc(min(100vh - 240px, 600px));
    overflow-y: auto;
    opacity: 0;
    transition: opacity 0.6s, top 0.6s;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
@media (max-width: 1450px) {
    .mainSwiperOuter .textOuter {
        width: 1200px;
    }
}
@media (max-width: 1350px) {
    .mainSwiperOuter .textOuter {
        width: 1100px;
    }
}
@media (max-width: 1200px) {
    .mainSwiperOuter .textOuter {
        width: 980px;
    }
}
@media (max-width: 1025px) {
    .mainSwiperOuter .textOuter {
        width: 950px;
        max-height: calc(min(100vh - 200px, 600px));
    }
}
@media (max-width: 992px) {
    .mainSwiperOuter .textOuter {
        width: 700px;
        max-height: calc(min(100vh - 240px, 700px));
    }
}
@media (max-width: 767px) {
    .mainSwiperOuter .textOuter {
        padding: 0 20px;
        width: 100%;
    }
}
.mainSwiperOuter .textOuter::-webkit-scrollbar {
    display: none;
}
.mainSwiperOuter img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}
.mainSwiperOuter .title {
    color: #fff;
    font-weight: 600;
    font-size: 70px;
    letter-spacing: 2px;
    margin-bottom: 70px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .title {
        font-size: 40px;
    }
}
@media (max-width: 375px) {
    .mainSwiperOuter .title {
        font-size: 36px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .title {
        font-size: 28px;
    }
}
.mainSwiperOuter .span {
    display: flex;
    align-items: center;
    margin-left: 50px;
}
.mainSwiperOuter .icon {
    font-size: 45px;
    margin-right: 25px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .icon {
        font-size: 24px;
        margin-right: 10px;
    }
}
@media (max-width: 384px) {
    .mainSwiperOuter .icon {
        margin-right: 5px;
    }
}
.mainSwiperOuter .content {
    width: 660px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 35px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .content {
        font-size: 20px;
        width: 100%;
    }
}
@media (max-width: 414px) {
    .mainSwiperOuter .content {
        justify-content: space-between;
    }
}
@media (max-width: 384px) {
    .mainSwiperOuter .content {
        font-size: 18px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .content {
        font-size: 16px;
    }
}
.mainSwiperOuter .img {
    width: auto;
    height: 36vh;
    margin-right: 60px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .img {
        margin-right: 30px;
    }
}
@media (max-width: 414px) {
    .mainSwiperOuter .img {
        height: 28vh;
        margin-right: 20px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .img {
        margin-right: 10px;
    }
}
.mainSwiperOuter .inner {
    margin-bottom: 30px;
    letter-spacing: 1px;
}
@media (max-width: 360px) {
    .mainSwiperOuter .inner {
        letter-spacing: 0px;
    }
}
.mainSwiperOuter .inner li {
    display: flex;
    align-items: baseline;
}
.mainSwiperOuter .btnShape {
    font-size: 25px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .btnShape {
        font-size: 20px;
    }
}
@media (max-width: 384px) {
    .mainSwiperOuter .btnShape {
        font-size: 18px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .btnShape {
        font-size: 16px;
    }
}
.mainSwiperOuter .lineArrow {
    font-size: 20px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .lineArrow {
        font-size: 14px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .lineArrow {
        font-size: 12px;
    }
}
.mainSwiperOuter .checkIcon {
    margin-right: 20px;
    font-size: 20px;
}
@media (max-width: 767px) {
    .mainSwiperOuter .checkIcon {
        font-size: 16px;
        margin-right: 10px;
    }
}
.mainSwiperOuter .sorbOuter {
    flex-direction: column;
}
.mainSwiperOuter .sorbOuter .innerContainer {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.mainSwiperOuter .sorbOuter .inner {
    margin-bottom: 0;
}
.mainSwiperOuter .sorbOuter .img {
    height: 30vh;
}
@media (max-width: 414px) {
    .mainSwiperOuter .sorbOuter .img {
        height: 20vh;
        margin-right: 20px;
    }
}
.mainSwiperOuter .sorbImg {
    margin-bottom: 10px;
}
@media (max-width: 1025px) {
    .mainSwiperOuter .sorbImg {
        width: 250px;
    }
}
@media (max-width: 414px) {
    .mainSwiperOuter .sorbImg {
        width: 150px;
    }
}
.mainSwiperOuter .aerospaceOuter {
    align-items: flex-end;
}
.mainSwiperOuter .aerospaceOuter .contentText {
    display: flex;
    flex-direction: column;
}
.mainSwiperOuter .imgOuter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 55%;
}
.mainSwiperOuter .imgOuter li {
    width: calc(100% / 3);
    margin-right: 10px;
}
.mainSwiperOuter .imgOuter li:first-child {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
}
.mainSwiperOuter .imgOuter li:last-child {
    margin-right: 0;
}
.mainSwiperOuter .imgOuter li img {
    width: 130px;
    margin: 0 auto;
}
@media (max-width: 414px) {
    .mainSwiperOuter .imgOuter li img {
        width: 70px;
    }
}
.mainSwiperOuter .swiper-slide-active .textOuter {
    opacity: 1;
    top: 60px;
}
@media (max-width: 1025px) {
    .mainSwiperOuter .swiper-slide-active .textOuter {
        top: 40px;
    }
}
@media (max-width: 992px) {
    .mainSwiperOuter .swiper-slide-active .textOuter {
        top: 80px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .swiper-slide-active .textOuter {
        top: 30px;
    }
}
.mainSwiperOuter .swiper-slide-prev .textOuter {
    opacity: 0.1;
    top: 100px;
}
@media (max-width: 1025px) {
    .mainSwiperOuter .swiper-slide-prev .textOuter {
        top: 80px;
    }
}
@media (max-width: 992px) {
    .mainSwiperOuter .swiper-slide-prev .textOuter {
        top: 120px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .swiper-slide-prev .textOuter {
        top: 70px;
    }
}
.mainSwiperOuter .swiper-button-prev,
.mainSwiperOuter .swiper-button-next {
    width: 80px;
    height: 80px;
    top: -58px;
    background-color: #fff;
}
@media (max-width: 767px) {
    .mainSwiperOuter .swiper-button-prev,
    .mainSwiperOuter .swiper-button-next {
        height: 60px;
        top: -37px;
    }
}
.mainSwiperOuter .swiper-button-prev:hover::after,
.mainSwiperOuter .swiper-button-next:hover::after {
    border-color: #fff;
}
.mainSwiperOuter .swiper-button-prev:after,
.mainSwiperOuter .swiper-button-next:after {
    border-color: #00286e;
}
.mainSwiperOuter .swiper-button-prev {
    left: 88%;
}
@media (max-width: 1350px) {
    .mainSwiperOuter .swiper-button-prev {
        left: 82%;
    }
}
@media (max-width: 1200px) {
    .mainSwiperOuter .swiper-button-prev {
        left: 70%;
    }
}
@media (max-width: 992px) {
    .mainSwiperOuter .swiper-button-prev {
        left: 66%;
    }
}
@media (max-width: 767px) {
    .mainSwiperOuter .swiper-button-prev {
        left: 53%;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .swiper-button-prev {
        left: 51%;
    }
}
.mainSwiperOuter .swiper-button-next {
    right: 0;
}
@media (max-width: 1450px) {
    .mainSwiperOuter .swiper-button-next {
        right: -25px;
    }
}
@media (max-width: 1350px) {
    .mainSwiperOuter .swiper-button-next {
        right: 48px;
    }
}
@media (max-width: 1200px) {
    .mainSwiperOuter .swiper-button-next {
        right: 192px;
    }
}
@media (max-width: 992px) {
    .mainSwiperOuter .swiper-button-next {
        right: 240px;
    }
}
@media (max-width: 767px) {
    .mainSwiperOuter .swiper-button-next {
        right: 399px;
    }
}
@media (max-width: 320px) {
    .mainSwiperOuter .swiper-button-next {
        right: 422px;
    }
}
.mainSwiperOuter .hoverBar {
    background-color: #f38200;
}

.paginationOuter {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 1400px;
    z-index: 10;
}
@media (max-width: 1450px) {
    .paginationOuter {
        width: 1200px;
    }
}

.verticalBar {
    position: absolute;
    width: 100vw;
    height: 20px;
    right: 31%;
    bottom: 0;
    background-color: #00286e;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
@media (max-width: 1450px) {
    .verticalBar {
        right: 34%;
    }
}
@media (max-width: 1350px) {
    .verticalBar {
        right: 40%;
    }
}
@media (max-width: 1200px) {
    .verticalBar {
        right: 52%;
    }
}
@media (max-width: 992px) {
    .verticalBar {
        right: 56%;
    }
}
@media (max-width: 767px) {
    .verticalBar {
        right: 69%;
    }
}

.swiper-pagination-bullet {
    background-color: #31538e;
    opacity: 1;
    width: 80px;
    height: 20px;
    border-radius: 0;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
    left: -12%;
    display: flex;
    justify-content: flex-end;
    z-index: 5;
}
@media (max-width: 1350px) {
    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        left: -18%;
    }
}
@media (max-width: 1200px) {
    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        left: -30%;
    }
}
@media (max-width: 992px) {
    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        left: -34%;
    }
}
@media (max-width: 767px) {
    .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
        left: -47%;
    }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
    .swiper-pagination-bullet {
    margin: 0 2px;
}

.hoverBar {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: -120%;
    transition: left 0.5s;
}

.swiper-button-prev,
.swiper-button-next {
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
    overflow: hidden;
}
.swiper-button-prev:hover .hoverBar,
.swiper-button-next:hover .hoverBar {
    width: 100%;
    left: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-145deg);
    transform: translateY(-50%) rotate(-145deg);
    width: 15px;
    height: 15px;
    border-width: 3px 3px 0 0;
    border-style: solid;
}
@media (max-width: 767px) {
    .swiper-button-prev::after,
    .swiper-button-next::after {
        width: 10px;
        height: 10px;
    }
}

.swiper-button-next::after {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
    outline: none;
}

.headTitleOuter {
    display: flex;
    justify-content: center;
    margin-bottom: 70px;
}
@media (max-width: 992px) {
    .headTitleOuter {
        justify-content: flex-start;
    }
}
@media (max-width: 767px) {
    .headTitleOuter {
        margin-bottom: 50px;
    }
}
.headTitleOuter .headTitle {
    font-size: 36px;
    display: flex;
    align-items: center;
    position: relative;
    letter-spacing: 3px;
}
@media (max-width: 767px) {
    .headTitleOuter .headTitle {
        font-size: 26px;
    }
}
@media (max-width: 320px) {
    .headTitleOuter .headTitle {
        letter-spacing: 0;
    }
}
.headTitleOuter .headTitle::after {
    content: "";
    position: absolute;
    width: 42px;
    height: 2px;
    background-color: #00286e;
    right: -50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 384px) {
    .headTitleOuter .headTitle::after {
        width: 30px;
        right: -35px;
    }
}
@media (max-width: 360px) {
    .headTitleOuter .headTitle::after {
        width: 20px;
        right: -20px;
    }
}
.headTitleOuter .headTitle .icon {
    font-size: 20px;
    color: #f38200;
    margin-right: 10px;
}
@media (max-width: 767px) {
    .headTitleOuter .headTitle .icon {
        font-size: 12px;
        margin-right: 5px;
    }
}
.headTitleOuter .headTitle span {
    color: #00286e;
}

.productSummaryOuter .containerOuter,
.brandSummaryOuter .containerOuter,
.newSummaryOuter .containerOuter {
    position: relative;
}

.productSummaryOuter .btnShape,
.brandSummaryOuter .btnShape,
.newSummaryOuter .btnShape {
    position: absolute;
    right: 1.5vw;
    top: -5px;
}

.productSummaryOuter {
    background-color: #f2f2f2;
    padding: 90px 20px 155px 20px;
}
@media (max-width: 767px) {
    .productSummaryOuter {
        padding-top: 60px;
        padding-bottom: 130px;
    }
}
.productSummaryOuter .swiper-slide {
    background-image: url(../img/bg2.jpg);
    background-size: cover;
    background-position: center center;
}
.productSummaryOuter .swiper-slide a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 26px;
    letter-spacing: 1px;
    padding: 35px 0;
    transition: 0.5s;
    border: 1px solid transparent;
    text-align: center;
    word-break: break-all;
}
@media (max-width: 1025px) {
    .productSummaryOuter .swiper-slide a {
        font-size: 22px;
    }
}
@media (max-width: 414px) {
    .productSummaryOuter .swiper-slide a {
        font-size: 18px;
        padding: 25px 0;
    }
}
@media (max-width: 384px) {
    .productSummaryOuter .swiper-slide a {
        font-size: 16px;
    }
}
@media (max-width: 320px) {
    .productSummaryOuter .swiper-slide a {
        font-size: 12px;
    }
}
.productSummaryOuter .swiper-slide a:hover {
    border: 1px solid #f38200;
    color: #f38200;
}
.productSummaryOuter .imgOuter {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}
@media (max-width: 1025px) {
    .productSummaryOuter .imgOuter {
        width: 130px;
        height: 130px;
    }
}
@media (max-width: 414px) {
    .productSummaryOuter .imgOuter {
        width: 90px;
        height: 90px;
    }
}
.productSummaryOuter .imgOuter img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.productSummaryOuter .swiperBtnOuter {
    bottom: -88px;
}
@media (max-width: 767px) {
    .productSummaryOuter .swiperBtnOuter {
        bottom: -75px;
    }
}
.productSummaryOuter .hoverBar {
    background-color: #fff;
    border: 1px solid #00286e;
}

.middleSwiperOuter {
    position: relative;
    background-color: #f2f2f2;
}
.middleSwiperOuter img {
    height: 560px;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 767px) {
    .middleSwiperOuter img {
        height: 400px;
    }
}
.middleSwiperOuter .bgImg {
    position: absolute;
    top: 0;
    left: 0;
}
@media (max-width: 767px) {
    .middleSwiperOuter .imgPc {
        display: none;
    }
}
.middleSwiperOuter .imgMobile {
    display: none;
}
@media (max-width: 767px) {
    .middleSwiperOuter .imgMobile {
        display: block;
    }
}
.middleSwiperOuter .textOuter {
    position: absolute;
    width: 1400px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}
@media (max-width: 1450px) {
    .middleSwiperOuter .textOuter {
        width: 1200px;
    }
}
@media (max-width: 1350px) {
    .middleSwiperOuter .textOuter {
        width: 1100px;
    }
}
@media (max-width: 1200px) {
    .middleSwiperOuter .textOuter {
        width: 980px;
    }
}
@media (max-width: 992px) {
    .middleSwiperOuter .textOuter {
        width: 700px;
    }
}
@media (max-width: 767px) {
    .middleSwiperOuter .textOuter {
        top: 40%;
        padding: 0 20px;
        width: 100%;
    }
}
.middleSwiperOuter .textReverse {
    align-items: flex-start;
    text-align: left;
}
.middleSwiperOuter .textReverse .text {
    font-size: 45px;
    line-height: 60px;
    padding-top: 5px;
}
@media (max-width: 767px) {
    .middleSwiperOuter .textReverse .text {
        font-size: 30px;
        line-height: 40px;
    }
}
@media (max-width: 320px) {
    .middleSwiperOuter .textReverse .text {
        font-size: 20px;
        line-height: 28px;
    }
}
.middleSwiperOuter .titleOuter {
    margin-bottom: 65px;
    letter-spacing: 2px;
}
@media (max-width: 767px) {
    .middleSwiperOuter .titleOuter {
        font-size: 30px;
        margin-bottom: 40px;
    }
}
@media (max-width: 320px) {
    .middleSwiperOuter .titleOuter {
        font-size: 20px;
    }
}
.middleSwiperOuter .title {
    font-size: 56px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
}
@media (max-width: 767px) {
    .middleSwiperOuter .title {
        font-size: 30px;
    }
}
@media (max-width: 320px) {
    .middleSwiperOuter .title {
        font-size: 20px;
    }
}
.middleSwiperOuter .easier {
    font-size: 72px;
    margin-top: -15px;
}
@media (max-width: 767px) {
    .middleSwiperOuter .easier {
        font-size: 42px;
        margin-top: -5px;
    }
}
@media (max-width: 320px) {
    .middleSwiperOuter .easier {
        font-size: 25px;
        margin-top: 0;
    }
}
.middleSwiperOuter .easier span {
    font-size: 56px;
}
@media (max-width: 767px) {
    .middleSwiperOuter .easier span {
        font-size: 30px;
    }
}
@media (max-width: 320px) {
    .middleSwiperOuter .easier span {
        font-size: 20px;
    }
}
.middleSwiperOuter .btnShapeOuter {
    overflow: hidden;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
}
.middleSwiperOuter .btnShape {
    font-size: 26px;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}
@media (max-width: 767px) {
    .middleSwiperOuter .btnShape {
        font-size: 20px;
    }
}
@media (max-width: 320px) {
    .middleSwiperOuter .btnShape {
        font-size: 18px;
    }
}
.middleSwiperOuter .hoverBar {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}
.middleSwiperOuter .swiperBtnOuter {
    bottom: 45px;
}
.middleSwiperOuter .swiperBtnOuter .swiper-button-prev:hover::after,
.middleSwiperOuter .swiperBtnOuter .swiper-button-next:hover::after {
    border-color: #fff;
}
.middleSwiperOuter .hoverBar {
    background-color: #f38200;
}

.brandSummaryOuter {
    padding: 80px 20px 50px 20px;
    background-color: #f2f2f2;
}
@media (max-width: 767px) {
    .brandSummaryOuter {
        padding: 50px 20px 20px 20px;
    }
}
.brandSummaryOuter .brandSummaryList {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.brandSummaryOuter .brandSummaryList li {
    display: flex;
    justify-content: space-evenly;
    width: calc(100% / 4 - 15px);
    margin-bottom: 40px;
    margin-right: 20px;
    transition: 0.5s;
}
@media (max-width: 1025px) {
    .brandSummaryOuter .brandSummaryList li {
        margin-right: 40px;
        width: calc(100% / 4 - 30px);
    }
}
@media (max-width: 767px) {
    .brandSummaryOuter .brandSummaryList li {
        margin-right: 30px;
        width: calc(100% / 2 - 15px);
    }
}
.brandSummaryOuter .brandSummaryList li:nth-child(4n + 4) {
    margin-right: 0;
}
@media (max-width: 767px) {
    .brandSummaryOuter .brandSummaryList li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
.brandSummaryOuter .brandSummaryList li:hover {
    opacity: 0.6;
}
.brandSummaryOuter .brandSummaryList li img {
    height: 90px;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
@media (max-width: 1025px) {
    .brandSummaryOuter .brandSummaryList li img {
        height: 60px;
        width: 150px;
    }
}

.newSummaryOuter {
    padding: 90px 20px 70px 20px;
}
@media (max-width: 767px) {
    .newSummaryOuter {
        padding: 60px 20px 40px 20px;
    }
}
.newSummaryOuter .newSummaryList {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1560px) {
    .newSummaryOuter .newSummaryList {
        justify-content: center;
    }
}
.newSummaryOuter .newSummaryList li {
    width: calc(100% / 6 - 17px);
    margin-right: 20px;
    margin-bottom: 20px;
    height: 271px;
    background-image: url(../img/bg2.jpg);
    background-size: cover;
    background-position: center center;
}
@media (max-width: 1560px) {
    .newSummaryOuter .newSummaryList li {
        width: calc(100% / 5 - 16px);
    }
    .newSummaryOuter .newSummaryList li:nth-child(5n + 5) {
        margin-right: 0;
    }
}
@media (max-width: 1560px) and (max-width: 1300px) {
    .newSummaryOuter .newSummaryList li:nth-child(5n + 5) {
        margin-right: 20px;
    }
}
@media (max-width: 1300px) {
    .newSummaryOuter .newSummaryList li {
        width: calc(100% / 4 - 15px);
    }
    .newSummaryOuter .newSummaryList li:nth-child(4n + 4) {
        margin-right: 0;
    }
}
@media (max-width: 1300px) and (max-width: 1020px) {
    .newSummaryOuter .newSummaryList li:nth-child(4n + 4) {
        margin-right: 20px;
    }
}
@media (max-width: 1020px) {
    .newSummaryOuter .newSummaryList li {
        width: calc(100% / 3 - 14px);
        height: 255px;
    }
    .newSummaryOuter .newSummaryList li:nth-child(3n + 3) {
        margin-right: 0;
    }
}
@media (max-width: 1020px) and (max-width: 760px) {
    .newSummaryOuter .newSummaryList li:nth-child(3n + 3) {
        margin-right: 20px;
    }
}
@media (max-width: 760px) {
    .newSummaryOuter .newSummaryList li {
        width: calc(100% / 2 - 10px);
    }
    .newSummaryOuter .newSummaryList li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
@media (max-width: 414px) {
    .newSummaryOuter .newSummaryList li {
        height: 189px;
    }
}
@media (max-width: 384px) {
    .newSummaryOuter .newSummaryList li {
        height: 186px;
    }
}
@media (max-width: 360px) {
    .newSummaryOuter .newSummaryList li {
        height: auto;
    }
}
.newSummaryOuter .newSummaryList li:nth-child(6n + 6) {
    margin-right: 0;
}
@media (max-width: 1560px) {
    .newSummaryOuter .newSummaryList li:nth-child(6n + 6) {
        margin-right: 20px;
    }
}
@media (max-width: 1020px) {
    .newSummaryOuter .newSummaryList li:nth-child(6n + 6) {
        margin-right: 0;
    }
}
.newSummaryOuter .newSummaryList li:last-child {
    margin-right: 0;
}
.newSummaryOuter .newSummaryList li a {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    word-break: break-all;
    border: 1px solid transparent;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .newSummaryOuter .newSummaryList li a {
        padding: 20px 10px;
    }
}
@media (max-width: 414px) {
    .newSummaryOuter .newSummaryList li a {
        padding: 10px;
        font-size: 16px;
    }
}
.newSummaryOuter .newSummaryList li a:hover {
    border: 1px solid #f38200;
    color: #f38200;
}
.newSummaryOuter .newSummaryList .text {
    margin-bottom: 10px;
}
.newSummaryOuter .newSummaryList .imgOuter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
}
@media (max-width: 1025px) {
    .newSummaryOuter .newSummaryList .imgOuter {
        width: 130px;
        height: 130px;
    }
}
@media (max-width: 414px) {
    .newSummaryOuter .newSummaryList .imgOuter {
        width: 90px;
        height: 90px;
    }
}
.newSummaryOuter .newSummaryList .imgOuter img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.certificationOuter {
    padding: 90px 20px;
    background-color: #f2f2f2;
}
@media (max-width: 767px) {
    .certificationOuter {
        padding: 60px 20px;
    }
}
.certificationOuter .certificationList {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 1025px) {
    .certificationOuter .certificationList {
        max-width: 700px;
    }
}
@media (max-width: 767px) {
    .certificationOuter .certificationList {
        max-width: 500px;
    }
}
.certificationOuter .certificationList img {
    width: 200px;
    height: 150px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 767px) {
    .certificationOuter .certificationList img {
        width: 120px;
        height: auto;
    }
}
@media (max-width: 414px) {
    .certificationOuter .certificationList img {
        width: 100px;
    }
}
@media (max-width: 320px) {
    .certificationOuter .certificationList img {
        width: 80px;
    }
}

.newsSummaryOuter {
    padding: 90px 20px 195px 20px;
    position: relative;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .newsSummaryOuter {
        padding: 40px 20px;
    }
}
.newsSummaryOuter .swiperBtnOuter {
    bottom: -106px;
}
.newsSummaryOuter .swiperBtnOuter.active {
    display: none;
}
.newsSummaryOuter .hoverBar {
    background-color: #fff;
    border: 1px solid #00286e;
}
.newsSummaryOuter img {
    width: 100%;
    height: 318px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 1350px) {
    .newsSummaryOuter img {
        height: 260px;
    }
}
@media (max-width: 1200px) {
    .newsSummaryOuter img {
        height: 382px;
    }
}
@media (max-width: 1025px) {
    .newsSummaryOuter img {
        height: 330px;
    }
}
@media (max-width: 992px) {
    .newsSummaryOuter img {
        height: 250px;
    }
}
@media (max-width: 820px) {
    .newsSummaryOuter img {
        height: 260px;
    }
}
@media (max-width: 760px) {
    .newsSummaryOuter img {
        height: auto;
    }
}
.newsSummaryOuter .newsContent {
    background-color: #f2f2f2;
    padding: 30px;
    word-break: break-all;
}
@media (max-width: 767px) {
    .newsSummaryOuter .newsContent {
        padding: 20px;
    }
}
@media (max-width: 320px) {
    .newsSummaryOuter .newsContent {
        padding: 10px;
    }
}
.newsSummaryOuter .title {
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 63px;
}
@media (max-width: 767px) {
    .newsSummaryOuter .title {
        height: auto;
    }
}
@media (max-width: 414px) {
    .newsSummaryOuter .title {
        font-size: 20px;
    }
}
.newsSummaryOuter .text {
    font-size: 20px;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-bottom: 50px;
    height: 90px;
}
@media (max-width: 767px) {
    .newsSummaryOuter .text {
        height: auto;
    }
}
@media (max-width: 414px) {
    .newsSummaryOuter .text {
        font-size: 18px;
        margin-bottom: 40px;
    }
}
.newsSummaryOuter .otherData {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
@media (max-width: 767px) {
    .newsSummaryOuter .otherData {
        align-items: center;
    }
}
.newsSummaryOuter .date {
    color: #666666;
    font-size: 16px;
}
@media (max-width: 1300px) {
    .newsSummaryOuter .date {
        font-size: 14px;
    }
}
@media (max-width: 1200px) {
    .newsSummaryOuter .date {
        font-size: 16px;
    }
}
@media (max-width: 900px) {
    .newsSummaryOuter .date {
        font-size: 14px;
    }
}
@media (max-width: 820px) {
    .newsSummaryOuter .date {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .newsSummaryOuter .date {
        font-size: 14px;
    }
}
@media (max-width: 360px) {
    .newsSummaryOuter .date {
        font-size: 12px;
    }
}
.newsSummaryOuter .btnShape {
    padding: 8px 18px;
}
@media (max-width: 1300px) {
    .newsSummaryOuter .btnShape {
        padding: 8px 10px;
    }
}
@media (max-width: 320px) {
    .newsSummaryOuter .btnShape {
        padding: 8px 5px;
    }
}

.newsSummarySwiper.mobileList .swiper-wrapper {
    flex-wrap: wrap;
}

.newsSummarySwiper.mobileList .swiper-slide {
    display: block;
    width: 100% !important;
    margin-bottom: 20px;
}

.swiperBtnOuter {
    position: relative;
    display: flex;
    justify-content: center;
}
.swiperBtnOuter .swiper-button-prev {
    margin-right: 30px;
}
.swiperBtnOuter .swiper-button-prev,
.swiperBtnOuter .swiper-button-next {
    width: 60px;
    background-color: #00286e;
    position: relative;
}
@media (max-width: 767px) {
    .swiperBtnOuter .swiper-button-prev,
    .swiperBtnOuter .swiper-button-next {
        height: 40px;
    }
}
.swiperBtnOuter .swiper-button-prev:hover::after,
.swiperBtnOuter .swiper-button-next:hover::after {
    border-color: #00286e;
}
.swiperBtnOuter .swiper-button-prev:after,
.swiperBtnOuter .swiper-button-next:after {
    border-color: #fff;
}

.btnShape {
    position: relative;
    display: inline-block;
    padding: 8px 35px;
    -webkit-transform: skewX(-15deg);
    transform: skewX(-15deg);
    letter-spacing: 2px;
    overflow: hidden;
    cursor: pointer;
    font-size: 20px;
}
@media (max-width: 767px) {
    .btnShape {
        padding: 8px 25px;
    }
}
@media (max-width: 414px) {
    .btnShape {
        padding: 4px 15px;
    }
}
@media (max-width: 384px) {
    .btnShape {
        font-size: 18px;
    }
}
@media (max-width: 320px) {
    .btnShape {
        font-size: 16px;
        padding: 4px;
    }
}
.btnShape:hover .hoverBar {
    width: 100%;
    left: 0;
}
.btnShape .btnTextOuter {
    display: flex;
    align-items: center;
}
.btnShape .btnText {
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
}
.btnShape .lineArrow {
    z-index: 10;
    -webkit-transform: skewX(15deg) rotate(-90deg);
    transform: skewX(15deg) rotate(-90deg);
    margin-left: 10px;
    font-size: 16px;
}

.defaultBtn {
    border: 1px solid #00286e;
    background-color: #fff;
}
.defaultBtn:hover .btnText,
.defaultBtn:hover .lineArrow {
    color: #fff;
}
.defaultBtn .btnText,
.defaultBtn .lineArrow {
    color: #00286e;
}
.defaultBtn .hoverBar {
    background-color: #00286e;
}

.primaryBtn {
    background-color: #00286e;
    border: 1px solid #00286e;
}
.primaryBtn:hover .btnText,
.primaryBtn:hover .lineArrow {
    color: #00286e;
}
.primaryBtn .btnText,
.primaryBtn .lineArrow {
    color: #fff;
}
.primaryBtn .hoverBar {
    background-color: #fff;
}

.secondaryBtn {
    background-color: #f38200;
    border: 1px solid #f38200;
}
.secondaryBtn:hover {
    border: 1px solid #00286e;
}
.secondaryBtn:hover .btnText,
.secondaryBtn:hover .lineArrow {
    color: #00286e;
}
.secondaryBtn .btnText,
.secondaryBtn .lineArrow {
    color: #fff;
}
.secondaryBtn .hoverBar {
    background-color: #fff;
}

.tertiaryBtn {
    background-color: #f38200;
}
.tertiaryBtn .btnText,
.tertiaryBtn .lineArrow {
    color: #fff;
}
.tertiaryBtn .hoverBar {
    background-color: #00286e;
}

.fourthBtn {
    background-color: #00286e;
}
.fourthBtn .btnText,
.fourthBtn .lineArrow {
    color: #fff;
}
.fourthBtn .hoverBar {
    background-color: #f38200;
}

.fifthBtn {
    background-color: #fff;
}
.fifthBtn:hover .btnText,
.fifthBtn:hover .lineArrow {
    color: #fff;
}
.fifthBtn .btnText,
.fifthBtn .lineArrow {
    color: #00286e;
}
.fifthBtn .hoverBar {
    background-color: #00286e;
}

.goToTop {
    position: fixed;
    right: 0;
    bottom: 42px;
    height: 186px;
    background-color: #f2f2f2;
    border-radius: 8px 0 0 8px;
    padding: 15px 15px 15px 10px;
    opacity: 0;
    z-index: -1;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .goToTop {
        background-color: transparent;
    }
}
.goToTop.active {
    opacity: 1;
    z-index: 700;
}
.goToTop li {
    margin-bottom: 22px;
}
.goToTop li:last-child {
    margin-bottom: 0;
}
.goToTop li a {
    color: #1a1311;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.goToTop li a:hover {
    color: #f38200;
}
.goToTop .facebookIcon {
    font-size: 28px;
}
@media (max-width: 767px) {
    .goToTop .facebookIcon {
        display: none;
    }
}
.goToTop .lineIcon {
    font-size: 25px;
}
@media (max-width: 767px) {
    .goToTop .lineIcon {
        display: none;
    }
}
.goToTop .emailIcon {
    font-size: 18px;
}
@media (max-width: 767px) {
    .goToTop .emailIcon {
        display: none;
    }
}

.topOuter {
    width: 30px;
    height: 22px;
    -webkit-transform: skewX(15deg) rotate(-75deg);
    transform: skewX(15deg) rotate(-75deg);
    padding: 12px 0px;
    position: absolute;
    left: 7px;
}
@media (max-width: 767px) {
    .topOuter {
        width: 40px;
        left: 0;
    }
}
.topOuter:hover .hoverBar {
    border: 2px solid #f38200;
}
.topOuter .topArrow {
    color: #fff;
    font-size: 6px;
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
    margin-left: 12px;
    margin-top: -4px;
}
@media (max-width: 767px) {
    .topOuter .topArrow {
        margin-left: 15px;
    }
}

.wrapOuter {
    padding-top: 138px;
}
@media (max-width: 1200px) {
    .wrapOuter {
        padding-top: 125px;
    }
}
@media (max-width: 767px) {
    .wrapOuter {
        padding-top: 104px;
    }
}

.pageTitle {
    height: 116px;
    background-image: url(../img/bg4.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 15px;
    font-size: 36px;
}
@media (max-width: 992px) {
    .pageTitle {
        font-size: 24px;
        background-image: url(../img/bg5.jpg);
    }
}

@media (max-width: 1500px) {
    .breadCrumbOuter,
    .productTypeOuter,
    .productionListOuter,
    .productSelectOuter,
    .productDetailOuter,
    .productInfoOuter,
    .inquiryOuter,
    .sendInquiryOuter,
    .brandInfoAllOuter,
    .contactOuter,
    .sendContactOuter,
    .planOuter,
    .newsOuter,
    .newsDetailOuter,
    .serveItemOuter,
    .aboutOuter,
    .advantagesInner,
    .policyInner,
    .promiseInner,
    .esgInner,
    .brandInfoOuter {
        padding: 0 20px;
    }
}

.breadCrumbOuter {
    margin-bottom: 40px;
    font-size: 18px;
    display: flex;
    letter-spacing: 0.65px;
}
@media (max-width: 767px) {
    .breadCrumbOuter {
        margin-bottom: 20px;
    }
}
.breadCrumbOuter li {
    position: relative;
    margin-right: 25px;
}
.breadCrumbOuter li::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 15px;
    width: 2px;
    background-color: #bcb8b8;
}
.breadCrumbOuter li:last-child::after {
    content: none;
}
.breadCrumbOuter li.active {
    color: #bcb8b8;
}
.breadCrumbOuter li:hover a,
.breadCrumbOuter li:hover .homeIcon {
    color: #f38200;
}
.breadCrumbOuter .homeOuter {
    display: flex;
    align-items: center;
    color: #444444;
}
.breadCrumbOuter .homeIcon {
    display: none;
}
@media (max-width: 900px) {
    .breadCrumbOuter .homeIcon {
        display: block;
        margin-right: 8px;
        font-size: 14px;
        transition: 0.5s;
    }
}
.breadCrumbOuter a {
    color: #444444;
    transition: 0.5s;
}

@media (max-width: 320px) {
    .breadCrumbOuter.productList {
        flex-wrap: wrap;
    }
}

@media (max-width: 900px) {
    .productType li:nth-child(2):after,
    .inquiry li:nth-child(2):after,
    .newsdDetail li:nth-child(2):after,
    .brandInfo li:nth-child(2):after {
        display: none;
    }
}

@media (max-width: 900px) {
    .productType li:nth-child(3),
    .inquiry li:nth-child(3),
    .newsdDetail li:nth-child(3),
    .brandInfo li:nth-child(3) {
        display: none;
    }
}

@media (max-width: 900px) {
    .productList li:nth-child(3):after {
        display: none;
    }
}

@media (max-width: 900px) {
    .productList li:nth-child(4) {
        display: none;
    }
}

@media (max-width: 900px) {
    .productList li:nth-child(5) {
        display: none;
    }
}

.productTypeOuter {
    padding-bottom: 120px;
}
@media (max-width: 767px) {
    .productTypeOuter {
        padding-bottom: 30px;
    }
}
.productTypeOuter .swiper-slide {
    height: 260px;
}
@media (max-width: 767px) {
    .productTypeOuter .swiper-slide {
        height: 240px;
    }
}
@media (max-width: 414px) {
    .productTypeOuter .swiper-slide {
        height: 200px;
    }
}
@media (max-width: 320px) {
    .productTypeOuter .swiper-slide {
        height: 190px;
    }
}
.productTypeOuter .swiper-slide a {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px 10px;
    font-size: 20px;
    border: 1px solid #dbd8d8;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .productTypeOuter .swiper-slide a {
        padding: 20px 10px;
    }
}
@media (max-width: 384px) {
    .productTypeOuter .swiper-slide a {
        font-size: 18px;
    }
}
@media (max-width: 360px) {
    .productTypeOuter .swiper-slide a {
        font-size: 16px;
    }
}
@media (max-width: 320px) {
    .productTypeOuter .swiper-slide a {
        font-size: 14px;
    }
}
.productTypeOuter .swiper-slide a:hover {
    border: 1px solid #f38200;
    color: #f38200;
}
.productTypeOuter .imgOuter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
}
@media (max-width: 1025px) {
    .productTypeOuter .imgOuter {
        width: 130px;
        height: 130px;
    }
}
@media (max-width: 414px) {
    .productTypeOuter .imgOuter {
        width: 90px;
        height: 90px;
    }
}
.productTypeOuter .imgOuter img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.productTypeOuter .swiperBtnOuter {
    bottom: -55px;
}
.productTypeOuter .swiperBtnOuter.active {
    display: none;
}
.productTypeOuter .hoverBar {
    background-color: #fff;
    border: 1px solid #00286e;
}

.typeSwiper.mobileList .swiper-wrapper {
    flex-wrap: wrap;
}

.typeSwiper.mobileList .swiper-slide {
    width: calc(100% / 2 - 15px) !important;
    margin-bottom: 20px;
    margin-right: 20px;
}
.typeSwiper.mobileList .swiper-slide:nth-child(2n + 2) {
    margin-right: 0 !important;
}

.productionListOuter {
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .productionListOuter {
        padding-bottom: 60px;
    }
}
.productionListOuter .header {
    border-bottom: 1px solid #dbd8d8;
    display: flex;
    align-items: center;
    padding-bottom: 10px;
}
@media (max-width: 900px) {
    .productionListOuter .header {
        flex-wrap: wrap;
    }
}
.productionListOuter .numberOuter {
    display: flex;
    align-items: center;
    letter-spacing: 0.86px;
}
@media (max-width: 900px) {
    .productionListOuter .numberOuter {
        width: 100%;
        justify-content: space-between;
        border-bottom: 1px solid #dbd8d8;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
}
.productionListOuter .numberOuter .number {
    width: 290px;
    font-size: 24px;
    color: #444444;
    font-weight: 600;
}
@media (max-width: 900px) {
    .productionListOuter .numberOuter .number {
        width: auto;
    }
}
@media (max-width: 320px) {
    .productionListOuter .numberOuter .btnShape {
        padding: 4px 10px;
    }
}
.productionListOuter .numberOuter .primaryBtn {
    display: none;
}
@media (max-width: 900px) {
    .productionListOuter .numberOuter .primaryBtn {
        display: block;
        background-color: #00286e;
        color: #fff;
    }
}
.productionListOuter .filterOuter {
    display: flex;
    align-items: baseline;
    overflow: hidden;
    white-space: nowrap;
    max-width: 1110px;
    transition: max-width 0.5s;
}
@media (max-width: 900px) {
    .productionListOuter .filterOuter {
        flex-wrap: wrap;
    }
}
.productionListOuter .filterOuter.active {
    max-width: 0;
}
.productionListOuter .filterOuter.active .tag {
    flex-wrap: nowrap;
}
.productionListOuter .filterText {
    width: 132px;
    font-size: 18px;
    color: #444444;
    font-weight: 600;
}
@media (max-width: 900px) {
    .productionListOuter .filterText {
        margin-bottom: 10px;
    }
}
.productionListOuter .tag {
    display: flex;
    flex-wrap: wrap;
}
.productionListOuter .tag li {
    display: flex;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #dbd8d8;
    padding: 5px 10px;
    background-color: #fafafa;
    max-width: 1110px;
    transition: max-width 0.5s, padding 0.5s;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.5s;
    cursor: pointer;
}
.productionListOuter .tag li:hover {
    border-color: #f38200;
}
.productionListOuter .tag li:hover .text {
    color: #f38200;
}
.productionListOuter .tag li.active {
    max-width: 0;
    padding: 2px 0;
}
.productionListOuter .tag .text {
    margin-right: 5px;
    color: #444444;
    transition: 0.5s;
}
@media (max-width: 900px) {
    .productionListOuter .tag .text {
        white-space: normal;
    }
    .productionListOuter .tag .text.active {
        white-space: nowrap;
    }
}
.productionListOuter .filterDelBtn,
.productionListOuter .delAllBtn {
    text-align: center;
    cursor: pointer;
    color: #f38200;
    text-align: center;
}
.productionListOuter .filterDelBtn {
    width: 22px;
    font-size: 14px;
}
.productionListOuter .delAllBtn {
    width: 42px;
    font-size: 18px;
    text-decoration: underline;
    transition: 0.5s;
}
.productionListOuter .delAllBtn:hover {
    color: #003ce6;
}
.productionListOuter .innerContent {
    display: flex;
}
.productionListOuter .conditionList {
    padding-top: 20px;
    width: 290px;
    letter-spacing: 0.72px;
}
@media (max-width: 900px) {
    .productionListOuter .conditionList {
        padding-top: 0;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        opacity: 0;
        z-index: -99;
        transition: 0.2s;
    }
    .productionListOuter .conditionList.active {
        z-index: 9999;
        opacity: 1;
        background-color: #fff;
    }
}
.productionListOuter .mobileHead {
    display: none;
}
@media (max-width: 900px) {
    .productionListOuter .mobileHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #00286e;
        color: #fff;
        padding: 10px 20px;
    }
}
.productionListOuter .mobileHead .title {
    font-size: 24px;
    letter-spacing: 1px;
}
.productionListOuter .mobileHead .deleteIcon {
    font-size: 35px;
    cursor: pointer;
}
@media (max-width: 900px) {
    .productionListOuter .moblieOuter {
        padding: 20px;
        height: calc(100% - 56px);
        overflow-y: auto;
    }
}
.productionListOuter .mobileBtnOuter {
    display: none;
}
@media (max-width: 900px) {
    .productionListOuter .mobileBtnOuter {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.productionListOuter .mobileBtnOuter .btnTextOuter {
    justify-content: center;
}
.productionListOuter .clearBtn,
.productionListOuter .resultBtn {
    width: 176px;
    text-align: center;
}
@media (max-width: 767px) {
    .productionListOuter .clearBtn,
    .productionListOuter .resultBtn {
        width: 140px;
    }
}
.productionListOuter .clearBtn {
    margin-right: 40px;
}
.productionListOuter .typeSection {
    border-bottom: 1px solid #dbd8d8;
}
.productionListOuter .productTypeTitle,
.productionListOuter .brandTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}
.productionListOuter .typeOuter {
    font-size: 20px;
}
.productionListOuter .typeOuter > li.active {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.productionListOuter .typeOuter > li.active.active .tipArrow,
.productionListOuter .typeOuter > li.active.active a {
    color: #003ce6;
}
.productionListOuter .typeOuter > li.active:hover .tipArrow,
.productionListOuter .typeOuter > li.active:hover a {
    color: #f38200;
}
.productionListOuter a {
    transition: 0.5s;
}
.productionListOuter .tipArrow {
    margin-right: 10px;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    font-size: 12px;
    transition: 0.5s;
}
.productionListOuter .typeTitle {
    padding-left: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}
.productionListOuter .typeList {
    padding-left: 40px;
    letter-spacing: 0.65px;
}
.productionListOuter .typeList li {
    margin-bottom: 24px;
    padding-right: 10px;
}
.productionListOuter .typeList a {
    text-decoration: underline;
    transition: 0.5s;
}
.productionListOuter .typeList a:hover {
    color: #f38200;
}
.productionListOuter .brandSection {
    padding-top: 20px;
}
@media (max-width: 900px) {
    .productionListOuter .brandSection {
        margin-bottom: 40px;
    }
}
.productionListOuter .brandList li {
    margin-bottom: 24px;
}
.productionListOuter .brandList li:last-child {
    margin-bottom: 0;
}
.productionListOuter .brandList a {
    text-decoration: underline;
    font-size: 20px;
    transition: 0.5s;
}
.productionListOuter .brandList a:hover {
    color: #f38200;
}
.productionListOuter .listOuter {
    width: calc(100% - 290px);
}
@media (max-width: 900px) {
    .productionListOuter .listOuter {
        width: 100%;
    }
}
.productionListOuter .list {
    display: flex;
    flex-wrap: wrap;
}
.productionListOuter .list li {
    width: calc(100% / 3);
    border: 1px solid #dbd8d8;
    border-right: none;
    border-top: none;
    height: auto;
    padding: 50px 20px;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}
@media (max-width: 1300px) {
    .productionListOuter .list li {
        padding: 40px 20px;
    }
}
@media (max-width: 1200px) {
    .productionListOuter .list li {
        padding: 20px;
    }
}
@media (max-width: 900px) {
    .productionListOuter .list li {
        width: calc(100% / 2);
    }
}
.productionListOuter .list li:nth-child(3n) {
    border-right: none;
}
.productionListOuter .list li:nth-child(3n + 1):last-child {
    border-right: 1px solid #dbd8d8;
}
@media (max-width: 900px) {
    .productionListOuter .list li:nth-child(2n + 1) {
        border-left: none;
    }
}
@media (max-width: 900px) {
    .productionListOuter .list li:last-child {
        border-right: 1px solid #dbd8d8;
    }
}
@media (max-width: 900px) {
    .productionListOuter .list li:nth-child(2n + 2):last-child {
        border-right: none;
    }
}
/* 顯示更多先隱藏 */
/* .productionListOuter .list li:nth-child(n + 13) {
    opacity: 0;
    max-height: 0;
} */
.productionListOuter .list li.show {
    opacity: 1;
    max-height: 380px;
}
@media (max-width: 1300px) {
    .productionListOuter .list li.show {
        max-height: 400px;
    }
}
@media (max-width: 1200px) {
    .productionListOuter .list li.show {
        max-height: 500px;
    }
}
@media (max-width: 320px) {
    .productionListOuter .list li.show {
        max-height: 550px;
    }
}
.productionListOuter .list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    text-decoration: underline;
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
    transition: 0.5s;
}
.productionListOuter .list li:hover a {
    color: #f38200;
    -webkit-text-decoration-color: #f38200;
    text-decoration-color: #f38200;
}
.productionListOuter .list li .imgOuter {
    width: 160px;
    height: 160px;
    margin-bottom: 20px;
}
@media (max-width: 900px) {
    .productionListOuter .list li .imgOuter {
        width: 130px;
        height: 130px;
    }
}
@media (max-width: 767px) {
    .productionListOuter .list li .imgOuter {
        width: 80px;
        height: 80px;
    }
}
.productionListOuter .list li .imgOuter img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.productionListOuter .list li .text {
    font-size: 20px;
    max-width: 100%;
    word-break: break-all;
}
.productionListOuter .listMoreBtn {
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.productionListOuter .lineArrow {
    -webkit-transform: skewX(15deg) rotate(0deg);
    transform: skewX(15deg) rotate(0deg);
}

.productDetail {
    display: none;
}
@media (max-width: 900px) {
    .productDetail {
        display: flex;
        margin-top: 15px;
    }
}

.productSelectOuter {
    margin-top: 42px;
    display: flex;
    margin-bottom: 100px;
}
@media (max-width: 1200px) {
    .productSelectOuter {
        flex-wrap: wrap;
    }
}
@media (max-width: 767px) {
    .productSelectOuter {
        margin-top: 34px;
        margin-bottom: 70px;
    }
}
.productSelectOuter .productTitle {
    font-size: 36px;
    color: #00286e;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
    word-break: break-all;
}
@media (max-width: 767px) {
    .productSelectOuter .productTitle {
        font-size: 28px;
    }
}
.productSelectOuter .smallText {
    margin-bottom: 20px;
    letter-spacing: 0.58px;
}

.lightbox {
    width: 595px;
    margin-right: 52px;
}
@media (max-width: 1350px) {
    .lightbox {
        margin-right: 20px;
    }
}
@media (max-width: 1200px) {
    .lightbox {
        width: 100%;
        margin-bottom: 40px;
        margin-right: 0;
    }
}
.lightbox .mainPicOuter {
    border: 1px solid #dbd8d8;
    margin-bottom: 20px;
}
@media (max-width: 1200px) {
    .lightbox .mainPicOuter {
        max-width: 800px;
        margin: 0 auto 20px auto;
    }
}
.lightbox .mainPic {
    position: relative;
    height: 600px;
}
@media (max-width: 414px) {
    .lightbox .mainPic {
        height: 360px;
    }
}
@media (max-width: 320px) {
    .lightbox .mainPic {
        height: 260px;
    }
}
.lightbox .mainPic:hover .zoom {
    opacity: 1;
    z-index: 10;
}
.lightbox .mainPic img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lightbox .mainPic .zoom {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
.lightbox .mainPic .zoomIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 70px;
}
.lightbox .lightboxText {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
    color: #444444;
    font-size: 18px;
    letter-spacing: 0.65px;
}
.lightbox .arrowBtn {
    position: absolute;
    width: 100%;
    top: 24px;
}
.lightbox .swiper-button-prev {
    left: -10px;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}
@media (max-width: 320px) {
    .lightbox .swiper-button-prev {
        left: -30px;
    }
}
.lightbox .swiper-button-next {
    right: 30px;
    -webkit-transform: skewX(0deg);
    transform: skewX(0deg);
}
@media (max-width: 320px) {
    .lightbox .swiper-button-next {
        right: 10px;
    }
}
.lightbox .swiper-button-prev,
.lightbox .swiper-button-next {
    position: absolute;
    width: 80px;
    height: 54px;
}
.lightbox .swiper-button-prev::after {
    -webkit-transform: translateY(0%) rotate(-180deg);
    transform: translateY(0%) rotate(-180deg);
    background-image: url(../img/arrow-icon.svg);
    width: 80px;
}
.lightbox .swiper-button-next::after {
    -webkit-transform: translateY(0%) rotate(0deg);
    transform: translateY(0%) rotate(0deg);
    background-image: url(../img/arrow-icon.svg);
    background-position: right;
    width: 80px;
}
.lightbox .swiper-button-next:after,
.lightbox .swiper-button-prev:after {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    height: 12px;
    border-style: none;
}
.lightbox .lightboxSwiper {
    height: 100px;
}
@media (max-width: 1200px) {
    .lightbox .lightboxSwiper {
        max-width: 800px;
    }
}
.lightbox .lightboxSwiper img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.lightbox .swiper-slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #dbd8d8;
    cursor: pointer;
    transition: 0.5s;
}
.lightbox .swiper-slide:hover {
    border: 2px solid #f38200;
}
.lightbox .swiper-slide.active {
    border: 2px solid #f38200;
}

.fancybox__backdrop {
    background-color: #1a131180;
    opacity: 0.9;
}

.f-button[title="關閉"] {
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #fff;
    right: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    transition: 0.5s;
}
.f-button[title="關閉"]:hover {
    background-color: #f38200;
    border-color: #f38200;
}

.f-button svg {
    width: 15px;
}

.f-button.is-prev {
    background-image: url(../img/arrow-icon-lightbox.svg);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
}
.f-button.is-prev:hover {
    background-color: transparent;
    background-image: url(../img/arrow-icon-lightbox-color.svg);
}
.f-button.is-prev svg {
    display: none;
}

.f-button.is-next {
    background-image: url(../img/arrow-icon-lightbox.svg);
    background-position: right center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 60px;
}
.f-button.is-next:hover {
    background-color: transparent;
    background-image: url(../img/arrow-icon-lightbox-color.svg);
}
.f-button.is-next svg {
    display: none;
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
    border-color: #f38200;
}

.is-horizontal .fancybox__nav .f-button.is-prev {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    top: 48%;
}

.selectOuter {
    width: calc(100% - 647px);
    font-size: 20px;
    letter-spacing: 0.72px;
}
@media (max-width: 1350px) {
    .selectOuter {
        width: calc(100% - 615px);
    }
}
@media (max-width: 1200px) {
    .selectOuter {
        width: 100%;
    }
}
.selectOuter .summaryHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.selectOuter .summaryHead .summaryTitle {
    font-weight: 600;
    font-size: 20px;
}
.selectOuter .summaryHead .productLogo {
    display: flex;
    align-items: center;
}
.selectOuter .summaryHead .productLogo li {
    margin-right: 20px;
    transition: 0.5s;
}
.selectOuter .summaryHead .productLogo li:hover {
    opacity: 0.6;
}
.selectOuter .summaryHead .productLogo li:last-child {
    margin-right: 0;
}
.selectOuter .summaryHead .productLogo img {
    height: 42px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 414px) {
    .selectOuter .summaryHead .productLogo img {
        height: 35px;
    }
}
.selectOuter .summaryContent {
    margin-bottom: 40px;
    word-break: break-all;
}
.selectOuter .summaryContent p {
    margin-bottom: 20px;
}
.selectOuter .summaryContent p:last-child {
    margin-bottom: 0;
}
.selectOuter .selectsOuter {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.selectOuter .selectsOuter > li {
    width: calc(100% / 2 - 14px);
    margin-right: 27px;
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    color: #666666;
}
@media (max-width: 767px) {
    .selectOuter .selectsOuter > li {
        width: 100%;
        margin-right: 0;
    }
}
.selectOuter .selectsOuter > li:nth-child(2n + 2) {
    margin-right: 0;
}
.selectOuter .selectsOuter .selectTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #666666;
    padding: 10px 20px;
    cursor: pointer;
}
.selectOuter .selectsOuter .lineArrow {
    font-size: 16px;
    color: #666666;
}
.selectOuter .selectsOuter .options {
    background-color: #666666;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    z-index: 20;
    display: none;
}
.selectOuter .selectsOuter .options li {
    transition: 0.5s;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}
.selectOuter .selectsOuter .options li:hover {
    background-color: #4f8fd5;
}
.selectOuter .btnsOuter {
    margin-bottom: 50px;
}
@media (max-width: 1300px) {
    .selectOuter .btnsOuter {
        width: 500px;
        margin: 0 auto 50px auto;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .selectOuter .btnsOuter {
        width: 400px;
    }
}
@media (max-width: 414px) {
    .selectOuter .btnsOuter {
        width: 100%;
    }
}
.selectOuter .defaultBtn,
.selectOuter .addSelect {
    margin-right: 20px;
}
@media (max-width: 1300px) {
    .selectOuter .defaultBtn,
    .selectOuter .addSelect {
        margin-right: 20px;
        margin-bottom: 16px;
    }
}
@media (max-width: 1300px) {
    .selectOuter .addSelect {
        margin-right: 0;
    }
}
.selectOuter .shoppingOnlineTitle {
    font-weight: 600;
    margin-bottom: 20px;
}
.selectOuter .shopList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.selectOuter .shopList li {
    margin-right: 50px;
    transition: 0.5s;
}
.selectOuter .shopList li:hover {
    opacity: 0.6;
}
.selectOuter .shopList li:last-child {
    margin-right: 0;
}
.selectOuter .shopList img {
    width: 84px;
    height: 84px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 767px) {
    .selectOuter .shopList img {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 320px) {
    .selectOuter .shopList img {
        width: 50px;
        height: 50px;
    }
}

.productDetailOuter {
    display: none;
}
.productDetailOuter.active {
    display: block;
    font-size: 20px;
    margin-bottom: 100px;
}
@media (max-width: 767px) {
    .productDetailOuter.active {
        margin-bottom: 70px;
    }
}

table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover {
    outline: none;
}

table.dataTable thead > tr > th.dt-orderable-asc span.dt-column-order:before {
    bottom: 80%;
}

table.dataTable thead > tr > th.dt-orderable-desc span.dt-column-order:after {
    top: 25%;
}

table.dataTable thead > tr > th.dt-orderable-asc,
table.dataTable thead > tr > th.dt-orderable-desc {
    padding-right: 14px;
}

div.dt-container.dt-empty-footer tbody > tr {
    border-bottom: 1px solid #dbd8d8;
}

div.dt-container.dt-empty-footer tbody > tr:last-child {
    border-bottom: none;
}

div.dt-container.dt-empty-footer tbody > tr:last-child > * {
    border-bottom: none;
}

table.dataTable thead th,
table.dataTable tfoot th {
    font-weight: normal;
}

table.dataTable > thead > tr > th,
table.dataTable > thead > tr > td {
    border-color: #dbd8d8;
}

table.dataTable > tbody > tr > td {
    padding: 20px 10px;
}

.pcTable {
    position: relative;
    letter-spacing: 0.72px;
}
@media (max-width: 1200px) {
    .pcTable {
        display: none;
    }
}
.pcTable .headerContent {
    margin-bottom: 20px;
}
.pcTable .tableTitle .headerContent {
    position: relative;
    top: -18px;
    width: 110px;
    text-align: center;
}
.pcTable .tableTitle .nameID {
    width: 140px;
}
.pcTable tbody tr:nth-child(even) {
    background-color: #fafafa;
}
.pcTable th,
.pcTable td {
    border-right: 1px solid #dbd8d8;
}
.pcTable th:last-child,
.pcTable td:last-child {
    border-right: none;
}
.pcTable .addCartBtn {
    margin-left: 25px;
    padding: 4px 20px;
}

.pcTable .productNameId,
.mobileTable .productNameId {
    display: flex;
}

.pcTable .content,
.mobileTable .content {
    word-break: break-all;
}

.pcTable .img,
.mobileTable .img {
    width: 66px;
    height: 66px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 20px;
    border: 1px solid #dbd8d8;
}

.pcTable .name,
.mobileTable .name {
    text-decoration: underline;
    margin-bottom: 10px;
}

.pcTable .id,
.mobileTable .id {
    font-size: 16px;
}

.pcTable .selectTitle,
.mobileTable .selectTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666666;
    border: 1px solid #666666;
    padding: 5px 10px;
}

.pcTable .lineArrow,
.mobileTable .lineArrow {
    font-size: 14px;
}

.pcTable .select,
.mobileTable .select {
    position: relative;
}

.pcTable .options,
.mobileTable .options {
    position: absolute;
    width: 100%;
    background-color: #666666;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    display: none;
    z-index: 20;
}
.pcTable .options li,
.mobileTable .options li {
    transition: 0.5s;
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}
.pcTable .options li:hover,
.mobileTable .options li:hover {
    background-color: #4f8fd5;
}

.pcTable .greyColor,
.mobileTable .greyColor {
    color: #666666;
}

.mobileTable {
    display: none;
}
@media (max-width: 1200px) {
    .mobileTable {
        display: block;
    }
}
.mobileTable > li {
    border: 1px solid #dbd8d8;
    margin-bottom: 30px;
    padding: 10px;
}
.mobileTable > li:last-child {
    margin-bottom: 0;
}
.mobileTable .productNameId,
.mobileTable .table {
    margin-bottom: 20px;
}
.mobileTable .headerContent {
    margin-bottom: 10px;
}
.mobileTable td {
    width: 50%;
    border-right: 1px solid #dbd8d8;
    vertical-align: middle;
}
.mobileTable td:nth-child(2n + 1) {
    padding-left: 0;
}
@media (max-width: 414px) {
    .mobileTable td:nth-child(2n + 1) {
        width: 60%;
    }
}
@media (max-width: 384px) {
    .mobileTable td:nth-child(2n + 1) {
        width: 65%;
    }
}
.mobileTable td:nth-child(2n + 2) {
    border-right: none;
    padding-left: 20px;
}
@media (max-width: 414px) {
    .mobileTable td:nth-child(2n + 2) {
        padding-left: 10px;
    }
}
.mobileTable .selectTitle {
    margin-bottom: 10px;
}
.mobileTable .options {
    top: 42px;
}
.mobileTable .addCartBtnOuter {
    display: flex;
    align-items: center;
    padding: 10px 0 20px 10px;
}
.mobileTable .addBtn {
    margin-right: 40px;
}
.mobileTable .addCartBtn {
    padding: 4px 20px;
}

.modalCloseBtn {
    display: none;
}
.modalCloseBtn.active {
    display: block;
    z-index: 9999;
    position: fixed;
    right: 20px;
    top: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    width: 25px;
    height: 25px;
    transition: 0.5s;
}
@media (max-width: 320px) {
    .modalCloseBtn.active {
        border: 1px solid #1a1311;
        background-color: #1a1311;
    }
}
.modalCloseBtn:hover {
    background-color: #f38200;
    border-color: #f38200;
}

.addCartModal .modal-body {
    padding: 40px;
}

.addCartModal .modalTitle {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.addCartModal .num {
    color: #f38200;
    margin: 0 5px;
}

.addCartModal .text {
    font-size: 20px;
    letter-spacing: 0.72px;
    text-align: center;
    border-bottom: 1px solid #1a1311;
    padding-bottom: 10px;
}

.addCartModal .cartList {
    margin-bottom: 60px;
}
.addCartModal .cartList li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dbd8d8;
    padding: 20px 0;
}
.addCartModal .cartList img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 20px;
}
.addCartModal .cartList a {
    font-size: 20px;
    word-break: break-all;
    transition: 0.5s;
}

.addCartModal .delBtn {
    font-size: 25px;
    color: #dbd8d8;
    cursor: pointer;
    transition: 0.5s;
}
.addCartModal .delBtn:hover {
    color: #f38200;
}

.addCartModal .content {
    display: flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}
.addCartModal .content:hover a {
    color: #f38200;
}

.addCartModal .gotoCart {
    display: flex;
    justify-content: center;
}

.productInfoOuter {
    font-size: 20px;
    padding-bottom: 70px;
    letter-spacing: 0.72px;
}
@media (max-width: 767px) {
    .productInfoOuter {
        padding-bottom: 40px;
    }
}
.productInfoOuter .feature,
.productInfoOuter .format {
    margin-bottom: 100px;
}
@media (max-width: 767px) {
    .productInfoOuter .feature,
    .productInfoOuter .format {
        margin-bottom: 70px;
    }
}
.productInfoOuter .headTitleOuter {
    justify-content: flex-start;
    margin-bottom: 30px;
}
.productInfoOuter .featureList li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}
.productInfoOuter .featureList li:last-child {
    margin-bottom: 0;
}
.productInfoOuter .featureList li:before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
}

.formatDetail {
    display: flex;
    flex-wrap: wrap;
}
.formatDetail li {
    width: calc(100% - 24%);
    border-top: 1px solid #dbd8d8;
    padding: 10px 20px;
    word-break: break-all;
}
@media (max-width: 1025px) {
    .formatDetail li {
        width: calc(100% - 28%);
    }
}
@media (max-width: 992px) {
    .formatDetail li {
        width: calc(100% - 35%);
    }
}
.formatDetail li:last-child,
.formatDetail li:nth-last-child(2) {
    border-bottom: 1px solid #dbd8d8;
}
@media (max-width: 767px) {
    .formatDetail li:nth-last-child(2) {
        border-bottom: none;
    }
}
.formatDetail li:nth-child(2n + 2) {
    border-left: 1px solid #dbd8d8;
}
@media (max-width: 767px) {
    .formatDetail li:nth-child(2n + 2) {
        border-left: none;
        border-top: none;
        padding-top: 0;
    }
}
@media (max-width: 767px) {
    .formatDetail li {
        width: 100%;
    }
}
.formatDetail .formatTitle {
    width: 24%;
}
@media (max-width: 1025px) {
    .formatDetail .formatTitle {
        width: 28%;
    }
}
@media (max-width: 992px) {
    .formatDetail .formatTitle {
        width: 35%;
    }
}
@media (max-width: 767px) {
    .formatDetail .formatTitle {
        width: 100%;
    }
}

.infoList {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.infoList li {
    margin-right: 50px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .infoList li {
        margin-right: 20px;
        width: calc(100% / 3 - 14px);
    }
    .infoList li:nth-child(3n + 3) {
        margin-right: 0;
    }
}
@media (max-width: 767px) and (max-width: 393px) {
    .infoList li:nth-child(3n + 3) {
        margin-right: 20px;
    }
}
@media (max-width: 393px) {
    .infoList li {
        width: calc(100% / 2 - 10px);
    }
    .infoList li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
.infoList li:hover .zoom {
    opacity: 1;
    z-index: 10;
}
.infoList .imgOuter {
    margin-bottom: 14px;
    width: 120px;
    height: 160px;
    position: relative;
    margin: 0 auto 14px auto;
}
.infoList img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.infoList .zoom {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}
.infoList .zoomIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 30px;
}
.infoList .text {
    text-align: center;
}

.inquiryOuter {
    font-size: 20px;
    letter-spacing: 0.72px;
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .inquiryOuter {
        padding-bottom: 60px;
    }
}
.inquiryOuter .totalText {
    margin-bottom: 15px;
}
.inquiryOuter .num {
    color: #f38200;
    margin: 0 5px;
}
.inquiryOuter .inquiryItemOuter {
    margin-bottom: 50px;
}
.inquiryOuter .head {
    display: flex;
    background-color: #31538e;
    color: #fff;
    font-weight: 600;
    padding: 10px 0;
}
.inquiryOuter .itemText {
    width: 85%;
    text-align: center;
}
@media (max-width: 1300px) {
    .inquiryOuter .itemText {
        width: 82%;
    }
}
@media (max-width: 1200px) {
    .inquiryOuter .itemText {
        width: 80%;
    }
}
@media (max-width: 1025px) {
    .inquiryOuter .itemText {
        width: 78%;
    }
}
@media (max-width: 992px) {
    .inquiryOuter .itemText {
        width: 72%;
    }
}
@media (max-width: 767px) {
    .inquiryOuter .itemText {
        width: 68%;
    }
}
@media (max-width: 360px) {
    .inquiryOuter .itemText {
        width: 65%;
    }
}
.inquiryOuter .numText {
    margin-left: 3%;
}
@media (max-width: 1300px) {
    .inquiryOuter .numText {
        margin-left: 4%;
    }
}
@media (max-width: 1200px) {
    .inquiryOuter .numText {
        margin-left: 5%;
    }
}
@media (max-width: 1025px) {
    .inquiryOuter .numText {
        margin-left: 6%;
    }
}
.inquiryOuter .inquiryItems li {
    display: flex;
    border-bottom: 1px solid #dbd8d8;
}
.inquiryOuter .item {
    padding: 20px;
    width: 85%;
    display: flex;
    align-items: center;
    border-right: 1px solid #dbd8d8;
}
@media (max-width: 1300px) {
    .inquiryOuter .item {
        width: 82%;
    }
}
@media (max-width: 1200px) {
    .inquiryOuter .item {
        width: 80%;
    }
}
@media (max-width: 1025px) {
    .inquiryOuter .item {
        width: 78%;
    }
}
@media (max-width: 992px) {
    .inquiryOuter .item {
        width: 72%;
    }
}
@media (max-width: 767px) {
    .inquiryOuter .item {
        padding: 10px;
        width: 68%;
    }
}
@media (max-width: 360px) {
    .inquiryOuter .item {
        width: 65%;
    }
}
.inquiryOuter .item:hover .text {
    color: #f38200;
}
.inquiryOuter .img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .inquiryOuter .img {
        margin-right: 10px;
    }
}
@media (max-width: 360px) {
    .inquiryOuter .img {
        width: 50px;
        height: 50px;
    }
}
.inquiryOuter .text {
    word-break: break-all;
    transition: 0.5s;
}
.inquiryOuter .operateOuter {
    width: calc(100% - 85%);
    display: flex;
}
@media (max-width: 1300px) {
    .inquiryOuter .operateOuter {
        width: calc(100% - 82%);
    }
}
@media (max-width: 1200px) {
    .inquiryOuter .operateOuter {
        width: calc(100% - 80%);
    }
}
@media (max-width: 1025px) {
    .inquiryOuter .operateOuter {
        width: calc(100% - 78%);
    }
}
@media (max-width: 992px) {
    .inquiryOuter .operateOuter {
        width: calc(100% - 72%);
    }
}
@media (max-width: 767px) {
    .inquiryOuter .operateOuter {
        width: calc(100% - 68%);
    }
}
@media (max-width: 360px) {
    .inquiryOuter .operateOuter {
        width: calc(100% - 65%);
    }
}
.inquiryOuter .inputOuter {
    padding: 20px;
    display: flex;
    align-items: center;
    flex: 1;
}
@media (max-width: 767px) {
    .inquiryOuter .inputOuter {
        padding: 10px;
    }
}
.inquiryOuter .inputOuter input {
    background-color: #fff;
    border: 1px solid #dbd8d8;
    text-align: center;
}
.inquiryOuter .itemDelBtnOuter {
    display: flex;
    align-items: center;
    padding: 20px;
}
@media (max-width: 767px) {
    .inquiryOuter .itemDelBtnOuter {
        padding: 10px;
    }
}
.inquiryOuter .itemDelBtnOuter:hover .itemDelBtn {
    color: #f38200;
}
.inquiryOuter .itemDelBtnOuter .itemDelBtn {
    transition: 0.5s;
    color: #dbd8d8;
    font-size: 24px;
    cursor: pointer;
}

.inquiryForm label,
.contactForm label {
    margin-bottom: 10px;
}

.inquiryForm span,
.contactForm span {
    color: #f38200;
    margin-left: 5px;
}

.inquiryForm .col-md-6,
.inquiryForm .col-md-12,
.contactForm .col-md-6,
.contactForm .col-md-12 {
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .inquiryForm .col-md-6,
    .inquiryForm .col-md-12,
    .contactForm .col-md-6,
    .contactForm .col-md-12 {
        margin-bottom: 20px;
    }
}

.inquiryForm .form-control,
.contactForm .form-control {
    padding: 0 20px;
    height: 50px;
}

.inquiryForm .describe,
.contactForm .describe {
    height: 160px;
    padding: 20px;
}
@media (max-width: 767px) {
    .inquiryForm .describe,
    .contactForm .describe {
        margin-bottom: 10px;
    }
}

.sendOuter {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 992px) {
    .sendOuter {
        flex-wrap: wrap;
    }
}
.sendOuter button {
    border: none;
}
.sendOuter button:disabled {
    background-color: #7f93b6;
    cursor: not-allowed;
}
.sendOuter button:disabled .hoverBar {
    border: none;
    background-color: #7f93b6;
    border: 1px solid #7f93b6;
}
.sendOuter button:disabled .btnText {
    color: #fff;
}
.sendOuter .hoverBar {
    border: 1px solid #00286e;
}
.sendOuter .reCAPTCHA {
    margin-right: 56px;
}
@media (max-width: 992px) {
    .sendOuter .reCAPTCHA {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 40px;
    }
}

.sendInquiryOuter,
.sendContactOuter {
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .sendInquiryOuter,
    .sendContactOuter {
        padding-bottom: 60px;
    }
}

.thankText {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 80px;
    letter-spacing: 0.86px;
}
@media (max-width: 767px) {
    .thankText {
        width: 380px;
        margin: 0 auto;
        margin-bottom: 60px;
        align-items: flex-start;
        text-align: center;
    }
}
@media (max-width: 414px) {
    .thankText {
        width: 322px;
    }
}
@media (max-width: 320px) {
    .thankText {
        width: 100%;
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .thankText .text {
        font-size: 24px;
    }
}
@media (max-width: 320px) {
    .thankText .text {
        font-size: 18px;
    }
}

.successIcon {
    margin-right: 20px;
    margin-top: 5px;
}
@media (max-width: 767px) {
    .successIcon {
        margin-right: 10px;
    }
}

.sendInquiryBtn,
.sendContactBtn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.sendInquiryBtn .btnShape,
.sendContactBtn .btnShape {
    width: 200px;
}
@media (max-width: 414px) {
    .sendInquiryBtn .btnShape,
    .sendContactBtn .btnShape {
        width: 160px;
    }
}
@media (max-width: 320px) {
    .sendInquiryBtn .btnShape,
    .sendContactBtn .btnShape {
        width: 120px;
    }
}
.sendInquiryBtn .btnTextOuter,
.sendContactBtn .btnTextOuter {
    justify-content: center;
}
.sendInquiryBtn .defaultBtn,
.sendContactBtn .defaultBtn {
    margin-right: 20px;
}

@media (max-width: 900px) {
    .brandAll li:nth-child(1):after,
    .contact li:nth-child(1):after,
    .plan li:nth-child(1):after,
    .news li:nth-child(1):after,
    .serveItem li:nth-child(1):after,
    .about li:nth-child(1):after {
        display: none;
    }
}

@media (max-width: 900px) {
    .brandAll li:nth-child(2),
    .contact li:nth-child(2),
    .plan li:nth-child(2),
    .news li:nth-child(2),
    .serveItem li:nth-child(2),
    .about li:nth-child(2) {
        display: none;
    }
}

.brandInfoAllOuter .brandInfo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.brandInfoAllOuter .brandInfo li {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: calc(100% / 6 - 84px);
    margin-right: 100px;
    margin-bottom: 100px;
    transition: 0.5s;
}
@media (max-width: 1420px) {
    .brandInfoAllOuter .brandInfo li {
        width: calc(100% / 5 - 80px);
    }
}
@media (max-width: 1200px) {
    .brandInfoAllOuter .brandInfo li {
        width: calc(100% / 4 - 75px);
    }
}
@media (max-width: 992px) {
    .brandInfoAllOuter .brandInfo li {
        width: calc(100% / 3 - 67px);
        margin-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .brandInfoAllOuter .brandInfo li {
        width: calc(100% / 2 - 15px);
        margin-right: 30px;
    }
}
.brandInfoAllOuter .brandInfo li:nth-child(6n + 6) {
    margin-right: 0;
}
@media (max-width: 1420px) {
    .brandInfoAllOuter .brandInfo li:nth-child(6n + 6) {
        margin-right: 100px;
    }
}
@media (max-width: 767px) {
    .brandInfoAllOuter .brandInfo li:nth-child(6n + 6) {
        margin-right: 30px;
    }
}
@media (max-width: 1420px) {
    .brandInfoAllOuter .brandInfo li:nth-child(5n + 5) {
        margin-right: 0;
    }
}
@media (max-width: 1200px) {
    .brandInfoAllOuter .brandInfo li:nth-child(5n + 5) {
        margin-right: 100px;
    }
}
@media (max-width: 767px) {
    .brandInfoAllOuter .brandInfo li:nth-child(5n + 5) {
        margin-right: 30px;
    }
}
@media (max-width: 1200px) {
    .brandInfoAllOuter .brandInfo li:nth-child(4n + 4) {
        margin-right: 0;
    }
}
@media (max-width: 992px) {
    .brandInfoAllOuter .brandInfo li:nth-child(4n + 4) {
        margin-right: 100px;
    }
}
@media (max-width: 767px) {
    .brandInfoAllOuter .brandInfo li:nth-child(4n + 4) {
        margin-right: 30px;
    }
}
@media (max-width: 992px) {
    .brandInfoAllOuter .brandInfo li:nth-child(3n + 3) {
        margin-right: 0;
    }
}
@media (max-width: 767px) {
    .brandInfoAllOuter .brandInfo li:nth-child(3n + 3) {
        margin-right: 30px;
    }
}
@media (max-width: 767px) {
    .brandInfoAllOuter .brandInfo li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
.brandInfoAllOuter .brandInfo li:hover {
    opacity: 0.6;
}
.brandInfoAllOuter .brandInfo img {
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}
@media (max-width: 1025px) {
    .brandInfoAllOuter .brandInfo img {
        width: 150px;
    }
}

.contactOuter {
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .contactOuter {
        padding-bottom: 60px;
    }
}
.contactOuter .contactList {
    margin-bottom: 50px;
}
@media (max-width: 992px) {
    .contactOuter .contactList {
        margin-bottom: 60px;
    }
}
.contactOuter .contactList li {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}
@media (max-width: 992px) {
    .contactOuter .contactList li {
        flex-wrap: wrap;
        margin-bottom: 60px;
    }
}
.contactOuter .contactList li:last-child {
    margin-bottom: 0;
}
.contactOuter .map {
    margin-right: 52px;
    width: 711px;
    height: 377px;
}
@media (max-width: 1300px) {
    .contactOuter .map {
        width: 52%;
    }
}
@media (max-width: 1200px) {
    .contactOuter .map {
        width: 54%;
    }
}
@media (max-width: 992px) {
    .contactOuter .map {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
        height: 300px;
    }
}
@media (max-width: 767px) {
    .contactOuter .map {
        height: 210px;
    }
}
.contactOuter .infoContent {
    width: calc(100% - 763px);
}
@media (max-width: 1300px) {
    .contactOuter .infoContent {
        width: 48%;
    }
}
@media (max-width: 1200px) {
    .contactOuter .infoContent {
        width: 46%;
    }
}
@media (max-width: 992px) {
    .contactOuter .infoContent {
        width: 100%;
    }
}
.contactOuter .companyName {
    font-size: 22px;
    letter-spacing: 0.79px;
    line-height: 30px;
    margin-bottom: 24px;
}
.contactOuter .factoryName {
    font-weight: 600;
    color: #00286e;
    margin-bottom: 10px;
    font-size: 20px;
    letter-spacing: 0.72px;
}
.contactOuter .factoryInfo {
    letter-spacing: 0.72px;
    font-size: 20px;
}
.contactOuter .factoryInfo li {
    margin-bottom: 10px;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.contactOuter .factoryInfo li:last-child {
    margin-bottom: 0;
}
.contactOuter .factoryInfo .title {
    color: #00286e;
    width: 65px;
}
.contactOuter .factoryInfo span {
    color: #1a1311;
    display: block;
    flex: 1;
}
.contactOuter .consultOuter {
    margin-bottom: 56px;
}
.contactOuter .consultOuter .title {
    font-size: 30px;
    color: #00286e;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .contactOuter .consultOuter .title {
        font-size: 24px;
    }
}
.contactOuter .consultOuter .text {
    font-size: 20px;
    letter-spacing: 1px;
    word-break: break-all;
}
.contactOuter .consultOuter .tel {
    color: #f38200;
    margin: 0 8px;
    font-size: 26px;
    font-weight: 600;
}
.contactOuter .contactForm {
    font-size: 20px;
    letter-spacing: 0.72px;
}
.contactOuter .contactForm input::-webkit-input-placeholder,
.contactOuter .contactForm textarea::-webkit-input-placeholder {
    font-size: 20px;
    color: #666666;
    letter-spacing: 0.72px;
}
.contactOuter .contactForm input::-moz-placeholder,
.contactOuter .contactForm textarea::-moz-placeholder {
    font-size: 20px;
    color: #666666;
    letter-spacing: 0.72px;
}
.contactOuter .contactForm input:-ms-input-placeholder,
.contactOuter .contactForm textarea:-ms-input-placeholder {
    font-size: 20px;
    color: #666666;
    letter-spacing: 0.72px;
}
.contactOuter .contactForm input::-ms-input-placeholder,
.contactOuter .contactForm textarea::-ms-input-placeholder {
    font-size: 20px;
    color: #666666;
    letter-spacing: 0.72px;
}
.contactOuter .contactForm input::placeholder,
.contactOuter .contactForm textarea::placeholder {
    font-size: 20px;
    color: #666666;
    letter-spacing: 0.72px;
}
.contactOuter .contactForm .select {
    position: relative;
}
.contactOuter .contactForm .selectTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
    color: #666666;
    padding: 10px 20px;
    cursor: pointer;
}
.contactOuter .contactForm .lineArrow {
    font-size: 16px;
    color: #666666;
}
.contactOuter .contactForm .options {
    background-color: #666666;
    border-radius: 10px;
    color: #fff;
    padding: 10px;
    position: absolute;
    top: 52px;
    left: 0;
    width: 100%;
    z-index: 20;
    display: none;
}
.contactOuter .contactForm .options li {
    transition: 0.5s;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
}
.contactOuter .contactForm .options li:hover {
    background-color: #4f8fd5;
}

.planOuter,
.newsOuter,
.newsDetailOuter,
.serveItemOuter {
    display: flex;
}
@media (max-width: 1200px) {
    .planOuter,
    .newsOuter,
    .newsDetailOuter,
    .serveItemOuter {
        flex-wrap: wrap;
    }
}

.planOuter {
    padding-bottom: 50px;
}
@media (max-width: 767px) {
    .planOuter {
        padding-bottom: 60px;
    }
}
.planOuter .imgOuter {
    margin-bottom: 30px;
    position: relative;
    height: 400px;
}
@media (max-width: 767px) {
    .planOuter .imgOuter {
        margin-bottom: 20px;
        height: 200px;
    }
}
@media (max-width: 320px) {
    .planOuter .imgOuter {
        height: 150px;
    }
}
.planOuter .imgOuter img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
@media (max-width: 767px) {
    .planOuter .pcImg {
        display: none;
    }
}
.planOuter .mobileImg {
    display: none;
}
@media (max-width: 767px) {
    .planOuter .mobileImg {
        display: block;
    }
}
.planOuter .textContent {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 40px;
    letter-spacing: 1.44px;
    text-align: right;
}
@media (max-width: 767px) {
    .planOuter .textContent {
        top: 45%;
        font-size: 26px;
    }
}
@media (max-width: 320px) {
    .planOuter .textContent {
        font-size: 20px;
    }
}
.planOuter .textContent .title {
    border-bottom: 1px solid #1a1311;
    padding-bottom: 10px;
}
.planOuter .textContent .text {
    color: #00286e;
}
.planOuter .textContent .easier {
    font-size: 50px;
}
@media (max-width: 767px) {
    .planOuter .textContent .easier {
        font-size: 38px;
    }
}
@media (max-width: 320px) {
    .planOuter .textContent .easier {
        font-size: 28px;
    }
}
.planOuter .textContent .easier span {
    font-size: 40px;
}
@media (max-width: 767px) {
    .planOuter .textContent .easier span {
        font-size: 26px;
    }
}
@media (max-width: 320px) {
    .planOuter .textContent .easier span {
        font-size: 20px;
    }
}
.planOuter .subTitle {
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 0.94px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .planOuter .subTitle {
        font-size: 24px;
    }
}
.planOuter .list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .planOuter .list {
        margin-bottom: 30px;
    }
}
.planOuter .list li {
    text-align: justify;
}
.planOuter .list li:nth-child(1) {
    border-right: 1px solid #dbd8d8;
    padding-right: 50px;
    width: 50%;
    margin-bottom: 40px;
}
@media (max-width: 1025px) {
    .planOuter .list li:nth-child(1) {
        padding-right: 20px;
    }
}
@media (max-width: 767px) {
    .planOuter .list li:nth-child(1) {
        width: 100%;
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #dbd8d8;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }
}
.planOuter .list li:nth-child(2) {
    padding-left: 50px;
    width: 50%;
    margin-bottom: 40px;
}
@media (max-width: 1025px) {
    .planOuter .list li:nth-child(2) {
        padding-left: 20px;
    }
}
@media (max-width: 767px) {
    .planOuter .list li:nth-child(2) {
        width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }
}
.planOuter .list li:nth-child(3) {
    width: 100%;
    border-top: 1px solid #dbd8d8;
    padding-top: 40px;
}
.planOuter .list .listImg {
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 767px) {
    .planOuter .list .listImg {
        height: auto;
    }
}
.planOuter .list .listImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
    object-fit: scale-down;
}
@media (max-width: 767px) {
    .planOuter .list .listImg .mobileImg {
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
}
.planOuter .list h4 {
    color: #00286e;
    font-weight: 600;
    letter-spacing: 0.79px;
    margin-bottom: 10px;
    font-size: 22px;
    min-height: 65px;
}
@media (max-width: 767px) {
    .planOuter .list h4 {
        min-height: auto;
        margin-bottom: 20px;
    }
}
.planOuter .list p {
    font-size: 20px;
}
.planOuter .partner .listImg {
    height: 200px;
}
.planOuter .partner .listImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.planOuter .partner h4 {
    min-height: auto;
}
.planOuter .imgs {
    border-top: 1px solid #dbd8d8;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .planOuter .imgs {
        justify-content: center;
    }
}
.planOuter .imgs li {
    width: calc(100% / 4 - 15px);
    margin-right: 20px;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .planOuter .imgs li {
        width: calc(100% / 3 - 14px);
        margin-bottom: 30px;
    }
}
@media (max-width: 414px) {
    .planOuter .imgs li {
        width: calc(100% / 2 - 10px);
    }
}
.planOuter .imgs li:nth-child(4n + 4) {
    margin-right: 0;
}
@media (max-width: 767px) {
    .planOuter .imgs li:nth-child(4n + 4) {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .planOuter .imgs li:nth-child(3n + 3) {
        margin-right: 0;
    }
}
@media (max-width: 767px) and (max-width: 414px) {
    .planOuter .imgs li:nth-child(3n + 3) {
        margin-right: 20px;
    }
}
@media (max-width: 414px) {
    .planOuter .imgs li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
.planOuter .imgs li:last-child {
    margin-right: 0;
}
.planOuter .imgs img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 10px;
}
.planOuter .imgs p {
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.72px;
}

.sideBar {
    width: 322px;
    margin-right: 60px;
    order: 1;
}
@media (max-width: 1200px) {
    .sideBar {
        width: 100%;
        order: 2;
        margin-right: 0;
    }
}

.sideBarTitle {
    font-size: 24px;
    background-color: #31538e;
    color: #fff;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.86px;
    padding: 10px 0;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
}
.sideBarTitle::after {
    content: "";
    position: absolute;
    left: -5px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #31538e;
}
.sideBarTitle::before {
    content: "";
    position: absolute;
    right: -5px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #31538e;
}

.sideBarList li {
    padding: 20px 40px;
    font-size: 20px;
    letter-spacing: 0.72px;
    cursor: pointer;
    border-bottom: 1px solid #dbd8d8;
    transition: 0.5s;
}
@media (max-width: 360px) {
    .sideBarList li {
        padding: 20px;
    }
}
.sideBarList li:hover,
.sideBarList li.active {
    color: #f38200;
    border-color: #f38200;
}

.tabOuter {
    width: calc(100% - 382px);
    order: 1;
}
@media (max-width: 1200px) {
    .tabOuter {
        width: 100%;
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .tabOuter {
        margin-bottom: 20px;
    }
}
.tabOuter .tabInner {
    display: none;
}
.tabOuter .tabInner.active {
    display: block;
}

.defaultHighlight {
    color: #00286e;
    font-weight: 600;
}

.secondarytHighlight {
    color: #e92327;
    font-weight: 600;
}

.secondaryThintHighlight {
    color: #e92327;
}

.thirdThinHighlight {
    color: #003ce6;
}

.texttHighlight {
    color: #1a1311;
    font-weight: 600;
}

.strongText {
    color: #1a1311;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.79px;
    margin-bottom: 20px;
}

.strongBg {
    background-color: #fcde3d;
}

.flatpickr-calendar.rangeMode.animate.open.arrowTop.arrowLeft {
    background-color: #e9e7eb;
}

.flatpickr-current-month {
    font-size: 16px;
    top: 5px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    left: -33%;
}

.numInputWrapper {
    left: -30%;
}

.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month {
    left: 77%;
}

.flatpickr-weekdays {
    margin-top: 15px;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay,
.flatpickr-day:hover {
    background-color: #175bb1;
    border-color: #175bb1;
    color: #fff;
}

.flatpickr-day.today:hover {
    background-color: #175bb1;
    border-color: #175bb1;
}

.flatpickr-day.inRange {
    box-shadow: -5px 0 0 #d9e3fc, 5px 0 0 #d9e3fc;
    background-color: #d9e3fc;
    border-color: #d9e3fc;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: #175bb1;
}

.newsOuter {
    position: relative;
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .newsOuter {
        padding-bottom: 60px;
    }
}
@media (max-width: 1200px) {
    .newsOuter .tabOuter {
        margin-top: 115px;
        margin-bottom: 60px;
    }
}
@media (max-width: 767px) {
    .newsOuter .tabOuter {
        margin-bottom: 40px;
    }
}
.newsOuter .list li {
    border-bottom: 1px solid #dbd8d8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.newsOuter .list li:last-child {
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .newsOuter .list li:last-child {
        margin-bottom: 40px;
    }
}
.newsOuter .list li:hover .title {
    color: #f38200;
}
.newsOuter .list a {
    display: flex;
}
@media (max-width: 767px) {
    .newsOuter .list a {
        display: block;
    }
}
.newsOuter .list img {
    width: 400px;
    height: 253px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 40px;
}
@media (max-width: 1200px) {
    .newsOuter .list img {
        margin-right: 28px;
    }
}
@media (max-width: 992px) {
    .newsOuter .list img {
        width: 316px;
        height: 200px;
    }
}
@media (max-width: 767px) {
    .newsOuter .list img {
        margin-right: 0;
        width: 100%;
        height: auto;
        margin-bottom: 12px;
    }
}
.newsOuter .textContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.newsOuter .title {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    word-break: break-all;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .newsOuter .title {
        font-size: 24px;
    }
}
.newsOuter .text {
    font-size: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    letter-spacing: 0.72px;
}
@media (max-width: 767px) {
    .newsOuter .text {
        margin-bottom: 30px;
        -webkit-line-clamp: 3;
    }
}
.newsOuter .timeOuter {
    font-size: 18px;
    letter-spacing: 0.65px;
    display: flex;
    align-items: center;
}
@media (max-width: 1300px) {
    .newsOuter .timeOuter {
        flex-wrap: wrap;
    }
}
@media (max-width: 1200px) {
    .newsOuter .timeOuter {
        flex-wrap: nowrap;
    }
}
@media (max-width: 767px) {
    .newsOuter .timeOuter {
        justify-content: space-between;
    }
}
@media (max-width: 414px) {
    .newsOuter .timeOuter {
        font-size: 16px;
    }
}
@media (max-width: 320px) {
    .newsOuter .timeOuter {
        font-size: 14px;
    }
}
.newsOuter .time {
    margin-right: 30px;
    color: #666666;
}
@media (max-width: 1300px) {
    .newsOuter .time {
        margin-bottom: 5px;
    }
}
@media (max-width: 820px) {
    .newsOuter .time {
        margin-right: 15px;
    }
}
@media (max-width: 767px) {
    .newsOuter .time {
        margin-right: 0;
    }
}
.newsOuter .tag {
    color: #00286e;
    border: 1px solid #1a1311;
    padding: 5px 20px;
}
@media (max-width: 414px) {
    .newsOuter .tag {
        padding: 5px 10px;
    }
}

.newsOuter .sideBarList,
.newsDetailOuter .sideBarList {
    margin-bottom: 24px;
}
@media (max-width: 1200px) {
    .newsOuter .sideBarList,
    .newsDetailOuter .sideBarList {
        margin-bottom: 0;
    }
}

.dateTimeOuter {
    position: relative;
}
@media (max-width: 1200px) {
    .dateTimeOuter {
        position: absolute;
        width: calc(100% - 40px);
        left: 0;
        top: 0;
        margin-left: 20px;
        margin-right: 20px;
    }
}
.dateTimeOuter input {
    font-size: 20px;
    letter-spacing: 0.72px;
    padding: 10px 20px;
}

.dateTimeText {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.72px;
}

.calendarIcon {
    position: absolute;
    font-size: 20px;
    right: 20px;
    top: 60%;
    color: #444444;
    pointer-events: none;
}

.pagination {
    display: flex;
    justify-content: center;
}
.pagination li {
    margin-right: 6px;
}
.pagination li:first-child {
    width: 120px;
}
.pagination li:last-child {
    width: 120px;
    margin-right: 0;
}
.pagination a {
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}
@media (max-width: 767px) {
    .pagination a {
        font-size: 18px;
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 393px) {
    .pagination a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
.pagination .firstLink,
.pagination .lastLink {
    width: 100%;
}
.pagination .pageIcon {
    font-size: 14px;
    margin-top: 5px;
}
@media (max-width: 320px) {
    .pagination .pageIcon {
        font-size: 12px;
        margin-top: 2px;
    }
}
.pagination .previousIcon {
    margin-right: 10px;
}
.pagination .nextIcon {
    margin-left: 10px;
}

.newsDetailOuter {
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .newsDetailOuter {
        padding-bottom: 60px;
    }
}
@media (max-width: 1200px) {
    .newsDetailOuter .sideBar {
        display: none;
    }
}
@media (max-width: 1200px) {
    .newsDetailOuter .dateTimeOuter {
        display: none;
    }
}

.detailInner {
    margin-bottom: 100px;
}
@media (max-width: 767px) {
    .detailInner {
        margin-bottom: 60px;
    }
}
.detailInner h2 {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00286e;
    border-bottom: 1px solid #dbd8d8;
    padding-bottom: 10px;
    margin-bottom: 15px;
    word-break: break-all;
}
@media (max-width: 767px) {
    .detailInner h2 {
        font-size: 28px;
    }
}
.detailInner .otherInfo {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 40px;
    letter-spacing: 0.65px;
}
@media (max-width: 767px) {
    .detailInner .otherInfo {
        justify-content: space-between;
        margin-bottom: 20px;
    }
}
@media (max-width: 375px) {
    .detailInner .otherInfo {
        font-size: 16px;
    }
}
@media (max-width: 320px) {
    .detailInner .otherInfo {
        font-size: 15px;
    }
}
.detailInner .date {
    margin-right: 30px;
    color: #666666;
}
@media (max-width: 767px) {
    .detailInner .date {
        margin-right: 10px;
    }
}
.detailInner .tag {
    color: #00286e;
    border: 1px solid #1a1311;
    padding: 5px 20px;
}
@media (max-width: 393px) {
    .detailInner .tag {
        padding: 5px 10px;
    }
}
@media (max-width: 320px) {
    .detailInner .tag {
        padding: 5px;
    }
}
.detailInner .describe {
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .detailInner .describe {
        margin-bottom: 30px;
    }
}
.detailInner .describe .secondaryThintHighlight {
    display: block;
}
.detailInner p {
    font-size: 20px;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
}
.detailInner h3 {
    display: inline-block;
    font-size: 26px;
    font-weight: 600;
    padding-left: 15px;
    padding-bottom: 5px;
    border-left: 4px solid #1a1311;
    border-bottom: 1px solid #1a1311;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .detailInner h3 {
        font-size: 24px;
    }
}
.detailInner ol {
    list-style: decimal;
}
@media (max-width: 767px) {
    .detailInner ol {
        padding-left: 0;
        margin-left: 32px;
    }
}
.detailInner ol li::marker {
    font-weight: 600;
    font-size: 22px;
}
@media (max-width: 767px) {
    .detailInner ol li::marker {
        padding-left: 32px;
    }
}
.detailInner ol .title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 22px;
}
.detailInner .columnsTable {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .detailInner .columnsTable {
        margin-left: -32px;
    }
}
.detailInner .columnsTable li {
    border: 1px solid #666666;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 767px) {
    .detailInner .columnsTable li {
        flex-wrap: wrap;
    }
}
.detailInner .columnsTable li:nth-child(2n + 2) {
    border-left: none;
    width: calc(100% - 300px);
}
@media (max-width: 767px) {
    .detailInner .columnsTable li:nth-child(2n + 2) {
        width: 100%;
        border-left: 1px solid #666666;
        margin-bottom: 20px;
        border-top: none;
    }
    .detailInner .columnsTable li:nth-child(2n + 2):last-child {
        margin-bottom: 0;
    }
}
.detailInner .columnsTable li:nth-child(odd) {
    width: 300px;
}
@media (max-width: 767px) {
    .detailInner .columnsTable li:nth-child(odd) {
        width: 100%;
        border-bottom: 1px solid #666666;
    }
}
.detailInner .columnsTable li:nth-child(1),
.detailInner .columnsTable li:nth-child(2) {
    border-bottom: none;
}
@media (max-width: 767px) {
    .detailInner .columnsTable li:nth-child(1),
    .detailInner .columnsTable li:nth-child(2) {
        border-bottom: 1px solid #666666;
    }
}
.detailInner .columnsTable span {
    display: contents;
}
.detailInner .columnTable {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .detailInner .columnTable {
        padding-left: 0;
        margin-left: -32px;
    }
}
.detailInner .columnTable li {
    border: 1px solid #666666;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detailInner .columnTable li:nth-child(1) {
    width: 300px;
}
@media (max-width: 767px) {
    .detailInner .columnTable li:nth-child(1) {
        width: 100%;
    }
}
.detailInner .columnTable li + li {
    flex: 1;
    border-left: none;
}
@media (max-width: 767px) {
    .detailInner .columnTable li + li {
        border-left: 1px solid #666666;
        border-top: none;
    }
}
.detailInner .imgs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .detailInner .imgs {
        display: block;
        margin: 0 auto 20px -32px;
    }
}
.detailInner .imgOuter {
    max-width: 50%;
    margin-right: 20px;
}
@media (max-width: 767px) {
    .detailInner .imgOuter {
        margin: 0 auto 20px auto;
        max-width: 100%;
    }
}
.detailInner .imgOuter:last-child {
    margin-right: 0;
}
.detailInner .imgOuter img {
    margin: 0 auto;
}
.detailInner h4 {
    font-size: 20px;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
}
.detailInner .compare {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .detailInner .compare {
        margin-left: -32px;
    }
}
.detailInner .compare li {
    margin-right: 20px;
    width: calc(100% / 2 - 10px);
}
@media (max-width: 767px) {
    .detailInner .compare li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.detailInner .compare li:last-child {
    margin-right: 0;
}
@media (max-width: 767px) {
    .detailInner .compare li:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .detailInner .itemTableText {
        margin-left: -32px;
    }
}
.detailInner .itemTableOuter {
    font-size: 20px;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .detailInner .itemTableOuter {
        margin-left: -32px;
        margin-bottom: 0;
    }
}
.detailInner .itemTable {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .detailInner .itemTable {
        margin-bottom: 20px;
    }
}
.detailInner .itemTable li {
    flex: 1;
    border: 1px solid #666666;
}
@media (max-width: 767px) {
    .detailInner .itemTable li {
        flex: auto;
    }
}
.detailInner .itemTable li:first-child {
    flex: none;
    width: 27%;
}
@media (max-width: 992px) {
    .detailInner .itemTable li:first-child {
        width: 30%;
    }
}
@media (max-width: 767px) {
    .detailInner .itemTable li:first-child {
        width: 100%;
    }
}
.detailInner .itemTable li + li {
    border-left: none;
}
@media (max-width: 767px) {
    .detailInner .itemTable li + li {
        border-left: 1px solid #666666;
    }
}
@media (max-width: 767px) {
    .detailInner .itemTable li + li .name {
        background-color: #fff;
        color: #1a1311;
    }
}
@media (max-width: 767px) {
    .detailInner .itemTable li + li {
        border-top: none;
    }
}
.detailInner .itemTable:nth-of-type(n + 2) li {
    border-top: none;
}
.detailInner .itemTable:nth-of-type(n + 2) .name {
    display: none;
}
@media (max-width: 767px) {
    .detailInner .itemTable:nth-of-type(n + 2) .name {
        display: block;
    }
}
.detailInner .itemTable:nth-of-type(n + 2) .itemText {
    height: 100%;
}
@media (max-width: 767px) {
    .detailInner .itemTable:nth-of-type(n + 2) .itemText {
        height: calc(100% - 70px);
    }
}
.detailInner .itemTable .name {
    padding: 20px 30px;
    background-color: #31538e;
    color: #fff;
}
@media (max-width: 767px) {
    .detailInner .itemTable .name {
        padding: 15px 20px;
    }
}
.detailInner .itemTable .itemText {
    padding: 20px 30px;
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 767px) {
    .detailInner .itemTable .itemText {
        padding: 15px 20px;
    }
}
.detailInner .itemTable .itemText:hover h4 {
    color: #f38200;
}
.detailInner .itemTable .itemText h4 {
    text-decoration: underline;
    line-height: 30px;
    word-break: break-all;
    transition: 0.5s;
}
@media (max-width: 767px) {
    .detailInner .itemTable .itemText h4 {
        text-align: center;
    }
}
.detailInner .itemTable .itemText img {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain;
}
.detailInner .itemTable .itemText p {
    margin-bottom: 5px;
}

.newsBtns {
    display: flex;
    justify-content: center;
}
.newsBtns .btnShape {
    width: 168px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsBtns .defaultBtn {
    margin-right: 10px;
}
.newsBtns .defaultBtn .lineArrow {
    -webkit-transform: skewX(15deg) rotate(90deg) translate(14%, 30%);
    transform: skewX(15deg) rotate(90deg) translate(14%, 30%);
}

.serveItemOuter {
    padding-bottom: 90px;
}
@media (max-width: 767px) {
    .serveItemOuter {
        padding-bottom: 60px;
    }
}
.serveItemOuter .itemTitle {
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
@media (max-width: 767px) {
    .serveItemOuter .itemTitle {
        font-size: 28px;
    }
}
.serveItemOuter .text {
    font-size: 20px;
    letter-spacing: 0.72px;
    margin-bottom: 20px;
}
.serveItemOuter .mainImg {
    border-bottom: 1px solid #dbd8d8;
    margin-bottom: 100px;
}
.serveItemOuter .mainImg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.serveItemOuter .itemsContainer img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.serveItemOuter .itemOuter {
    margin-bottom: 100px;
}
@media (max-width: 767px) {
    .serveItemOuter .itemOuter {
        margin-bottom: 85px;
    }
}
.serveItemOuter .itemOuter:nth-of-type(even) {
    border-bottom: 1px solid #dbd8d8;
}
.serveItemOuter .itemOuter:nth-of-type(even) .trapezoid {
    background-color: #f2f2f2;
    color: #1a1311;
    font-size: 22px;
    top: -76px;
}
@media (max-width: 767px) {
    .serveItemOuter .itemOuter:nth-of-type(even) .trapezoid {
        font-size: 18px;
        top: -60px;
    }
}
.serveItemOuter .itemOuter:nth-of-type(odd) .trapezoid {
    background-color: #31538e;
    color: #fff;
    font-size: 26px;
    top: -80px;
}
@media (max-width: 767px) {
    .serveItemOuter .itemOuter:nth-of-type(odd) .trapezoid {
        font-size: 20px;
        top: -64px;
    }
}
.serveItemOuter .itemOuter:nth-last-of-type(1) {
    margin-bottom: 40px;
}
.serveItemOuter .imgOuter {
    position: relative;
    border: 20px solid #f2f2f2;
    margin-bottom: 20px;
}
@media (max-width: 1200px) {
    .serveItemOuter .imgOuter {
        max-width: 980px;
        margin: 0 auto 20px auto;
    }
}
@media (max-width: 767px) {
    .serveItemOuter .imgOuter {
        border-width: 10px;
    }
}
.serveItemOuter .trapezoid {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: inline-block;
    white-space: nowrap;
    padding: 15px 45px;
    text-align: center;
    -webkit-clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
    clip-path: polygon(0 100%, 100% 100%, 85% 0, 15% 0);
    font-size: 20px;
    letter-spacing: 0.94px;
    font-weight: 600;
}
@media (max-width: 320px) {
    .serveItemOuter .trapezoid {
        padding: 15px 30px;
    }
}
.serveItemOuter .exhibition {
    display: flex;
    font-size: 22px;
    letter-spacing: 0.79px;
}
@media (max-width: 767px) {
    .serveItemOuter .exhibition {
        flex-wrap: wrap;
        font-size: 20px;
    }
}
.serveItemOuter .serveContent {
    width: 45%;
}
@media (max-width: 1300px) {
    .serveItemOuter .serveContent {
        margin-right: 40px;
    }
}
@media (max-width: 992px) {
    .serveItemOuter .serveContent {
        margin-right: 20px;
    }
}
@media (max-width: 767px) {
    .serveItemOuter .serveContent {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.serveItemOuter .questionText {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 26px;
    letter-spacing: 0.94px;
}
@media (max-width: 767px) {
    .serveItemOuter .questionText {
        font-size: 22px;
    }
}
.serveItemOuter .serveContentList li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}
.serveItemOuter .serveContentList li:before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
}
.serveItemOuter .serveContentList li:last-child {
    margin-bottom: 0;
}
.serveItemOuter .reserve {
    width: 55%;
}
@media (max-width: 767px) {
    .serveItemOuter .reserve {
        width: 100%;
    }
}
.serveItemOuter .reserve p {
    margin-bottom: 20px;
}
.serveItemOuter .reserveInfoList li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
@media (max-width: 320px) {
    .serveItemOuter .reserveInfoList li {
        flex-wrap: wrap;
    }
}
.serveItemOuter .reserveInfoList li:first-child {
    align-items: center;
}
@media (max-width: 320px) {
    .serveItemOuter .reserveInfoList li:first-child .reserveTitle {
        width: 100%;
    }
}
.serveItemOuter .reserveInfoList .tel {
    color: #f38200;
    margin: 0 8px;
    font-size: 28px;
    font-weight: 600;
}
@media (max-width: 767px) {
    .serveItemOuter .reserveInfoList .tel {
        font-size: 26px;
    }
}
@media (max-width: 320px) {
    .serveItemOuter .reserveInfoList .tel {
        margin: 0;
    }
}
.serveItemOuter .reserveTitle {
    font-weight: 600;
}
@media (max-width: 320px) {
    .serveItemOuter .reserveTitle {
        width: 100%;
    }
}
.serveItemOuter .reserveInfo {
    flex: 1;
}
.serveItemOuter .smallText {
    font-size: 18px;
}
@media (max-width: 767px) {
    .serveItemOuter .smallText {
        margin-bottom: 50px;
    }
}

.aboutOuter {
    padding-bottom: 60px;
}
@media (max-width: 767px) {
    .aboutOuter {
        padding-bottom: 40px;
    }
}
.aboutOuter .idea {
    display: flex;
}
@media (max-width: 992px) {
    .aboutOuter .idea {
        flex-wrap: wrap;
    }
}
.aboutOuter .pcImg {
    margin-right: 50px;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 992px) {
    .aboutOuter .pcImg {
        display: none;
    }
}
.aboutOuter .mobileImg {
    display: none;
}
@media (max-width: 992px) {
    .aboutOuter .mobileImg {
        display: block;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        margin-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .aboutOuter .mobileImg {
        margin-bottom: 20px;
    }
}
.aboutOuter .ideaInner {
    width: calc(100% - 390px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .aboutOuter .ideaInner {
        width: 100%;
    }
}
.aboutOuter .ideaInner p {
    margin-bottom: 20px;
}
.aboutOuter .headTitleOuter {
    margin-bottom: 30px;
    justify-content: flex-start;
}
@media (max-width: 767px) {
    .aboutOuter .headTitleOuter {
        margin-bottom: 20px;
    }
}
.aboutOuter .imgs {
    display: flex;
}
@media (max-width: 767px) {
    .aboutOuter .imgs {
        flex-wrap: wrap;
        max-width: 390px;
        margin: 0 auto;
    }
    .aboutOuter .imgs img {
        width: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }
}
.aboutOuter .imgs li {
    width: calc(100% / 3);
}
@media (max-width: 767px) {
    .aboutOuter .imgs li {
        width: 100%;
    }
}

.advantagesOuter {
    background-color: #f2f2f2;
    padding: 60px 0;
}
@media (max-width: 767px) {
    .advantagesOuter {
        padding: 40px 0;
    }
}
.advantagesOuter .headTitleOuter {
    margin-bottom: 30px;
    justify-content: flex-start;
}
@media (max-width: 767px) {
    .advantagesOuter .headTitleOuter {
        margin-bottom: 20px;
    }
}
.advantagesOuter .advantagesInner {
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    .advantagesOuter .advantagesInner {
        flex-wrap: wrap;
    }
}
.advantagesOuter .textContent,
.advantagesOuter .imgs {
    width: 50%;
}
@media (max-width: 992px) {
    .advantagesOuter .textContent,
    .advantagesOuter .imgs {
        width: 100%;
    }
}
.advantagesOuter .textContent {
    margin-right: 50px;
}
@media (max-width: 992px) {
    .advantagesOuter .textContent {
        margin-bottom: 40px;
        margin-right: 0;
    }
}
.advantagesOuter .imgs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .advantagesOuter .imgs {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .advantagesOuter .imgs {
        max-width: 360px;
        justify-content: center;
    }
}
.advantagesOuter .imgs li {
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
}
@media (max-width: 767px) {
    .advantagesOuter .imgs li {
        width: calc(100% / 2 - 30px);
        margin-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .advantagesOuter .imgs li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
.advantagesOuter .imgs li:last-child {
    margin-right: 0;
    margin-bottom: 0;
}
.advantagesOuter .imgs li img {
    margin: 0 auto;
}

.aboutOuter p,
.advantagesOuter p {
    font-size: 20px;
    letter-spacing: 0.72px;
    text-align: justify;
}

.aboutSubTitle {
    font-weight: 600;
    letter-spacing: 0.94px;
    margin-bottom: 20px;
    font-size: 26px;
}
@media (max-width: 767px) {
    .aboutSubTitle {
        font-size: 24px;
    }
}

.policyOuter {
    padding: 60px 0;
}
@media (max-width: 767px) {
    .policyOuter {
        padding: 40px 0;
    }
}
.policyOuter .headTitleOuter {
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .policyOuter .headTitleOuter {
        margin-bottom: 20px;
    }
}
.policyOuter .policyList {
    display: flex;
    flex-wrap: wrap;
}
.policyOuter .policyList li {
    width: calc(100% / 3 - 47px);
    margin-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .policyOuter .policyList li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 50px;
    }
    .policyOuter .policyList li:last-child {
        margin-bottom: 0;
    }
}
.policyOuter .policyList li:last-child {
    margin-right: 0;
}
.policyOuter .text {
    font-size: 20px;
    letter-spacing: 0.72px;
    margin-bottom: 40px;
    text-align: justify;
}
@media (max-width: 767px) {
    .policyOuter .text {
        margin-bottom: 20px;
    }
}
.policyOuter .imgOuter {
    display: flex;
    align-items: center;
}
@media (max-width: 992px) {
    .policyOuter .imgOuter {
        margin: 0 auto;
    }
}
.policyOuter .textContent,
.policyOuter .imgOuter {
    flex: 1;
}

.promiseOuter {
    background-color: #f2f2f2;
    padding: 60px 0;
    position: relative;
}
@media (max-width: 767px) {
    .promiseOuter {
        padding: 40px 0 0 0;
    }
}
.promiseOuter .textContent {
    position: relative;
    z-index: 10;
}
.promiseOuter .promiseList {
    font-size: 20px;
    letter-spacing: 0.72px;
    list-style: decimal;
    margin-left: -10px;
}
.promiseOuter .promiseList li {
    margin-bottom: 20px;
}
.promiseOuter .promiseList li:last-child {
    margin-bottom: 0;
}
@media (max-width: 767px) {
    .promiseOuter .promiseList li:last-child {
        margin-bottom: 20px;
    }
}
.promiseOuter .imgOuter {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
@media (max-width: 767px) {
    .promiseOuter .imgOuter {
        position: static;
        margin-right: -20px;
        margin-left: -20px;
    }
}
.promiseOuter .imgOuter img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.esgOuter {
    padding: 60px 0 90px 0;
}
@media (max-width: 767px) {
    .esgOuter {
        padding-top: 40px;
        padding-bottom: 60px;
    }
}
.esgOuter .headTitleOuter {
    margin-bottom: 50px;
}
@media (max-width: 767px) {
    .esgOuter .headTitleOuter {
        margin-bottom: 20px;
    }
}
.esgOuter .esgList li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
@media (max-width: 992px) {
    .esgOuter .esgList li {
        flex-wrap: wrap;
    }
}
.esgOuter .esgList li:first-child {
    padding-bottom: 30px;
    border-bottom: 1px solid #dbd8d8;
}
.esgOuter .esgList li:last-child {
    margin-bottom: 0;
}
.esgOuter .esgImg {
    margin-right: 60px;
    width: 50%;
}
@media (max-width: 992px) {
    .esgOuter .esgImg {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.esgOuter .textContent {
    width: 50%;
}
@media (max-width: 992px) {
    .esgOuter .textContent {
        width: 100%;
    }
}
.esgOuter p {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 0.72px;
    text-align: justify;
}
.esgOuter p:last-child {
    margin-bottom: 0;
}
.esgOuter .solve,
.esgOuter .valueOrientation {
    width: 50%;
}
@media (max-width: 992px) {
    .esgOuter .solve,
    .esgOuter .valueOrientation {
        width: 100%;
    }
}
.esgOuter .solve img,
.esgOuter .valueOrientation img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.esgOuter .solve {
    margin-right: 60px;
}
@media (max-width: 992px) {
    .esgOuter .solve {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.esgOuter .solve p {
    margin-bottom: 20px;
}
.esgOuter .valueOrientation {
    align-self: flex-start;
}
.esgOuter .valueOrientation img {
    margin-bottom: 20px;
}

.brandInfoOuter {
    padding-bottom: 90px;
    font-size: 20px;
    text-align: justify;
    letter-spacing: 0.72px;
}
@media (max-width: 992px) {
    .brandInfoOuter {
        padding-bottom: 70px;
    }
}
@media (max-width: 767px) {
    .brandInfoOuter {
        padding-bottom: 40px;
    }
}
@media (max-width: 992px) {
    .brandInfoOuter .headTitleOuter {
        margin-bottom: 20px;
    }
}
.brandInfoOuter .brandInfo li {
    display: flex;
    border-bottom: 1px solid #dbd8d8;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
@media (max-width: 992px) {
    .brandInfoOuter .brandInfo li {
        flex-wrap: wrap;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}
.brandInfoOuter .brandInfo li:last-child {
    margin-bottom: 0;
}
.brandInfoOuter .firstSection {
    align-items: center;
}
.brandInfoOuter .firstSection img {
    width: 50%;
    margin-right: 60px;
}
@media (max-width: 992px) {
    .brandInfoOuter .firstSection img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.brandInfoOuter .firstSection .textContent {
    width: 50%;
}
@media (max-width: 992px) {
    .brandInfoOuter .firstSection .textContent {
        width: 100%;
    }
}
.brandInfoOuter .firstSection p {
    margin-bottom: 20px;
}
.brandInfoOuter .firstSection p:last-child {
    margin-bottom: 0;
}
.brandInfoOuter .infoOne,
.brandInfoOuter .infoTwo {
    width: 50%;
}
@media (max-width: 992px) {
    .brandInfoOuter .infoOne,
    .brandInfoOuter .infoTwo {
        width: 100%;
    }
}
.brandInfoOuter .infoOne {
    margin-right: 60px;
}
@media (max-width: 992px) {
    .brandInfoOuter .infoOne {
        margin-right: 0;
        margin-bottom: 20px;
    }
}
.brandInfoOuter .infoOne p {
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .brandInfoOuter .infoOne img {
        margin: 0 auto;
    }
}
.brandInfoOuter .infoTwo img {
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .brandInfoOuter .infoTwo img {
        margin: 0 auto 20px auto;
    }
}
.brandInfoOuter .videoContainer {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    margin-bottom: 20px;
}
.brandInfoOuter .videoContainer iframe {
    width: 100%;
    height: 100%;
}

.productListOuter {
    padding-top: 80px;
}
@media (max-width: 992px) {
    .productListOuter {
        padding-top: 40px;
    }
}
.productListOuter .mainProductList {
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 992px) {
    .productListOuter .mainProductList {
        justify-content: center;
    }
}
.productListOuter .mainProductList li {
    background-color: #f2f2f2;
    margin-right: 20px;
    width: calc(100% / 3 - 14px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    margin-bottom: 20px;
}
@media (max-width: 992px) {
    .productListOuter .mainProductList li {
        width: calc(100% / 2 - 10px);
        margin-bottom: 20px;
    }
}
@media (max-width: 767px) {
    .productListOuter .mainProductList li {
        width: 100%;
        margin-right: 0;
        padding: 20px;
    }
}
.productListOuter .mainProductList li:nth-child(3n + 3) {
    margin-right: 0;
}
@media (max-width: 992px) {
    .productListOuter .mainProductList li:nth-child(2n + 2) {
        margin-right: 0;
    }
}
.productListOuter .imgOuter {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}
@media (max-width: 767px) {
    .productListOuter .imgOuter {
        margin-bottom: 20px;
        height: 180px;
    }
}
.productListOuter .imgOuter img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.productListOuter h3 {
    font-size: 28px;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .productListOuter h3 {
        font-size: 24px;
    }
}
.productListOuter p {
    margin-bottom: 40px;
}
.productListOuter .btnOuter {
    display: flex;
    justify-content: center;
}

.language-link {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.language-link:hover {
    color: inherit;
    text-decoration: none;
}
