﻿@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:ital,wght@0,300;0,400;1,300;1,400&family=Nunito:wght@300;400;600;700&display=swap');

:root {
    --mcolor: #338acd; 
    --scolor: #338acd; 
}

h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 16px;
    -webkit-text-size-adjust: none;
}

header, section, footer, aside, nav, main, article, figure {
    display: block;
}

img {
    vertical-align: bottom;
}


a {
    color: #338acd;
}

    a:hover, a:active {
        text-decoration: none;
    }

table {
    width: 100%
}

p {
    margin: 0 0 0.5em;
}

.section {
    padding: 0 0 30px;
}

p, dd, td, th, li {
    line-height: 2em;
}

#header {
    -webkit-animation: remove-fixed 0.3s linear;
    -moz-animation: remove-fixed 0.3s linear;
    -ms-animation: remove-fixed 0.3s linear;
    animation: remove-fixed 0.3s linear;
}

    #header.fixed {
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 50;
        background: rgb(255 255 255);
        box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
        -webkit-animation: header-fixed 0.6s;
        -moz-animation: header-fixed 0.6s;
        -ms-animation: header-fixed 0.6s;
        animation: header-fixed 0.6s;
    }

#totop {
    position: fixed;
    bottom: 60px;
    right: 50px;
    z-index: 10;
    margin-bottom: 0;
}

    #totop a {
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        color: #3e4a5e;
        border: 2px solid #3e4a5e;
        border-radius: 5px;
        transition: all 0.5s;
        -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
        animation: slide-top 0.8s linear infinite alternate-reverse;
    }

        #totop a:hover {
            border-color: var(--mcolor);
            background: var(--mcolor);
            color: #fff;
        }

@keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

*, *:before, *:after {
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
    color: #000;
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
}

#wrapper {
    min-width: 1200px;
    overflow: hidden;
}

.container {
    width: 1200px;
    /* padding: 0 5%; */
    margin: 0 auto;
    position: relative;
}

img {
    max-width: 100%;height: auto;
}

.sp {
    display: none;
}

h1 {
    display: none;
}

.h_top {
    border-bottom: 1px solid #ebebeb;
    padding: 10px 0;
}

    .h_top .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.h_top_link {
    display: flex;
}

    .h_top_link a {
        text-decoration: none;
        color: #818995;
        display: flex;
        align-items: center;
        transition: all 0.3s;
    }

    .h_top_link li:not(:last-child) {
        border-right: 1px solid #d4d4d4;
        padding-right: 15px;
        margin-right: 15px;
    }

    .h_top_link svg {
        margin-right: 10px;
    }

    .h_top_link a:hover {
        color: var(--mcolor);
    }

        .h_top_link a:hover svg {
            color: #818995;
        }

.h_main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
    width: 250px;
}

/* .h_search {
  width: 100%;
  max-width: 200px; 
  position: relative;
  margin-left: 400px;
}
.h_search .search-wrapper {
  position: relative;
  width: 100%;
  background: #f3f3f3;
  border: 1px solid black;        
  border-radius: 10px;              
  box-shadow: 3px 4px 0 #1e73be;    
  display: flex;                    
  overflow: hidden;                 
}

.h_search input[name="input-search"] {
  width: 100%;
  padding: 0 45px 0 15px; 
  line-height: 36px; 
  height: 36px;
  background: #f3f3f3;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  box-sizing: border-box;
}

.h_search button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background: #f3f3f3;
  border: none;
  border-left: 1px solid #ccc;
  border-radius: 0 20px 20px 0;
  width: 36px;
  height: 36px;
  color: #338acd;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.h_search button:hover {
  background: #f3f3f3;
} */

.h_search input {
    border: 0;
    padding: 0;
    line-height: 50px;
    width: 100%;
    background: #f3f3f3;
    padding: 0 20px;
    font-size: 13px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    font-size: 16px;
}

.h_search button {
    margin-left: 5px;
    position: relative;
    line-height: 50px;
    padding: 0;
    background: var(--mcolor);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    text-align: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: none;
    color: #fff;
    display: block;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
}

    .h_search button:hover {
        background: var(--mcolor);
    }

.h_search {
    width: 100%;
    display: flex;
    position: relative;
    border: 0;
    max-width: 600px;
}

.h_right {
    display: flex;
    align-items: center;
}

.h_right_link {
    margin: 0;
}

    .h_right_link a {
        color: #3e4a5e;
        text-decoration: none;
        font-weight: bold;
        display: block;
        transition: all 0.3s;
        font-size: 16px;
    }

        .h_right_link a:hover {
            color: var(--mcolor);
        }

.h_right_btn {
    display: flex;
}

    .h_right_btn a {
        width: 44px;
        height: 44px;
        border: 2px solid #3ba0ee;
        display: inline-block;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        text-align: center;
        line-height: 44px;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
        position: relative;
        display: block;
        text-decoration: none;
        color: #3e4a5e;
    }

        .h_right_btn a span {
            position: absolute;
            top: -9px;
            right: -10px;
            width: 22px;
            height: 22px;
            line-height: 22px;
            display: inline-block;
            color: #fff;
            text-align: center;
            background: #2875de;
            border-radius: 50%;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            -ms-border-radius: 50%;
            -o-border-radius: 50%;
            font-size: 10px;
        }

    .h_right_btn li {
        margin-left: 10px;
    }

    .h_right_btn a:hover {
        background: var(--mcolor);
        color: #fff;
        border-color: var(--mcolor);
    }

    .h_right_btn li:last-child a span {
        background: #3ba0ee;
    }

.h_main {
    padding: 25px 0;
}

.fixed .h_main {
    padding: 10px 0;
}

#gnavi {
    padding-bottom: 20px;
}

.fixed #gnavi {
    padding-bottom: 10px;
}

#gnavi .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gnavi {
    display: flex;
    margin: 0 auto;
}

    .gnavi > li {
        position: relative;
        padding: 0 15px;
    }

        .gnavi > li > a {
            position: relative;
            font-weight: 700;
            font-size: 16px;
            background-color: transparent;
            color: #000;
            display: table;
            white-space: nowrap;
            text-transform: capitalize;
            -webkit-transition: all .2s ease 0s;
            transition: all .2s ease 0s;
            display: block;
            text-decoration: none;
        }

        .gnavi > li:hover > a {
            color: var(--mcolor);
        }

        .gnavi > li.over > a:after {
            content: '';
            position: relative;
            border: solid #3e4a5e;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 2px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            transition: all 0.3s;
            margin-left: 7px;
            top: -2px;
        }

.submenu a {
   
}

.submenu {
    position: absolute;
    min-width: 235px;
    position: absolute;
    top: 100%;
    z-index: 9999;
    background: #fff;
    top: 30px;
    border-top: 2px solid var(--mcolor);
    
    display: none;
}

    .submenu a {
		 padding: 5px 15px;
        color: #000;
        font-weight: 400;
        position: relative;
        display: block;
        text-decoration: none;
        -webkit-transition: all .2s ease;
        transition: all .2s ease;
    }

    .submenu:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 4px 6px 4px;
        border-color: transparent transparent var(--mcolor) transparent;
        left: 15px;
        top: -8px;
    }

    .submenu a:hover {
        color: var(--mcolor);
    }

.sub_row {
    min-width: 650px;
    display: flex;
    justify-content: space-between;
}

.sub_col_ttl {
    color: #3e4a5e;
    font-weight: bold;
    padding: 0 30px;
    margin: 0 0 5px;
}

/* đặt hàng */
/* .pro-btn a span {
        display: block;
        font-size: 106.67%;
    }

.pro-btn li:nth-child(2) a {
    background: #dc0000;
}

.pro-btn li:nth-child(1) a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 15px 0;
    border-color: transparent #f27126 transparent transparent;
    right: 0;
    top: 0;
}

.pro-btn a:hover {
    opacity: 0.7;
} */

.sub_col_item:not(:last-child) {
    margin-bottom: 30px;
}

.sub_col {
    width: 100%;
}

.gnv_txt {
    color: #338acd;
    font-weight: 600;
    margin: 0;
    text-decoration: none;
}

.gnv_cate_ttl {
    margin: 0;
    font-size: 14px;
    color: #fff;
    margin: 0;
    line-height: 45px;
    background: #338acd;
    display: flex;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    padding: 0 30px;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    align-items: flex-start;
    width: 250px;
}

.gnv_cate_ico {
    background: #fff;
    width: 8px;
    height: 2px;
    margin: 21px 25px 0 0;
    position: relative;
}

    .gnv_cate_ico:after {
        content: "";
        position: absolute;
        background: #fff;
        width: 18px;
        height: 2px;
        top: -6px;
    }

    .gnv_cate_ico:before {
        content: "";
        position: absolute;
        background: #fff;
        width: 14px;
        height: 2px;
        bottom: -6px;
    }

.gnv_cate_ttl:after {
    content: '';
    position: relative;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.3s;
    margin-left: 10px;
    top: 17px;
}

.gnv_cate_ttl.active:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 20px;
}

.gnv_cate {
    position: relative;
}

.gnv_cate_list {
    position: absolute;
    width: 100%;
    background: #fff;
    top: calc(100% + 5px);
    border-top: 0;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0 0 10px 1px hsl(0deg 0% 56% / 10%);
    z-index: 5;
    display: none;
}

    .gnv_cate_list li {
        padding: 0 20px;
    }

        .gnv_cate_list li a {
            text-transform: capitalize;
            white-space: normal;
            color: #000;
            position: relative;
            border-bottom: 1px dashed #e9e9e9;
            padding: 8.5px 0;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s;
        }

        .gnv_cate_list li:last-child a {
            border-bottom: none;
        }

        .gnv_cate_list li a .icon {
            width: 22px;
            margin-right: 15px;
            display: inline-block;
            flex-shrink: 0;
        }

        .gnv_cate_list li a:hover {
            color: var(--mcolor);
        }

.mainvisual {
  
    display: flex;
    align-items: center;
    justify-content: center;

}
.main_slide{
    width: 90%;
}

.main_slide p {
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
}

    .main_slide p img {
        width: 100%;
    }

.main_slide .slick-dots {
    position: absolute;
    bottom: 60px;
    left: 100px;
    display: flex;
}

    .main_slide .slick-dots li {
        margin-right: 10px;
        line-height: 0;
    }

    .main_slide .slick-dots button {
        width: 10px;
        height: 10px;
        border: none;
        background: #fff;
        border-radius: 50%;
        opacity: 0.3;
        transition: all 0.3s;
        text-indent: -50000px;
        cursor: pointer;
    }

    .main_slide .slick-dots .slick-active button {
        opacity: 1;
    }

.box01 {
    padding: 80px 0;
}

.b01_list.slick-initialized .slick-slide {
    padding: 0 15px;
}

.b01_item a {
    text-decoration: none;
    text-align: center;
    display: block;
    color: #3e4a5e;
}

.b01_itm_ttl {
    line-height: 1.3em;
    font-size: 18px;
    font-weight: bold;
}

.b01_itm_img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .b01_itm_img:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(62, 74, 94, .25);
        top: 0;
        left: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .b01_itm_img img {
        width: 100%;
    }

    .b01_itm_img:after {
        content: "";
        background-position: 50%;
        background: url("/W_images/plus-cate.png") no-repeat;
        width: 40px;
        height: 40px;
        position: absolute;
        top: calc(50% - 20px);
        left: calc(50% - 20px);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        opacity: 0;
        visibility: hidden;
        z-index: 3;
    }

.b01_item a:hover .b01_itm_img:before, .b01_item a:hover .b01_itm_img:after {
    opacity: 1;
    visibility: visible;
}

.b01_item a:hover .b01_itm_img {
    transform: scale(0.9, 0.9);
}

.b01_item a:hover {
    color: var(--mcolor);
}

.b02_list {
    display: flex;
    justify-content: space-between;
}

.b02_item {
    width: calc(33.33% - 20px);
}

    .b02_item a {
        text-decoration: none;
        display: flex;
        position: relative;
        z-index: 2;
        height: 310px;
        align-items: center;
        padding: 45px;
        color: #fff;
    }

        .b02_item a:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url("/userfile/config/Special_01_Img.png") no-repeat center center/cover;
            top: 0;
            left: 0;
            z-index: -2;
            transition: all 0.3s;
            border-radius: 30px;
        }

    .b02_item:nth-child(2) a:after {
        background-image: url("/userfile/config/Special_02_Img.png");
    }

    .b02_item:nth-child(3) a:after {
        background-image: url("/userfile/config/Special_03_Img.png");
    }

    .b02_item a:hover:after {
        -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
        animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    }

@-webkit-keyframes shake-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px)
    }

    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px)
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px)
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px)
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes shake-horizontal {
    16.65% {
        transform: translateX(8px)
    }

    33.3% {
        transform: translateX(-6px)
    }

    49.95% {
        transform: translateX(4px)
    }

    66.6% {
        transform: translateX(-2px)
    }

    83.25% {
        transform: translateX(1px)
    }

    100% {
        transform: translateX(0)
    }
}

.b02_itm_txt {
    margin: 0 0 5px;
    font-weight: bold;
}

.b02_itm_ttl {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 17px;
}

.b02_itm_btn {
    margin: 0;
    font-weight: 500;
    line-height: 36px;
    border-radius: 20px 20px 20px 20px;
    padding: 0 20px 0 20px;
    background-color: #FFF;
    display: inline-block;
    color: #3e4a5e;
    font-weight: bold;
    transition: all 0.3s;
}

.b02_item a:hover .b02_itm_btn {
    background: var(--mcolor);
    color: #fff;
}

.b02_item:nth-child(2) a {
    color: #355600;
}

.b02_item:nth-child(3) a {
    color: #343070;
}

.box03 {
    padding: 60px 0 0;
}

.idx_h2 {
    color: #074bc1;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 30px;
}
.idx_p{
    text-align: center;
    width: 70%;
    margin-left: 15%;
   
}

.b03_btn a {
    text-decoration: none;
    color: #3E4A5E;
    display: flex;
    align-items: center;
}

.arr {
    width: 15px;
    display: inline-block;
    margin-left: 5px;
}

.b03_btn {
    margin: -60px 0 0;
    float: right;
}

.b03_itm_img a {
    display: block;
    position: relative;
}

    .b03_itm_img a span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
    }

.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s;
}

.b03_itm_img a:hover .hover {
    opacity: 1;
}

.b03_itm_img {
    margin: 0;
}

.b03_list {
    display: flex;
    flex-wrap: wrap;
}

.b03_item {
    padding: 15px;
    width: calc(100% / 4);
}

.b03_itm_cont {
    position: relative;
    
    /*border: 2px solid #338acd;*/
    overflow: hidden;
    border-radius: 10px;
	    box-shadow: 0px 0px 5px 1px #4c97d1;
}

.b03_itm_info {
    position: relative;
}

.b03_itm_tag {
    margin: 0;
    font-size: 12px;
    position: absolute;
    left: 15px;
    top: 15px;
    display: flex;
}

    .b03_itm_tag span {
        background: #f90;
        color: #fff;
        text-align: center;
        min-width: 40px;
        border-radius: 20px;
        padding: 2px 0 0;
        margin-right: 5px;
    }

    .b03_itm_tag .sale {
        background: #f00;
    }

.b03_itm_add {
    margin: 0;
    position: absolute;
    right: 15px;
    top: 15px;
}

    .b03_itm_add a {
        color: #3e4a5e;
        display: inline-block;
        margin-left: 10px;
    }

    .b03_itm_add .out {
        background: #b7b7b7;
        color: #fff;
        padding: 2px 7px;
        border-radius: 3px;
        font-size: 12px;
    }

.b03_itm_btn {
    position: absolute;
    bottom: 20px;
    right: -40px;
    opacity: 0;
    transition: all 0.3s;
}

.b03_itm_cont:hover .b03_itm_btn {
    right: 10px;
    opacity: 1;
}

.b03_itm_btn a {
    display: flex;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #3e4a5e;
    font-weight: 300;
    margin-top: 5px;
    transition: all 0.3s;
}

    .b03_itm_btn a:hover {
        background: var(--mcolor);
        color: #fff;
    }

.b03_itm_star {
    color: #ffae00;
    margin: 0 0 5px;
    font-size: 12px;
}

.b03_itm_main {
    padding: 12px;
    height: 101px;
    align-items: center;
}
.b03_itm_main_sp{
    background: #338acd;
    padding: 20px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.b03_itm_cate a {
    color: #818995;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: all 0.3s;
}

.b03_itm_cate {
    margin: 0 0 5px;
}

.b03_itm_ttl_sp a {
    display: inline-block;
    color: white;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b03_itm_ttl {
    line-height: 1.3em;
    height:45px;
}


.b03_itm_ttl a {
    display: inline-block;
    color: #3e4a5e;
    font-size: 16px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



    .b03_itm_cate a:hover, .b03_itm_ttl a:hover, .b03_itm_add a:hover {
        color: #0b0f0c;
    }

.b03_itm_price {
    margin: 0;
    font-size: 18px;
    color: #101110;
    font-weight: bold;
	text-align: center;
}

    .b03_itm_price .old {
        color: #818995;
        font-size: 80%;
        text-decoration: line-through;
        margin-right: 10px;
    }

    .b03_itm_price .new {
        color: #ff4545;
    }

.b03_itm_addcart {
    margin: 0;
    text-align: center;
}

.b03_itm_addcart button {
    background: #338acd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 0 0 5px;
    cursor: pointer;
    transition: all .5s;
    margin: 0;
    width: 100%;
}

.b03_itm_addcart button:hover {
    background: #000;
}

.b03_itm_info .b03_itm_img a span{
    overflow: hidden;
}

.b03_itm_info .b03_itm_img a span img{
    transition: ease-in-out .5s;
}

.b03_item:hover .b03_itm_info .b03_itm_img a span img{
        transform: scale(1.1);
}



/*.b04_bnr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 90px 40px 90px;
    border-radius: 20px;
    background: url("/userfile/config/HotDeals_10_bg.jpg") no-repeat center center/cover;
    height: 475px;
}*/

.box04{padding: 60px 0 0;}


.b04_bnr_main {
    width: 50%;
    text-align: center;
    color: #fff;
}

.b04_bnr_txt {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 5px;
}

.b04_bnr_ttl {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.3em;
    margin: 0 0 5px;
}

.b04_bnr_link a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 120%;
    font-weight: bold;
}

.b04_bnr_link {
    margin-bottom: 10px;
}

.b04_bnr_price {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px;
}

    .b04_bnr_price .old {
        font-size: 80%;
        margin-right: 10px;
        text-decoration: line-through;
    }

.b04_bnr_time .count {
    width: 60px;
    height: 60px;
    display: flex;
    background: #ffac0d;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.b04_bnr_time {
    display: flex;
    justify-content: center;
    text-align: center;
    font-weight: bold;
}

    .b04_bnr_time > span:not(:last-child) {
        margin-right: 10px;
    }

.idx_btn a {
    background: #fff;
    color: #3e4a5e;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    transition: all 0.3s;
}

.idx_btn {
    margin: 0;
    margin-top: 100px;
}

    .idx_btn a:hover {
        background: #000;
        color: #fff;
    }

.b04_bnr_img {
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; 
    clip-path: inset(0 0 200px 0);
}

    .b04_bnr_img:hover {
        -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
        animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    }
   

.box05 {
    padding: 0;
}

    .box05 .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: -150px;
    }
@media screen and (max-width: 768px) {
	 .b04_bnr_img {
        clip-path: none;
        height: auto;
    }
    .idx_btn{
        margin-top: 10px;
    }
    .b03_itm_main {
		 display: flex;
    flex-direction: column;
    display: flex;
        padding: 10px !important;
        height: auto;
        align-items: center;
    }
    .b03_itm_main_sp{
        height: 80px;
    }
    .box05 .container {
        margin-top: 0;
        flex-direction: column; /* tùy theo bạn có cần đổi layout không */
    }
}
.b05_img {
    flex-shrink: 0;
    margin: 0;
    width: 50%;
    padding-right: 50px;
    text-align: center;
}

    .b05_img:hover {
        -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
        animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    }

.b05_h2 {
    font-size: 16px;
    color: #FE7F43;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 20px;
}

    .b05_h2 span {
        display: block;
        font-size: 28px;
        line-height: 1.5em;
        text-transform: capitalize;
        color: #338acd;
    }

.box05 .idx_btn a, .box07 .idx_btn a {
    background: #338acd;
    color: #fff;
    margin-left: 5px;
    display: inline-flex;
    align-items: center;
    padding: 5px 40px;
}

.box05 .idx_btn .arr, .box07 .idx_btn .arr {
    color: #fff;
    position: relative;
    top: 2px;
    fill: #fff;
}

.box05 .idx_btn a:hover, .box07 .idx_btn a:hover {
    background: #000;
}

.box06 {
  padding: 60px 0 0;
  background: #fff;
}

.idx_h2 {
  text-align: center;
  font-size: 28px;
  color: #338acd;
  margin-bottom: 15px;
  font-weight: bold;
}

.box06 .container {
  max-width: 100%;
  margin: 0 auto;
}

.b06_list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 20px;
  background: url("/W_images/b06_bg.jpg") no-repeat center center/cover;
  border-radius: 20px;
  flex-wrap: wrap;
}

.b06_item {
  width: 100%;
  max-width: 30%;
  text-align: center;
  color: #333;
}

.b06_icon {
  background: #338acd;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b06_icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.b06_title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.b06_desc {
  font-size: 14px;
  line-height: 1.6;
}


.icon-img {
    position: absolute;
    top: 50%;
    left: 50%;
    color: white;
    transform: translate(-50%, -50%);
    width: 60px; /* chỉnh tùy kích cỡ icon */
    height: 60px;
}
    
.b06_item:nth-child(2) .b06_itm_img:after {
    background-image: url("/W_images/b06_bg_icon02.png");
}

.b06_item:nth-child(3) .b06_itm_img:after {
    background-image: url("/W_images/b06_bg_icon02.png");
}

.b06_itm_ttl {
    font-size: 22px;
    color: #3e4a5e;
    font-weight: bold;
    line-height: 1.3em;
    margin: 0 0 10px;
}

.b06_itm_txt {
    margin: 0;
}

.b03_list_top_pro .slick-arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 5;
    border-radius: 50%;
    border: 1px solid var(--mcolor);
    top: calc(50% - 20px);
    text-indent: -50000px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    left: 0;
    opacity: 0;
}

.b03_list_top_pro:hover .slick-arrow {
    opacity: 1;
}

.b03_list_top_pro .slick-next {
    left: auto;
    right: 0;
}

.b03_list_top_pro .slick-arrow:after {
    content: '';
    position: absolute;
    border: solid #bbb;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 5px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    top: calc(50% - 5px);
    left: 15px;
    transition: all 0.3s;
}

.b03_list_top_pro .slick-next:after {
    left: 11px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.b03_list_top_pro .slick-arrow:hover {
    background: var(--mcolor);
}

    .b03_list_top_pro .slick-arrow:hover:after {
        border-color: #fff;
    }
.box07{padding-top:60px;}
.b07_main{padding:20px;}
.b07_bnr {
    /* padding: 0 80px; */
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: url("/W_images/b07_bg.jpg") no-repeat center center/cover;
}

.b07_img {
    margin: 0;
    flex-shrink: 0;
    width: 50%;
    text-align: center;
    padding-left: 30px;
}

    .b07_img:hover {
        -webkit-animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
        animation: shake-horizontal 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    }

.box07 .b05_h2 {
    color: #000;
    text-align: center;
    margin-top: 10px;
   
}

    .box07 .b05_h2 span {
        color: #338acd;
        font-size: 40px;
    }

.box08 {
    padding: 60px 0 0;
    position: relative;
    z-index: 2;
}

 .box08 .idx_h2 {
     text-align: center;
 }
.box08 .slick-dots {
    margin: 30px 0 0;
}
.b08_item {
    margin: 0 15px 0;
}
.b08_img{margin:0;position:relative;}
.ico-play{position:absolute;top:0;left:0;width:100%;height:100%;display: flex;
    align-items: center;
    justify-content: center;}
.ico-play svg{width:60px; color: #f00;}
.b08_item {
    box-shadow: 0 8px 21px 3px rgb(0 0 0 / 5%);
    margin: 0 15px;
    background: #fff;
    border-radius: 20px;
}

.b08_itm_icon {
    background: url("/W_images/b08_icon.jpg") no-repeat;
    width: 37px;
    height: 28px;
    margin: 0 0 10px;
}

.b08_itm_star {
    color: #ffae00;
    font-size: 12px;
    margin: 0 0 10px;
}

.b08_itm_txt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.b08_itm_info {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

    .b08_itm_info img {
        width: 68px;
        border-radius: 50%;
        margin-right: 10px;
        flex-shrink: 0;
    }

.b08_itm_name span {
    display: block;
    color: #3e4a5e;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.b08_img img{
    width: 400px;
    height: 230px;
    /* box-shadow: 5px 3px 0 #1e73be; */
    border-radius: 10px;
    /* border: 2px solid #338acd; */
}
@media (max-width: 768px) {
    .b08_img img {
        width: 100%;
        height: auto;
    }
     .box07 .b05_h2 span {
        color: #338acd;
        font-size: 28px;
    }
    .main_slide{
        width: 100%;
    }
}
/*.box08:before {
  content: '';
  position: absolute;
  background: url("/W_images/b08_icon01.png.webp") no-repeat;
  width: 394px;
  height: 421px;
  z-index: -2;
  top: 0;
  right: 80%;
}
.box08:after {
  content: '';
  position: absolute;
  background: url("/W_images/b08_icon02.png.webp") no-repeat;
  width: 227px;
  height: 228px;
  z-index: -2;
  bottom: 0;
  left: 50%;
}
.box08 .container:after {
  content: '';
  position: absolute;
  background: url("/W_images/b08_icon03.png.webp") no-repeat;
  width: 164px;
  height: 189px;
  bottom: 0;
  right: 5%;
}
.box08 .container:before {
  content: '';
  position: absolute;
  background: url("/W_images/b08_icon04.png.webp") no-repeat;
  width: 75px;
  height: 89px;
  top: 50px;
  right: 20%;
}*/


.b08_list .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

    .b08_list .slick-dots li {
        margin: 0 5px;
        line-height: 0;
    }

        .b08_list .slick-dots li button {
            width: 10px;
            height: 10px;
            border: none;
            background: #d4d4d4;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            text-indent: -500000px;
        }

        .b08_list .slick-dots li.slick-active button, .b08_list .slick-dots li:hover button {
            background: #3e4a5e;
        }

.b09_list {
    border: 1px solid #E0E0E0;
    border-radius: 200px;
}

.box09 {
    padding: 60px 0 80px;
}

.b09_list.slick-initialized .slick-slide {
    margin: 0;
    border-right: 1px solid #E0E0E0;
}

    .b09_list.slick-initialized .slick-slide a {
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .b09_list.slick-initialized .slick-slide img {
        max-height: 175px;
        /*opacity: .33;
        filter: brightness(200%) contrast(0%) saturate(0%) blur(0) hue-rotate(0deg);*/
        transition-duration: 0.3s;
    }

    .b09_list.slick-initialized .slick-slide a:hover img {
        filter: brightness(100%) contrast(100%) saturate(100%) blur(0) hue-rotate(0deg);
        opacity: 1;
    }

@-webkit-keyframes shake-vertical {
    16.65% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px)
    }

    33.3% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px)
    }

    49.95% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px)
    }

    66.6% {
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px)
    }

    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes shake-vertical {
    16.65% {
        transform: translateY(8px)
    }

    33.3% {
        transform: translateY(-6px)
    }

    49.95% {
        transform: translateY(4px)
    }

    66.6% {
        transform: translateY(-2px)
    }

    83.25% {
        transform: translateY(1px)
    }

    100% {
        transform: translateY(0)
    }
}

.b09_list.slick-initialized .slick-slide a:hover img {
    -webkit-animation: shake-vertical 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: shake-vertical 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

.box10 {
    padding: 60px 0;
}
.box10 .idx_h2{
	text-align: center;
}
    .box10 .idx_ttl, .box10 .idx_ttl .lager {
        color: #fff;
    }

.b10_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.b10_col {
    width: 100%;
}

.b10_item {
    border-style: solid;
    border-width: 1px 1px 1px 6px;
    margin: 0 0 6px;
    /*border-color: var(--mcolor);*/
}

    .b10_item dt {
        font-size: 20px;
        font-weight: bold;
        position: relative;
        padding: 20px 50px 20px 30px;
        cursor: pointer;
        transition: all 0.3s;
    }

        .b10_item dt:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .b10_item dt:after {
            content: '';
            position: absolute;
            background: url("/w_images/b09_arr_right.png") no-repeat center center;
            width: 17px;
            height: 17px;
            right: 30px;
            top: 22px;
            transition: all 0.3s;
        }

        .b10_item dt.show:after {
            transform: rotate(90deg);
        }

    .b10_item dd {
        display: none;
        padding: 0 30px 20px 30px;
    }

#footer {
    background: #338acd;
}
#footer, #footer a.white-link {
  color: #ffffff;
}
.logo-text {
  color: white !important;
  font-size: 20px;
  font-weight: bold;
}

.small-text {
  font-size: 15px;
  color: white; /* hoặc màu phù hợp với nền */
  line-height: 1.5;
}

.f_main {
    padding: 50px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}
.f_mod_li{
    color: white;
}

.f_mod {
   width: 50%;
}

.f_mod:nth-child(1) {
    flex: 0 0 34%; 
    transform: translateX(-30px);
}


 .f_mod:nth-child(2) {
    flex: 0 0 32%;
     transform: translateX(-20px);
} 


.f_mod:nth-child(3) {
    flex: 0 0 15%;
    transform: translateX(0px);
}


.f_mod:nth-child(4) {
    flex: 0 0 15%;
    transform: translateX(20px);
}
@media (max-width: 768px) {
    .f_mod:nth-child(1),
    .f_mod:nth-child(2),
    .f_mod:nth-child(4) {
        transform: translateX(0px);
        flex: 0 0 100%;
    }
   

   
    

    .b03_itm_price {
        order: 2;
    }
}

.facebook-embed {
    margin-top: 15px;
    position: relative;
    border-radius: 10px;
    width: 100%;
    max-width: 340px;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.facebook-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
}


.f_logo {
    width: 158px;
    margin: 0 0 20px;
}
.social-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 8px; /* khoảng cách giữa các icon */
}


.f_txt {
    font-size: 18px;
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
}
.newsletter-box {
  display: flex;
  width: 100%;
  max-width: 400px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 10px;
}

.newsletter-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 20px;
  font-size: 12px;
  border-radius: 30px 0 0 30px;
}

.newsletter-box input::placeholder {
  color: #999;
  
}

#Btn_Submit {
  background-color: black;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
  font-weight: bold;
}

#Btn_Submit:hover {
  background-color: #222;
}
.help-contact {
  margin-top: 15px;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: white;
  font-size: 14px;
}

.help-contact i {
  color: red;
  margin-right: 8px;
}

.f_form input {
    width: 100%;
    border: none;
    background: none;
    border-bottom: 2px solid #3e4a5e;
    padding: 5px 0;
    font-size: 14px;
}

.f_form {
    position: relative;
    margin-bottom: 30px;
}

    .f_form button {
        border: none;
        background: none;
        line-height: 0;
        position: absolute;
        right: 0;
        top: 7px;
        font-size: 20px;
    }

.f_social a {
    color: #3e4a5e;
    font-size: 14px;
    margin-right: 10px;
}

.f_info {
    margin: 10px 0 0;
    color: white;
}

.f_ttl {
    color: white;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin: 0 0 20px;
}

.f_link a {
    display: inline-block;
    color: #818995;
    text-decoration: none;
}
.f_link li a{
    color: white;
}

.f_link li:not(:last-child) {
    margin-bottom: 8px;
}

.f_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;border-top: 1px solid #ccc;
}

.copyright {
    margin: 0;
    font-size: 14px;
}

    .copyright a {
        text-decoration: none;color: #fff;
    }

.f_bot_link {
    display: flex;
    margin: 0 auto 0 30px;
}

    .f_bot_link a {
        display: inline-block;
        text-decoration: none;
        color: #818995;
        font-size: 14px;
    }

    .f_bot_link li:not(:last-child) {
        border-right: 1px solid #e6e6e6;
        padding-right: 15px;
        margin-right: 15px;
    }

.f_img {
    margin: 0;
}


   .b03_slide .slick-arrow{
    position: absolute;
    z-index: 3;
    border: 1px solid #DDDDDD;
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    right: -40px;
    cursor: pointer;
    background-color: #fff;
    color: #fcb01c;
    font-size: 28px;
    line-height: 0;
    text-indent: -500000px;
    border-radius: 5px;
    transition: all 0.5s;
}
    .b03_slide .slick-arrow:before {
        position: absolute;
        content: "";
        top: 36%;
        left: calc(50% - 7px);
        border: 2px solid transparent;
        border-top: 2px solid #000;
        border-right: 2px solid #000;
        padding: 3px;
        transform: rotate(45deg);
    }
.b03_slide .slick-prev:before {
    content: "";
    transform: rotate(225deg);
    left: unset;
    right: calc(50% - 7px);
}
.b03_slide .slick-prev {
    left: -40px;
}

@media screen and (max-width: 1400px) {
    .container {
        padding: 0 3%;
    }

    .mainvisual {
        padding: 0 3%;
    }
    
}

@media screen and (max-width: 768px) {
    h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
        font-size: 13px;
    }
    h3{
        margin-top: 5px;
    }

    #wrapper {
        min-width: 100%;
        margin: 0;
        padding-top: 95px;
    }

    #main, #footer {
        min-width: 100%;
    }

    .container {
        padding: 0 3%;
        max-width: 100%;
    }

    .container .logo{
        margin-left: 30px;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
	.h_main {
    padding: 10px 0;
    background: #fff;
}
	.mainvisual {
        margin-top: 10px;
       
    }
    /* MENU-ICON */
    .menu-icon {
        width: 20px;
        height: 20px;
        box-sizing: border-box;
        text-align: center;
        text-transform: uppercase;
        line-height: 1em;
        cursor: pointer;
        z-index: 10;
    }

        .menu-icon span {
            display: block;
            margin: 0 auto 15px;
            width: 100%;
            height: 2px;
            background-color: #3e4a5e;
            -webkit-transition-duration: 0;
            -moz-transition-duration: 0;
            -ms-transition-duration: 0;
            -o-transition-duration: 0;
            transition-duration: 0;
            -webkit-transition-delay: 0.2s;
            -moz-transition-delay: 0.2s;
            -ms-transition-delay: 0.2s;
            -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
            top: 9px;
            left: 0;
            position: relative;
        }

            .menu-icon span::after, .menu-icon span::before {
                display: block;
                content: '';
                position: absolute;
                width: 100%;
                height: 2px;
                background-color: #3e4a5e;
                -webkit-transition-property: margin, -webkit-transform;
                -webkit-transition-duration: 0.2s;
                -moz-transition-duration: 0.2s;
                -ms-transition-duration: 0.2s;
                -o-transition-duration: 0.2s;
                transition-duration: 0.2s;
                -webkit-transition-delay: 0.2s, 0;
                -moz-transition-delay: 0.2s, 0;
                -ms-transition-delay: 0.2s, 0;
                -o-transition-delay: 0.2s, 0;
                transition-delay: 0.2s, 0;
            }

            .menu-icon span::before {
                margin-top: -8px;
            }

            .menu-icon span::after {
                margin-top: 8px;
            }

        .menu-icon.active span {
            background-color: transparent;
        }

            .menu-icon.active span::before, .menu-icon.active span::after {
                margin-top: 0px;
                -webkit-transition-delay: 0, 0.2s;
                -moz-transition-delay: 0, 0.2s;
                -ms-transition-delay: 0, 0.2s;
                -o-transition-delay: 0, 0.2s;
                transition-delay: 0, 0.2s;
            }

            .menu-icon.active span::before {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .menu-icon.active span::after {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

    .gnv-ico {
        width: 50px;
        height: 48px;
        position: absolute;
        right: 0;
        top: 0 !important;
        transform: none !important;
        border: none !important;
    }

        .gnv-ico:before {
            content: '';
            position: absolute;
            border: solid rgba(0, 0, 0, 0.3);
            border-width: 0 1px 1px 0;
            display: inline-block;
            padding: 3px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            left: calc(50% - 3px);
            top: calc(50% - 3px);
            transition: all 0.5s ease;
        }

    #totop {
        width: 40px;
        right: 3%;
        bottom: 50px;
        line-height: 0;
    }

    .h_top, .h_search, .h_right_link, .gnv_txt, .gnv_cate_ttl {
        display: none;
    }

    .sp .gnv_cate_ico {
        background: #3e4a5e;
        display: inline-flex;
        margin: 0;
    }

        .sp .gnv_cate_ico:before, .sp .gnv_cate_ico:after {
            background: #3e4a5e;
        }

    .sp.icon {
        margin: 0;
        width: 19px;
    }

    .h_right_btn a {
        /* width: auto; */
        /* height: auto; */
        /* line-height: 0; */
        border: none;
        font-size: 24px;
    }

        .h_right_btn a span {
            width: 15px;
            height: 15px;
            font-size: 10px;
            line-height: 16px;
            top: 0px;
            right: 0px;
        }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #f8f8f8;
        z-index: 999;
    }

    .gnv_cate_list {
        position: fixed;
        top: 0;
        display: block;
        right: -300px;
        width: 100%;
        max-width: 300px;
        height: 100%;
        border-radius: 0;
        transition: all 0.3s;
        overflow: auto;
    }

        .gnv_cate_list.show {
            right: 0;
        }

        .gnv_cate_list li.close_btn, .gnv_close {
            background: #338acd;
            color: #fff;
            padding: 15px 30px;
            text-transform: uppercase;
            margin-bottom: 40px;
        }

            .close_btn:after, .gnv_close:after {
                content: 'X';
                margin-left: 10px;
            }

    #gnavi {
        padding: 0;
        position: fixed;
        left: -300px;
        top: 0;
        background: #fff;
        height: 100%;
        width: 100%;
        max-width: 300px;
        overflow: auto;
        z-index: 99;
        transition: all 0.3s;
    }

        #gnavi.show {
            left: 0;
        }

    .gnavi {
        margin: 0;
        display: block;
        width: 100%;
        padding: 0 30px;
    }

    #gnavi .container {
        padding: 0;
        display: block;
    }

    .gnavi > li {
        padding: 0;
    }

        .gnavi > li > a {
            display: block;
            font-weight: normal;
            text-transform: uppercase;
            font-size: 14px;
            padding: 13px 0;
            border-bottom: 1px solid #e5e5e5;
        }

            .gnavi > li > a:after, .submenu:before {
                display: none !important;
                
            }
            .gnavi > li:hover > a {
            color: #338acd;
        }


    .submenu {
        position: relative;
        padding: 20px 0;
        border: none;
        top: 0;
    }

        .submenu li {
            padding: 5px 10px;
        }

    .sub_row {
        min-width: 100%;
        display: block;
    }

    .sub_col_ttl {
        padding: 0;
    }

    .b01_itm_ttl {
        font-size: 16px;
    }

    .box01 {
        padding: 50px 0;
    }

    .b02_list {
        display: block;
    }

    .b02_item {
        width: 100%;
        margin: 0 0 30px;
    }

        .b02_item a {
            padding: 30px;
        }

    .b02_itm_ttl {
        font-size: 22px;
    }

    .b03_item {
        padding: 10px 5px;
        width: calc(100% / 2);
    }

    .b03_list .slick-arrow {
        opacity: 1;
        width: 30px;
        height: 30px;
        top: calc(50% - 15px);
    }

        .b03_list .slick-arrow:after {
            padding: 3px;
            left: 12px;
            top: calc(50% - 3px);
        }

    .b03_list .slick-next:after {
        left: 9px;
    }

    .b03_itm_price {
        font-size: 13px;
    }

    .box03 {
        padding: 20px 0 40px;
    }
	.idx_p{width:100%;margin-left:0;}
.box04, .box07 {
    padding: 0;
}
   

    .idx_h2 {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .arr {
        width: 10px;
    }

    .b03_itm_ttl a {
        font-size: 14px;
        line-height: 1.3;
    }

    .b03_btn {
        margin-top: -43px;
        

    }
    .b03_btn a{
        margin-top: 0px;
        font-size: 11px;
    }

    /* .b04_bnr {
        display: block;
    }

    .b04_bnr_main {
        width: 100%;
        margin: 0 0 30px;
    }

    .b04_bnr img {
        width: 100%;
        text-align: center;
    } */


    .box05 {
        padding: 50px 0;
    }

        .box05 .container {
            display: block;
        }

    .b05_img {
        width: 100%;
        padding: 0;
        margin: 0 0 20px;
    }

    .b05_h2 {
        font-size: 14px;
        margin: 0 0 10px;
    }

        .b05_h2 span {
            font-size: 16px;
            text-align: center;
        }

    .b06_list {
        display: block;
        padding: 40px;
        margin-bottom: 30px;
    }

    .b06_item {
        width: 100%;
        margin: 0 0 60px;
    }

        .b06_item:last-child {
            margin-bottom: 0;
        }
    @media (max-width: 768px) {
        .b06_list {
            padding: 20px;
            text-align: center;            margin: 0;
        }

        .b06_item {
            margin: 0 auto 40px;
            max-width: 100%;
            text-align: center; 
        }

    
        .b06_icon {
            margin: 0 auto 15px;
        }
    }

    .b07_bnr {
        /* padding: 40px 4%; */
        display: flex;
        flex-direction: column-reverse;
    }

    .b07_img {
        width: 100%;
        padding: 0;
    }

    .box08 {
        padding: 50px 0 0;
    }

    .b08_item:nth-of-type(odd) {
        margin-top: 0;
    }

    /* .b08_item {
        padding: 30px 5vw;
    } */

    .box08 .container:before, .box08 .container:after, .box08:before, .box08:after {
        display: none;
    }

    .box09 {
        padding: 0 0 50px;
    }
	.box10 {
        padding: 50px 0 0;
    }

    .b10_list {
        display: block;
    }

    .b10_item dt {
        font-size: 16px;
        padding: 15px 30px 15px 15px;
    }

        .b10_item dt:after {
            right: 12px;
            top: 16px;
        }

    .b10_item dd {
        padding: 0 15px 15px 15px;
    }

    .b10_item dt:hover {
        background: transparent;
    }
    .f_main {
        padding: 30px 3%;
        display: block;
    }

    .f_mod {
        width: 100% !important;
        margin: 0 0 30px;
    }

        .f_mod:last-child {
            margin-bottom: 0;
        }

    .f_bottom {
        display: block;
        text-align: center;
    }

    .copyright {
        margin: 0 0 10px;
    }

    .f_bot_link {
        justify-content: center;
        margin: 0 0 20px;
    }

    #totop a {
        width: 30px;
        height: 30px;
        border-width: 1px;
    }
    .b03_slide  .slick-arrow{
        position: absolute;
        z-index: 3;
        border: 1px solid #DDDDDD;
        width: 30px;
        height: 30px;
        top: calc(50% - 15px);
        right: -40px;
        cursor: pointer;
        background-color: #fff;
        color: #fcb01c;
        font-size: 28px;
        line-height: 0;
        text-indent: -500000px;
        border-radius: 5px;
        transition: all 0.5s;
}



}
