@charset "utf-8";
/* CSS Document */
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,300;1,400;1,700&display=swap');

:root {
    /*font*/
    --lato: 'Lato', sans-serif;

    /*title*/
    --title_mb_en: 17px;
    --title_mb_tw: 26px;

    /*color*/
    --green: #088380;
    --red: #9D1E23;
    --blue: #007C7E;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
    font-size: 17px;
    color: #222222;
    -webkit-text-size-adjust: none;
    image-rendering: -webkit-optimize-contrast;
    /*text-align: justify;*/
}

a {
    color: #222222;
}

.webout {
    position: relative;
    max-width: 2200px;
    margin: 0 auto;
}

.article {
    overflow: clip;
}

.out {
    max-width: 1200px;
    position: relative;
    padding: 0 6%;
    margin: 0 auto;
}

input,
textarea,
select {
    font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
    font-size: 17px;
    color: var(--blue);
}

/* sticky sidebar (.left) */
@media only screen and (min-width: 1001px) {
    .article .s2 .left {
        position: sticky;
        top: 100px;
        z-index: 10;
        align-self: start;
    }
}

/*LOGIN-----------------------------------------*/

/*lOGIN_S2-----------------*/
.login .s2 .box2 a {
    position: relative;
    display: inline-block;
    padding-right: 25px;
    transition: 0.2s;
}

.login .s2 .box2 a:hover {
    color: var(--blue);
}

.login .s2 .box2 a:after {
    content: "?";
    position: absolute;
    top: 0;
    right: 0;
    width: 1em;
    line-height: 1em;
    text-align: center;
    color: var(--blue);
    border: var(--blue) 1px solid;
    border-radius: 50%;
}

/*CHAIRMAN-----------------------------------------*/

/*CHAIRMAN_S2-----------------*/
.chairman .s2 .right {
    line-height: 2em;
}

.chairman .s2 .right .image {
    margin-bottom: 2em;
}

.chairman .s2 .right img {
    border-radius: 15px;
    max-width: 100%;
}

.chairman .s2 .right div {
    font-size: 25px;
    line-height: 1.5em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}

/*PRIVACY-----------------------------------------*/

/*PRIVACY_S2-----------------*/
.privacy .s2 .right .privacy-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.privacy .s2 .right .privacy-card {
    flex: 1;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.privacy .s2 .right .privacy-card:hover {
    box-shadow: 0 8px 20px rgba(24, 121, 190, 0.15);
    transform: translateY(-2px);
    border-color: var(--blue);
    padding: 24px 14px;
}

.privacy .s2 .right .privacy-card:hover .text {
    color: var(--blue);
    font-weight: 600;
}

.privacy .s2 .right .privacy-card .icon {
    width: 90%;
    max-width: 190px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.privacy .s2 .right .privacy-card .icon img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.privacy .s2 .right .privacy-card .text {
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
}

.privacy .s2 .right .privacy-card {
    text-decoration: none;
    color: inherit;
}

.privacy .s2 .right .p-exception-label {
    margin-top: 2em;
    font-weight: 600;
}

.privacy .s2 .right .p-law-text {
    margin-top: 25px;
    padding-left: 28px;
}

.privacy .s2 .right .privacy-content {
    margin-top: 40px;
}

.privacy .s2 .right .p-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.privacy .s2 .right .p-title,
.contact .s2 .right .p-title {
    position: relative;
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1em;
    line-height: 1.8em;
    padding-left: 20px;
    display: flex;
    align-items: center;
    border-bottom: none;
}

.privacy .s2 .right .p-title:before,
.contact .s2 .right .p-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 3px;
    height: 3px;
    border: #F5F5F5 3px solid;
    outline: var(--blue) 3px solid;
    background: var(--blue);
    border-radius: 50%;
    display: block;
}

.privacy .s2 .right .p-section>p {
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 0;
    text-align: justify;
}

.privacy .s2 .right .p-sub-item {
    margin-bottom: 35px;
    padding-left: 0;
}

.privacy .s2 .right .p-sub-item h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.privacy .s2 .right .p-sub-item p {
    line-height: 1.8;
    text-align: justify;
}

.privacy .s2 .right .p-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.privacy .s2 .right .p-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy .s2 .right .p-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.privacy .s2 .right .laws-text {
    margin-top: 40px;
    padding-top: 30px;
    border-top: #E0E0E0 1px solid;
    font-size: 16px;
}

@media only screen and (max-width: 900px) {
    .privacy .s2 .right .privacy-cards {
        gap: 15px;
    }

    .privacy .s2 .right .privacy-card .text {
        font-size: 15px;
    }
}

@media only screen and (max-width: 640px) {
    .privacy .s2 .right .privacy-cards {
        flex-direction: column;
    }

    .privacy .s2 .right .privacy-card {
        min-height: 130px;
    }
}

/*FORGOT-----------------------------------------*/

/*FORGOT_STEP2-----------------*/
.forgot.step2 .out {
    max-width: 550px;
}

.forgot.step2 .ps {
    margin: 0.5em 0 40px 1.2em;
}

/*FORGOT_STEP3-----------------*/
.forgot.step3 .s2 .out {
    display: block !important;
}

.forgot.step3 .container,
.change.step2 .container {
    text-align: center;
}

.status-to {
    color: var(--blue);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.sub-top {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    position: relative;
}

.icon-check:after {
    content: '';
    width: 30px;
    height: 15px;
    border-left: 4px solid var(--blue);
    border-bottom: 4px solid var(--blue);
    transform: rotate(-45deg);
    margin-top: -5px;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.info-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width:768px) {
    .main-title {
        font-size: 1.8rem;
    }
}

/*NEWS-----------------------------------------*/
.news .s2 {
    padding-top: 60px;
}

.news .page-title {
    font-size: 24px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 35px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #FFFFFF;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(24, 121, 190, 0.15);
}

.category-card .card-img {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.category-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.category-card:hover .card-img img {
    transform: scale(1.05);
}

.category-card .card-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    background: rgba(0, 124, 126, 0.9);
    color: #FFFFFF;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
}

.category-card .card-tag:after {
    content: "→";
    font-size: 1.25em;
    transition: transform 0.3s;
}

.category-card:hover .card-tag:after {
    transform: translateX(5px);
}

@media only screen and (max-width:900px) {
    .category-grid {
        gap: 20px;
    }
}

@media only screen and (max-width:640px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .news .page-title {
        text-align: center;
    }
}

/*NEWS_LIST-----------------------------------------*/
.news.list .title {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
}

.news.list .tab {
    width: 200px;
    position: relative;
    z-index: 1;
    font-size: 17px;
    font-weight: normal;
}

.news.list .tab div {
    display: block;
    position: relative;
    line-height: 50px;
    border: var(--green) 1px solid;
    text-align: center;
    cursor: pointer;
    background: #FFFFFF;
    border-radius: 10px;
}

.news.list .tab div.active {
    border-bottom: #F7F7F7 1px solid;
    border-radius: 10px 10px 0 0;
}

.news.list .tab div:after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    border-style: solid;
    border-width: 6px 3px 0 3px;
    border-color: var(--blue) transparent transparent transparent;
    margin-top: -3px;
}

.news.list .tab ul {
    display: block;
    position: absolute;
    width: 100%;
    background: #F7F7F7;
    border-style: solid;
    border-color: var(--blue);
    border-width: 0 1px 1px 1px;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.2s;
}

.news.list .tab div.active+ul {
    transform: scaleY(1);
}

.news .s2 .tab a {
    display: block;
    text-align: center;
    padding: 1em 0;
    border-radius: 30px;
    transition: 0.2s;
}

.news .s2 .tab a:hover {
    color: var(--blue);
}

.news.list .tab .active a,
.news.list .tab a:hover {
    color: var(--blue);
}

.news.list .tab a:before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: #EDEDED;
}

.news.list .article-item {
    display: block;
    margin-bottom: 40px;
}

.news.list .article-item .t1 {
    font-size: 22px;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-weight: 500;
    transition: 0.2s;
}

.news.list .article-item:hover .t1 {
    color: #007173;
}

.news.list .article-item .info {
    color: var(--blue);
    margin: 1em 0 1.5em;
}

.news.list .article-item .summary {
    line-height: 1.8em;
    margin-bottom: 1em;
}

.news.list .more-btn {
    display: inline-block;
    padding: 6px 20px;
    border: #E0E0E0 1px solid;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    background: #FFFFFF;
    transition: 0.2s;
}

.news.list .article-item:hover .more-btn {
    border-color: var(--blue);
    color: #FFFFFF;
    background: var(--blue);
}

.news.list .article-divider {
    border: none;
    border-top: rgba(180, 180, 181, 0.5) 1px solid;
    margin: 40px 0;
}

/*NEWS_IN-----------------------------------------*/

.news.in .s2 .t1 {
    padding-right: 160px;
    line-height: 1.2em;
}

.news.in .s2 .podcast-btn {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    border: #999 1px solid;
    border-radius: 20px;
    font-size: 14px;
    color: #222;
    font-weight: normal;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.2s;
}

.news.in .s2 .podcast-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.news.in .s2 .podcast-btn img {
    height: 30px;
    width: auto;
}

/* 作者與來源 */
.news.in .s2 .detail-info {
    font-size: 17px;
    color: #222;
    font-weight: normal;
}

.news.in .s2 .detail-info .author {
    margin: 2em 0 1em;
}

.news.in .s2 .detail-info .source {
    color: #222;
    word-break: break-all;
    line-height: 1.5em;
}

.news.in .s2 .detail-info .source a {
    transition: 0.2s;
}

.news.in .s2 .detail-info .source a:hover {
    color: var(--blue);
}

/* 底部按鈕 */
.news.in .s2 .detail-footer {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.news.in .s2 .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 40px;
    border: #999 1px solid;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.2s;
}

.news.in .s2 .back-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: #F4F9FF;
}

.news.in .s2 .back-btn:before {
    content: "←";
    font-size: 1.2em;
}

.news.in .s2 .right .editor {
    line-height: 2em;
}

.news.in .s2 .right .editor img {
    max-width: 100%;
    height: auto !important;
}

/*TEST-----------------------------------------*/
.test .page-title {
    font-size: 24px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 35px;
}

.test .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.test .category-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #FFFFFF;
    border: none;
    height: 100%;
}

.test .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 124, 126, 0.12);
}

.test .category-card .card-img {
    aspect-ratio: 1.4 / 1;
    width: 100%;
    background: #f8f9fa;
}

.test .category-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test .category-card .card-info {
    padding: 25px 20px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.test .category-card .card-tag {
    position: static;
    background: transparent;
    color: var(--blue);
    padding: 0;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.test .category-card .card-tag:after {
    display: none;
}

.test .category-card .card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.test .category-card .card-btn {
    display: inline-block;
    background: var(--blue);
    color: #FFFFFF;
    padding: 8px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s, opacity 0.3s;
}

.test .category-card:hover .card-btn {
    opacity: 0.9;
}

@media only screen and (max-width: 1100px) {
    .test .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 640px) {
    .test .category-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/*TEST_SAFETY-----------------------------------------*/
.test.safety .test-desc {
    background: #F4F9FF;
    padding: 2.5rem;
    border-radius: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    border: 1px solid #E3EEF7;
}

.test.safety .test-desc p {
    margin-bottom: 1rem;
}

.test.safety .test-desc h3.no_bottom {
    margin-bottom: 1em;
}

.test.safety .test-container {
    margin-bottom: 2.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #EDEDED;
}

.test.safety .question-block {
    background: #fff;
    padding: 2.5rem 2.5rem;
    transition: background 0.3s;
}

.test.safety .question-block:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
}

.test.safety .question-block:hover {
    background: #F9FCFF;
}

.test.safety .question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test.safety .options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.test.safety .option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
    color: #222;
    transition: color 0.3s;
}

.test.safety .option-item:hover {
    color: var(--green);
}

.test.safety .option-item input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    margin: 0;
    accent-color: var(--green);
}

.test.safety .btn-submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 3.75rem auto 0;
    padding: 1rem 2rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.test.safety .btn-submit:hover {
    background: var(--blue);
    box-shadow: 0 5px 15px rgba(0, 124, 126, 0.3);
    transform: translateY(-2px);
}

.test.safety .error-msg {
    color: #9D1E23;
    text-align: center;
    margin: 2rem 0 0;
    font-weight: 500;
    display: none;
    padding: 10px;
    background: #FFF5F5;
    border-radius: 8px;
}

/* ERROR */
.test.safety .question-block.has-error {
    background: #FFF5F5 !important;
    border-left: 5px solid #9D1E23;
}

.test.safety .question-block.has-error .question-text {
    color: #9D1E23;
}

@media only screen and (max-width: 768px) {
    .test.safety .question-block {
        padding: 1.5rem 1rem;
    }

    .test.safety .options-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .test.safety .option-item {
        background: #fcfcfc;
        padding: 10px 15px;
        border-radius: 6px;
        border: 1px solid #f0f0f0;
        width: 100%;
        box-sizing: border-box;
    }
}

/*TEST_SAFETY_RESULT-----------------------------------------*/
.safety.result .result-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.safety.result .result-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #F4F9FF;
}

.safety.result .result-title {
    font-size: 24px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 35px;
}

.safety.result .score-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.safety.result .score-card {
    flex: 1;
    background: #F8FBFF;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #EAF2F9;
    display: flex;
    flex-direction: column;
}

.safety.result .score-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.safety.result .score-val {
    font-size: 3rem;
    color: #007C7E;
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-family: var(--lato);
}

.safety.result .score-level {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    vertical-align: middle;
    margin-bottom: 1.5rem;
    align-self: center;
}

.safety.result .score-desc {
    text-align: justify;
    line-height: 1.6;
    color: #555;
    margin-top: auto;
    border-top: 1px dashed #D0E1F0;
    padding-top: 1rem;
}

.safety.result .score-emphasis {
    color: #007C7E;
    font-weight: bold;
}

.safety.result .level-高 {
    background: #088380;
}

.safety.result .level-中 {
    background: #007C7E;
}

.safety.result .level-低 {
    background: #9D1E23;
}

.safety.result .analysis-box {
    background: #fff;
    border-radius: 15px;
    padding: 2.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.safety.result .analysis-box::before {
    content: "整體心理安全感分析";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #222;
    font-weight: 600;
    font-size: 1.25rem;
    white-space: nowrap;
}

.safety.result .analysis-text {
    font-size: 17px;
    line-height: 2em;
    color: #222222;
    margin-bottom: 2rem;
    text-align: justify;
}

.safety.result .tip-box {
    background: #FFF9F2;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #FF9800;
}

.safety.result .tip-title {
    font-weight: bold;
    color: #E65100;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.safety.result .tip-content {
    line-height: 1.6;
    color: #5D4037;
}

.safety.result .action-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.safety.result .btn {
    padding: 0.875rem 2.5rem;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.safety.result .btn-print {
    background: #007C7E;
    color: #fff;
    border: none;
}

.safety.result .btn-print:hover {
    background: #005F60;
    transform: translateY(-2px);
}

.safety.result .btn-retest {
    background: #fff;
    color: #007C7E;
    border: 2px solid #007C7E;
}

.safety.result .btn-retest:hover {
    background: #F4F9FF;
    transform: translateY(-2px);
}

@media only screen and (max-width: 768px) {
    .safety.result .result-container {
        padding: 1.5rem;
    }

    .safety.result .score-val {
        font-size: 2.5rem;
    }

    .safety.result .analysis-box {
        padding: 1.5rem;
    }
}

/*TEST_FATIGUE-----------------------------------------*/
.test.fatigue .test-desc {
    background: #F4F9FF;
    padding: 2.5rem;
    border-radius: 1.25rem;
    margin-bottom: 1em;
    line-height: 1.8;
    color: #222;
    border: 1px solid #E3EEF7;
}

.test.fatigue .test-desc p {
    margin-bottom: 1rem;
}

.test.fatigue .test-container {
    margin-bottom: 2.5rem;
    border-radius: 1.25rem;
    overflow: hidden;
    border: 1px solid #EDEDED;
}

.test.fatigue .question-block {
    background: #fff;
    padding: 2.5rem 2.5rem;
    transition: background 0.3s;
}

.test.fatigue .question-block:not(:last-child) {
    border-bottom: 1px solid #EDEDED;
}

.test.fatigue .question-block:hover {
    background: #F9FCFF;
}

.test.fatigue .question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.test.fatigue .options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.test.fatigue .option-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
    color: #222;
    transition: color 0.3s;
}

.test.fatigue .option-item:hover {
    color: var(--green);
}

.test.fatigue .option-item input[type="radio"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    margin: 0;
    accent-color: var(--green);
}

.test.fatigue .btn-submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 3.75rem auto 0;
    padding: 1rem 2rem;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.test.fatigue .btn-submit:hover {
    background: #005F60;
    box-shadow: 0 5px 15px rgba(0, 124, 126, 0.3);
    transform: translateY(-2px);
}

.test.fatigue .error-msg {
    color: #9D1E23;
    text-align: center;
    margin: 2rem 0 0;
    font-weight: 500;
    display: none;
    padding: 10px;
    background: #FFF5F5;
    border-radius: 8px;
}

/* ERROR */
.test.fatigue .question-block.has-error {
    background: #FFF5F5 !important;
    border-left: 5px solid #9D1E23;
}

.test.fatigue .question-block.has-error .question-text {
    color: #9D1E23;
}

@media only screen and (max-width: 768px) {
    .test.fatigue .question-block {
        padding: 1.5rem 1rem;
    }

    .test.fatigue .options-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .test.fatigue .option-item {
        background: #fcfcfc;
        padding: 10px 15px;
        border-radius: 6px;
        border: 1px solid #f0f0f0;
        width: 100%;
        box-sizing: border-box;
    }
}

/*TEST_FATIGUE_RESULT-----------------------------------------*/
.fatigue.result .result-container {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.fatigue.result .result-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #F4F9FF;
}

.fatigue.result .result-title {
    font-size: 24px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 35px;
}

.fatigue.result .score-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.fatigue.result .score-card {
    background: #F8FBFF;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid #EAF2F9;
    display: flex;
    flex-direction: column;
}

.fatigue.result .score-card-top {
    text-align: center;
    margin-bottom: 1.5rem;
}

.fatigue.result .score-card h4 {
    font-size: 1.375rem;
    line-height: 1.5em;
    font-weight: 600;
}

.fatigue.result .score-val-wrap {
    text-align: center;
}

.fatigue.result .score-val {
    display: block;
    font-size: 3rem;
    color: var(--blue);
    font-weight: bold;
    font-family: var(--lato);
    margin: 10px 0;
}

.fatigue.result .score-level {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    font-size: 1.05rem;
    vertical-align: middle;
    margin-top: 5px;
}

.fatigue.result .level-high {
    background: #9D1E23;
}

/* 疲勞高 */
.fatigue.result .level-mid {
    background: #FF9800;
}

/* 疲勞中 */
.fatigue.result .level-low {
    background: #088380;
}

/* 疲勞低 */

.fatigue.result .score-desc {
    text-align: justify;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    border-top: 1px dashed #D0E1F0;
    padding-top: 1.5rem;
}

.fatigue.result .action-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.fatigue.result .btn {
    padding: 0.875rem 2.5rem;
    border-radius: 30px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.fatigue.result .btn-print {
    background: var(--blue);
    color: #fff;
    border: none;
}

.fatigue.result .btn-print:hover {
    background: #005F60;
    transform: translateY(-2px);
}

.fatigue.result .btn-retest {
    background: #fff;
    color: var(--blue);
    border: 2px solid var(--blue);
}

.fatigue.result .btn-retest:hover {
    background: #F4F9FF;
    transform: translateY(-2px);
}

@media only screen and (max-width: 768px) {
    .fatigue.result .result-container {
        padding: 1.5rem;
    }

    .fatigue.result .score-card-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fatigue.result .score-val {
        font-size: 2.5rem;
    }
}

/*CONSULT-----------------------------------------*/
.consult .s2 .right {
    line-height: 1.8;
}

.consult .s2 .consult-section {
    margin-bottom: 50px;
}

.consult .s2 .section-title {
    position: relative;
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 1em;
    line-height: 1.8em;
    padding-left: 20px;
    display: flex;
    align-items: center;
    border-bottom: none;
}

.consult .s2 .section-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.8em;
    width: 3px;
    height: 3px;
    border: #F5F5F5 3px solid;
    outline: var(--blue) 3px solid;
    background: var(--blue);
    border-radius: 50%;
    display: block;
}

.consult .s2 .sub-title {
    font-size: 18px;
    margin-bottom: 15px;
}

/* 服務流程卡片 */
.consult .s2 .process-row {
    display: flex;
    align-items: stretch;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.consult .s2 .step-card {
    flex: 1;
    min-width: 200px;
    background: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    position: relative;
}

.consult .s2 .step-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--blue);
    padding-bottom: 10px;
}

.consult .s2 .step-num {
    font-family: var(--lato);
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.consult .s2 .step-num:after {
    content: "→";
    color: var(--blue);
}

.consult .s2 .step-label {
    color: var(--blue);
    font-weight: 600;
    font-size: 18px;
}

.consult .s2 .step-main {
    font-size: 26px;
    color: var(--blue);
    font-weight: bold;
}

.consult .s2 .step-info {}

.consult .s2 .step-card.ok-step .step-label:after {
    content: "OK";
    font-size: 12px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    padding: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

.consult .s2 ul.check-list {
    list-style: none;
    padding-left: 0;
}

.consult .s2 ul.check-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
}

.consult .s2 ul.check-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blue);
}

.consult .s2 .step-info .dot-item {
    position: relative;
    padding-left: 15px;
    display: block;
    margin-top: 5px;
}

.consult .s2 .step-info .dot-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--blue);
    line-height: inherit;
}

.consult .s2 .blue-text {
    color: var(--blue);
    text-decoration: underline;
}

.consult .s2 .label-blue {
    color: var(--blue);
    font-weight: 600;
}

@media only screen and (max-width: 1000px) {
    .consult .s2 .process-row {
        flex-direction: column;
    }

    .consult .s2 .step-card {
        width: 100%;
    }
}

/*FAQ Specific Styles-----------------------------------------*/
.faq-list {
    margin-top: 20px;
}

.faq-item {
    position: relative;
    margin-bottom: 40px;
    line-height: 1.8;
    border-bottom: #DBDCDC 1px solid;
    padding-bottom: 40px;
}

.faq-item:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 85px;
    height: 1px;
    background: var(--blue);
    border-right: #F5F5F5 2px solid;
}

.faq-q {
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.faq-q:before {
    content: "Q :";
    flex-shrink: 0;
}

.faq-a {
    padding-left: 25px;
    position: relative;
}

.faq-a:before {
    content: "A :";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #222;
}

.faq-a p {
    margin-bottom: 10px;
}

.faq-sub-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 10px 0;
}

.faq-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #ddd;
}

.faq-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

.faq-table tr td:first-child {
    background-color: #f9f9f9;
    font-weight: 600;
}

.faq-table a {
    word-break: break-all;
    transition: 0.2s;
}

.faq-table a:hover {
    color: var(--blue);
}

@media (max-width: 768px) {
    .faq-a {
        padding-left: 0;
        margin-top: 10px;
    }

    .faq-a:before {
        position: static;
        display: inline-block;
        margin-right: 5px;
    }
}

/*CONTACT-----------------------------------------*/
.contact .s2 .contact-title {
    font-size: 24px;
    color: var(--blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E5E5E5;
    font-weight: bold;
}

.contact .s2 .contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 4%;
}

.contact .s2 .contact-item {
    width: 48%;
    min-width: 295px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact .s2 .contact-item .icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .s2 .contact-item .icon-box img {
    width: 28px;
    height: 28px;
}

.contact .s2 .contact-item .info {
    flex-grow: 1;
}

.contact .s2 .contact-item .label-row {
    display: flex;
    align-items: center;
}

.contact .s2 .contact-item .label {
    white-space: nowrap;
    margin-right: 10px;
}

.contact .s2 .contact-item .line {
    flex-grow: 1;
    height: 1px;
    background: #D8D8D8;
}

.contact .s2 .contact-item .value {
    font-size: 24px;
    color: var(--blue);
    font-weight: 500;
    margin: 15px 0;
}

.contact .s2 .contact-item:first-child .value {
    font-size: 32px;
}

.contact .s2 .contact-item .sub {}

@media screen and (max-width: 800px) {
    .contact .s2 .contact-item {
        width: 100%;
        max-width: 300px;
        gap: 15px;
    }
}

/*CHANGE_PW-----------------------------------------*/
.change .right .out {
    max-width: 550px;
}

.change .right .t2 {
    line-height: 1.5em;
}

.change .right .ps {
    margin-bottom: 40px;
}

.change .right form .nofill:before {
    top: 35px;
}

/*COMMON--------------------------------------------------------------------*/

/*HEADER-----------------------------------------*/
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--blue);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    transition: 0.2s;
}

.header .mb_bt,
.header .mb {
    display: none;
}

.header .logo {
    display: block;
    position: absolute;
    top: 50%;
    left: 6%;
    z-index: 1;
    transform: translateY(-50%);
    margin-left: -20px;
}

.header .logo img {
    height: 60px;
}

.header .link {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 12px 0;
}

.header .link a {
    display: inline-block;
    border: #C3DCEE 1px solid;
    padding: 0.5em 1.5em;
    border-radius: 20px;
    color: #FFFFFF;
    transition: 0.2s;
}

.header .link .logout a {
    background: url("../images/icon_logout.svg") right 10px center no-repeat;
    background-size: 18px;
    padding-right: 2em;
}

.header .link a:hover {
    border-color: var(--blue);
    background-color: #fff;
    color: var(--blue);
}

.header .link .logout a:hover {
    background-image: url("../images/icon_logout_hover.svg");
}

/*STYLE-----------------------------------------*/

/*CIRCLE_S1-----------------*/
.box {
    position: relative;
}

.box .circle {
    position: absolute;
}

.box .c1 {
    width: 405px;
    top: 230px;
    left: 50%;
    margin-left: -900px;
}

.box .c2 {
    width: 180px;
    top: 20px;
    right: 50%;
    margin-right: -850px;
}

.box .c3 {
    width: 1060px;
    bottom: -500px;
    right: 50%;
    margin-right: -1500px;
}

/*ARTICLE_S1-----------------*/
.article .s1 {
    background: url("../images/s1.jpg") top -30px center no-repeat;
    height: 265px;
    font-size: 32px;
    border-bottom: #FFFFFF 1px solid;
}

.article .s1 .out {
    max-width: 900px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    text-shadow: 0 0 5px #F4F4F4;
}

.article .s1 .en {
    font-family: var(--lato);
    font-style: italic;
    font-size: 0.6em;
    color: var(--blue);
    font-weight: 300;
    margin-bottom: 0.5em;
}

.article .s1 .tw {
    font-weight: normal;
}

/*ARTICLE_S2-----------------*/
.article .s2 {
    background: rgba(204, 204, 204, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 60px 0 90px;
}

.article .s2 .out {
    display: grid;
    grid-template-columns: 270px auto;
    gap: 7%;
}

.article .s2 .left {
    order: 1;
}

.article .s2 .left .date-widget {
    background: linear-gradient(#339698, #007C7E);
    padding: 30px;
    color: #FFFFFF;
    border-radius: 15px 15px 0 0;
}

.article .s2 .left .date-display {
    font-size: 25px;
    font-weight: 600;
}

.article .s2 .left .time-display {
    font-size: 18px;
    margin-top: 0.7em;
}

.article .s2 .left .menu {
    background: #FFFFFF;
    margin-top: 8px;
    padding: 30px 0 30px 30px;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.article .s2 .left .menu a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 19px;
    padding: 1em 0;
    position: relative;
    cursor: pointer;
    border-bottom: rgba(24, 121, 190, 0.2) 1px solid;
    transition: 0.2s;
}

.article .s2 .left .menu li:last-child a {
    border-bottom: none;
}

.article .s2 .left .active a,
.article .s2 .left .menu a:hover {
    color: var(--blue);
}

.article .s2 .left .menu a img {
    width: 25px;
}

.article .s2 .right {
    order: 2;
}

.article .s2 .right .title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: var(--blue);
    border-bottom: #DBDCDC 1px solid;
    padding-bottom: 1em;
    margin-bottom: 60px;
}

.article .s2 .right .title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 2.5em;
    height: 1px;
    background: var(--blue);
    border-right: #F5F5F5 2px solid;
}

@media only screen and (max-width:760px) {
    .article .s1 {
        height: auto !important;
        aspect-ratio: 2/1;
        background-position: top left 45% !important;
    }
}

@media only screen and (max-width:455px) {
    .article .s1 {
        font-size: 7vw;
    }
}

/*ARTICLE_FORM-----------------*/
form.out {
    max-width: 1000px;
    display: block !important;
}

form .mb {
    display: none;
}

form .t1 {
    font-size: 19px;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    margin-bottom: 60px;
}

form .t1 span {
    position: relative;
    display: inline-block;
}

form .t1 span:before,
form .t1 span:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: #231815;
}

form .t1 span:before {
    left: -40px;
}

form .t1 span:after {
    right: -40px;
}

form .title {
    font-weight: 600;
    border-left: var(--blue) 3px solid;
    padding-left: 0.5em;
    text-align: left;
}

form .radio {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    gap: 1em 0;
    padding-top: 60px;
    text-align: left;
}

form .radio li label {
    display: inline-flex;
    gap: 0.5em;
    align-items: center;
    cursor: pointer;
}

form .radio li input {
    width: 18px;
    height: 18px;
    accent-color: var(--blue);
}

form .choose select {
    width: 100%;
    height: 59px;
    border: #E0E0E0 1px solid;
    border-radius: 5px;
    padding: 0 40px 0 15px;
    font-size: 16px;
    color: #666;
    background: #FFFFFF;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
    margin-top: 55px;
}

form .choose select.require {
    border-color: var(--blue);
    box-shadow: 0px 0px 5px var(--blue);
}

form .info {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
}

form .data {
    max-width: 550px;
    margin: 55px auto;
}

form .data li {
    display: flex;
    align-items: center;
    gap: 2em;
    margin-bottom: 20px;
    background: #FFFFFF;
    padding: 0 1em;
    border: #E0E0E0 1px solid;
    border-radius: 5px;
}

form .data li.require {
    border-color: var(--blue);
    box-shadow: 0px 0px 5px var(--blue);
}

form .data span {
    white-space: nowrap;
}

form .data input {
    width: 100%;
    height: 55px;
    border: none;
    background: #FFFFFF;
}

form .send {
    display: block;
    width: 170px;
    height: 45px;
    border: none;
    border-radius: 30px;
    color: #FFFFFF;
    background: var(--blue);
    cursor: pointer;
    margin: 0 auto 35px;
    transition: 0.2s;
}

form .send:hover {
    background: #007173;
}

form .ps {
    display: grid;
    justify-content: center;
    text-align: left;
    margin-top: 60px;
    line-height: 1.5em;
    list-style: disc;
    margin-left: 1.2em;
}

form .ps span {
    border-bottom: #8E8986 1px solid;
}

form .ps li {
    line-height: 1.5em;
    margin-bottom: 0.5em;
}

form .ps li::marker {
    color: var(--blue);
}

form .nofill:before,
form .format:before {
    position: absolute;
    top: 30px;
    left: 5px;
    color: #FFFFFF;
    padding: 8px 10px;
    background: var(--blue);
    border-radius: 5px;
    font-size: 12px;
    line-height: 1em;
    white-space: nowrap;
    pointer-events: none;
}

form .nofill:before {
    content: "此欄為必填";
}

form .format:before {
    content: "格式錯誤";
}

/*PAGE_NUMBER-----------------------------------------*/
.page_number {
    font-family: Arial;
    text-align: center;
    color: #000000;
}

.page_number ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    overflow: hidden;
    padding-bottom: 5px;
}

.page_number li select {
    cursor: pointer;
    padding: 0 10px 0 0;
}

.page_number li.page_select {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0px 25px 0 20px;
    cursor: pointer;
}

.page_number li.page_select .select_box {
    display: inline-block;
    position: relative;
    margin-right: 10px;
}

.page_number li.page_select .select_box:after {
    content: "";
    position: absolute;
    top: 50%;
    border-style: solid;
    border-width: 8px 4px 0 4px;
    border-color: var(--blue) transparent transparent transparent;
    margin-top: -4px;
    transition: 0.2s;
}

.page_number a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #FFFFFF;
    border: #9E9F9F 1px solid;
    border-radius: 50%;
    vertical-align: middle;
    position: relative;
    transition: 0.2s;
}

.page_number a:hover {
    background: var(--blue);
    border-color: var(--blue);
}

.page_number li a:after {
    content: "";
    position: absolute;
    top: 50%;
    border-style: solid;
    border-color: var(--blue);
    border-width: 0px 1px 1px 0px;
    padding: 5px;
    margin-top: -14%;
    transition: 0.2s;
}

.page_number a:hover:after {
    border-color: #FFFFFF;
}

.page_number li.page_prev a:after {
    right: 32%;
    transform: rotate(135deg);
}

.page_number li.page_next a:after {
    left: 32%;
    transform: rotate(-45deg);
}

.page_number li select {
    border: none;
    font-family: Arial;
    font-size: 24px;
    font-weight: 500;
    border-radius: 5px;
    background: none;
    text-align-last: center;
    transition: 0.2s;
}

.page_number li .select_box:hover select {
    color: var(--blue);
}

.page_number span {
    color: #9E9F9F;
}

/*PAGETOP-----------------------------------------*/
body a.pagetop {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 500;
    background: #FFFFFF;
    opacity: 0.8;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    transition: opacity 0.2s;
}

body a.pagetop:hover {
    opacity: 1 !important;
}

body a.pagetop:after {
    content: "";
    border: solid var(--green);
    border-width: 0px 3px 3px 0px;
    padding: 5px;
    display: inline-block;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: rotate(-135deg) translate(-50%, -50%);
    transform-origin: left top;
}

/*FOOTER-----------------------------------------*/
.footer {
    border-bottom: var(--green) 10px solid;
}

.footer .out {
    max-width: 1200px;
}

/*FOOTER_TOP-----------------*/
.footer .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: #E0E0E0 1px solid;
}

.footer .top .left {
    display: flex;
    align-items: center;
    line-height: 1.5em;
}

.footer .top .left div {
    position: relative;
    padding-left: 60px;
}

.footer .top .left div:before {
    content: "";
    position: absolute;
    left: 27px;
    bottom: -5px;
    width: 1px;
    height: 110%;
    background: var(--red);
    transform: rotate(45deg);
    transform: left bottom;
}

.footer .top .left img {
    width: 165px;
}

.footer .top .right {
    width: 600px;
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
}

.footer .top .right li {
    position: relative;
    padding-left: 25px;
}

.footer .top .right img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 20px;
    transform: scale(0.8) translateY(-50%);
}

.footer .top .right li {
    margin: 0.5em 0;
}

.footer .top .right li.add img {
    width: 14px;
    left: 3px;
}

/*FOOTER_BM-----------------*/
.footer .bm {
    font-size: 13px;
    padding: 1.5em 0;
}

@media only screen and (max-width:1200px) and (min-width:1001px) {
    .footer .top {
        font-size: 1.4vw;
    }

    .footer .top .right {
        width: 55%;
    }
}

/*MOBILE----------------------------------------------------------------------------*/
@media only screen and (max-width:1000px) {

    /*NEWS_LIST-----------------------------------------*/
    .news.list .title {
        display: block !important;
    }

    .news.list .tab {
        margin: 0 auto 30px;
    }

    /*NEWS_IN-----------------------------------------*/
    .news.in .s2 .t1 {
        padding-right: 0;
    }

    .news.in .s2 .podcast-btn {
        position: static;
        margin-top: 20px;
    }

    /*COMMON--------------------------------------------------------------------*/

    /*HEADER-----------------------------------------*/
    .header .out {
        height: 60px;
        padding: 0 20px;
    }

    .header .logo {
        max-width: 100px;
        left: 0;
        margin-left: 0;
    }

    .header .pc {
        display: none;
    }

    /*HEADER_MB_BUTTON-----------------*/
    .header .mb_bt,
    .header .mb {
        display: block;
    }

    .header .mb_bt {
        position: absolute;
        top: 50%;
        right: 20px;
        z-index: 1;
        width: 40px;
        height: 40px;
        margin-top: -20px;
        text-align: left;
        cursor: pointer;
    }

    .header .mb_bt span {
        height: 1px;
        width: 40px;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        background: #FFFFFF;
        transition: 0.3s;
        display: block;
    }

    .header .mb_bt span:before,
    .header .mb_bt span:after {
        content: "";
        height: 1px;
        position: absolute;
        right: 0;
        background: #FFFFFF;
        transition: 0.3s;
    }

    .header .mb_bt span:before {
        top: -8px;
        width: 40px;
    }

    .header .mb_bt span:after {
        top: 8px;
        width: 40px;
    }

    .header .mb_bt.active span:before {
        top: 0;
        transform: rotate(45deg);
    }

    .header .mb_bt.active span:after {
        top: 0;
        transform: rotate(-45deg);
    }

    .header .mb_bt.active:hover span {
        transform: rotate(-90deg);
    }

    .header .mb_bt.active span:before {
        top: 0;
        transform: rotate(45deg);
    }

    .header .mb_bt.active span:after {
        top: 0;
        transform: rotate(-45deg);
    }

    .header .mb_bt.active:hover span {
        transform: rotate(-90deg);
    }

    .header .mb_bt.active span {
        background: none;
    }

    /*HEADER_MENU-----------------*/
    .header .mb {
        position: fixed;
        top: 60px;
        bottom: 0;
        left: 0;
        width: 100%;
        overflow-y: auto;
        background: #F7F7F7;
        transform: translateX(100%);
        transition: 0.3s ease-in-out;
        -webkit-overflow-scrolling: touch;
    }

    .header .mb.active {
        transform: translateX(0);
    }

    .header .mb .menu {
        padding: 40px;
    }

    .header .mb .menu a {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 20px;
        padding: 1em 0;
        position: relative;
        cursor: pointer;
        border-bottom: #ECECEC 1px solid;
        transition: 0.2s;
    }

    .header .mb .menu a:hover {
        color: var(--blue);
    }

    .header .mb .menu a img {
        width: 25px;
    }

    .header .link a {
        border-color: var(--blue);
        background-color: none;
        color: var(--blue);
    }

    .header .link .logout a {
        background-image: url("../images/icon_logout_hover.svg");
    }

    /*HEADER_LINK-----------------*/
    .header .mb .link {
        justify-content: space-between;
        padding: 0 40px 100px;
    }

    /*STYLE-----------------------------------------*/

    /*ARTICLE_S1-----------------*/
    .article .s1 {
        position: relative;
        height: 380px;
        background-position: top center;
        background-size: cover;
        border-bottom: none;
    }

    .article .s1:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 50%;
        width: 100%;
        background: linear-gradient(rgba(245, 245, 245, 0), rgba(245, 245, 245, 1));
    }

    /*ARTICLE_S2-----------------*/
    .article .s2 {
        padding: 60px 0;
    }

    .article .s2 .out {
        display: block;
    }

    .article .s2 .left .date-widget {
        max-width: 300px;
        border-radius: 15px;
        text-align: center;
        margin: 30px auto 0;
    }

    .article .s2 .left .menu {
        display: none;
    }

    /*ARTICLE_FORM-----------------*/
    form .pc {
        display: none;
    }

    form .mb {
        display: block;
    }

    form .data li {
        gap: 1em;
    }

    /*FOOTER-----------------------------------------*/

    /*FOOTER_TOP-----------------*/
    .footer .top {
        display: block;
        padding: 30px 0;
    }

    .footer .top .left {
        display: block;
        text-align: center;
    }

    .footer .top .left div {
        padding: 10px 0;
    }

    .footer .top .left div:before {
        display: none;
    }

    .footer .top .right {
        display: block;
        width: auto;
        font-size: 16px;
        max-width: 330px;
        margin: 0 auto;
    }

    .footer .top .right li {
        margin: 1.5em 0;
    }

    .footer .top .right li span {
        display: inline-block;
        width: 3.8em;
    }

    /*FOOTER_BM-----------------*/
    .footer .bm {
        text-align: center;
    }
}