@charset "utf-8";

/*
關於CSS設定說明
CSS屬性是會繼承的，而且還是由上往下繼承。
同樣元素設定16px 後 12px 再 15px 最後會以最後設定的15px為準
但是有兩種情況除外:
1.絕對路徑命名. 如: .xx .yy .zz p {設定值;}
2.important.  如: .xx p {設定值 !important;}

CSS3選取器語法 :nth-child(n) 

*/
/*133055 122e51 050f1b*/
body {
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

.stellarnav>ul>li:nth-of-type(2)>ul>li:first-of-type {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*上方選單解除滑動固定
.header_area.sticky { position:relative;}
*/

.navigation {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 40px;
}

.nav-header {
    max-width: 160px;
    padding: 8px 0;
}

.nav-brand,
.nav-brand img {
    display: block;
}

.header_area,
.header_area.sticky {
    background: #fff;
    padding: 0;
    box-shadow: 0 0 20px rgb(0 0 0 / 12%);
    transition: all ease 0.3s;
}

.main_header_area .container {
    max-width: 1400px;
    padding: 0 5%;
}

.stellarnav>ul {
    margin-top: 5px;
}

.stellarnav li.has-sub>a:after {
    content: none;
}

.stellarnav>ul>li>a,
.stellarnav>ul>li.has-sub>a {
    padding: 0 2px;
    color: #0F2740;
    font-size: 14px;
    margin: 0 12px;
    letter-spacing: 2px;
}

.stellarnav ul li a b:first-of-type {
    font-family: 'Saira Stencil One';
    letter-spacing: 1px;
}

.stellarnav ul li a b:last-of-type {
    font-weight: 500;
}

.swiper-pagination,
.me_tp_features a.me_tp_call,
.me_tp_features a.me_tp_mail,
.box_search {
    display: none;
}

.me_tp_features a i {
    margin: 0;
}

.tp_links {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.tp_links a {
    color: #0F2740;
}

.me_tp_features {
    order: 1;
    width: max-content;
}

/*次分類*/
.stellarnav ul ul {
    background: transparent;
}

.stellarnav>ul>li>ul {
    margin-top: -4px;
}

.stellarnav>ul>li.drop-left>ul {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.stellarnav li li {
    background: #1E4473;
    border: none;
    margin-bottom: 0;
    transition: all ease .4s;
}

.stellarnav li li:hover {
    background: #0F2740;
    padding-left: 6px;
}

.stellarnav li li a:not(.dd-toggle),
.stellarnav li li.has-sub>a:not(.dd-toggle) {
    color: #fff;
    padding: 14px 16px;
    font-weight: 400;
    line-height: initial;
    height: auto;
    margin: 0;
    position: relative;
    font-size: 13px;
    letter-spacing: 1px;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


#content_main,
body:not(.services_page) #content {
    background: #050f1b;
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
}

body.services_page:before {
    content: ' ';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(https://pic03.eapple.com.tw/yaoxhsi/bgbg.jpg) center / cover no-repeat;
}

.contact_content,
.show_content {
    padding: 0;
}

.main_part {
    width: 90%;
    max-width: 1400px;
    padding: 120px 0;
}

/*預設解除背景輪播*/
#content_main {
    margin: 0;
}

.bannerindex {
    position: relative;
    height: auto;
}

.swiper-banner {
    position: static;
    margin: 0;
    height: auto;
}

/* .swiper-slide img { height:auto;} */
@media screen and (max-width: 768px) {
    .bannerindex {
        padding: 0;
        margin: 0;
    }
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*內頁BANNER 設定*/
.banner,
.path {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*文章設定*/
.blog_page h4.blog_category_title {
    display: none;
}

.blog_box {
    margin-top: 0;
}

.blog_le {
    padding: 0;
}

.blog_ri {
    padding: 0 0 0 60px;
}

.blog_le,
.blog_ri {
    margin-bottom: 40px;
}

.blog_subbox {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.blog_subbox:before {
    content: none;
}

.subbox_item {
    width: 100%;
    margin: 0;
    border-bottom: none;
}

.subbox_item a {
    display: flex;
    flex-flow: row wrap;
    gap: 0;
}

.blog_list_le {
    width: 260px;
    padding: 0;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
}

.blog_list_le img {
    min-width: 100%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.blog_list_ri {
    display: flex;
    flex-flow: column wrap;
    padding: 44px 0 44px 40px;
    width: calc(100% - 275px);
    position: relative;
    justify-content: center;
    /* border: 1px solid rgba(255,255,255,.25); */
}

.blog_list_ri h5 {
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.blog_list_ri em {
    color: rgba(255, 255, 255, .35);
    order: 1;
    font-weight: 400;
    margin: 0;
    position: relative;
}

.blog_list_ri p {
    color: #fff;
    line-height: 165%;
    margin: 0 0 20px;
    -webkit-line-clamp: 2;
    letter-spacing: 0.5px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.blog_list_ri em:after {
    color: #fff;
    content: '＋ 繼續閱讀';
    letter-spacing: .5px;
    font-weight: 600;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 14px;
    opacity: .5;
    transition: all ease 0.5s;
}

.subbox_item a:hover .blog_list_ri em:after {
    opacity: 1;
    transform: translateX(-15px);
}

.subbox_item a:before,
.subbox_item a:after {
    content: none;
}

h5.blog_le_t {
    display: none;
}

.blog_le .accordion {
    border-radius: 0;
}

.accordion li .link a {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    padding: 12px;
}

.accordion li .link {
    border-bottom: none;
}

.blog_le .accordion li .link i {
    color: #fff;
}

.accordion li {
    transition: all 0.2s ease;
}

.blog_le .accordion>li:hover,
.blog_le .accordion>li.open:hover,
.blog_le .accordion>li.on_this_category:hover {
    background: #373f49 !important;
}

.blog_le .accordion>li.open,
.blog_le .accordion>li.on_this_category {
    background: #2a333d !important;
}

.blog_le .accordion>li.open .link a,
.blog_le .accordion>li.open .link i {
    color: #fff !important;
}

.submenu {
    background: #050f1b;
    font-size: 14px;
}

.submenu a {
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
    color: #fff;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 12px 12px 12px 36px;
    border-left: #050f1b 0 solid;
    transition: all .15s;
}

.submenu li.on_this_category a,
.submenu a:hover {
    background: #050f1b;
    color: #fff;
}

.submenu a i {
    left: 12px;
    font-weight: var(--fa-style, 900);
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
}

.submenu a:hover {
    border-left-width: 4px;
}

.blog_search {
    display: none;
}

.blog_le .accordion li .link i {
    transition: none;
}

/*內頁*/
.articel_mainPic,
.blog_shareData {
    display: none;
}

h4.blog_category_title {
    padding: 0;
    margin-bottom: 0;
    font-size: 24px;
    color: #fff;
}

.blog_box_edit {
    color: #fff;
    font-size: 15px;
    text-align: justify;
}

.blog_box_edit * {
    line-height: 175%;
}

.blog_back {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    justify-content: center;
}

.blog_back a {
    width: 100%;
    font-weight: 400 !important;
}

.blog_back a:hover {
    background: #373f49 !important;
}

.blog_back a.article_btn_next,
.blog_back a.article_btn_prev,
.blog_back a.article_btn_back {
    background: #2a333d;
    transition: all .3s ease;
}

.news_related {
    padding: 48px 0;
    background: rgba(255, 255, 255, .025);
}

.news_related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.lastPage {
    background: #0F2740;
    margin: 40px auto 20px;
}

.news_related h6 span:before {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 500;
}

.news_related_list li {
    width: calc((100% - 60px) / 4);
}

.news_related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
}

/*文章2*/
.article_b .blog_list_le,
.article_b .blog_list_ri {
    width: 100%;
}

.article_b .blog_list_le {
    aspect-ratio: 125 / 83;
}

.article_b .subbox_item {
    background: rgba(255, 255, 255, .035);
}

.article_b .subbox_item a {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.article_b .subbox_item:nth-of-type(even) .blog_list_le {
    order: 1;
}

.article_b .blog_list_ri {
    padding: 44px;
}

.article_b .blog_le,
.article_b .blog_ri {
    padding: 0;
    width: 100%;
}

.article_b .blog_le .accordion {
    border: none;
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    justify-content: center;
}

.article_b .accordion li .link a {
    color: #fff;
    background: none;
    padding: 4px 12px;
    font-weight: 500;
    border-radius: 15px;
}

.article_b .accordion li .link {
    border-bottom: none;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

.article_b .accordion li {
    min-width: 140px;
    border-radius: 15px;
    border: 1px solid #fff;
    height: min-content;
    letter-spacing: 0.05em;
    transition: all ease 0.5s;
}

.article_b .blog_le .accordion>li.open {
    border-color: #fff !important;
    border-radius: 17px;
}

.article_b .blog_le .accordion li .link i {
    position: static;
    color: #fff;
    width: auto;
    padding-right: 12px;
    font-size: 14px;
    transition: all ease 0.5s;
}

.article_b .accordion li .link {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.article_b .accordion li li {
    border-radius: 0;
    border: none;
    border-top: 1px solid transparent;
    transition: all ease 0.3s;
}

.article_b .submenu li:last-of-type a,
.article_b .submenu li:last-of-type,
.article_b .submenu {
    border-bottom-right-radius: 17px;
    border-bottom-left-radius: 17px;
}

.article_b .accordion li+li {
    border-color: #fff;
}

.article_b .accordion li+li .link {
    border: none;
}

.article_b .blog_subbox {
    gap: 40px;
}

.article_b .submenu a {
    padding: 7px 12px 5px 36px;
}

.article_b h4.blog_category_title {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}

.article_b .news_related_list li figure {
    aspect-ratio: 125 / 83;
}

.article_b .news_related_list li {
    width: calc((100% - 40px) / 3);
}

.article_b .news_related_list li:nth-of-type(n+4) {
    display: none;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*影片*/
.video-list .vidCover {
    aspect-ratio: 11 / 8;
    border-radius: 0;
}

.video-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-list .vidTitle {
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 15px;
    line-height: 155%;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */


/*相簿*/
.show-list .show_name {
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
    letter-spacing: 1px;
    margin-top: 8px;
    -webkit-line-clamp: 1;
    font-weight: 500;
    text-align: center;
}

.show-list .item:hover .show_name {
    color: #fff;
}

.show-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.show-list .item:hover .show_pic img {
    transform: scale(1.1);
}

.show-list .show_pic img {
    transition: all 0.6s ease;
}

.subalbum-menu {
    margin: 0;
    padding: 0;
}

.subalbum-menu h2 {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

.album_fixed_title {
    font-size: 15px;
    color: rgba(255, 255, 255, .7);
    background: transparent;
}

.other_album_choice li {
    background: #0F2740;
    font-size: 14px;
}

.other_subalbum li {
    background: transparent;
}

.other_subalbum li a p {
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 8px;
    transition: all 0.6s ease;
}

.other_subalbum li:hover a p {
    color: #fff;
}

.album_descrip {
    display: none;
}

.page li a,
.page li strong {
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 0;
}

.page strong,
.page a:hover {
    background: #0F2740;
}

/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */
/*購物車*/
.product-layer-two {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.product-layer-two>li>a {
    border: none;
    background: none;
    padding: 6px 40px;
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    border-radius: 36px;
    transition: all ease 0.5s;
}

.product-layer-two>li:not(:last-of-type):after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, .25);
}

.product-layer-two li.active a,
.product-layer-two li:hover a {
    font-weight: 400;
    border: none;
    background: none;
}

.product_menu_list {
    margin-bottom: 40px;
}

.products-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

.products-list .pic {
    aspect-ratio: 4 / 3;
}

.products-list .name {
    color: #fff;
    -webkit-line-clamp: 1;
    height: auto;
    margin: 12px 0 15px;
    font-size: 16px;
    text-align: center;
}

.products-list .more {
    border-color: #fff;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.products-list .item a:hover .more {
    background: #fff;
    color: #050f1b;
}

.product-layer-two li i {
    display: none;
}

.product-layer-two li a {
    color: #fff !important;
    text-align: center;
}

.product-layer-two li:hover ul {
    display: block !important;
}

.product-layer-two li ul {
    padding-top: 10px;
}

.product-layer-two li li {
    background: #2a333d;
}

.product-layer-two li li a {
    background: none !important
}

.product-layer-two li li:hover a {
    background: white !important;
    color: #050f1b !important;
}

/*內頁*/
.product_info_page .main_part {
    max-width: 1000px;
}

.proImgSwiper li {
    align-items: flex-start;
}

.pd_tabInner.edit {
    color: #fff;
    font-size: 15px;
    line-height: 1.8;
    padding: 0;
}

.product_info_page .product_menu_list,
.pd_tabTitle,
.product_info li span,
.mobile_product_name,
.product_info li {
    display: none;
}

.product_info li .txt_box {
    color: #444;
}

.prod_related {
    padding: 48px 0;
    background: rgba(255, 255, 255, .025);
}

.related_list {
    max-width: 1400px;
    width: 90%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.prod_related h6 span:before {
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: 500;
}

.related_list li {
    width: calc((100% - 40px) / 3);
}

.related_list li a p {
    margin: 6px auto 4px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #666;
}

.related_list li figure {
    aspect-ratio: 125 / 83;
}

.pd_tabInner_contain {
    padding-top: 0;
}

.proImgSwiper {
    aspect-ratio: 5 / 3;
}

.product_main {
    width: 100%;
    padding: 0;
}

.sidebarBtn {
    padding: 0;
    display: block;
    width: 100%;
    border: none;
    background: none;
    margin-top: 60px;
}

.sidebarBtn h2 {
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.05em;
}

.related_list li:nth-of-type(n+4) {
    display: none;
}


/* = = = 分隔線 = = = = = = = = = == = = = = = = = = = = = = = = == = = */

/*聯絡*/
.list_before {
    color: #fff;
}

.list_before.info li.info_PHONE {
    display: none;
}

.list_before.info a {
    pointer-events: none;
}

.list_before.info li:before {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: normal;
    font-family: 'Saira Stencil One';
    letter-spacing: 1px;
}

.list_before.info li {
    margin: 6px 0;
    padding-left: 50px;
    line-height: 1;
    font-size: 14px;
}

.blank_letter {
    color: #fff;
    font-size: 16px;
    padding-top: 0;
    font-family: 'Noto Sans TC', Microsoft JhengHei, sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
}

.information_right .blank_letter {
    position: relative;
}

.contact_form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: 20px;
    margin-bottom: 0;
    font-size: 14px;
}

.contact_form li.last {
    margin-top: auto;
    margin-bottom: 0;
}

.contact_form li input.noborder,
.contact_form li textarea.noborder {
    background: none;
    padding: 4px 4px 8px;
    border: none;
    border-bottom: 1px solid rgba(255 255 255 / 15%);
}

.contact_form li {
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0;
    border-bottom: none;
    grid-gap: 8px;
}

.contact_form li .form__label {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    text-align: left;
    max-width: 100%;
    font-weight: normal;
    padding: 0;
    background: none;
    color: #fff;
    letter-spacing: 1px;
}

.star {
    order: 1;
    height: 18px;
}

.contact_content>form {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.contact_content .information_left {
    width: 400px;
}

.contact_content .information_right {
    width: calc(100% - 400px);
    padding-left: 60px;
}

.contact_form li .form__insert {
    line-height: 165%;
    color: #Fff;
}

.contact_form li.last cite {
    background: #fff;
    border-color: #fff;
    color: #050f1b;
}

.contact_form li.last blockquote {
    border-color: #fff;
    color: #fff;
}

.information_left,
.information_right {
    padding: 0;
}

.list_before,
.contact_content .information_left {
    display: flex;
    flex-flow: column wrap;
}

.contact_form li:has(input[type=checkbox]) .form__insert,
.contact_form li:has(input[type=radio]) .form__insert {
    grid-template-columns: repeat(auto-fit, minmax(13px, 13px) minmax(260px, 1fr));
}

.contact_le_nomap {
    width: 100%;
    height: 400px;
}

button,
input,
optgroup,
select,
textarea {
    outline: none;
}

.contact_form li textarea.noborder {
    border: 1px solid rgba(255 255 255 / 15%);
}

.info_TEL:before {
    content: 'TEL';
}

.info_MAIL:before {
    content: 'MAIL';
}

.info_ADD:before {
    content: 'ADD';
}


/*footer*/
.footer_info li p.phone {
    display: none;
}

.footer {
    background: #0F2740;
    padding: 80px 0 0;
    font-family: 'Noto Sans TC', 'Microsoft JhengHei', sans-serif;
}

.footer .center {
    max-width: 1200px;
    padding: 0 5%;
}

.footer_logo {
    width: 160px;
    margin: 0;
}

.footer_logo img {
    max-width: 100%;
    display: block;
    filter: grayscale(1) brightness(10);
}

.footer_info {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 0;
}

.footer_info,
.footer_info li {
    padding: 0;
}

.footer_info ul {
    letter-spacing: 0;
    display: flex;
    flex-flow: row wrap;
    width: calc(100% - 160px);
    margin-bottom: 60px;
    padding-left: calc(50% - 280px);
}

.footer_info li:before {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: normal;
    padding-bottom: 32px;
    display: block;
    font-family: 'Saira Stencil One';
}

.footer_info li:nth-child(1):before {
    content: "CONTACT";
}

.footer_info li:nth-child(2):before {
    content: "NAVIGATION";
    left: 0;
    position: absolute;
}

.footer_info li:nth-child(1) {
    width: calc(100% - 190px);
}

.footer_info li p {
    letter-spacing: 1px;
    color: #fff;
    line-height: 175%;
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer_info li p a {
    display: block;
    color: #fff;
    width: max-content;
}

.footer_info li p:before {
    color: #fff;
    font-weight: normal;
    font-family: 'Saira Stencil One';
}

.footer_info li:nth-child(2) {
    width: 190px;
    position: relative;
}

.footer_menu {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
}

.footer_menu a {
    letter-spacing: 1px;
    padding: 0;
    border: none;
    color: rgba(255, 255, 255, .75);
    background: transparent;
    width: max-content;
    text-align: left;
    margin: 0;
    line-height: 175%;
    font-family: 'Saira Stencil One';
    transition: all ease 0.3s;
}

.footer_menu a:hover {
    background: transparent;
    color: #fff;
}

.copy,
.copy a,
.copy a:hover {
    color: #fff;
}

.copy {
    white-space: inherit;
    padding: 24px 0;
    border-top: none;
    border-top: 2px #fff solid;
}

.footer_info li p.tel:before {
    content: 'TEL：';
}

.footer_info li p.mail:before {
    content: 'MAIL：';
}

.footer_info li p.add:before {
    content: 'ADD：';
}

.footer_menu a:first-of-type,
.box_link {
    display: none;
}


@media screen and (max-width: 1200px) {

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a {
        margin: 0 6px;
    }

    .video-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width:1024px) {
    .me_tp_features {
        display: none;
    }

    .navigation {
        gap: 0;
        padding: 0;
    }

    .nav-header {
        max-width: 140px;
        padding: 16px 0;
    }

    .main_part {
        padding: 60px 0;
    }

    .video-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .subbox_item a {
        flex-direction: column;
    }

    .blog_list_le,
    .blog_list_ri {
        width: 100%;
    }

    .blog_list_ri {
        padding: 20px 0 0;
    }

    .blog_subbox {
        grid-gap: 40px;
    }

    .news_related_list li {
        width: calc((100% - 20px) / 2);
    }

    .article_b .news_related_list li,
    .related_list li {
        width: 100%;
    }

    .contact_content .information_right {
        width: 60%;
    }

    .contact_content .information_left {
        width: 40%;
    }

    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {

    #bottom_menu li:nth-of-type(n+2) {
        display: none;
    }

    .footer.with_shopping_mode {
        padding: 54px 0;
    }

    #to_top {
        bottom: 64px;
    }

    .main_header_area .container {
        padding: 0;
    }

    .stellarnav .menu-toggle {
        padding: 14px 10px;
    }

    .stellarnav .menu-toggle:after {
        font-family: 'Saira Stencil One';
        color: #666;
        font-weight: normal;
    }

    .stellarnav.mobile.left .close-menu {
        background: none;
        font-family: 'Saira Stencil One';
        color: #666;
        font-weight: normal;
    }

    .stellarnav .icon-close {
        margin-right: 2px;
    }

    .stellarnav.mobile>ul>li,
    .stellarnav.mobile>ul>li>a {
        text-align: center;
        border: none;
    }

    .stellarnav>ul>li>a,
    .stellarnav>ul>li.has-sub>a,
    .stellarnav.mobile>ul>li>a {
        padding: 15px;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .stellarnav ul li a b:first-of-type {
        margin-right: 6px;
        line-height: 1;
        margin-top: 1.5px;
    }

    .stellarnav li li a.dd-toggle .icon-plus:after,
    .stellarnav li li a.dd-toggle .icon-plus:before {
        border-color: #fff;
    }

    .stellarnav.mobile li.open li.open {
        background: #0F2740;
        padding: 0 0 3px;
    }

    .stellarnav.mobile li li.has-sub a {
        padding: 14px 16px;
    }

    .stellarnav .icon-close:after,
    .stellarnav .icon-close:before {
        border-color: #666;
    }

    .stellarnav a.dd-toggle .icon-plus:after,
    .stellarnav a.dd-toggle .icon-plus:before {
        border-color: #0F2740;
    }

    .stellarnav.mobile>ul>li>a.dd-toggle {
        padding: 12px;
    }

    .stellarnav.mobile>ul>li.open>a.dd-toggle {
        margin-top: 3px;
    }

    .stellarnav ul ul ul,
    .stellarnav li.drop-left ul ul {
        right: 0;
    }

    .stellarnav a.dd-toggle .icon-plus {
        height: auto;
    }

    .stellarnav.mobile li li.has-sub a.dd-toggle {
        padding: 7px;
        height: auto;
    }

    .stellarnav.mobile li li.has-sub.open a.dd-toggle {
        margin-top: 5px;
    }

    .stellarnav li {
        text-align: center;
    }

    .stellarnav li li:hover {
        padding-left: 0;
    }

    .stellarnav.mobile li.open {
        background: #F6F7F8;
        padding: 0;
    }

    /*footer*/
    .footer_info ul {
        width: 100%;
        margin: 44px 0;
        padding-left: 0;
    }

    .footer_info li:nth-child(1),
    .footer_info li:nth-child(2) {
        width: 100%;
    }

    .footer_info li:before {
        padding-bottom: 20px;
        font-size: 20px;
    }

    .footer_menu {
        margin-top: 40px;
        grid-gap: 16px 0;
        grid-template-columns: 1fr 1fr;
    }

    .show-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .show-list .show_name {
        font-size: 15px;
    }

    .other_subalbum li a p {
        font-size: 15px;
        margin-top: 6px;
    }

    .video-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .video-list .vidTitle {
        font-size: 15px;
        margin-top: 13px;
    }

    .blog_ri {
        padding: 0;
    }

    .blog_le,
    .blog_ri {
        margin-bottom: 0;
    }

    .article_a h5.blog_le_t {
        display: block;
        color: #fff;
        font-family: 'Saira Stencil One', 'Noto Sans TC';
        font-size: 22px;
        letter-spacing: 0.05em;
    }

    h5.blog_le_t em {
        margin-right: 5px;
    }

    .blog_le .accordion {
        margin-bottom: 20px;
    }

    a.news_menu_toggle i {
        color: #fff;
    }

    h4.blog_category_title {
        font-size: 22px;
        border-top: 1px solid #fff;
        margin-top: 20px;
        padding-top: 20px;
    }

    .article_b .subbox_item a {
        grid-template-columns: 1fr;
    }

    .article_b .subbox_item:nth-of-type(even) .blog_list_le {
        order: 0;
    }

    .article_b .blog_list_ri {
        padding: 20px;
    }

    .article_b .blog_subbox {
        gap: 30px;
    }

    .article_b .blog_le .accordion {
        margin-bottom: 30px;
    }

    .article_b h4.blog_category_title {
        border-top: none;
        padding-top: 0;
    }

    .contact_content .information_right,
    .contact_content .information_left {
        width: 100%;
        padding: 0;
    }

    .list_before {
        margin-top: 20px;
    }

    .contact_content>form {
        gap: 50px;
    }

    .contact_form li.last {
        justify-content: flex-start;
    }

    .contact_le_nomap {
        height: 240px;
    }

    .products-list {
        grid-template-columns: 1fr;
    }

    .sidebarBtn {
        margin-top: 20px;
    }

    .sidebarBtn h2 {
        font-size: 20px;
    }

    .product-layer-two li:hover ul,
    .product-layer-two li ul {
        display: none !important;
    }

    .product-layer-two>li:last-of-type:after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        height: 20px;
        width: 1px;
        background: rgba(255, 255, 255, .25);
    }

    .product-layer-two>li:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        display: inline-block;
        height: 20px;
        width: 1px;
        background: rgba(255, 255, 255, .25);
    }

    .product-layer-two li {
        margin: 0 0 10px;
        width: 160px;
    }

    .stellarnav.mobile.left>ul {
        border: none;
    }

    .product-layer-two {
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
}