/* Common Style */
@font-face {
    font-family: 'NotoSans'; /*a name to be used later*/
    src: url('../Noto_Sans_TC/NotoSansTC-Light.otf'); /*URL to font*/
}

@font-face {
    font-family: 'NotoSans-Bold'; /*a name to be used later*/
    src: url('../Noto_Sans_TC/NotoSansTC-Bold.otf'); /*URL to font*/
}

* {
    font-family: 'NotoSans';
}

section {
    padding-top: 85px;
}

.section_content {
    max-width: 1024px;
    margin: 0px auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.section_content .section_title {
    color: #FF9500;
    font-size: 35px;
}

.section_content h1.title {
    font-size: 40px;
}

.section_content .title {
    font-size: 30px;    
}

.section_content .sub_title {
    font-size: 22px;
    line-height: 2.5rem;
    margin-bottom: 3rem;
    letter-spacing: 3.6px;
}

.section_content .content {
    font-size: 24px;
    line-height: 3.5rem;
    letter-spacing: 3.5px;
}

.section_content .image_content .subtitle,
.section_content .flex_image_content .subtitle {
    margin-top: 0.5rem;
    line-height: 1.5rem;
    letter-spacing: 1.5px;
}

.section_content .flex_image_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section_content .flex_image_content.flex_start {
    align-items: flex-start;
}

.section_content .flex_image_content .flex_right,
.section_content .flex_image_content .flex_left {
    flex: 0 0 48%;
    margin-top: 2.5rem;
}

.section_content .video_content {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.section_content .video_content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section_content .video_content .subtitle {
    position: absolute;
    top: 102%;
}

.swiper_content {
    margin-bottom: -4px;
}

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

a {
    color: #000000;
    display: inline-block;
    text-decoration-line: none;
}

.image,
.video {
    width: 100%;
}

.image_pc {
    display: block;
}

.image_mobile {
    display: none;
}

[mobile-show] {
    display: none;
}

.page_title {
    text-align: center;
}

.page_title .title {
    width: max-content;
    margin: 1rem auto;
    text-align: left;
}

@media screen and (max-width: 768px) {
    section {
        padding-top: 60px;
    }

    .section_content {
        padding: 0px 1rem;
    }

    .section_content .title {
        font-size: 25px;
        margin: .8rem 0px;
        line-height: 2rem;
    }

    .section_content .sub_title {
        font-size: 14px;
        line-height: 2rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .section_content .content {
        margin-top: 0px;
        font-size: 16px;
        line-height: 2rem;
        letter-spacing: 1px;
    }

    .section_content .image_content .subtitle {
        font-size: 14px;
    }

    .section_content .flex_image_content {
        flex-wrap: wrap;
    }
    
    .section_content .flex_image_content .flex_right,
    .section_content .flex_image_content .flex_left {
        flex: 100%;
    }

    .image_pc {
        display: none;
    }

    .image_mobile {
        display: block;
    }

    [mobile-show] {
        display: contents;
    }

    [pc-show] {
        display: none;
    }

    .page_title {
        padding: 0px 1.5rem;
        text-align: left;
    }

    .page_title .title {
        font-size: 1.5rem;
    }
}