@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;700&family=Noto+Sans+TC:wght@300;400;700;900&display=swap');
*,
*::after,
*::before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans', 'Noto Sans TC', sans-serif;
}

span {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}


/* Grid System */

.container-fluid {
    width: 100%;
}

.container {
    width: 1200px;
}

.slider-full-cntr {
    width: 100%;
}

.mx-auto {
    margin: 0 auto;
}


/* Text */


/* Blod-Text */

.fs-bold-1 {
    font-size: 12px;
    font-weight: 700;
}

.fs-bold-2 {
    font-size: 14px;
    font-weight: 700;
}

.fs-bold-3 {
    font-size: 16px;
    font-weight: 700;
}

.fs-bold-4 {
    font-size: 18px;
    font-weight: 700;
}

.fs-bold-5 {
    font-size: 20px;
    font-weight: 700;
}

.fs-bold-6 {
    font-size: 24px;
    font-weight: 700;
}

.fs-bold-7 {
    font-size: 32px;
    font-weight: 700;
}

.fs-bold-8 {
    font-size: 42px;
    font-weight: 700;
}

.fs-bold-9 {
    font-size: 76px;
    font-weight: 700;
}


/* Regulau-Text */

.fs-regulau-1 {
    font-size: 12px;
}

.fs-regulau-2 {
    font-size: 14px;
}

.fs-regulau-3 {
    font-size: 16px;
}

.fs-regulau-4 {
    font-size: 18px;
}

.fs-regulau-5 {
    font-size: 24px;
}


/*行高 line-hieght*/

.lh-1 {
    line-height: 17px;
}

.lh-2 {
    line-height: 19px;
}

.lh-3 {
    line-height: 22px;
}

.lh-4 {
    line-height: 24px;
}

.lh-5 {
    line-height: 33px;
}

.lh-6 {
    line-height: 43px;
}

.lh-7 {
    line-height: 57px;
}

.primary-color {
    color: #BE9971;
}


/*主要大title設定*/

.title-sec {
    font-size: 42px;
    font-weight: 700;
    line-height: 57px;
    color: #BE9971;
    text-align: center;
}

.title-sec>span {
    padding-bottom: 8px;
    border-bottom: 1px solid #BE9971;
    position: relative;
}

.title-sec>span::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #BE9971;
    left: 50%;
    bottom: -4px;
    transform: rotate(45deg);
}

.title-tir {
    font-size: 42px;
    font-weight: 700;
    line-height: 57px;
    color: #C98686;
    text-align: center;
}

.title-tir>span {
    padding-bottom: 8px;
    border-bottom: 1px solid #C98686;
    position: relative;
}

.title-tir>span::before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: #C98686;
    left: 50%;
    bottom: -4px;
    transform: rotate(45deg);
}


/*間距*/

.mt-50 {
    margin-top: 50px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-36 {
    margin-bottom: 36px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.my-50 {
    margin: 50px 0px;
}

.mb-90 {
    margin-bottom: 90px;
}

.px-60 {
    padding: 60px 0;
}


/* Text */

.sec-title {
    font-size: 42px;
    font-weight: 700;
}

.sec-title-m {
    font-size: 32px;
    font-weight: 400;
}

.sec-att-title {
    font-size: 24px;
    font-weight: 700;
}

.sec-parag {
    font-size: 16px;
    color: #818181;
    margin: 0 0 34px 0;
}

.legend-title {
    font-size: 36px;
    font-weight: 700;
    padding: 12px 20px;
    margin: 0 0 20px 0;
}


/* Layout */

.preset-sec {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.preset-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}


/* Header */

.header {
    position: sticky;
    display: flex;
    justify-content: center;
    background: #fff;
    flex-wrap: wrap;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    z-index: 100;
    top: 0;
}

.header-info {
    width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    position: relative;
}

.hd-logo {
    display: flex;
    position: relative;
    flex-direction: column;
    width: 100px;
}

.hd-logo span {
    margin-top: 4px;
    padding-left: 4px;
    text-align: center;
    letter-spacing: 4px;
    color: #fff;
    background-color: #BE9971;
}

.hd-logo>img {
    display: block;
    width: 100%;
}

.hd-tools {
    display: flex;
    position: absolute;
    right: 0;
}

.hd-tools.for-xs-device {
    display: none;
}

.hd-tool-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #BE9971;
    border-radius: 50%;
    margin: 0 10px 0 0;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

.hd-tool-link>span {
    font-size: 12px;
    color: #83511B;
    position: absolute;
    white-space: nowrap;
    bottom: 0;
    transform: translateY(200%);
    opacity: 0;
    transition: 0.3s;
    transition-delay: 0.1s;
}

.hd-tool-link:hover {
    background: #83511B;
    transform: translateY(-3px);
}

.hd-tool-link:hover>span {
    opacity: 1;
    transform: translateY(100%);
}

.hd-tool-link:nth-last-child(1) {
    margin: 0 0 0 0;
}

.hd-tool-link::before {
    display: flex;
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    font-size: 20px;
}

.hd-tool-link.member::before {
    content: '\f406';
}

.hd-tool-link.service::before {
    content: '\f590';
}

.hd-tool-link.stores::before {
    content: '\f3c5';
}

.mb-navi-btn {
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    cursor: pointer;
}

.mb-navi-btn>span {
    display: flex;
    width: 32px;
    height: 1px;
    background: #BE9971;
    position: relative;
}

.mb-navi-btn>span::before,
.mb-navi-btn>span::after {
    display: block;
    content: '';
    width: 32px;
    height: 1px;
    background: #BE9971;
    position: absolute;
    transition: 0.3s;
}

.mb-navi-btn>span::before {
    transform: rotate(0deg) translateY(-12px);
}

.mb-navi-btn>span::after {
    transform: rotate(0deg) translateY(12px);
}

.navi-bar {
    width: 100%;
    display: flex;
    justify-content: center;
}

.navigation {
    width: 1200px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.navi-list {
    list-style: none;
    margin: 0 14px;
}

.navi-list>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #BE9971;
    font-size: 16px;
    padding: 0 0 8px 0;
    cursor: pointer;
    transition: 0.3s;
}

.navi-list.dropdown>a::after {
    display: flex;
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    content: '\f0dd';
    position: absolute;
    font-size: 12px;
    top: 16px;
    transition: 0.4s;
}

.navi-list>a:hover {
    color: #83511B;
}

.dropdown-navi {
    position: absolute;
    width: 100%;
    display: flex;
    left: 0;
    justify-content: center;
    background: #5F9A84;
    transform: scaleY(0);
    transform-origin: top;
    transition: 0.4s;
}

.navi-list:hover .dropdown-navi {
    transform: scaleY(1);
}

.dropdown-navi-list {
    list-style: none;
    margin: 10px 24px;
}

.dropdown-navi-list>a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    transition: 0.4s;
}

.dropdown-navi-list>a:hover {
    color: #F8DE5D;
}


/* 分頁共同設定 */

.page-postcard-sec {
    width: 100%;
    padding-bottom: 38.4375%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-postcard-cnt {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.page-postcard-words {
    width: 52%;
    position: relative;
}

.page-postcard-words.deco-frame::before {
    display: block;
    content: '';
    width: 12%;
    height: 48%;
    position: absolute;
    top: -20px;
    left: -20px;
}

.page-postcard-title {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 42px;
    margin: 0 0 20px 0;
}

.page-postcard-title>span {
    font-size: 24px;
}

.postcard-text {
    font-size: 16px;
    color: #818181;
}


/* Footer */

.footer-sec {
    padding: 50px 0;
    background: #BE9971;
    display: flex;
    justify-content: center;
}

.footer-cnt {
    display: flex;
    position: relative;
}

.footer-info-left {
    width: calc((100% / 3) * 2);
    padding: 0 30px 0 0;
}

.footer-info-right {
    width: calc(100% / 3);
}

.ft-who-is-wecare {
    display: flex;
    align-items: center;
    padding: 0 0 20px 0;
    margin: 0 0 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.ft-who-is-wecare>img {
    width: 126px;
    margin: 0 15px 0 0;
}

.ft-who-is-wecare>p {
    font-size: 14px;
    color: #fff;
    opacity: 0.7;
}

.ft-aboutus-txt {
    font-size: 14px;
    color: #818181;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #818181;
}

.free-service-phone {
    font-size: 24px;
    color: #83511B;
    display: flex;
    align-items: center;
    margin: 0 0 16px 0;
}

.free-service-phone::before {
    display: inline-block;
    content: '\f2a0';
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 900;
    margin: 0 4px 0 0;
}

.free-service-phone>a {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    margin: 0 0 0 6px;
    transition: 0.4s;
}

.free-service-phone>a:hover {
    color: #FEFBE4;
}

.social-media-group {
    display: flex;
    margin: 0 0 28px 0;
}

.social-media-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 15px 0 0;
    text-decoration: none;
    position: relative;
    color: #fff;
    overflow: hidden;
    transition: 0.4s;
}

.social-media-item:hover {
    border: 1px solid #573613;
}

.social-media-item:nth-last-child(1) {
    margin: 0 0 0 0;
}

.social-media-item::before {
    display: block;
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    height: 30px;
    position: relative;
    z-index: 2;
}

.social-media-item.insta::before {
    content: '\f16d';
}

.social-media-item.facebook::before {
    content: '\f39e';
}

.social-media-item.youtube::before {
    content: '\f167';
}

.social-media-item.line::before {
    content: '\f3c0';
}

.social-media-item::after {
    position: absolute;
    display: flex;
    content: '';
    z-index: 1;
    width: 100%;
    height: 100%;
    transform: translateY(100%);
    transform-origin: bottom;
    background: #573613;
    transform-origin: center;
    border-radius: 0;
    opacity: 0.2;
    transition: 0.4s;
}

.social-media-item:hover::after {
    transform: translateY(0);
    opacity: 1;
}

.footer-navigation {
    display: flex;
}

.ft-navi-list {
    list-style: none;
    display: flex;
    font-size: 14px;
    color: #fff;
    margin: 0 4px 0 0;
}

.ft-navi-list::after {
    display: inline-block;
    content: '/';
    margin: 0 0 0 4px;
}

.ft-navi-list:nth-last-child(1)::after {
    display: none;
}

.ft-navi-list>a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: 0.4s;
}

.ft-navi-list>a:hover {
    color: #573613;
}

.ft-download-title {
    font-size: 24px;
    color: #fff;
    margin: 0 0 15px 0;
}

.download-app-group {
    display: flex;
}

.download-app-link {
    color: #F3EDE6;
    font-size: 16px;
    text-decoration: none;
    width: 120px;
    margin: 0 30px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-app-link:nth-last-child(1) {
    margin: 0 0 0 0;
}

.cright-sec {
    background: #d2b89c;
    display: flex;
    justify-content: center;
}

.cright-cnt {
    min-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.cright-cnt>span {
    display: inline-block;
    margin: 0 4px;
}


/* floating tools */

.floating-tools-group {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100;
}

.floating-tool {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    margin: 0 0 10px 0;
    text-decoration: none;
}

.floating-tool>span {
    display: block;
    font-size: 1px;
    color: #988E73;
    white-space: nowrap;
    position: absolute;
    transform: translateX(0%);
    text-align: right;
    padding: 0 10px 0 0;
    width: 40px;
    opacity: 0;
    transition: 0.3s;
}

.floating-tool:hover>span {
    font-size: 12px;
    opacity: 1;
    transform: translateX(-80%);
    width: 60px;
}

.floating-tool:nth-last-child(1) {
    margin: 0 0 0 0;
}

.floating-tool::before {
    display: flex;
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 900;
    color: #fff;
    font-size: 20px;
}

.floating-tool.fb-msg {
    background: #457B9D;
}

.floating-tool.fb-msg::before {
    content: '\f39f';
}

.floating-tool.line-chat {
    background: #06C755;
}

.floating-tool.line-chat::before {
    content: '\f3c0';
}

.floating-tool.go-top {
    background: #988E73;
}

.floating-tool.go-top::before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    content: '\f341';
}


/* 多筆資料分頁 */

.page-direction {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-direction>span,
.page-direction>a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 12px;
}

.page-dir-arrow::before {
    display: flex;
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #818181;
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer;
}

.page-dir-arrow:hover::before {
    color: #3f3c3c;
    opacity: 1;
}

.page-dir-arrow.prev::before {
    content: '\f053';
}

.page-dir-arrow.next::before {
    content: '\f054';
}

.page-ellipse::before {
    display: flex;
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 300;
    font-size: 30px;
    color: #818181;
    opacity: 0.7;
    transition: 0.3s;
}

.page-ellipse:hover::before {
    color: #3f3c3c;
    opacity: 1;
}

.page-ellipse.hide {
    display: none;
}

.page-ellipse.prev::before,
.page-ellipse.next::before {
    content: '\f141';
}

.page-num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: #B4B4B4;
    color: #fff;
    position: relative;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.page-num:hover {
    background: #5F9A84;
}

.page-num.current {
    background: #5F9A84;
}

.page-num.current::before {
    width: 36px;
    height: 36px;
    position: absolute;
    z-index: -1;
    background: #5F9A84;
    opacity: 0.4;
    display: block;
    content: '';
    border-radius: 50%;
}


/* Crumb Navigation */

.crumb-ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 0 0 20px 0;
}

.crumb-list {
    font-size: 14px;
    list-style: none;
    margin: 0 20px 0 0;
    display: flex;
    align-items: baseline;
    color: #818181;
}

.crumb-list::after {
    display: block;
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    content: '\f054';
    margin: 0 0 0 20px;
    color: #818181;
}

.crumb-list:nth-last-child(1):after {
    display: none;
}

.crumb-list>a {
    display: block;
    text-decoration: none;
    color: #818181;
    transition: 0.3s;
}

.crumb-list>a:hover {
    color: #988E73;
}


/* 文章區塊 */

.ac-detail-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.ac-detail-cnt {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    justify-content: center;
    margin: 0 0 0 0;
}

.ac-detail-title {
    font-size: 28px;
    color: #BE9971;
    margin: 0 0 12px 0;
}

.ac-detail-title-m {
    font-size: 24px;
    color: #988E73;
    margin: 0 0 12px 0;
}

.ac-detail-author {
    display: flex;
    align-items: baseline;
    color: #988E73;
    font-size: 14px;
    margin: 0 0 30px 0;
}

.article-date {
    color: #818181;
    font-size: 14px;
}

.ac-detail-author::before {
    display: flex;
    content: '─';
    margin: 0 4px 0 0;
}

.ac-detail-wrap {
    display: flex;
    flex-direction: column;
    width: calc(100% * 2 / 3);
}

.article-content-wrap {
    display: flex;
    flex-direction: column;
}

.article-content-wrap>img {
    width: 100%;
    display: block;
    margin: 0 0 20px 0;
}

.article-content-wrap>p {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #818181;
}

.article-content-wrap>div {
    margin: 0 0 16px 0;
    font-size: 16px;
}

.article-content-wrap>div>img {
    width: 100%;
    display: block;
}

.theme-btn.ac-details-btn {
    background: #BE9971;
    align-self: center;
    padding: 5px 10px;
}

.theme-btn.ac-details-btn>span {
    background: #BE9971;
    color: #fff;
    padding: 5px 10px;
}


/* 頁面資料載入動畫 */

.loading-animation-wrap {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 101;
    width: 100%;
    height: 100vh;
    opacity: 1;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.85);
}

.loading-animation-wrap.close {
    -webkit-animation: closeLoader 0.5s linear 1 forwards;
    animation: closeLoader 0.5s linear 1 forwards;
}

.loader {
    display: block;
    position: relative;
    width: 120px;
    height: 120px;
    /* margin: -75px 0 0 -75px; */
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #C9D6B8;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #D8D8D8;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

.loader::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 1px solid transparent;
    border-top-color: #A4C29F;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes closeLoader {
    0% {
        opacity: 1;
        z-index: 101;
    }
    99% {
        opacity: 0;
        z-index: 101;
    }
    100% {
        opacity: 0;
        z-index: -1;
    }
}

@keyframes closeLoader {
    0% {
        opacity: 1;
        z-index: 101;
    }
    99% {
        opacity: 0;
        z-index: 101;
    }
    100% {
        opacity: 0;
        z-index: -1;
    }
}

@media (max-width: 1219.98px) {
    .container {
        width: calc(100% - 60px);
    }
    .header-info {
        width: calc(100% - 60px);
    }
    .navigation {
        width: calc(100% - 60px);
    }
    .navi-list {
        margin: 0 8px;
    }
    .navi-list>a {
        font-size: 14px;
    }
    .navi-list.dropdown>a::after {
        top: 14px;
    }
    .dropdown-navi-list {
        margin: 8px 20px;
    }
    .dropdown-navi-list>a {
        font-size: 14px;
    }
    .sec-title {
        font-size: 36px;
    }
    .page-postcard-title {
        font-size: 36px;
    }
    .page-postcard-title>span {
        font-size: 20px;
    }
}

@media (max-width: 1019.98px) {
    .postcard-text {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .hd-logo {
        flex-direction: row;
        width: 250px;
        align-items: center;
    }
    .hd-logo span {
        margin-top: 0px;
    }
    .hd-logo>img {
        width: 100%;
        flex-basis: 100px;
    }
    .postcard-text {
        font-size: 14px;
    }
    .sec-title {
        font-size: 32px;
    }
    .sec-att-title {
        font-size: 18px;
    }
    .sec-parag {
        font-size: 14px;
    }
    .theme-btn>span {
        font-size: 14px;
    }
    .header-info {
        justify-content: flex-start;
    }
    .mb-navi-btn {
        display: flex;
    }
    .hd-tools {
        right: 50px;
    }
    .mb-navi-btn {
        z-index: 1000;
    }
    .mb-navi-btn.active>span {
        background: transparent;
    }
    .mb-navi-btn.active>span::before {
        transform: rotate(45deg) translateY(0);
        background: #fff;
    }
    .mb-navi-btn.active>span::after {
        transform: rotate(-45deg) translateY(0);
        background: #fff;
    }
    .navi-bar {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 999;
        background: #BE9971;
        width: 0;
        overflow: hidden;
        padding: 0;
        opacity: 0;
        transform: translateX(100%);
        transition: 0.4s;
    }
    .navi-bar.active {
        padding: 90px 0 20px 0;
        opacity: 1;
        overflow: unset;
        transform: translateX(0);
        transform-origin: right;
        width: 30%;
    }
    .navigation {
        width: 100%;
        height: 100vh;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
    }
    .navi-list {
        margin: 0;
    }
    .navi-list>a {
        font-size: 16px;
        color: #fff;
        background-color: rgba(255, 255, 255, 0.05);
        flex-direction: row;
        justify-content: space-between;
        height: 40px;
        padding: 0 20px;
    }
    .navi-list.dropdown.active {
        background: #5F9A84;
        box-shadow: 0 1px 3px rgba(255, 255, 255, 0.2), inset 0 1px 6px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }
    .navi-list>a:hover,
    .navi-list.dropdown.active>a {
        color: #F8DE5D;
        background: rgba(255, 255, 255, 0);
    }
    .navi-list.dropdown>a::after {
        position: static;
        content: '\f0a9';
        font-size: 16px;
        transform: rotate(0deg);
        transition: 0.3s;
    }
    .navi-list.dropdown.active>a::after {
        transform: rotate(90deg);
    }
    .dropdown-navi {
        position: relative;
        transform: scaleY(1);
        flex-direction: column;
        max-height: 0;
        transition: 0.4s;
        overflow: hidden;
    }
    .navi-list.active .dropdown-navi {
        max-height: 1000px;
    }
    .dropdown-navi-list {
        margin: 8px 20px 8px 36px;
        transition: 0.4s;
    }
    .page-postcard-title {
        font-size: 28px;
    }
    .page-postcard-title>span {
        font-size: 16px;
    }
    .hd-tool-link {
        transform: translateY(-6px);
        margin: 0 28px 0 0;
    }
    .hd-tool-link>span {
        opacity: 1;
        transform: translateY(100%);
    }
    .author-article-title {
        font-size: 18px;
    }
    .author-article-info>p {
        font-size: 14px;
    }
    .article-detail {
        font-size: 14px;
    }
    .author-story {
        width: 80%;
    }
}

@media (max-width: 775.98px) {
    .page-postcard-cnt {
        position: static;
        transform: translateY(0);
    }
    .page-postcard-words {
        width: 100%;
    }
}

@media (max-width: 697.98px) {
    .preset-sec {
        padding: 30px 0;
    }
    .hd-tools {
        right: 36px;
    }
    .hd-tool-link {
        width: 34px;
        height: 34px;
    }
    .hd-tool-link::before {
        font-size: 16px;
    }
    .navi-bar.active {
        width: 50%;
    }
    .mb-navi-btn {
        width: 20px;
        height: 20px;
    }
    .mb-navi-btn>span::before,
    .mb-navi-btn>span::after {
        width: 20px;
    }
    .mb-navi-btn>span::before {
        transform: translateY(-8px);
    }
    .mb-navi-btn>span::after {
        transform: translateY(8px);
    }
    .sec-title {
        font-size: 28px;
    }
    .sec-title-m {
        font-size: 24px;
    }
    .sf-att-title {
        font-size: 16px;
    }
    .theme-btn {
        align-self: center;
    }
    .footer-cnt {
        flex-wrap: wrap;
        flex-direction: column;
    }
    .footer-info-left {
        width: 100%;
        padding: 0 0 0 0;
        margin: 0 0 22px 0;
    }
    .footer-info-right {
        width: 100%;
    }
    .legend-title {
        font-size: 24px;
    }
    .cright-cnt {
        flex-wrap: wrap;
        padding: 8px 0;
    }
    .author-article {
        width: 100%;
    }
    .ac-detail-cnt {
        margin: 0;
    }
    .ac-detail-wrap {
        width: 100%;
        border-right: 0;
        padding: 0;
    }
    .article-content-wrap>p {
        font-size: 14px;
    }
    .theme-btn.ac-details-btn {
        margin: 0 0 25px 0;
    }
}

@media (max-width: 539.98px) {
    .hd-logo>img {
        width: 30%;
        flex-basis: 80px;
    }
    .navi-bar.active {
        width: 100%;
    }
    .sec-title {
        font-size: 24px;
    }
    .sec-parag {
        margin: 0 0 16px 0;
    }
    .legend-title {
        font-size: 18px;
    }
    .title-sec,
    .title-tir {
        font-size: 28px;
        line-height: 38px;
    }
    .ft-who-is-wecare {
        flex-direction: column;
        align-items: flex-start;
    }
    .ft-who-is-wecare>img {
        width: 100px;
        margin: 0 0 10px 0;
    }
    .footer-sec {
        padding: 30px 0;
    }
    .ac-detail-sec {
        padding: 30px 0;
    }
    .author-intro-sec {
        padding: 65px 0 40px 0;
    }
    .author-intro-sec::before {
        height: calc(100% - 140px);
    }
    .athor-pic {
        width: 150px;
        height: 150px;
    }
    .author-article.for-side {
        flex-direction: row;
    }
    .author-article-pic {
        width: 100px;
        padding-bottom: unset;
        flex-shrink: 0;
    }
    .author-article-info {
        padding: 8px 10px;
    }
    .author-article.for-side .author-article-title {
        font-size: 14px;
        font-weight: 400;
        margin: 0 0 4px 0;
    }
    .author-article.for-side .author-article-info>p {
        display: none;
    }
}

@media (max-width: 439px) {
    .header-info {
        width: calc(100% - 20px);
    }
    .hd-logo span {
        padding: 0px;
        letter-spacing: 0px;
    }
}

@media (max-width: 421.98px) {
    .header-info {
        width: calc(100% - 40px);
    }
    .hd-logo>img {
        width: 100%;
        flex-basis: 100px;
    }
    .hd-logo span {
        padding: 4px 0px 4px 4px;
        letter-spacing: 4px;
        margin-left: 8px;
    }
    .container {
        width: calc(100% - 40px);
    }
    .free-service-phone {
        flex-wrap: wrap;
    }
    .free-service-phone>a {
        width: 100%;
        margin: 0 0 0 0;
    }
    .social-media-item {
        width: 40px;
        height: 40px;
    }
    .social-media-item::before {
        font-size: 24px;
        height: 24px;
    }
    .footer-navigation {
        flex-wrap: wrap;
    }
    .cright-cnt>span {
        font-size: 12px;
        text-align: center;
    }
    .hd-tools {
        display: none;
    }
    .hd-tools.for-xs-device {
        display: flex;
        position: absolute;
        top: 30px;
        left: 20px;
    }
    .hd-tools.for-xs-device .hd-tool-link {
        background-color: #fff;
        width: 40px;
        height: 40px;
    }
    .hd-tools.for-xs-device .hd-tool-link>span {
        color: #fff;
    }
    .hd-tools.for-xs-device .hd-tool-link::before {
        color: #BE9971;
        font-size: 20px;
    }
    .page-postcard-words.deco-frame::before {
        top: -10px;
        left: -10px;
    }
    .page-postcard-title {
        font-size: 20px;
    }
    .page-postcard-title>span {
        font-size: 14px;
    }
    .ac-detail-title {
        font-size: 24px;
    }
}

@media (max-width: 351.98px) {
    .download-app-link {
        width: 100px;
    }
}

@media (max-width: 279.98px) {}