@charset "utf-8";

* {
    word-break: keep-all;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    color: inherit;
    line-height: 1.5;
    text-decoration: none;
    font-family: 'NanumSquareRound', sans-serif;
    /* font-family: "Pretendard"; */
}

body,
html {
    scroll-behavior: smooth;
}

body {
    background: rgba(244, 244, 242, 1);
}

img {
    max-width: 100%;
    display: block;
}

a {
    display: inline-block;
}

.w500 {
    font-weight: 500;
}

b {
    font-weight: 700;
}

section {
    position: relative;
    width: 100%;
    display: block;
}

.mw1600 {
    position: relative;
    max-width: 1600px;
    height: 100%;
    margin: 0 auto;
}

.mw1420 {
    position: relative;
    max-width: 1420px;
    margin: 0 auto;
    height: 100%;
}

.fix-cont {
    position: fixed;
    bottom: 5%;
    right: 2%;
    z-index: 2;
}

.fix-cont ul {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.fix-cont ul li {
    max-width: 4rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #66615983;
    transition: 0.3s;
    opacity: 1;
}

header.add-bg {
    background: #66615983;
    transition: background 0.3s ease;
    /* transition: 1s; */
}

header.hide {
    transform: translateY(-100%);
    opacity: 0;
    transition: 0.8s;
}

header:hover {
    background: #666159;
}

header .header-wrap {
    max-width: 1632px;
    padding-inline: 1rem;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: center;
}

header .logo {
    position: relative;
    z-index: 999;
}

header .logo a {
    display: block;
    height: 100%;
}

header .pc>ul {
    display: flex;
    text-align: center;
    position: relative;
}

header .pc>ul>li {
    position: relative;
}

header .pc>ul>li>a {
    padding: 2rem;
    font-size: 18px;
    color: white;
}

header .pc>ul>li:first-of-type>a {
    font-size: 20px;
}

header .pc>ul>li:hover>.depth {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

header .pc>ul>li:first-of-type>.depth {
    justify-content: flex-start;
}

header .pc .depth {
    pointer-events: none;
    display: flex;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
}

header .pc .depth>li {
    width: 100%;
    text-align: center;
}

header .pc .depth>li>a {
    padding: 1rem;
    font-size: 1rem;
    color: white;
    width: 100%;
    display: block;
    text-align: center;
}

header .pc .depth>li>a:hover {
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.2);
}

header .ham {
    position: fixed;
    z-index: 21;
    right: 5%;
    stroke: none;
    outline: none;
    appearance: none;
    border: none;
    background: transparent;
    box-shadow: none;
    width: 2.5rem;
    aspect-ratio: 1;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
}

header .ham span {
    width: 100%;
    width: 2rem;
    display: block;
    height: 2px;
    background: white;
}

header .mob {
    position: absolute;
    display: none;
    left: 0;
    width: 100%;
    top: 0;
    height: 100vh;
    background: #5b5955;
    transition: 0.5s;
    z-index: 20;
    transform: translateY(-100%);
    padding: 1rem;
}

header .mob.active {
    transform: translateY(0);
}

header .mob>ul {
    width: 100%;
    margin-top: 80px;
}

header .mob>ul>li {
    cursor: pointer;
    overflow: hidden;
    transition: 1s;
    position: relative;
    padding: 1rem;
    color: rgb(51, 51, 51);
    font-size: 1rem;
    border-top: 1px solid #808080;
    font-weight: 600;
}

header .mob>ul>li>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
    color: #fff;
    width: 100%;
}

header .mob>ul>li>div::after {
    display: block;
    content: '+';
    text-align: right;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
}

header .mob>ul>li.active>div {
    margin-bottom: 0.75rem;
    transition: 0.5s;
}

header .mob>ul>li.active>div::after {
    content: '-';
}

header .mob>ul>li.active {
    transition: 0.5s;
}

header .mob>ul>li>.depth {
    display: block;
    height: 0;
    overflow: hidden;
    background-color: #F5F5F5;
    transition: 0.5s;
    opacity: 0;
}

header .mob>ul>li.active>.depth {
    height: auto;
    opacity: 1;
    transition: 0.5s;
}

header .mob>ul>li>.depth li a {
    width: 100%;
    font-size: 14px;
    display: block;
    padding: 1rem;
}

header .mob>ul>li.active>.depth li a {}

/* main */
.s-title {
    overflow: hidden;
}

.s-title span {
    font-family: "Forum", serif;
    overflow: hidden;
    font-size: 1.3rem;
    display: block;
    letter-spacing: -0.25px;
    order: 1;
}

.s-title h3 {
    color: #666159;
    display: block;
    overflow: hidden;
    /* font-family: "Noto Serif KR", serif; */
    margin-top: 0.75rem;
    font-size: clamp(1.5rem, 2.25vw, 2.75rem);
    font-weight: 400;
    letter-spacing: -0.5px;
}

.m1 {
    position: relative;
    overflow: hidden;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.m1-bg {
    position: absolute;
    inset: 0;
    animation: 6s bgUp ease forwards;
    z-index: -1;
    overflow: hidden;
}

.m1-bg img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.m1 .desc {
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.m1 .desc p {
    font-size: 1.375rem;
    padding-left: 1.3rem;
    margin-top: 1.5rem;
    color: white;
}

.m2 {
    padding-block: 10rem 5rem;
}

.m2 {
    overflow: hidden;
}

.m2 .s-title span {
    opacity: 0.6;
}

.m2 .s-title h3 {
    font-size: clamp(1.5rem, 5.833vw, 7rem);
    line-height: 1.2;
    color: #111;
}

.m2 .s-title h4 {
    /* font-family: "Noto Serif KR", serif; */
    font-size: clamp(1rem, 1.563vw, 1.875rem);
    font-weight: 400;
    margin-block: 2rem 1.75rem;
    opacity: 0.7;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.4px;
}

.m2 .s-title p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.7;
    letter-spacing: -0.4px;
    margin-top: 1.25rem;
}

.m2 .flex-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 5rem;
}

.m2 .flex-wrap .left {
    width: 40%;
}

.m2 .m2-swiper {
    padding-top: 20%;
}

.m2 .m2-swiper .swiper-slide {
    position: relative;
}

.m2-swiper .swiper-pagination {
    height: 4px;
    top: 13%;
    left: 0;
    width: 100%;
    display: flex;
    gap: 0.5rem;
}

.m2-swiper .swiper-pagination-bullet {
    width: 100%;
    height: 4px;
    opacity: 1;
    background: #F0EDE5;
    border-radius: 1rem;
}

.m2-swiper .swiper-pagination-bullet-active {
    background: #948660;
}

.m2 .flex-wrap .right {
    position: relative;
}

.m2 .rotate {
    top: -10%;
    position: absolute;
    left: -15%;
}

.m2 .rotate .circle {
    position: relative;
    animation: rotate 20s linear infinite forwards;
}

.m2 .rotate .circle-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.m2 .carel {
    overflow: hidden;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.m2 .carel span {
    flex: 1;
    font-size: 12vw;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    color: #eeece8;
    display: block;
    text-wrap: nowrap;
    animation: move 28s linear infinite;
}

.m3 {
    padding-block: 10rem;
    background: #f0ede5;
}

.m3 .s-title {
    text-align: right;
    padding-right: 2rem;
    width: 100%;
}

.m3 .s-title h3 {
    position: relative;
}

.m3 .s-title h3::before {
    position: absolute;
    background: #666159;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    z-index: 1;
    height: 1px;
    width: 75%;
    display: block;
}

.m3 ul {
    display: flex;
    padding-top: 5rem;
}

.m3 ul li {
    position: relative;
    flex: 1;
    transition: 0.3s;
}

.m3 ul li:hover {
    scale: 1.08;
    overflow: hidden;
    transition: scale 0.3s !important;
}

.m3 ul li .desc {
    position: absolute;
    inset: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
}

.m3 ul li .desc h4 {
    font-size: clamp(1rem, 1.354vw, 1.625rem);
    font-weight: 500;
    line-height: 1.36;
}

.m3 ul li a {
    display: block;
    width: 100%;
}

.m3 ul li a img {
    width: 100%;
}

.m4 {
    padding-block: 10rem 15rem;
}

.m4 .s-title {
    padding-top: 10rem;
}

.m4 .s-title>ul {
    display: flex;
    margin-block: 0.75rem 1.25rem;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.m4 .s-title>ul>li {
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    font-size: 1rem;
    color: white;
    background: #666159;
}

.m4 .s-title p {
    font-size: 1.125rem;
    margin-block: 1rem 2rem;
    line-height: 1.3;
    font-weight: 300;
    color: #60605c;
}

.m4 .s-title .tag {
    font-weight: 600;
    margin-top: 1.25rem;
    line-height: 1.5;
    color: #60605c;
}

.m4-bt {
    position: absolute;
    width: 100%;
    padding-inline: 2%;
    top: 50%;
    display: flex;
    z-index: 9;
    justify-content: space-between;
}

.m4-bt img {
    cursor: pointer;
    max-width: 4rem;
}

.m4 .flex-wrap {
    display: flex;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: space-between;
}

/* .m4 .m4-swiper {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 0;
    max-width: 60%;
} */

.m5 {
    padding-block: 10rem 15rem;
    color: white;
    background: url(../img/m5-bg.png) no-repeat center / cover;
}

.m5 .s-title {
    padding-top: 5rem;
}

.m5 .s-title h3 {
    color: white;
    order: 2;
}

.m5 .m5-swiper {
    position: absolute;
    right: 0;
    top: 50%;
    max-width: 70%;
    transform: translateY(-50%);
    height: 720px;
    z-index: 3;
}

.m5 .m5-swiper .swiper-slide {
    align-content: center;
}

.m5 .m5-bt {
    margin-block: 2rem 3rem;
    order: 3;
}

.m5 .m5-bt li {
    position: relative;
    display: block;
    max-width: 286px;
    overflow: hidden;
    cursor: pointer;
    font-weight: 500;
    padding: 1rem;
    border-radius: 5px;
}

.m5 .m5-bt li::after {
    content: "";
    background: url(../img/r-arrow.png) no-repeat center / contain;
    width: 8px;
    height: 16px;
    display: inline-block;
    position: absolute;
    right: 5%;
    top: 50%;
    opacity: 0;
    color: #111;
    font-size: 1rem;
    font-weight: 400;
    transform: translateY(-50%);
}

.m5 .m5-bt li.active {
    background: #f4f4f2;
    color: #666159;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 4px 4px 24px rgba(0, 0, 0, 0.15);
}

.m5 .m5-bt li.active::after {
    opacity: 1;
}

.m5 .s-title a {
    padding: 1rem;
    font-weight: 700;
    order: 4;
}

.m6 {
    padding-block: 10rem;
}

.m6 .s-title {
    text-align: center;
}

.m6-swiper {
    height: 500px;
    margin-top: 5rem;
}

.m7 {
    padding-bottom: 10rem;
}

.m7 .s-title {
    text-align: center;
}

.m7 .map {
    margin-top: 2.5rem;
}

.m7 .map span {
    font-size: 14px;
    text-align: right;
    display: block;
    color: #5b5855;
    font-weight: 500;
    padding-block: 0.75rem;
}

.m7 .box-wrap {
    display: flex;
    margin-top: 1rem;
    gap: 2.75rem;
}

.m7 .box {
    flex: 1;
    padding: 3% 4.5%;
}

.m7 .box li {
    display: flex;
    align-items: center;
    padding-bottom: 0.75rem;
}

.m7 .box h4 {
    font-size: clamp(1.125rem, 1.667vw, 2rem);
    /* font-family: "Noto Serif KR"; */
    margin-bottom: 2rem;
    font-weight: 700;
}

.m7 .box li span {
    min-width: 78px;
    margin-right: 3px;
    text-align: justify;
    display: block;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 0;

    &:after {
        content: "";
        display: inline-block;
        width: 100%;
    }
}

.m7 .box li p {
    font-size: 1.125rem;
    margin-left: 2rem;
    padding-bottom: 5px;
}

.m7 .box li p small {
    color: #5b5955;
    margin-left: 0.5rem;
    font-weight: 300;
}

.m7 .box1 {
    background: #5b5955;
    color: white;
}

.m7 .box2 {
    background: white;
    color: #0f121a;
}

footer {
    background: #666159;
    padding-block: 4rem;
}

.footer-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.footer-wrap ul {
    display: flex;
    flex-wrap: wrap;
    color: white;
    max-width: 600px;
    justify-content: center;
    font-weight: 300;
    gap: 1rem;
}

.footer-wrap ul li {}

.footer-wrap ul li:last-of-type {
    font-weight: 100;
    font-size: 14px;
}

@keyframes rotate {
    0% {
        rotate: 0deg;
    }

    100% {
        rotate: 360deg;
    }
}

@keyframes move {
    0% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0%);
    }
}

@keyframes bgUp {
    0% {
        scale: 1.1;
    }

    100% {
        scale: 1;
    }
}

@keyframes blur {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

/* aos */
[data-aos="blur"] {
    opacity: 0;
}

[data-aos="blur"].aos-animate {
    animation: blur 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

[data-aos="reveal-line"] {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}

[data-aos="reveal-line"].aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

[data-aos="reveal-line-reverse"] {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

[data-aos="reveal-line-reverse"].aos-animate {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

[data-aos="tit"] {
    opacity: 0;
}

[data-aos="tit"].aos-animate {
    animation: tit 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

[data-aos="sub-t"] {
    opacity: 0;
}

[data-aos="sub-t"].aos-animate {
    animation: sub-t 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}


@keyframes sub-t {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tit {
    0% {
        letter-spacing: 0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        letter-spacing: 0;
        opacity: 1;
    }
}

@media all and (max-width:1400px) {

    header .pc {
        display: none;
    }

    header .logo a {
        max-width: 8rem;
    }

    header .ham {
        display: flex;
    }

    header .mob {
        display: flex;
    }
}

@media all and (max-aspect-ratio: 13 / 10) {
    .fix-cont {
        right: 1rem;
    }

    .fix-cont ul li {
        max-width: 3rem;
    }

    .s-title {
        padding-inline: 1rem;
        width: 100%;
    }

    .s-title span {
        font-size: 14px;
    }

    .s-title h3 br {
        display: none;
    }

    .s-title p {
        font-size: 14px;
    }

    .m1 .desc {
        text-align: center;
    }

    .m1 h2 {
        max-width: 84%;
        margin: 0 auto;
    }

    .m2 {
        padding-block: 5rem 120px;
    }

    .m2 .flex-wrap {
        flex-direction: column;
        gap: 6rem;
    }

    .m2 .flex-wrap .left {
        width: 100%;
    }

    .m1 .desc p {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 0;
    }

    .m2 .s-title p {
        font-size: 14px;
    }

    .m2 .rotate {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 0;
        max-width: 25vw;
    }

    .m2 .right .s-title {
        margin-top: 0.5rem;
    }

    .m3 {
        padding-block: 7rem 8rem;
    }

    .m3 .s-title {
        text-align: center;
    }

    .m3 ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding-top: 3.5rem;
    }

    .m3 ul li .desc h4 br {
        display: none;
    }

    .m3 .s-title h3::before {
        display: none;
    }

    .m4 {
        padding-block: 10rem;
    }

    .m4 .s-title {
        padding-top: 0;
    }

    .m4 .s-title>ul>li {
        font-size: 12px;
    }

    .m4 .s-title p {
        font-size: 14px;
    }

    .m4 .m4-swiper {
        position: static;
        transform: translate(0);
        max-width: 100%;
    }

    .m4 .flex-wrap {
        flex-direction: column;
    }

    .m4-bt {
        display: none;
    }

    .m4-bt img {
        max-width: 3rem;
    }

    .m5 {
        padding-block: 8rem 10rem;
    }

    .m5 .s-title {
        display: flex;
        text-align: center;
        flex-direction: column;
        padding-top: 0;
    }

    .m5 .m5-swiper {
        position: static;
        transform: translate(0);
    }

    .m5 .m5-bt {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem 0.25rem;
        padding-block: 1.5rem 2rem;
        border-block: 1px solid #ddd;
        margin-block: 2.5rem;
    }

    .m5 .m5-bt li {
        font-size: 13px;
        padding-right: 1.5rem;
        letter-spacing: -0.08px;
        align-content: center;
    }

    .m5 .m5-bt li::after {
        display: none;
    }

    .m5 .s-title a {
        font-size: 14px;
        text-align: left;
    }

    .m5 .m5-swiper {
        max-width: 80%;
        height: auto;
        padding-bottom: 1.25rem;
    }

    .m6 {
        background: white;
        padding-block: 7rem 12rem;
    }

    .m6-swiper {
        height: auto;
    }

    .m7 {
        padding-block: 5rem 0rem;
    }

    .m7 .map {
        padding-inline: 1rem;
        margin-top: 1rem;
    }

    .m7 .map span {
        font-size: 12px;
        text-align: center;
        margin-bottom: 2rem;
    }

    .m7 .box {
        padding: 2rem;
        padding-bottom: 3rem;
    }

    .m7 .box-wrap {
        width: 100%;
        gap: 0;
        flex-direction: column;
        margin-top: 3rem;
    }

    .m7 .box li span {
        font-size: 14px;
        text-align: left;
    }

    .m7 .box li p small {
        display: block;
        margin-left: 0;
    }

    .m7 .box li p {
        margin-left: 1.25rem;
        font-size: 14px;
    }

    .footer-wrap {
        padding-inline: 1rem;
    }

    footer {
        padding-block: 1.75rem 3.75rem;
    }

    .footer-wrap ul li {
        font-size: 12px;
        letter-spacing: -0.08px;
    }

    .footer-wrap ul li:last-of-type {
        font-size: 12px;
    }

    .footer-wrap>img {
        max-width: 50%;
        margin: 0 auto;
    }

    /* sub */
    .top-title {
        padding-block: 16vh 3rem;
    }

    .top-title p {
        padding-inline: 1rem;
    }

    .sub-page p {
        font-size: 14px;
    }

    .sub-top .flex-wrap {
        flex-direction: column;
        gap: 3rem;
    }

    .sub-top .mw1420 {
        margin-block: 0 4.25rem;
    }

    .sub-title {
        padding-inline: 1rem;
    }

    .sub-title>h5 {
        font-size: 1rem;
    }

    .sub-title .thumb-bread {
        margin-block: 1.25rem 1.5rem;
    }

    .sub-title .thumb-bread a {
        font-size: 14px;
    }

    .detail {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .detail li {
        flex-wrap: wrap;
        padding: 2rem 1.5rem;
        max-width: 100%;
        text-align: left;
        justify-content: flex-start;
        gap: 0.6rem;
    }

    .detail li img {
        scale: 0.86;
    }

    .detail li span {
        width: 72%;
        font-size: 14px;
    }

    .detail li p {
        font-size: 14px;
    }

    .detail li:nth-of-type(1),
    .detail li:nth-of-type(2) {
        border-bottom: 1px solid #DED9D2;
    }

    .eq .sub-title p {
        color: white;
        max-width: 88%;
        width: 100%;
        min-height: 50px;
    }

    .eq .sub-title h4 {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .eq .tag {
        margin-top: 2rem;
        width: 100%;
        padding: 0;
    }

    .eq1 {
        background: url(../img/sub/sub6-1-bg.jpg) no-repeat top / 100% 314px;
    }

    .eq .tag li {
        font-size: 12px;
        color: white;
        border-color: white;
        padding: 4px 12px;
    }

    .eq .swiper-slide {
        padding: 3rem 1rem;
        gap: 6rem;
        flex-direction: column;
    }

    .eq .swiper-slide .sub-title {
        padding-inline: 0;
    }

    .eq-swiper .swiper-button-next,
    .eq-swiper .swiper-button-prev {
        display: none;
    }

    article .case {
        gap: 3rem;
    }

    article .flex-wrap {
        flex-direction: column;
        padding-bottom: 5rem;
    }

    article .case h5 {
        font-size: 1.125rem;
    }

    article .case p {
        font-size: 14px;
    }

    .faq-box .answer {
        padding-inline: 2rem;
    }

    .inter .flex-wrap {
        flex-direction: column;
        gap: 3rem;
    }

    .inter .desc p {
        font-size: 14px;
    }

    .process .swiper-slide .desc p {
        font-size: 14px;
    }

    .process .swiper-slide .desc span {
        font-size: 12px;
    }

    .process .swiper-slide .desc h5 {
        font-size: 1.25rem;
    }

    .question>h5 {
        padding-block: 1.25rem;
    }

    .faq-box {
        padding-inline: 1rem;
    }

    .special {}

    .special ul {
        flex-direction: column;
        padding-inline: 2rem;
        gap: 3rem;
    }

    .special ul li {
        width: 100%;
        padding: 2rem;
    }

    .special ul li span {
        font-size: 14px;
    }

    .special ul li h5 {
        font-size: 1.125rem;
    }

    .special ul li p {
        font-size: 14px;
    }

    .slogan {
        min-height: 74vh;
    }

    .slogan .desc {
        padding-bottom: 3.5rem;
    }

    .slogan .mw1420 {
        left: 0;
        padding-inline: 2rem;
    }

    .s1-1 {
        padding-top: 4rem;
    }

    .s1-2 {
        margin-block: 4rem 8rem;
    }

    .s1-2 .desc p {
        padding-inline: 1rem;
    }

    .s1-2 .desc strong {
        font-size: 14px;
    }

    .s1-3 {
        border-radius: 2rem 2rem 0 0;
        padding-block: 7rem;
    }

    .s1-3 .name h5 {
        font-size: 1.375rem;
    }

    .s1-3 .name span {
        font-size: 1rem;
    }

    .s1-3 .name {
        margin-block: 4rem 3.25rem;
        align-items: center;
    }

    .s1-3 .career {
        flex-direction: column;
    }

    .s1-3 .career li {
        gap: 1.25rem 2rem;
        font-size: 14px;
    }

    .s2-1 {
        padding-inline: 1rem;
    }

    .s2-1>.mw1420>.flex-wrap {
        margin-bottom: 1rem;
    }

    .s2-1 .map-links {
        gap: 1rem;
    }

    .s2-1 .map-links a {
        font-size: 12px;
    }

    .s2-1 .parking {
        font-size: 12px;
        text-align: center;
        margin-block: 1rem 0;
    }

    .s2-2 .desc {
        align-items: center;
        flex-direction: column;
        padding-block: 3rem 4.5rem;
    }

    .s2-2 h4 {
        margin-bottom: 1rem;
    }

    .s2-2 .add {
        gap: 0.1rem 1rem;
        flex-wrap: wrap;
        margin-top: 1rem;
        justify-content: center;
    }

    .s2-2 .boxes {
        flex-direction: column;
        padding-inline: 2rem;
    }

    .s2-2 .box h5 {
        font-size: 1.25rem;
    }

    .s2-2 .box p {
        padding-block: 1.5rem;
    }

    #bo_list {
        font-size: 12px !important;
    }
}