@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script&family=Noto+Sans+TC&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

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

* {
    box-sizing: border-box;
    /* 不累加邊框與內距 */
}

/* 捲軸滑動效果 */
/* html,body { 
	scroll-behavior: smooth;
} */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial;
}

:root {
    /* 灰階 */
    --light_grey: #ccc;
    --grey: #999;
    --deep_grey: #444;
    /* 主色調 */
    --major-color: #f2edf0;
    --major-color2: #e6ece5;
    --major-color3: #ecf0f4;
    /* 輔助色調 */
    --lesser-color1: #bf9899;
}

img {
    display: block;
    width: 100%;
}

a {
    display: inline;
    color: var(--deep_grey);
    text-decoration: none;
    /* 取消a預設底線 */
}

strong {
    background-color: #d8f0b3;
    color: #131313;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.a_bottom {
    display: inline;
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: #f0a10d 4px solid;
}

/* ===== 全局設定 ===== */
* {
    box-sizing: border-box;
    scroll-margin-top:140px ;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
}

/* ===== Header 基礎設定 ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 10vh;
    line-height: 7vh;
    z-index: 1000;
    background: rgba(243, 243, 242, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== Nav 主容器 ===== */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3vw;
    margin: 0 auto;
    width: 90%;
    max-width: 1800px;
}

.nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 243, 242, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: -1;
}

/* ===== Logo ===== */
.nav__logo img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav__logo:hover img {
    transform: scale(1.05);
}

/* ===== Menu 主選單 ===== */
.nav__menu {
    display: flex;
    align-items: center;
    gap: 2.4vw;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ===== Menu 項目 ===== */
.nav__item {
    position: relative;
}

.nav__link {
    text-decoration: none;
    color: rgba(113, 113, 113, 0.9);
    font-size: 1rem;
    letter-spacing: 2px;
    transition: color 0.3s ease-in-out,
        letter-spacing 0.4s ease-in-out;
    padding: 8px 0;
    display: inline-block;
    font-weight: 400;
}

/* hover 時淡入白亮效果 */
.nav__link:hover {
    color: rgba(228, 139, 14, 0.925);
    letter-spacing: 2.4px;
}


/* ====== Mega Menu 動畫用的狀態 (Apple 下滑風格) ====== */
.mega-menu {
    position: absolute;
    z-index: 90;
    top: 64px;
    left: 0;
    width: 100%;
    transform: translateY(-10px);
    background: rgba(243, 243, 242, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 20px 8vw;
}

.mega-menu::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(8px);
    background: rgba(243, 243, 242, 0.6);
    z-index: -1;
}

.mega-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ====== Mega Content ====== */
.mega-content {
    display: none;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(8px);
}

.mega-content.is-active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* === 預設隱藏狀態 === */
.mega-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .4s ease, transform .4s ease;
}

/* === 顯示時 === */
.mega-content.is-active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

/* === 子項目動畫設定 === */
.mega-content.is-active .column ul li,
.mega-content.is-active .article-mega__main,
.mega-content.is-active .article-mega__side {
    opacity: 0;
    transform: translateY(15px);
    animation: itemIn 0.5s ease forwards;
}

/* 子項目的延遲（依順序淡入） */
.mega-content.is-active .column ul li:nth-child(1) {
    animation-delay: 0.1s;
}

.mega-content.is-active .column ul li:nth-child(2) {
    animation-delay: 0.2s;
}

.mega-content.is-active .column ul li:nth-child(3) {
    animation-delay: 0.3s;
}

.mega-content.is-active .column ul li:nth-child(4) {
    animation-delay: 0.4s;
}
.mega-content.is-active .column ul li:nth-child(5) {
    animation-delay: 0.4s;
}

.mega-content.is-active .article-mega__main {
    animation-delay: 0.15s;
}

.mega-content.is-active .article-mega__side {
    animation-delay: 0.3s;
}

/* === 子項目動畫關鍵幀 === */
@keyframes itemIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ====== Column 區塊 ====== */
.column {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.column h4 {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.column ul {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.column li {
    width: 15%;
    font-size: 14px;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.8);
    transition: color 0.25s ease;
}

.column li:hover {
    color: rgb(129, 41, 41);
}

.column ul {
    display: flex;
}

.column li img {
    width: 50%;
    position: relative;
}

.eq_m {
    display: flex;
    width: 100%;
}

.eq_m h5 {
    position: relative;
    right: -30%;
    width: 100%;
    line-height: 1.6;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.h5 {
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: .8rem;
    letter-spacing: 1px;
    right: 10%;
    top: 25%;
    width: 45%;
    line-height: 1.6;
}

.h5 h5 {
    padding: 2%;
}



/* === mega-content (文章區塊) === */
#mega_article {
    display: none;
    /* 🚫 預設隱藏 */
    opacity: 0;
    /* 🚫 預設透明 */
    flex-direction: column;
    transition: opacity 0.4s ease;
    /* ✅ 加上淡入動畫 */
}

/* ✅ 顯示狀態 */
#mega_article.is-active {
    display: flex;
    opacity: 1;
}

.article-tag {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: end;
    padding: 0% 2% 2%;
}

.article-tag h5 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 3px;
}

.article-tag div {
    content: "";
    display: block;
    /* ✅ 讓它成為區塊元素 */
    width: 77%;
    /* ✅ 給它寬度 */
    height: 0;
    /* ✅ 不需要高度，只畫底線 */
    border-bottom: 0.75px solid rgb(49, 49, 49);
}

.article-tag p {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}

.article-mega {
    display: flex;
    justify-content: space-around;
    padding: 2%;
}

.article-mega__main {
    width: 50%;
}

.article-mega__title {
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 700;
}

.article-mega__excerpt {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300;
    margin: 2% auto;
}

.article-mega__image {
    max-height: 185px;
    max-width: 580px;
    overflow: hidden;
    border-radius: 8px;
}

.article-mega__side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 40%;
}

.article-category__list li {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 0% auto 4%;
    border-bottom: #9f4511 2px solid;
}

.article-category_tag {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin: 4% 0;
}

.article-category_tag h5 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 4px;
}

.article-category_tag div {
    content: "";
    display: block;
    /* ✅ 讓它成為區塊元素 */
    width: 50%;
    margin: 0 auto;
    /* ✅ 給它寬度 */
    height: 0;
    /* ✅ 不需要高度，只畫底線 */
    border-bottom: 0.75px solid rgb(49, 49, 49);
}

.article-category_tag p {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
}

.article-mega__more {
    display: inline-block;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.article-mega__more span {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.8s ease;
    width: 85%;
}

.article-mega__more:hover span {
    transform: translateX(100%);
    /* 滑動距離 */
}




/* ====== 響應式處理 ====== */
@media (max-width: 1024px) {
    header {
        height: 56px;
    }

    .nav__menu {
        gap: 1.5rem;
    }

    .nav__link {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 4vw;
    }

    .nav__menu {
        display: none;
    }

    /* hamburger 或 mobile menu 可在此加入 */
}


.breadcrumb {
    display: flex;
    margin-top: 16vh;
    margin-bottom: 4vh;
    margin-left: 8vw;
    width: 50vw;
}

.breadcrumb-item {
    color: #949494;
    font-size: 0.8vw;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 2%;
}

.footer {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    background-color: #444;
}

.footer a {
    color: #f8f8f8;
}

.footer__info {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: #f8f8f8;
}

.footer__nav {
    width: 20vw;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__nav ul li {
    margin: 4vh auto;
    font-size: 1.5vw;
}

.footer__nav ul li img {
    width: 10vw;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    padding: 0 10vw;
    border-left: 0.25vw #f8f8f8 solid;
}

.footer__company {
    margin: 3vh 0 20vh;
}

.footer__company--ch {
    font-size: 2.8vw;
    margin: 0 0 4vh;
    letter-spacing: 5px;
}

.footer__company--en {
    font-size: 2.8vw;
    letter-spacing: 8px;
}

.footer__address {
    margin: 1vh 0;
    font-size: 1.3vw;
    letter-spacing: 2px;
}

.footer__address p {
    margin: 2vh 0;
}

.Yuuhakuchi {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 10vh;
    text-align: center;
    letter-spacing: 2px;
    background-color: #f8f8f8;
}

body.no-scroll {
    overflow: hidden;
    /* 禁止滾動 */
}

.navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(248, 248, 248, 0.8);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: space-around;
    padding: 6vw 10vw;
    z-index: 2;
    overflow-y: hidden;
}

.navigation--hidden {
    display: none;
    opacity: 0;
}

.navigation__buttons {
    width: 40vw;
    display: flex;
    flex-direction: column;
}

.navigation__link {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 6vh 0vh;
}

.navigation__text--ch {
    font-size: 2.2vw;
    letter-spacing: 2px;
    margin-bottom: 1vh;
}

.navigation__text--en {
    font-size: 1.2vw;
    letter-spacing: 4px;
    margin-bottom: 1vh;
}

.navigation__content {
    width: 60vw;
    display: flex;
    flex-direction: column;
    padding-left: 10%;
    margin-top: 5vh;
    border-left: 3px solid rgba(47, 47, 47, 0.8);
}

.navigation__banner img {
    height: 300px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 510px;
    border-radius: 8px;
}

.navigation__info {
    margin-top: 10vh;
}

.navigation__title {
    font-size: 2.2vw;
    letter-spacing: 4px;
}

.navigation__contact {
    font-size: 1.2vw;
    letter-spacing: 2px;
    margin: 2vh 0;
}

.table {
    width: 80%;
    margin: 0 auto;
    border: 6px solid rgb(240, 238, 237);
    border-radius: 16px;
}

.table__head {
    background-color: #f3f3f3;
}

.table__head--sk100,
.table__head--sk180,
.table__head--sk160 {
    border: 1px solid #7b7b7b;
    background-color: #fed973;
}

.table__header {
    font-weight: bold;
    text-align: left;
    padding: 8px;
}

.table__header--sk100 {
    border: 1px solid #7b7b7b;
}

.table__body {
    background-color: #ffffff;
}

.table__body--sk100 {
    border: 1px solid #7b7b7b;
}

.table__row:nth-child(even) {
    background-color: #f9f9f9;
}

.table__row--sk100 {
    border: 1px solid #7b7b7b;
}

.table__row--sk100:nth-child(even) {
    background-color: #fed973;
}

.table__data {
    padding: 8px;
    border: 1px solid #7b7b7b;
}

.table__data--sk100 {
    border: 6px solid #7b7b7b;
}

.table--sk180,
.table--sk160 {
    font-size: 1vw;
    text-align: center;
}

.header {
    width: 100vw;
}

.header__title {
    display: flex;
    justify-content: center;
    margin: 0% 6%;
    font-size: 3.5vw;
    font-weight: 500;
    letter-spacing: 5px;
    line-height: 1.5;
}

.header__content {
    margin: 5vh 0;
    width: 100%;
    height: 430px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.header__tag-list {
    margin: 0 8vw 0 10vw;
}

.header__tag-item {
    margin: 5vh auto;
}

.header__tag {
    letter-spacing: 3px;
}

.header__image {
    width: 95%;
    border-radius: 16px;
}

.section {
    margin: 6% auto;
}

.section__wr {
    width: 100%;
    overflow: hidden;
}

.section__imgs {
    margin: 4% auto;
    border-radius: 32px;
}

.section__title {
    font-weight: 600;

    font-size: 2vw;
    padding: 0 0 4vh 0;
    border-bottom: 3px solid #090909;
    margin: 0 0 6vh 0;
}

.section__subtitle {
    font-size: 1.2vw;
    line-height: 1.5;
    letter-spacing: 2px;
    margin: 0 0 6vh 0;
}

.lead {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    /* 可選，讓導讀更突出 */
    padding: .8rem 1rem;
    border-left: 4px solid #e4bb53;
    /* 淡綠色左線 */
    margin-bottom: 2rem;
}




.content {
    border-radius: 32px 0 0 0;
    padding: 1% 4%;
    position: relative;
    left: 5vw;
    width: 80%;
    margin: 2% auto;
}

.toc-desktop {
    border-right: 1px solid silver;
    position: fixed;
    top: 16%;
    width: 14%;
    margin: 2% auto;
    padding: 1% 1% 1% 3%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.toc-desktop.visible {
    opacity: 1;
}


/* a 默認顏色 */
.content-index__link {
    color: #a5a5a5;
    transition: color .4s ease;
}

.content-index__link:hover {
    color: #333;
    ;
}

/* 滑到 li 時 a 跟著變深 */
.content-index__link.is-hover {
    color: #494848;
}

/* li 預設 */
.content-index__item {
    letter-spacing: .6px;
    padding: 6%;
    margin: 0 0 20%;
    font-weight: 400;
    line-height: 1.6;
    font-size: .65rem;
    border-radius: 4px;
    border-left: 4px solid #8e976f00;
    transition: all .25s ease;
}

/* 滑到 li（用 class 控制） */
.content-index__item.is-hover {
    background: rgba(142, 151, 116, 0.16);
    border-left: 4px solid #8e976f;
    font-weight: 600;
}


.content-index__sub-item {
    letter-spacing: normal;
    margin: 6% auto;
    display: flex;
    align-items: center;
    font-weight: 100;
}

.article {
    width: 100%;
}

.article__heading {
    color: #000000;
    font-size: 1.4vw;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 8% auto 2%;
}

.article__text,
.section__subtitle {
    color: #313131;
    font-size: 1.1vw;
    letter-spacing: 0.2vw;
    font-weight: 400;
    line-height: 1.7;
    margin: 0% auto 4%;
}

.article__text--fomula {
    padding: 2% 2%;
    background-color: rgba(237, 181, 11, 0.5);
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 3px;
}

.article__text--hint{
    line-height: 1.6;
}

.article__faq {
    background-color: rgba(237, 181, 11, 0.2);
    border-radius: 16px;
    padding: 2% 4%;
    margin: 2% auto;
}

.article__list {
    margin: 3% auto;
}

.article__list-item {
    font-size: 1vw;
    line-height: 2;
}

.article__item {
    font-size: 1vw;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 2;
    position: relative;
}

.article__item::before {
    content: "";
    position: relative;
    width: 10px;
    height: 10px;
    background-color: #9f4511;
    border-radius: 50%;
}

.article ul {
    margin: 4% auto;
    border-radius: 0.6vw;
    font-weight: 500;
    letter-spacing: 0.1vw;
}

.article ul .content-index__item {
    color: #313131;
    font-weight: 400;
    letter-spacing: 0.08vw;
    line-height: 1.2;
    margin: 1% 0 0;
}

.cta-going {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5% auto;
    padding: 3% 1%;
}

.cta-going__heading {
    font-size: 1.6vw;
    letter-spacing: 2px;
    font-weight: 500;
    color: #393939;
    margin: 4% auto 1%;
    padding: 0 0 1% 0;
    border-bottom: #9f4511 4px solid;
}

.cta-going__product {
    display: flex;
    width: 100%;
    justify-content: center;
}

.cta-going__link {
    letter-spacing: 2px;
    font-weight: 700;
    color: #ffffff;
    background-color: #9f4511;
    padding: 1% 2%;
    margin: 2%;
    border-radius: 50px;
}

.cta-reading {
    font-weight: 700;
    letter-spacing: 0.03vw;
}

.cta-reading__reading {
    font-size: 1.2vw;
    color: #1f8948;
    border-left: #9f4511 5px solid;
    padding-left: 0.6vw;
}

table {
    width: 100%;
    margin: 4% auto;
}

table th,
table td {
    padding: 8px 12px;
    text-align: center;
    /* 預設靠左 */
    border: 1.2px solid #9b9b9b;
    color: #444;
}

table th {
    background-color: #f4f4f4;
    font-weight: bold;
}

/*# sourceMappingURL=base.css.map */







/* 整頁作用範圍 */
.scale-page {
    font-family: "Noto Sans TC", sans-serif;
    margin: 5% auto;
}

/* 各 section */
.scale-sec {
    margin-bottom: 5rem;
}

/* 大標題 */
.scale-title {
    font-size: 2rem;
    font-weight: 700;
    color: #515151;
    margin-bottom: 2rem;
}

/* ---- Step 區域 ---- */
.scale-steps {
    display: flex;
    justify-content: space-between;
    gap: 3%;
}

.steps-list {
    list-style: none;
    width: 50%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-box {
    border: 1px solid #878787;
    border-radius: 20px 0 20px 0;
    padding: 1rem 1.5rem;
    background: #fff;
    transition: 0.3s ease;
}

.step-box:hover {
    transform: translateY(-4px);
}

.step-title {
    color: #000000;
    font-size: 1.2vw;
    font-weight: 600;
    letter-spacing: 2px;
    margin: .5rem auto .5rem;
}

.step-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ---- 影片 ---- */
.scale-videos {
    width: 46%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-item {
    border: 2px solid #878787;
    border-radius: 20px;
    overflow: hidden;
    height: 270px;
}

.video-item iframe {
    width: 100%;
    height: 100%;
}

/* ---- FAQ ---- */
.scale-faq {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item2 {
    border: 1px solid #515151;
    border-radius: 8px;
    overflow: hidden;
}

.faq-q2 {
    background: #f8f8f8;
    padding: 1rem 1.5rem;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-a2 {
    display: none;
    padding: 1rem 1.5rem;
    background: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* 開啟時 */
.faq-item2.active .faq-a2 {
    display: block;
}

/* RWD */
@media (max-width: 900px) {
    .scale-steps {
        flex-direction: column;
    }

    .steps-list,
    .scale-videos {
        width: 100%;
    }
}















/* ---------------------------- */
/* Section 2：SOP 區域         */
/* ---------------------------- */



.sop-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

/* 流程圖區塊 */
.sop-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid #ccc;
}

.flow-item {
    background: #496042;
    color: #f5ffef;
    padding: .8rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
}

.flow-arrow {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0076c9;
}

/* Step 區域 */
.sop-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* 單一 step */
.sop-step {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
}

/* 左側文字 */
.sop-text {
    width: 50%;
}

.sop-step-title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.sop-step-title span {
    font-size: 1.7rem;
    font-weight: 600;
}

/* 右側圖片 */
.sop-img {
    width: 50%;
    border-radius: 10px;
    overflow: hidden;
}

.sop-img img {
    width: 100%;
    border-radius: 10px;
    transition: transform .3s ease;
}

.sop-img img:hover {
    transform: scale(1.03);
}

/* RWD */
@media (max-width: 900px) {

    .sop-step {
        flex-direction: column;
    }

    .sop-text,
    .sop-img {
        width: 100%;
    }

    .sop-flow {
        flex-direction: column;
        align-items: center;
    }
}










/* 000000000000000000000000000000000 */


/* FAQ 區塊 */
.faq-sec {
    margin: 5% auto 10%;
    color: #333;
}

/* FAQ 外框 */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 單一 FAQ box */
.faq-box {
    border: 1px solid #933b18;
    border-radius: 8px;
    overflow: hidden;
    transition: .3s ease;
}

.faq-box:hover {
    border-radius: 16px;
}

/* 問題列 */
.faq-q {
    color: #a4a4a4;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-arrow {
    font-size: 1.2rem;
    transition: .3s;
}

/* 展開狀態 */
.faq-box.is-active .faq-q {
    background: #fff;
    color: #515151;
}

.faq-box.is-active .faq-arrow {
    transform: rotateX(180deg);
    color: #933b18;
}

/* 答案內容 */
.faq-a {
    display: none;
    padding: 1.2rem 2rem;
    background: #fff;
    color: #323232;
    font-size: 1.1rem;
    line-height: 1.7;
}

.faq-box.is-active .faq-a {
    display: block;
}

/* RWD */
@media(max-width: 768px) {
    .faq-q {
        font-size: 1.1rem;
        padding: 1rem;
    }

    .faq-a {
        font-size: .95rem;
    }
}












/* --------------------------- */
/* FAQ 區塊（Section 4）      */
/* --------------------------- */

.faq-sec {
    margin: 5% auto;
    color: #333;
}

.faq-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #515151;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 單一 FAQ item */
.faq-item {
    border: 1.5px solid #515151;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-radius: 12px;
}

/* 問題區 */
.faq-q {
    background-color: #fafafa;
    color: #515151;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.faq-arrow {
    transition: 0.3s;
    font-size: 1.3rem;
    color: #555;
}

/* 展開時箭頭旋轉 */
.faq-item.is-open .faq-arrow {
    transform: rotateX(180deg);
    color: #933b18;
}

/* 答案區 */
.faq-a {
    display: none;
    padding: 1.2rem 1.5rem;
    background: #fff;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    letter-spacing: 1px;
}

/* 展開時顯示答案 */
.faq-item.is-open .faq-a {
    display: block;
}

/* RWD */
@media (max-width: 768px) {
    .faq-q {
        font-size: 1rem;
        padding: 1rem;
    }

    .faq-a {
        font-size: 0.9rem;
    }
}



/* 清洗方式比較表 */

/* 冷卻水塔清洗方式比較區塊 */

.ct__heading{
    margin-bottom: 2%;
}

.ct__text{
    margin: 0;
}

.ct-compare__title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: #515151;
}

/* 讓表格在小螢幕可以左右滑動 */
.ct-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

/* 表格本體 */
.ct-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
    /* 避免欄位太擠 */
    font-size: 0.95rem;
    background-color: #fff;
}

.ct-table thead th {
    background-color: #f5f5f5;
    color: #333;
    font-weight: 700;
    padding: 0.9rem 1rem;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}

.ct-table tbody td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    line-height: 1.7;
}

/* 左側「項目」欄稍微縮小一點 */
.ct-table tbody td:first-child {
    width: 18%;
    font-weight: 600;
    background-color: #fafafa;
}

/* 斑馬紋提高可讀性 */
.ct-table tbody tr:nth-child(even) td:not(:first-child) {
    background-color: #fcfcfc;
}

/* 比較結論小貼士 */
.ct-compare__tip {
    margin-top: 1.5rem;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    background-color: #e3f4d7;
    /* 薄綠高亮 */
    font-size: 0.95rem;
    line-height: 1.7;
}

.ct-compare__tip span {
    font-weight: 700;
    color: #496042;
}

/* RWD：窄螢幕微調字級 */
@media (max-width: 768px) {
    .ct-compare__title {
        font-size: 1.3rem;
    }

    .ct-compare__subtitle {
        font-size: 0.9rem;
    }

    .ct-table {
        font-size: 0.9rem;
    }
}




/* 全洗優劣分析 */

.compare-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0;
}

.compare-card {
    width: 50%;
    padding: 2% 4% 0%;
    margin: 0 2%;
    border-radius: 10px;
}

.good{
    border: 3px solid forestgreen; /* 你的米黃色 */
}

.bad{
    border: 3px solid rgb(139, 34, 34); /* 你的米黃色 */
}

.compare-card h4 {
    font-size: .8rem;
    letter-spacing: 1px;
    color: #323232;
}

.compare-card ul {
    line-height: 1.8;
}
