@charset "utf-8";
/*-----------------------------
    GLOBE SETTING
-----------------------------*/

@import url("https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600&display=swap");
/* font-family: Signika, sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap');
/* font-family: 'Noto Sans TC', sans-serif; */

@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/* font-family: "M PLUS Rounded 1c", sans-serif; */

* {
    font-size: 16px;
    font-family: 'Noto Sans TC', sans-serif;
    ;
}

section {
    position: relative;
    z-index: 5;
}

h1, h2, h3, h4, h5, p, ul, ol, img {
    margin: 0;
    padding: 0;
}

p {
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

a {
    color: inherit;
    transition: all .3s;
}

a:focus, a:hover {
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

a.more {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

a.more:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #FF9800;
    top: -100%;
    left: 0px;
    transition: all .2s;
}

a.more:hover:before {
    top: 0%;
}

a.more span {
    position: relative;
}

a.more.more-dark {
    background-color: transparent;
    border: 1px solid #f2f2f2;
}

::selection {
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
}

.sp-only {
    display: none !important;
}

.cover.bg-cover {
    display: block;
}

.bg-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: block;
}

.bg-cover.cover-rectangle {
    padding-bottom: 64%;
}

.bg-cover.cover-square {
    padding-bottom: 100%;
}

.bg-cover.cover-rectangle-cloumn {
    padding-bottom: 125% !important;
}

.x-bg {
    background-color: rgb(0, 158, 150) !important;
}

.x-sbg {
    background-color: #ffa500 !important;
}

.x-bg-light, .x-bg-heavy {
    position: relative;
}

.x-bg-light>*, .x-bg-heavy>* {
    position: relative;
    z-index: 3;
}

.x-bg-light::before, .x-bg-heavy::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

.x-bg-light::before {
    background-color: rgba(255, 255, 255, 0.2);
}

.x-bg-heavy::before {
    background-color: rgba(0, 0, 0, 0.2);
}


@media (min-width:1200px) {
    .container-lg {
        max-width: 1380px;
    }

    .container-sm {
        max-width: 960px;
    }
}

@media (max-width:1199px) {
    .container.container-over {
        max-width: none;
    }
}

@media (max-width:991px) {
    .sp-only {
        display: block !important;
    }

    .pc-only {
        display: none !important;
    }
}

/*-----------------------------
    Header
-----------------------------*/

/* pc_header */

nav.navbar {
    padding: 0 15px;
}

.pc_header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #fff;
}

.pc_header .logo>a {
    display: block;
    max-height: 50px;
}

.pc_header .slogan p {
    font-weight: 600;
    color: #009e96;
}

#navBar {
    justify-content: center;
    position: relative;
}

#navBar ul.navbar-nav {
    flex: 1 1 100%;
    justify-content: center;
}

#navBar ul.navbar-nav>li {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navBar ul.navbar-nav>li>a.nav-link {
    font-family: "M PLUS Rounded 1c", sans-serif;
    position: relative;
    overflow: hidden;
    padding: 15px 10px;
}

#navBar ul.navbar-nav>li>a.nav-link span {
    position: relative;
    font-size: 20px;
    color: #fff;
}

#navBar ul.navbar-nav>li>a.nav-link:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: -101%;
    left: 0%;
    background-color: #FFEB3B;
    transition: all .2s;
}

#navBar ul.navbar-nav>li>a.nav-link:hover span {
    color: #009e96;
}

#navBar ul.navbar-nav>li>a.nav-link:hover:before, #navBar ul.navbar-nav>li.hs-sub-menu-opened>a.nav-link:before {
    top: 0px;
}

.hs-has-sub-menu>a::after {
    display: none;
}

#navBar .nav-option {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #72c02c;
}

#navBar .nav-option a {
    display: block;
    padding: 5px 20px;
    color: #fff;
}

#Search {
    position: relative;
    background-color: rgb(255, 255, 255);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    border-radius: 18px;
    width: 100%;
}

#Search input.search_box {
    border: none;
    padding: 0px 0px 0px 24px;
    background-color: transparent;
    width: 100%;
    font-size: 1rem;
    line-height: 1rem;
}

#Search input.search_box:focus {
    outline: none;
}

#Search .search_btn {
    background-color: rgb(136, 136, 136);
    color: rgb(255, 255, 255);
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    left: 3px;
    padding: inherit;
}

@media (min-width:1200px) {
    #navBar ul.navbar-nav>li>a.nav-link {
        padding: 15px 20px;
    }
}

@media (min-width:992px) {
    .pc_header {
        height: 200px;
    }

    #navBar ul.navbar-nav>li.search {
        margin-left: auto;
    }

    #navBar {
        max-width: 1300px;
        margin: 0 auto;
    }
}

@media (max-width:991px) {
    .u-header {
        top: 0px;
        position: absolute;
    }

    .pc_header, #navBar>.logo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        height: 60px;
    }

    #navBar>.logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        max-width: 120px;
        margin: 0 auto;
    }

    .pc_header>.logo {
        display: flex;
        margin-right: auto;
        align-items: center;
        height: 60px;
        max-width: calc(100% - 45px);
        padding-left: 20px;
        padding-right: 5%;
    }

    #navBar .nav-option {
        position: relative;
        top: inherit;
        right: inherit;
        height: 50px;
        justify-content: center;
        align-items: center;
        display: flex;
        margin-bottom: 20px;
    }

    button.navbar-toggler {
        position: absolute;
        top: 18px;
        right: 10px;
        z-index: 99;
        padding: 0px;
        border: none;
    }

    span.hamburger {
        padding: 4px;
    }

    [aria-expanded=false] .hamburger-inner, [aria-expanded=false] .hamburger-inner::after, [aria-expanded=false] .hamburger-inner::before {
        background-color: #333 !important;
    }

    ul.navbar-nav {
        padding-top: 90px;
        justify-content: flex-start !important;
        height: calc(100vh - 120px);
    }

    #navBar ul.navbar-nav li {
        text-align: center;
        order: 2;
        flex-wrap: wrap;
    }

    ul.hs-sub-menu {
        background-color: #3b7ca7;
        width: 100%;
        margin: 0 10px;
    }

    #navBar ul.navbar-nav li.search {
        order: 1;
        margin-bottom: 20px;
    }

    #Search {
        max-width: 50%;
    }

    #Search .search_btn {
        left: inherit;
        right: 3px;
    }

    .navbar {
        padding: 0;
    }

    #navBar ul.navbar-nav>li>a.nav-link:before {
        background-color: #3cceb2;
    }

    .u-header [aria-labelledby] {
        margin: 0;
    }
}

#Page_header {
    color: #fff;
    display: flex;
    align-items: center;
    height: 230px;
}

#Page_header .title {
    position: relative;
}

#Page_header .title h2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
}

#Page_header .title h2.search_result {
    font-family: inherit;
    font-size: 18px;
    display: flex;
    align-items: center;
    font-weight: 300;
}

#Page_header .title h2.search_result span.num {
    margin: 0 5px;
    font-size: 18px;
    font-weight: 300;
}

#Page_header .title h2.search_result span.keyword {
    border: 1px solid #fff;
    padding: 2px 15px;
    border-radius: 12px;
    font-size: 32px;
    font-family: "M PLUS Rounded 1c", sans-serif;
    margin-left: 20px;
}

#Page_header .title.event h1 {
    font-size: 20px;
}

#Page_header .title p {
    margin: 0 auto;
}

@media (min-width: 992px) {
    #Page_header .title h2 {
        font-size: 42px;
    }

    #Page_header .title.event {
        text-align: center;
    }

    #Page_header .title.event h1 {
        font-size: 30px;
        margin-bottom: 5px;
    }
}

.bread {
    background-color: #fff;
    padding: 5px 0;
}

.bread ol.site-page a {
    color: #777;
}

.bread ol.site-page a:hover {
    color: #999;
}

.bread ol.site-page {
    font-size: .8rem;
}

.bread ol.site-page li:nth-child(n+2) {
    position: relative;
}

.bread ol.site-page li:nth-child(n+2):before {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f105";
    color: #94a9d1;
    margin-right: 10px;
}

.bread ol.site-page li.active a {
    font-weight: 400;
    color: #999;
    padding-bottom: 2px;
    border-bottom: 1px dashed #ccc;
}

.bread ol.site-page li a span {
    font-size: 13px;
    font-weight: 200;
}

@media (max-width:768px) {
    .bread {
        display: none;
    }
}

.header-fix {
    margin-top: 0px;
}

@media (max-width:991px) {
    .header-fix {
        margin-top: 60px;
    }
}

/*-----------------------------
    sp_nav
-----------------------------*/

/* sp-nav */

@media (min-width:769px) {
    .sp-nav {
        display: none;
    }
}

@media (max-width:768px) {
    .sp-nav {
        position: fixed;
        z-index: 10;
        bottom: 0px;
        left: 0px;
        width: 100%;
        text-align: center;
    }

    .sp-nav ul {
        margin: 0;
        display: flex;
    }

    .sp-nav ul li {
        margin: 0 !important;
    }

    .sp-nav ul li:nth-child(1) {
        flex: 0 0 50px;
        background-color: #607d8b;
    }

    .sp-nav ul li:nth-child(1) i:before {
        font-size: 1.5rem;
        line-height: 46px;
        display: block;
    }

    .sp-nav ul li:nth-child(2) {
        flex: 0 0 50px;
        background-color: #72c02c;
    }

    .sp-nav ul li:nth-child(2) a {
        width: 100%;
        height: 100%;
        background-image: url(../images/social/line.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 45%;
    }

    .sp-nav ul li:nth-child(3) {
        flex: 1 1 50%;
        background-color: #33b1ab;
    }

    .sp-nav ul li:nth-child(4) {
        flex: 1 1 50%;
        background-color: #e64b3b;
    }

    .sp-nav ul li a {
        display: block;
        line-height: 46px;
        font-size: 1rem;
        color: #fff;
        text-align: center;
    }

    a.js-go-to.u-go-to-v1 {
        display: none !important;
    }
}

/*-----------------------------
    Home Setting
-----------------------------*/

#Slide_bg .js-slide .content {
    padding: 40px;
}

#Personal.listing {
    display: flex;
}

#Personal.listing .personal {
    flex: 0 0 calc(100% / 3);
}

#Personal.listing .personal .p_wrap {
    padding: 20px;
    margin-bottom: 30px;
}

#Personal.listing .personal .p_wrap .cover {
    border-radius: 100%;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto 20px auto;
}

#Personal.listing .personal .p_wrap .content {
    text-align: center;
}

#Personal.listing .personal .p_wrap .content p {
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width:767px) {
    #Personal.listing {
        flex-wrap: wrap;
    }

    #Personal.listing .personal {
        flex: 0 0 100%;
    }
}

.home-title {
    text-align: center;
    margin-bottom: 60px;
}

.home-title h3 span {
    font-size: 30px;
    color: #009e96;
    font-weight: 600;
}

#Ok_list {
    padding: 20px 0;
}

#Ok_list .slider {
    border: 1px solid #0fbeb5;
    padding: 10px;
    text-align: center;
    background-color: #fff;
}

#Ok_list .slider .content p, #Ok_list .slider .content span {
    font-size: 16px;
    font-weight: 300;
}

#Ok_list .slider .content span {
    font-weight: 400;
}

#Ok_list .slider .content span.loc, #Ok_list .slider .content span.name {
    color: #009e96;
}

#Ok_list .slider .content span.categroy {
    color: #607D8B;
}

#Ok_list .slider .content span.method, #Ok_list .slider .content span.money {
    color: #FF5722;
}

@media (max-width:767px) {
    #Ok_list .slider .content p, #Ok_list .slider .content span {
        font-size: 13px;
    }

    #ArticleList {
        padding-top: 30px !important;
    }
}

.x-group {
    display: -webkit-flex;
    display: flex;
    position: relative;
}

.x-group .cover {
    flex: 1 0 65%;
    min-height: 70vh;
    position: relative;
    z-index: 3;
}

.x-group:before {
    content: "";
    display: block;
    position: absolute;
    transform: skewX(10deg);
    background-color: #f7f7f7;
    height: calc(100% + 100px);
    width: 50%;
    top: calc(0px - 50px);
    left: -100px;
}

.x-group .cover:after {
    content: "";
    display: block;
    position: absolute;
    transform: skewX(10deg);
    width: 200px;
    height: 100%;
    background-color: #fff;
    right: -140px;
    top: 0px;
}

.x-group .content {
    flex: 1 1 35%;
    padding: 40px;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 4;
}

.x-group .content ul.hard-font {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    text-align: center;
}

.x-group .content ul.hard-font li {
    list-style: none;
    display: inline-block;
}

.x-group .content ul.hard-font li:not(:first-child) {
    margin-left: 10px;
}

.x-group .content ul.hard-font li span {
    display: block;
    min-width: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #009e96;
    color: #fff;
    font-size: 3rem;
    overflow: hidden;
}

.x-group .content ul.hard-font li:nth-child(n+3) span {
    background-color: #fff;
    border: 1px solid #33b1ab;
    color: #33b1ab;
}

ul.list-star {
    margin: 0;
    padding-left: 25px;
    list-style: none;
}

ul.list-star li {
    position: relative;
}

ul.list-star li:not(:last-child) {
    margin-bottom: 5px;
}

ul.list-star li:before, ul.list-star li:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 50%;
}

ul.list-star li:before {
    left: -20px;
    top: 5px;
    transform: rotate(-45deg);
    background-color: #33b1ab;
}

ul.list-star li:after {
    left: -21px;
    bottom: 0px;
    transform: rotate(45deg);
    background-color: #009e96;
    height: 35%;
}

.x-group .content p {
    font-size: 1.1rem;
    line-height: 2rem;
    margin-bottom: 30px;
    text-align: justify;
}

@media (max-width:991px) {
    .x-group .cover {
        flex: 1 1 50%;
    }

    .x-group .content {
        padding-bottom: 0;
    }
}

@media (min-width:768px) {
    .x-group .cover img {
        display: none;
    }
}

@media (max-width:767px) {
    .x-group {
        flex-direction: column;
    }

    .x-group:before {
        display: none;
        width: 200vw;
    }

    .x-group .cover {
        min-height: inherit;
    }

    .x-group .cover img {
        display: block;
    }

    .x-group .cover:after {
        display: none;
    }
}

#About {
    position: relative;
}

#About:before {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #58cbc6 0%, #009e96 51%, #33b1ab 100%);
    left: 0px;
    top: 0px;
}

.about_group {
    display: flex;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

.about_group .ab_wrap {
    flex: 0 0 50%;
}

.about_group .ab_wrap .item {
    display: flex;
    padding: 40px 15px;
}

.about_group .ab_wrap .item:first-child {
    border-bottom: 1px dashed #ccc;
}

.about_group .ab_wrap .item .icon_logo {
    flex: 0 0 100px;
}

.about_group .ab_wrap .item .icon_logo i {
    font-size: 40px;
    color: #009e96
}

.about_group .ab_wrap .item .icon_logo img {
    border-radius: 100%;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, .15);
}

.about_group .ab_wrap .item .content {
    flex: 1 1 100%;
    padding-left: 10px;
}

.about_group .ab_wrap .item .content h3 {
    color: #009e96;
    margin-bottom: 15px;
}

.about_group .ab_wrap .item .content p {
    text-align: justify;
    line-height: 32px;
}

.about_group .ab_wrap:first-child .item h3, .about_group .ab_wrap:first-child .item i, .about_group .ab_wrap:first-child .item p {
    color: #fff;
}

#Page_header {
    color: rgb(255, 255, 255);
    background: linear-gradient(90deg, #58cb8e 0%, #009e96 51%, #33b1ab 100%);
}

#Page_header .title {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}

#Page_header .title h2 {
    font-weight: 400;
    margin-bottom: 10px;
}

.cop_content {
    display: flex;
    align-items: center;
}

.cop_content .img {
    flex: 0 0 60%;
}

.cop_content .txt {
    flex: 0 0 40%;
}

.cop_content .txt>p {
    font-size: 17px;
    text-align: justify;
    line-height: 30px;
}

@media (min-width:1200px) {
    .home-title h3 span {
        font-size: 48px;
    }
}

@media (min-width:992px) {
    .about_group .ab_wrap:first-child {
        padding-right: 50px;
    }

    .about_group .ab_wrap:last-child {
        padding-left: 50px;
    }

    #Page_header .title h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .cop_content .txt {
        padding-left: 50px;
    }
}

@media (max-width:991px) {
    .cop_content {
        flex-wrap: wrap;
    }

    .cop_content .img,
    .cop_content .txt {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
}

@media (max-width:767px) {
    #About:before {
        display: none;
    }

    .about_group {
        flex-direction: column;
        margin-left: -15px;
        margin-right: -15px;
        padding-top: 0;
    }

    .about_group .ab_wrap:first-child {
        background: linear-gradient(135deg, #58cbc6 0%, #009e96 51%, #33b1ab 100%);
    }

    .about_group .ab_wrap .item {
        padding: 40px 20px;
    }

    .cop_content .txt>p {
        font-size: 14px;
        line-height: 25px;
        font-weight: 200;
    }
}

.actions {
    display: flex;
}

.actions .ind_act {
    flex: 0 0 calc(100% / 3);
    padding: 0 10px;
}

.actions .ind_act a {
    color: #fff;
    padding: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.actions .ind_act.phone a {
    background-color: #FF9800;
}

.actions .ind_act.facebook a {
    background-color: #496cbc
}

.actions .ind_act.lineAt a {
    background-color: #72c02c;
}

.actions .ind_act.lineAt a span {
    font-weight: 600;
}

@media (max-width:576px) {
    .actions {
        flex-wrap: wrap;
    }

    .actions .ind_act {
        flex: 0 0 100%;
    }

    .actions .ind_act:not(:last-child) {
        margin-bottom: 10px;
    }
}

/*-----------------------------
    Footer
-----------------------------*/

footer .footer {
    padding: 80px 0 15px 0;
}

footer .home-title h3 span {
    color: #fff;
    font-size: 30px;
    font-weight: 100;
}

ul.social_icon {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

ul.social_icon>li {
    list-style: none;
}

ul.social_icon>li:not(:first-child) {
    margin-left: 20px;
}

#Tags.listing {
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

#Tags.listing .tag:not(:first-child) {
    padding-left: 10px;
}

#Tags.listing .tag>a {
    display: block;
    padding: 5px 20px;
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
}

ul.footer_nav {
    list-style: none;
    display: flex;
    justify-content: center;
}

ul.footer_nav li.nav-item {
    position: relative;
    list-style: none;
}

ul.footer_nav li.nav-item:first-child {
    margin-left: 0px;
}

ul.footer_nav li.nav-item>a.nav-link {
    padding: 5px 15px;
}

ul.footer_nav li.nav-item:not(:first-child):before {
    content: "";
    display: block;
    position: absolute;
    height: 15px;
    width: 1px;
    background-color: #fff;
    top: calc(50% - 15px / 2);
    left: 0px;
}

ul.footer_nav li.nav-item>a.nav-link>span {
    color: #fff;
    font-weight: 300;
}

.act {
    text-align: center;
}

.act>a {
    background-color: #72c02c;
    padding: 5px 20px;
    border-radius: 20px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.act.large>a {
    min-height: 40px;
    padding: 5px 30px;
}

.act.large>a span {
    font-size: 24px;
}

footer .slogan {
    text-align: center;
    margin-bottom: 10px;
}

footer .slogan>p {
    color: #fff;
}

footer address {
    text-align: center;
}

footer address p {
    font-size: 13px;
    color: #fff;
}

@media (max-width:1199px) {
    ul.footer_nav {
        flex-wrap: wrap;
    }

    #Tags.listing {
        flex-wrap: wrap;
    }

    #Tags.listing .tag {
        margin-bottom: 12px;
    }

    #Tags.listing .tag a span {
        font-size: 13px;
        font-weight: 300;
    }
}

@media (max-width:767px) {
    ul.footer_nav>li.nav-item>a.nav-link span {
        font-size: 13px;
    }
}

/*-----------------------------
    Calces
-----------------------------*/

#Calces {
    background-color: #fff;
    padding: 15px;
    max-width: 100%;
    margin-left: -40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .2);
    min-width: 310px;
    z-index: 5;
    position: relative;
}

#Calces .calc_wrap h5 {
    margin-bottom: 10px;
    position: relative;
}

#Calces .calc_wrap h5 span {
    font-size: 13px;
    font-weight: 300;
    background-color: #fff;
    position: relative;
    z-index: 3;
    padding-right: 10px;
}

#Calces .calc_wrap h5:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    top: 50%;
    left: 0%;
}

#Calces .result {
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    padding: 5px 10px;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

#Calces .result span {
    font-size: 24px;
    margin: 0 10px;
}

#Calces .act.calc {
    display: flex;
    flex-direction: column;
}

#Calces .act.calc a {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: #009e96;
    color: #fff;
    border-radius: 8px;
}

#Calces .act.calc a:last-child {
    margin-top: 10px;
    background-color: #72c02c;
}

#Calces .act.calc a:hover {
    background-color: #ffa100;
}

#Calces .calc_wrap {
    margin-bottom: 5px;
}

#Calces input[type=number] {
    font-size: 20px;
    text-align: center;
    color: #009e96;
}

#Calces input[type=radio] {
    display: none;
}

#Calces input[type=radio]:checked+span {
    background-color: #ffA100;
    color: #fff;
}

#Calces .calc_wrap .label_group {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}

#Calces .calc_wrap .label_group label {
    flex: 0 0 50px;
    cursor: pointer;
}

#Calces .calc_wrap .label_group label span {
    display: flex;
    font-size: 14px;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

/*-----------------------------
    TWO Block
-----------------------------*/

#KV {
    padding: 0;
}

#KV>.container-over {
    padding: 0px;
}

#KV a.js-resize {
    display: block;
}

#KV a.js-resize>img {
    width: 100%;
}

.two_block {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.two_block .item {
    flex: 1 1 50%;
}

.two_block .item .content {
    width: 100%
}

.two_block .item.first {
    flex: 1 0 75%;
    overflow: hidden;
    position: relative;
}

.two_block .item.first .slider .js-slide>a.bg-cover {
    height: 540px;
}

.two_block .item.second {
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

@media (min-width:1200px) {
    .two_block .item.second {
        display: flex;
    }
}

@media (max-width:1199px) {
    .two_block .item.first {
        flex: 1 1 100%;
    }

    .two_block .item.first .slider .js-slide>a.bg-cover {
        height: 420px;
    }
}

@media (max-width:767px) {
    .two_block .item.first .slider .js-slide>a.bg-cover {
        height: 280px;
    }
}

@media (max-width:576px) {
    .two_block {
        flex-wrap: wrap;
    }

    .two_block .item {
        flex: 1 1 100% !important;
    }

    .two_block .item.first .slider .js-slide>a.bg-cover {
        height: 200px;
    }
}

/*-----------------------------
    Prod.listing
-----------------------------*/

#Prods.listing {
    display: flex;
    flex-wrap: wrap;
}

#Prods.listing .prod {
    flex: 0 0 20%;
    padding: 0 10px;
    margin-bottom: 30px;
}

#Prods.listing .prod .prod_wrap {
    border: 1px solid #eee;
    padding: 10px;
}

#Prods.listing .prod .prod_wrap .content .title {
    margin: 5px 0;
}

#Prods.listing .prod .prod_wrap .content .title h4 {
    font-size: 14px;
    font-weight: 400;
    color: #28ada6;
}

#Prods.listing .prod .prod_wrap .content .details {
    padding-top: 5px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#Prods.listing .prod .prod_wrap .content .details .tag {
    padding: 0 10px;
    font-size: 12px;
    background-color: #FF9800;
    color: #fff;
    display: inline-block;
    border-radius: 4px;
}

#Prods.listing .prod .prod_wrap .content .details .price {
    position: relative;
    color: #ccc;
}

#Prods.listing .prod .prod_wrap .content .details .price:before {
    content: "$";
}

/* categlory*/

.cate_wrap {
    display: flex;
    justify-content: center;
    max-width: 990px;
    margin: 0 auto 50px auto;
}

.cate_wrap .cate_nav {
    display: flex;
    width: inherit;
}

.cate_wrap .cate_nav .cate_item {
    flex: 1 1 150px;
    margin-left: 20px;
    max-width: 220px;
    min-width: 120px;
}

.cate_wrap .cate_nav .cate_item>a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 8px;
    min-height: 40px;
}

.cate_wrap .cate_nav .cate_item>a.active, .cate_wrap .cate_nav .cate_item>a:hover {
    background-color: #009e96;
    color: #fff;
}

.cate_wrap .cate_nav .cate_item>a>span {
    font-size: 18px;
}

.cate_wrap .filter_bar {
    flex: 0 0 150px;
    margin-left: 20px;
}

.cate_wrap :not(.cate_nav)+.filter_bar {
    flex: 0 0 300px;
}

.cate_wrap :not(.cate_nav).filter_bar .chosen-container .chosen-drop {
    right: 10px;
}

.filter_bar .chosen-container .chosen-single span {
    color: #aaa;
    font-size: 18px;
}

.u-select-v2 .chosen-single div b i {
    color: #aaa;
}

.filter_bar .chosen-container .chosen-drop {
    width: calc(100% - 20px);
    margin-left: inherit;
}

.filter_bar .chosen-container {
    border-radius: 8px;
    background-color: #ddd;
    color: #aaa;
    padding-left: 30px;
    border: none;
}

.filter_bar .chosen-results>li.result-selected {
    background-color: #ddd;
    color: #aaa;
}

.filter_bar>select {
    color: #ddd;
}

@media (max-width:991px) {
    .filter_bar .chosen-container .chosen-drop {
        right: 10px;
    }
}

@media (max-width:767px) {
    .cate_wrap {
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .cate_wrap .cate_nav {
        flex: 1 1 100%;
        flex-wrap: wrap;
    }

    .cate_wrap .cate_nav .cate_item {
        min-height: 40px;
        margin-bottom: 10px;
        margin-left: 5px;
        margin-right: 5px;
        max-width: inherit;
    }

    .cate_wrap .cate_nav .cate_item a {
        border: 1px solid #ddd;
    }

    .cate_wrap .filter_bar {
        margin-top: 20px;
        flex: 1 1 100%;
        text-align: center;
        margin-left: 0;
        margin-top: 0px;
        padding-top: 10px;
        border-top: 1px solid #ddd;
    }

    .cate_wrap .cate_nav .cate_item>a>span {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    #Prods.listing .prod {
        flex: 0 0 25%;
    }
}

@media (max-width:767px) {
    #Prods.listing .prod {
        flex: 0 0 calc(100% / 3);
    }
}

@media (max-width:576px) {
    #Prods.listing .prod {
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 15px;
    }

    #Prods.listing .prod .prod_wrap {
        display: flex;
    }

    #Prods.listing .prod .prod_wrap .cover {
        flex: 0 0 120px;
    }

    #Prods.listing .prod .prod_wrap .content {
        flex: 1 1 100%;
        padding-left: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    #Prods.listing .prod .prod_wrap .content .title h4 {
        font-size: 16px;
    }
}

.u-pagination-v1-1--active, .u-pagination-v1-1:hover, .u-pagination-v1-1:focus {
    background-color: #009e96;
    color: #fff;
    border-color: #33b1ab;
}

/*-----------------------------
    QA
-----------------------------*/

#qa_cate {
    margin-bottom: 50px;
}

#qa_cate h2.title {
    padding: 30px 0;
    position: relative;
    margin-bottom: 0;
    color: #009e96;
}

#qa_cate h2.title:after {
    width: 50px;
    height: 2px;
    background-color: #50d3cd;
    left: 0;
    bottom: 13px;
    content: "";
    position: absolute;
}

#qa_cate .card {
    border: none;
}

#qa_cate .card-header {
    background-color: unset;
    transition: all .3s;
}

#qa_cate .card-header:hover {
    background-color: #f3f3f3;
}

#qa_cate .card-header a {
    color: #009e96;
    position: relative;
    display: block !important;
    padding-left: 20px;
    visibility: visible;
}

#qa_cate .card-header a:after, #qa_cate .card-header a:before {
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #ddd;
    left: 0px;
    transition: all .5s;
}

#qa_cate .card-header a:before {
    top: 10px;
    transform: rotate(270deg);
}

#qa_cate .card-header a:after {
    top: 10px;
    transform: rotate(180deg);
}

#qa_cate .card-header a[aria-expanded=true]:before {
    transform: rotate(0deg);
}

#qa_cate .card-header a[aria-expanded=true]:after {
    transform: rotate(-180deg);
}

#qa_cate .card-block {
    padding: 10px 10px 10px 35px;
}

#qa_cate .card-block ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

#qa_cate .card-block ol li {
    padding-left: 25px;
}

#qa_cate .card-block ol li a {
    color: #999;
    font-size: 1rem;
    line-height: 25px;
}

#qa_cate .card-block img {
    max-width: 100%;
}

@media (max-width:578px) {
    #qa_cate h2.title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0px;
    }

    #qa_cate .card p {
        font-size: 1rem;
    }
}

/*-----------------------------
                QA end
-----------------------------*/

#product .title h1 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #009e96;
}

#product ol.desc {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

#product ol.desc li {
    position: relative;
}

#product ol.desc li:before {
    font: normal normal normal 14px/1 FontAwesome;
    content: "\f005";
    color: #FFC107;
    margin-right: 10px;
}

#product ul.price {
    list-style: none;
    padding-left: 0;
    margin-bottom: 10px;
}

#product ul.price li.sale {
    font-size: 30px;
    color: #aaa;
    font-family: Georgia, Utopia, 'Times New Roman', Times, serif;
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    display: inline-block;
}

#product ul.price li.sale:before {
    content: "原　價";
    font-size: 1rem;
    margin-right: 5px;
    font-family: "微軟正黑體";
}

#product ul.price li.sale:after {
    position: absolute;
    content: "";
    height: 4px;
    width: 100%;
    display: block;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    top: 50%;
    left: 50px;
}

#product ul.price li.pomo {
    font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #c0392b;
    text-transform: uppercase;
}

#product ul.price li.pomo:before {
    content: "官網價";
    margin-right: 5px;
    font-size: 1rem;
    color: #aaa;
    font-family: "微軟正黑體";
}

#product .memo {
    padding: 2px 15px;
    display: inline-block;
    background-color: #5f70a6;
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

#product .buy_wrap {
    display: flex;
    display: -webkit-flex;
    position: relative;
    padding-top: 30px;
}

#product .buy_wrap>span {
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
}

#product .buy_wrap .input-group {
    flex: 0 1 50%;
    padding-right: 10px;
}

#product .buy_wrap .input-group span.input-group-btn {
    border: 1px solid #ccc;
    background-color: #f7f7f7
}

#product .buy_wrap .input-group span.input-group-btn:first-child {
    border-right: none;
    border-radius: 4px 0 0 4px;
}

#product .buy_wrap .input-group span.input-group-btn:last-child {
    border-left: none;
    border-radius: 0 4px 4px 0;
}

#product .buy_wrap .to-cart {
    flex: 0 1 40%;
}

#product .buy_wrap .to-cart a {
    width: 100%;
    border-radius: 4px;
    border: none;
    background-color: #72c02c;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

#product .buy_wrap .to-cart a span.line {
    margin-right: 5px;
    font-weight: 600;
}

#product .buy_wrap .to-cart a:hover {
    background-color: #ffa500;
}

#product .buy_wrap .to-cart i {
    color: #fff;
}

#product_cate .card {
    border: none;
}

#product_cate .card-header {
    background-color: unset;
    padding: 0 0 10px 0;
}

#product_cate .card-header a {
    color: #2d385a;
    position: relative;
    display: block;
    padding-left: 20px;
}

#product_cate .card-header a:after, #product_cate .card-header a:before {
    display: block;
    content: "";
    position: absolute;
    width: 10px;
    height: 2px;
    background-color: #ddd;
    left: 0px;
    transition: all .5s;
}

#product_cate .card-header a:before {
    top: 10px;
    transform: rotate(270deg);
}

#product_cate .card-header a:after {
    top: 10px;
    transform: rotate(180deg);
}

#product_cate .card-header a[aria-expanded=true]:before {
    transform: rotate(0deg);
}

#product_cate .card-header a[aria-expanded=true]:after {
    transform: rotate(-180deg);
}

#product_cate .card-block {
    padding: 10px 0 0;
}

#product_cate .card-block ol {
    padding-left: 0;
    list-style: none;
    margin-bottom: 25px;
}

#product_cate .card-block ol li {
    padding-left: 25px;
}

#product_cate .card-block ol li a {
    color: #999;
    font-size: 1rem;
    line-height: 25px;
}

@media (max-width:767px) {
    #product .title h1 {
        font-size: 24px;
    }
}

/*-----------------------------
    Project
-----------------------------*/

#PJ_header .content {
    min-height: 50vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 15px;
}

#PJ_header .content p {
    max-width: 470px;
    text-align: center;
}

#Imgs.listing {



    max-width: 690px;
    margin: 0 auto;
}

#Imgs.listing img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
}

#Imgs.listing h2 {
    font-size: 2.4rem;
    color: #1d9998;
    font-weight: 600;
}

#Imgs.listing h3 {
    background: #1d9998;
    display: inline-block;
    color: #fff;
    font-size: 1.4rem;
    padding: 2px 10px;
}

#Imgs.listing p {
    margin: 10px 0 30px;
}

/*-----------------------------
            News
-----------------------------*/

ul.article-list {
    list-style: none;
    padding: 0;
}

ul.article-list li {
    display: flex;
    display: -webkit-flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 30px 0;
    transition: all .3s;
}

ul.article-list li:hover {
    background-color: #fff5;
}

ul.article-list li:nth-child(n+2) {
    border-top: 1px solid #ccc;
}

ul.article-list li .content {
    display: inline-flex;
    display: -webkit-inline-flex;
    flex: 1 1 100%;
    line-height: 1.4rem;
    color: #999;
    font-weight: 600 !important;
}

ul.article-list li:nth-child(n+4) .content {
    align-items: center;
}

ul.article-list li .content h1 {
    font-size: 20px;
    line-height: 20px;
    margin: 0;
    margin-bottom: 5px;
}

ul.article-list li .content h1 a {
    color: #33b1ab;
}

ul.article-list li .cate, ul.article-list li:nth-child(n+4) .cate {
    flex: 1 0 100px;
    text-align: center;
    line-height: 2rem;
    background-color: #33b1ab;
    color: #fff;
    font-size: .8rem;
    margin-right: 10px;
}

ul.article-list li .content span.date {
    margin: 0 15px;
}

ul.article-list li .content span.date:after {
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    position: absolute;
    bottom: -5px;
    left: 0px;
    background-color: #e8a02b;
}

ul.article-list li:nth-child(n+4) .content .desc, ul.article-list li:nth-child(n+4) .cover, ul.article-list li:nth-child(n+4) .content span.date:after {
    display: none;
}

ul.article-cate {
    list-style: none;
    padding: 0 15px;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

ul.article-cate li {
    display: inline-block;
    padding: 5px;
    flex: 0 1 120px;
}

ul.article-cate li a {
    font-size: 1.2rem;
    background-color: #fff;
    color: #000;
    display: block;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

ul.article-cate li.active a {
    color: #fff;
    background-color: #000;
}

ul.article-cate li a:after {
    content: "";
    background-color: #f7f7f7;
    height: 10px;
    width: 10px;
    position: absolute;
    top: 0px;
    right: -8px;
    transform: skew(40deg);
}

ul.article-cate li.active a:after {
    background-color: #e8a02b;
}

ul.article-cate li a:hover {
    background-color: rgba(0, 0, 0, .1);
}

ul.article-list li a.cover {
    height: 320px;
    display: block;
}

ul.article-list li .content .desc p {
    font-size: 13px;
    text-align: justify;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

ul.article-list {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

ul.article-list li:nth-child(1), ul.article-list li:nth-child(2), ul.article-list li:nth-child(3) {
    display: inline-block;
    border: 1px solid #eee;
    margin: 0 5px;
    flex: 0 0 calc(100% / 3 - 10px);
    max-width: 32%;
    padding: 15px;
    margin-bottom: 80px;
    background-color: #fff;
}

ul.article-list li:nth-child(1) {}

ul.article-list li:nth-child(3) {}

ul.article-list li:nth-child(1) .cate, ul.article-list li:nth-child(2) .cate, ul.article-list li:nth-child(3) .cate {
    position: absolute;
    background-color: #cd4a38;
    font-size: .9rem;
    padding: 2px 8px;
    color: #fff;
}

ul.article-list li:nth-child(1) .content, ul.article-list li:nth-child(2) .content, ul.article-list li:nth-child(3) .content {
    flex-direction: column;
    padding-left: 5px;
    padding-right: 5px;
}

ul.article-list li:nth-child(1) .content span.date, ul.article-list li:nth-child(2) .content span.date, ul.article-list li:nth-child(3) .content span.date {
    display: block;
    margin: 15px 0 15px;
    padding-bottom: 10px;
    position: relative;
    color: #54beb9;
}

ul.article-list li:nth-child(1) .content h1 a, ul.article-list li:nth-child(2) .content h1 a, ul.article-list li:nth-child(3) .content h1 a {
    font-weight: 600;
    color: #009e96;
}

ul.article-list li:nth-child(n+4) {
    flex: 0 0 100%;
    max-width: 1140px;
    padding-top: 14px;
}

ul.article-list li {
    padding: 0 10px;
}

@media (max-width:991px) {
    ul.text-flow li {
        margin: 0 5px;
        padding: 10px 2px 10px 2px;
    }

    .kv-banner ul.text-flow li {
        background-color: rgba(255, 255, 255, .8) !important;
        margin: 0 2px;
        padding: 5px 2px 10px 2px;
    }

    ul.article-list li .content {
        flex-direction: column;
        padding-left: 20px;
    }

    ul.article-list li .content span.date {
        margin: 0;
        font-size: .8rem;
        font-weight: normal;
    }

    .abs-personal {
        width: 50%;
        max-width: 320px;
        min-width: 240px;
        filter: saturate(.5) brightness(.8);
    }

    .home-about .content {
        justify-content: space-around;
    }

    .sidebar article.recipe {
        width: 49%;
        display: inline-block;
    }

    .article-main .article-header .cover {
        height: 360px;
    }

    ul.article-list li:nth-child(n+4) .content {
        align-items: flex-start;
    }
}

@media (max-width:768px) {
    ul.article-list li:nth-child(1), ul.article-list li:nth-child(2), ul.article-list li:nth-child(3) {
        display: block;
        flex: 0 0 100%;
        margin-bottom: 30px;
        max-width: none;
        margin-left: 0;
    }

    ul.article-list li:nth-child(n+4) .cate {
        display: none;
    }

    ul.article-list li:nth-child(n+4) .cover {
        display: block;
        flex: 0 0 60px;
        height: 60px;
    }

    ul.article-list li:nth-child(n+4) {
        align-items: flex-start;
        padding-top: 10px;
    }

    ul.article-list li a.cover {
        height: calc(100vw - 100px);
    }
}

@media (max-width:768px) and (min-width:400px) {
    ul.article-list li a.cover {
        height: 320px;
    }
}

/*-----------------------------
    Contact Form
-----------------------------*/

#SecForm {
    background-color: #fff;
    padding: 40px;
    border-top: 2px solid #ffeb3b;
}

#SecForm table {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    font-weight: 300;
}

#SecForm table tbody tr th {
    padding: 15px 0;
    vertical-align: top;
    min-width: 130px;
    font-weight: 300;
}

#SecForm table tbody tr:not(:first-child) {
    border-top: 1px dashed #ddd;
}

#SecForm table tbody td {
    vertical-align: top;
    padding: 15px 0;
}

#SecForm table td .checkbox-list-item {
    display: inline-block;
    margin-bottom: 10px;
}

#SecForm table td .checkbox-list-item:not(:last-child) {
    margin-right: 20px;
}

#SecForm table td .checkbox-list-item label input, #SecForm table td .checkbox-list-item label span {
    display: inline-block;
    vertical-align: text-bottom;
}

#SecForm table td .checkbox-list-item label input {
    width: 20px;
    height: 20px;
}

#SecForm table td .checkbox-list-item label {
    margin: 0;
}

#SecForm table td .checkbox-list-item label span {
    line-height: 20px;
    margin: 0;
}

#SecForm table td .x-input {
    height: 36px;
    width: 100%;
    padding-left: 10px;
    max-width: 580px;
}

#SecForm table td .x-select {
    height: 36px;
    width: 100%;
    max-width: 320px;
    padding-left: 10px;
    padding-right: 10px;
}

#SecForm table td .x-textarea {
    width: 100%;
    max-width: 580px;
}

span.tag {
    font-size: .9rem;
    background-color: #e8a02b;
    color: #fff;
    padding: 2px 5px;
    line-height: .9rem;
    border-radius: 4px;
    margin-left: 5px;
}

.x-modal {
    padding-right: 0px !important;
}

.x-modal .modal-dialog {
    max-width: 767px;
}

.modal-footer, .modal-header {
    border: none;
}

.modal-backdrop {
    background-color: rgb(0 158 150);
}

.modal-backdrop.show {
    opacity: 1;
}

.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header .close {
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 1;
    font-size: 2rem;
    color: #fff;
    transition: all .1s;
}

.modal-header .close:hover {
    color: #eee;
}

.modal-header h1 {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-group-v2 {
    display: flex;
    width: 320px;
    justify-content: space-between;
    margin: 0 auto;
}

.btn-group-v2 .btn-v2 {
    width: calc(50% - 5px);
    padding: 10px;
    transition: all .3s;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #fff;
    color: #009e96;
    border: 2px solid #fff;
    font-weight: 500;
}

.btn-group-v2 .btn-v2:nth-child(odd) {
    background-color: #f2f2f2;
    border: 2px solid transparent;
}

.btn-group-v2 .btn-v2:hover {
    background-color: #fff;
    color: #999;
}

.btn-group-v2 .btn-v2:nth-child(even):hover {
    background-color: #FFEB3B;
    color: #333;
    border: 1px solid transparent;
}

#SecForm.indSecForm {
    max-width: 760px;
    margin: 0 auto;
    border-top: indianred;
    border-radius: 10px 10px 0 0;
    position: relative;
    overflow: hidden;
}

#SecForm.indSecForm:after {
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
    height: 20px;
    background-color: #333;
    left: 0px;
    bottom: -20px;
    box-shadow: -5px -5px 10px rgb(0 0 0 /.3);
}

#SecForm.indSecForm .btn-group-v2 {
    justify-content: center;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    width: inherit;
}

@media (max-width:767px) {
    #SecForm {
        padding: 0px;
    }

    .x-form .modal-body {
        padding: 20px 0 !important;
    }

    .x-form span.tag {
        display: none;
    }

    #SecForm.indSecForm form {
        padding: 15px;
    }

    #SecForm.indSecForm .btn-group-v2 {
        padding-bottom: 20px;
    }

    #SecForm.indSecForm td.service {
        text-align: left;
    }
}

@media (max-width: 575px) {
    #SecForm table td .x-select {
        max-width: inherit;
    }

    #SecForm table tbody tr {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    #SecForm table tbody tr:not(:first-child) {
        padding-top: 10px;
    }

    #SecForm table tbody tr th, #SecForm table tbody tr td {
        flex: 0 0 100%;
        text-align: center;
        padding: 0;
    }

    #SecForm table tbody tr th {
        text-align: left;
    }

    #SecForm table tbody tr td {
        padding: 10px 0;
    }

    #SecForm table tbody tr:nth-child(n+5) td {
        text-align: left;
    }
}

/*-----------------------------
    wildget
-----------------------------*/

#gb-widget-9395 {
    bottom: 70px !important;
}

a[type="link"] {
    display: none !important;
}

a[color="#3cceb2"] {}

#Info {
    background-color: rgb(242, 242, 242);
    padding-top: 50px;
    padding-bottom: 50px;
}

.main {
    display: flex;
    background-color: rgb(255, 255, 255);
    padding-left: 20px;
    padding-right: 20px;
}

.main .main_content {
    flex: 0 0 70%;
}

.main .main_sidebar {
    flex: 0 0 30%;
    overflow: hidden;
}

.main_sidebar .sidebar_block .title {
    margin-bottom: 20px;
}

.main_sidebar .sidebar_block:not(:first-child) {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 3px double #eee;
}

.main_sidebar .sidebar_block .title h4 {
    font-size: 1.2rem;
}

.main_sidebar .sidebar_block a {
    display: block;
}

.main .main_content .main_block {
    margin-bottom: 50px;
}

.main .main_content .main_block:not(:last-of-type) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(221, 221, 221);
}

.main .main_content .main_block>.title>h2, .main .main_content .main_block>.title h3 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 400;
    color: rgb(96, 125, 139);
    margin-bottom: 20px;
}

.main_content .quote {
    background-color: rgb(250, 250, 250);
    padding: 10px;
}

.main_content .quote p {
    font-size: 1rem;
    margin: 0px;
}

@media (min-width: 992px) {
    .main {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width: 768px) {
    .main .main_content {
        padding-right: 30px;
    }
}

@media (max-width: 767px) {
    .main {
        flex-wrap: wrap;
        padding-top: 30px !important;
    }

    .main .main_content, .main .main_sidebar {
        flex: 0 0 100%;
    }

    .main .main_content {}
}

.ar_list article {
    display: flex;
    align-items: flex-start;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(238, 238, 238);
}

.ar_list article:last-child {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
}

.ar_list article .time {
    flex: 0 0 55px;
}

.ar_list article .time .subject {
    display: none;
}

.ar_list article .content {
    flex: 1 1 80%;
    padding-left: 10px;
}

.ar_list article .content .ar_title h5 {
    text-align: justify;
    line-height: 1.2rem;
    overflow: hidden;
    margin-bottom: 6px;
}

.ar_list article .content .ar_title h5 a {
    font-size: 1rem;
    color: #999;
}

.ar_list article .content .ar_title h5 a:hover {
    color: #666;
}

.ar_list article .content .user-tag .headphoto {
    flex: 0 0 20px;
    height: 20px;
}

.ar_list article>.content .user-tag .user-name {
    font-size: 0.8rem;
}

#Article_wrap {}

#Article_wrap>header {}

#Article_wrap>header h1 {
    font-size: 21px;
    font-weight: 600;
    text-align: justify;
    margin-bottom: 10px;
    color: #009e96;
}

#Article_wrap>header figure {
    position: relative;
}

#Article_wrap>header figure img {
    width: 100%;
    max-width: 100%;
}

#Article_wrap>header .btn_act {
    position: absolute;
    z-index: 3;
    right: 10px;
    bottom: 10px;
}

#Article_wrap>header time {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

#Article_wrap>header time span.date {
    order: 2;
    font-size: 2rem;
    line-height: 1.6rem;
}

#Article_wrap>header time span.date::after {
    content: "/";
    font-weight: 100;
}

#Article_wrap>header time span.my {
    font-size: 1rem;
    order: 2;
}

#Article_wrap>header time .subject {
    margin: 0px 10px 0px 0px;
    order: 1;
    font-size: 0.8rem;
    min-width: inherit;
    padding: 2px 7px;
}

#Article_wrap .introl {
    padding: 20px;
    background-color: #f3f3f3;
    margin-bottom: 20px;
}

#Article_wrap .article-content p {
    text-align: justify;
    font-size: 16px;
    margin-bottom: 20px;
}

#Article_wrap .article-content p strong {
    font-weight: 600;
}

#Article_wrap .article-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #33b1ab;
}

#Article_wrap .article-content h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

#Article_wrap .article-content h3>.title {
    display: block;
    font-weight: 100;
    font-size: 12px;
    color: #999;
}

#Article_wrap .article-content h4 {
    font-size: 20px;
    font-weight: 800;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

#Article_wrap .article-content h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

#Article_wrap .article-content h4:before, #Article_wrap .article-content h4:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    left: 0px;
    border-top: 1px solid #000;
}

#Article_wrap .article-content h4:before {
    bottom: 4px;
}

#Article_wrap .article-content h4:after {
    bottom: 0px;
    border-top: 2px solid #000;
}

#Article_wrap .article-content img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 20px;
}

#Article_wrap .article-content a {
    position: relative;
    margin-left: 4px;
    margin-right: 4px;
    color: rgb(0, 113, 194);
}

#Article_wrap .article-content table.table thead tr {
    background-color: #99856b;
    color: #fff;
}

#Article_wrap .article-content table.table thead tr th {
    text-align: center;
}

#Article_wrap .article-content table.table tbody td {
    vertical-align: middle;
}

#Article_wrap .article-content table.table tbody td:first-child {
    background-color: #ad9d89;
    color: #fff;
}

#Article_wrap .article-content table.table td {
    text-align: center;
}

#Article_wrap .article-content ol {
    list-style: decimal;
    padding-left: 20px;
    margin: 20px 0;
}

#Article_wrap .article-content ol li {}

@media (max-width:767px) {
    #Article_wrap .article-content p {
        font-size: 16px;
        font-weight: 300;
    }
}

@media (max-width:577px) {
    #Article_wrap>header h1 {
        margin-top: 15px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
}

.time {
    text-align: center;
}

.time span {
    display: block;
    font-family: Signika, sans-serif;
}

.time span.date {
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 2.3rem;
    color: #999;
}

.time span.my {
    font-size: 0.8rem;
}

.time .subject {
    background-color: rgb(0 158 150);
    color: rgb(255, 255, 255);
    padding: 5px;
    min-width: 100px;
    text-align: center;
    margin-top: 5px;
}

.btn_act {
    text-align: right;
}

.btn_act a {
    display: inline-block;
    background-color: rgb(89, 91, 98);
    color: rgb(255, 255, 255);
    padding: 2px 14px;
    font-size: 0.8rem;
    transition: all 0.3s ease 0s;
}

.btn_act a:hover {
    background-color: rgb(0, 0, 0);
}

/* fkey */
#fkey {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    transition: all .3s;
}

#fkey ul.fkey_listing {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

#fkey ul.fkey_listing li {
    flex: 0 0 100%;
}

#fkey ul.fkey_listing li:not(:last-child) {
    margin-bottom: 10px;
}

#fkey ul.fkey_listing li a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    box-shadow: 5px 5px 5px rgb(0 0 0 / .2);
}

#fkey ul.fkey_listing li a.bg-cover {
    background-color: #72c02c;
    background-size: calc(100% - 15px);
}

@media (min-width:992px) {
    #fkey {
        right: 20px;
    }

    #fkey ul.fkey_listing li a {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

@media (max-width:767px) {
    #fkey {
        width: 40px;
    }
}

.page-intro {
    max-width: 680px;
    margin: 0 auto;
}

.page-intro p.lead {
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 3rem;
}

.page-intro p {
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.8rem;
    margin-bottom: 30px;
}

.page-intro h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-intro ul {
    padding-left: 20px;
}

.page-intro ul li {
    margin-bottom: 10px;
    font-size: 1rem;
}