@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root {
	--f-main: 'Roboto', sans-serif;
	--f-gv: 'Great Vibes', sans-serif;
	--txt: #333;
	--txt-gray: #898989;
	--m-color: #143c4a;
	--s-color: #ffc200;
	--blue: #72cff0;
	--mn-blue: #405aa5;
	--blue-bold: #04b0ed;
}
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: var(--m-color);
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
p:last-child {
  margin-bottom: 0;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.3em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  margin-bottom: 0;
  width: 80px;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
  animation: slide-top 0.8s linear infinite alternate-reverse;
}
#btn_totop{
	display: block;
    margin-top: 30px;
}
#totop a:hover {
  opacity: 0.7;
}
@-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;
}
.menium{
  font-weight: 500;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Header                                     */
/*==========================================================================*/
h1{
  display: none;
}
/* MENU-ICON */
.menu-icon {
  width: 90px;
  height: 35px;
  box-sizing: border-box;
  text-align: center;
  text-transform: uppercase;
  line-height: 1em;
  cursor: pointer;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 8px;
  z-index: 99999;
  background: #959595;
  margin-left: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-icon span {
  display: block;
  margin-right: 7px;
  width: 20px;
  height: 3px;
  background-color: #000;
  -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: calc(50% - 10px);
  left: 0;
  position: relative;
}
.menu-icon span::after, .menu-icon span::before {
  display: block;
  content: '';
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: #000;
  -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: -5px;
}
.menu-icon span::after {
  margin-top: 5px;
}
.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);
}
.boxmenu_container{
  position: absolute;
  background: rgba(20, 60, 74, 0.9);
  height: calc(100vh - 65px);
  width: 300px;
  top: 65px;
  z-index: -1;
  right: -100%;
  display: none;
  transition: all ease 0.5s;
  padding: 20px;
}
.boxmenu_container.active{
  right: 0;
  display: block;
  z-index: 10;
}
.boxmenu_container a{
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px 15px;
  border-bottom: 1px solid #959595;
}
.boxmenu_container a:hover{
  background: rgba(0, 0, 0, 0.1);
}

.h_welcome{
  background: var(--m-color);
  color: #fff;
  padding: 15px 0;
}
.h_welcome .container{
  justify-content: space-between;
  padding: 0 30px;
}
.h_wc_txt{
  margin-bottom: 0;
  font-family: var(--f-gv);
  font-size: 24px;
  letter-spacing: 0.01em;
}
.h_social a{color:#fff;}
.h_social a img{width:19px;}
.h_social a:not(:last-child){
  margin-right: 33px;
}
.h_cart{
  padding-left: 33px;
  background: url(../images/icon-cart.png) no-repeat top calc(50% - 2px) left/23px auto;
  padding-right: 16px;
  border-right: 1px solid #959595;
  margin-right: 17px;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: 14px;
}
.h_cart_mobi{display:none;}

.h_cart a{color:#fff;}

.gr_language{
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}
.gr_language .lang{
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}
.gr_language .lang:hover{
  opacity: 0.7;
}
.gr_language .lang:not(:last-child){
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #fff;
}
.gr_language .lang.active{
  color: var(--blue);
}
.logo{
  margin-bottom: 0;
  text-align: center;
}
.h_top{
  border-bottom: 1px solid #f9f9f9;
  padding: 39px 0 31px;
}
.h_tel {
  margin-bottom: 8px;
}
.h_tel a{
  font-size: 20px;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
}
.h_info{
  color: #666;
  font-weight: 300;
  font-size: 15px;
}
.h_top .container{
  justify-content: space-between;
  padding: 0 30px;
}
.h_box1{
  padding-top: 3px;
  
}
.h_box3{
  position: relative;
  padding-top: 4px;
}
.h_box3 input{
  background: #f3f3f3;
  font-size: 15px;
  padding: 14px 50px 14px 25px;
  border: none;
  width: 291px;
}
.h_box3 .btn_search{
  position: absolute;
  right: 21px;
  top: calc(50% - 10px);
  z-index: 1;
  background: url(../images/icon-search.png) no-repeat center/contain;
  width: 20px;
  height: 20px;
  outline: 0;
  border: none;
  cursor: pointer;
}
.h_box3 input::placeholder {
  color: #979797;
  opacity: 1; /* Firefox */
}
.h_box3 input::-ms-input-placeholder { /* Edge 12 -18 */
  color: #979797;
}

.h_main{
  position: relative;
  z-index: 5;
}
.gnavi {
  display: flex;
}
.gnavi>li {
  margin: 0 30px;
  padding: 18px 0 13px;
}
.gnavi li {
  position: relative;
}
.gnavi > li.over{
    padding-right: 17px;
    background: url(../images/icon-arrown-menu.svg) no-repeat center right/10px auto;
}
.gnavi>li>a {
  display: block;
  text-decoration: none;
  padding: 8px 0 11px;
  border-radius: 10px;
  font-size: 17px;
  text-transform: uppercase;
  transition: all 0.3s;
  text-align: center;
  position: relative;
  z-index: 0;
  color: var(--txt);
}
.gnavi>li>a:before, .gnavi>li>a::after{
  content: '';
  position: absolute;
  z-index: -1;
  background: var(--mn-blue);
  height: 1px;
  width: 0;
  transition: all .3s ease;
}
.gnavi>li>a:before{
  left: 0;
  bottom: 5px;
}
.gnavi>li>a::after{
  right: 0;
  bottom: 0;
}
.gnavi>li.active>a, .gnavi>li:hover>a {
  color: var(--m-color);
  font-weight: 900;
}
.gnavi>li.active>a:before, .gnavi>li:hover>a:before{
  width: 80%;
}
.gnavi>li.active>a:after, .gnavi>li:hover>a:after{
  width: 50%;
}
.submenu li {
  padding: 0 30px;
}
.submenu {
  position: absolute;
  background: #fff;
  margin-top: 13px;
  display: none;
  padding: 10px 0;
  left: -30px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  min-width: 220px;
}
.submenu a {
  text-decoration: none;
  white-space: nowrap;
  text-transform: uppercase;
  color: var(--scolor);
  display: block;
  font-size: 13px;
  position: relative;
  border-bottom: 1px solid #ebebeb;
  padding: 8px 0;
}
.submenu li:last-child > a {
border-bottom: none;
}
.submenu a:hover {
color: var(--mcolor);
}
.has_child .submenu {
left: calc(100% + 5px);
margin-top: 0;
top: -10px;
}
.submenu li.has_child:after {
content: '';
position: absolute;
border: solid var(--txt);
border-width: 0 1px 1px 0;
display: inline-block;
padding: 3px;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
right: 30px;
top: 14px;
}
#gnavi {
  display: flex;
  justify-content: center;
}
#header.fixed  {
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 50;
background: #fff;
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;
}
#header.fixed .h_welcome, #header.fixed .h_top{
  display: none;
}
#header.fixed .h_top {
  padding-top: 10px;
}
/* #header.fixed .logo {
  width: 60px;
} */
@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);
}
}
.lager{position:static !important;// gắn vào LI menu} 
.submenulist {
display:none;
	width: 1330px;
    position: absolute;
    z-index: 99;
    background: #fff;
    padding: 20px;
    top: 72px;
	left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow:    0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	box-shadow:         0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
/**/
.submenulist > div {
	display: flex;flex-wrap: wrap;
}
.submn-ttl {
    font-weight: bold;
    text-transform: uppercase;
}

.submnlist:not(:last-child) {
    width: calc(100%/5 - 15px);
    margin-right: 15px;
    padding-right: 15px;
	margin-bottom: 15px;
}
.submnlist li:not(:last-child){border-bottom:1px solid #dcdcdc;}
.submnlist li:not(:first-child){position:relative;display:none;}
.submnlist li:not(:first-child):before{
    position: absolute;
    padding: 6px;
    content: "";
    background: #ec3237;
    border-radius: 10px;
    top: 13px;
}
.submnlist li:not(:first-child):after{
position: absolute;
    padding: 2px;
    content: "";
    border: 1px solid transparent;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
    top: 15px;
    left: 1px;
}

.submnlist a {
	font-size: 12px;
	text-decoration: none;
	color: #000;
	display: block;
	padding: 5px 10px 5px 20px;
}
.submnlist a:hover {
	background: rgba(0,0,0,0.1);
}
.main_slide p {
	margin: 0;
}
.main_slide img {
	width: 100%;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: var(--txt);
  font-family: var(--f-main);
  font-weight: 300;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 1366px;
	max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
.df{
  display: flex;
  flex-wrap: wrap;
}
.ai-c{
  align-items: center;
}
.jc-c{
  justify-content: center;
}
.jc-sw{
  justify-content: space-between;
}
.cm_btn a{
  text-decoration: none;
  display: inline-flex;
  color: #fff;
  border: 3px solid var(--m-color);
  font-size: 18px;
  padding: 6px 32px 8px 15px;
  border-radius: 30px;
  transition: all 0.3s;
  color: var(--m-color);
  position: relative;
  font-weight: 500;
  z-index: 0;
}
.cm_btn a::after{
  content: '';
  position: absolute;
  z-index: -1;
  right: 16px;
  top: calc(50% - 6px);
  width: 8px;
  height: 11px;
  background: url(../images/icon-arrown-button.svg) no-repeat center/contain;
}
.box01{
  padding: 84px 0 60px;
}
.idx_h2{
  font-size: 30px;
  color: var(--m-color);
  text-align: center;
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.idx_h2 .ttl{
  position: relative;
  z-index: 0;
  padding: 0 62px;
}
.idx_h2 .ttl::before, .idx_h2 .ttl::after{
  content: '';
  position: absolute;
  z-index: -1;
  top: calc(50% - 2px);
  transform: translateY(-50%);
  background: var(--m-color);
  width: 35px;
  height: 3px;
}
.idx_h2 .ttl::before{
  left: 0;
}
.idx_h2 .ttl::after{
  right: 0;
}
.box1_content{
  margin-left: -15px;
  margin-right: -15px;
}
.box1_item{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc(100% / 4 - 30px);
}
.box1_item > div{
  width: 100%;
}
.box1_item{
  text-align: center;
  padding: 20px 20px 26px;
  margin: 15px;
  background: #efefef;
  border-radius: 10px;
}
.box1_img{
  margin-bottom: 21px;
}
.box1_title{
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}
.box1_item img{
	transition:0.5s all;
}
.box1_item:hover img{
	transform:scale(1.4,1.4);
}
.box02{
  padding: 80px 0 0;
  background: #f7f7f7;
}
.box02 .container{
  padding: 0 36px;
}
.box02_content1{
  margin-bottom: 78px;
}
.box02_col{
  width: 50%;
}
.box02_left{
  background: url(../images/box2_bg.jpg) no-repeat center/cover;
  color: #fff;
  text-align: center;
  position: relative;
  max-width: 630px;
}
.box02_mv_text{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.box02 .idx_h2 .ttl{
  text-transform: none;
}
.box02 .idx_h2{
  margin-bottom: 25px;
}
.box02_img_logo{
  margin-bottom: 12px;
}
.box02_img_button{
  margin-bottom: 20px;
}
.box02_title1{
  font-size: 24px;
  margin-bottom: 10px;
}
.box02_title2{
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 0;
}
.box02_right{
  padding: 0 0 0 79px;
}
.b2_txt{
  margin-bottom: 24px;
}
.box02_gr_title{
  display: table;
  margin-bottom: 15px;
}
.box02_boxtxt p{
  font-size: 18px;
}
.box02_gr_button{
  margin-bottom: 26px;
}
.box02_gr_button .btn{
  background: var(--m-color);
  color: #fff;
  width: calc(100%/3 - 20px);
  font-size: 14px;
  padding: 13px 5px 12px;
  flex-wrap: nowrap;
}

.box02_gr_button .btn a{    
	display: flex;
    color: #fff;
    align-items: center;}

.data_popup{display:none;}
.popup{max-width:800px;}
.popup p{max-width:800px;}

.box02_gr_button .btn:not(:last-child){
  margin-right: 30px;
}
.box02_gr_button .btn .icon{
  display: inline-block;
  margin-right: 12px;
}
.box02_gr_button .btn_01 .icon{
  width: 30px;
}
.box02_gr_button .btn_02 .icon{
  width: 27px;
}
.box02_gr_button .btn_03 .icon{
  width: 29px;
}
.box02 .cm_btn{
  margin-top: 36px;
}
.box02_content2{
  padding: 86px 0 79px;
  background: url(../images/box2_bg2.jpg) no-repeat center;
}
.box02_content2 .title_count{
  text-transform: uppercase;
}
.box02_content2 .img_count{
  margin-bottom: 13px;
}
.box02_content2 .ttl-count{
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 14px;
}
.box02_content2 .title_count{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
.box02_item_count{
  width: calc(100%/5);
  color: #fff;
  text-align: center;
}
.box03{
  padding: 84px 0 63px;
}
.box03 #tabs{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.box03 #tabs li a {
  padding: 5px;
  cursor: pointer;
  font-size: 17px;
}

.box03  #tabs li a{
  display: block;
  border-radius: 20px;
  padding: 12px 32px;
  margin: 5px;
  background: #72cff0;
  color: #000;
}
.box03  #tabs li a:hover{
  color: #000;
}
.box03  #tabs li a.inactive{
  background: #f8f8f8;
  color: #333;
}

.box03 #tabs li a.inactive:hover {
  color: #333;
  outline:none;
}

.box03 .tabs-container {         
  width:100%;
  text-align:left;
  padding-top: 23px;
}

.b03_list_product{
  margin-left: -14px;
  margin-right: -14px;
}
.b03_item{
  width: calc(100%/3 - 28px);
  margin: 14px;
  text-align: center;
  border: 1px solid #d1d1d1;
  padding: 39px 25px 25px;
  position: relative;
}
.b03_item a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;z-index: 9999;/**/
}

.b03_number_code{
  position: absolute;
  left: 0;
  top: 27px;
  background: var(--m-color);
  color: #fff;
  padding: 8px 15px 5px;
  border-radius: 0 50px 50px 0;
  font-size: 14px;
  font-weight: 500;
  z-index:1;	
}
.b03_number_sale{
  position: absolute;
  top: 28px;
  right: 22px;
  background: var(--s-color);
  border-radius: 10px 0 10px 0;
  color: #000;
  width: 45px;
  padding: 6px 0;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}
.b03_title{
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--m-color);
  line-height: 1.5;
}
.b03_img{
  margin-bottom: 30px;
}
.b03_img img{
	transition: all 0.5s;
}
.b03_item:hover .b03_img img{
	transform: scale(1.1,1.1);
}
.b03_price .price_old{
  margin-bottom: 0;
  margin-right: 64px;
  color: var(--txt-gray);
  text-decoration: line-through;
}
.b03_price .price_new{
  color: var(--blue-bold);font-weight: 500;
}
.b03_price .price_new .number{
  font-size: 20px;
  font-weight: 500;
}
.b03_price_contact{
  color: var(--txt-gray);
  font-size: 18px;
  font-weight: 500;
}
.b03_price_contact .txt_lh{
  color: var(--blue);
}
.box04{
  padding: 85px 0 70px;
  position: relative;
  z-index: 0;
}
.box04::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #f7f7f7;
  height: 442px;
}
.box04 .idx_h2{
  margin-bottom: 59px;
}

.b4_box_text{
  position: absolute;
  left: 42px;
  bottom: 40px;
  background: #fff;
  border-radius: 15px;
  padding: 24px 33px 27px;
}
.box04 .b4_slider img{
	    transition: all 0.5s;
}

.box04 .b4_slider:hover img{
	transform: scale(1.1,1.1);
}
.b4_ttl{
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--m-color);
  margin-bottom: 8px;
  line-height: 1.5;
}
.b4_box_text .icon{
  margin-left: 7px;
  display: inline-block;
  line-height: 0;
}
.box04 .swiper-button-next, .box04 .swiper-container-rtl .swiper-button-prev{
  background-image:url(../images/b4_icon-arrown-right.svg);
}
.box04 .swiper-button-next:hover, .box04 .swiper-container-rtl .swiper-button-prev:hover{
  background-image:url(../images/b4_icon-arrown-right-ov.svg);
}
.box04 .swiper-button-prev, .box04 .swiper-container-rtl .swiper-button-next{
  background-image:url(../images/b4_icon-arrown-left.svg);
}
.box04 .swiper-button-prev:hover, .box04 .swiper-container-rtl .swiper-button-next:hover{
  background-image:url(../images/b4_icon-arrown-left-ov.svg);
}
.box04 .swiper-button-prev, .box04 .swiper-button-next{
  width: 35px;
  height: 35px;
  background-size: contain;
}
.box4_slider{
  overflow: hidden;
}
.box04 .swiper-container{
  overflow: visible;
  height: 698px;
}
.box04 .swiper-button{
  width: 124px;
  height: 35px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.box04 .swiper-slide{
  /* width: 536px; */
  /* height: 536px; */
  /* margin-left: -70px; */
  /* margin-right: -70px; */
  transition: all 0.3s ease;
}
.box04 .swiper-slide-prev, .box04 .swiper-slide-active, .box04 .swiper-slide-next{
  z-index: 2 !important;
}
.box04 .swiper-slide-active{
  margin-top: 86px;
  z-index: 3 !important;
  position: relative;
}
.box04 .b4_slider a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index:999;
}
.box05{
  padding: 19px 0 66px;
}
.box05_slider{
  margin-left: -10px;
  margin-right: -10px;
  padding-top: 10px;
  
}
.b5_item_slider{
  text-align: center;
  width: calc(100%/8 - 20px);
  margin: 12px 10px;
}
.b5_img{
  padding: 24px 35px;
  border: 1px solid #ebebeb;
  margin-bottom: 16px;
}
.b5_txt{
  margin-bottom: 0;
}
.box06{
  padding: 111px 0 149px;
  background: url(../images/box6_bg.jpg) no-repeat center/cover;
}
.b06_content{
  width: 50%;
  margin-left: auto;
  color: #fff;
  text-align: center;
}
.b6_idx_h2{
  color: #fff;
  line-height: 1.25;
  font-size: 48px;
  margin-bottom: 38px;
}
.b6_idx_h2 .ttl{
  font-size: 30px;
}
.b6_idx_h2 .ttl::before, .b6_idx_h2 .ttl::after{
  background-color: #fff;
}
.b6_txt{
  word-spacing: 10px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 55px;
}
.box06 .cm_btn a{
  color: var(--blue);
  border-color: var(--blue);
      font-weight: 500;
}
.box06 .cm_btn a::after{
  background-image: url(../images/arrown_button_blue.svg);
}
.box07{
  padding: 91px 0 94px;
  background: url(../images/box7_bg.png) no-repeat bottom center;
}
.box07 .container{
  position: relative;
}
.box07 .idx_h2{
  margin-bottom: 56px;
}
.box07 .b7_img{
  position: absolute;
  right: 0;
  right: -34px;
  bottom: -34px;
}
.box7_slider{
  max-width: 960px;
  margin-left: auto;
  padding-bottom: 79px;
}
.b7_item_slider{
  padding: 0 8px;
  cursor:grab;
}
.box07 .slick-dots {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.box07 .slick-dots li{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
}
.box07 .slick-dots li.slick-active{
  border: 3px solid #72cff0;
}
.box07 .slick-dots li.slick-active button:before{
  background: #72cff0;
}
.box07 .slick-dots li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 15px;
  height: 15px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
  position: relative;
}
.box07 .slick-dots li button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ccc;
  border-radius: 50%;
}
.box08{
  padding: 73px 0 61px;
}
.box08 .idx_h2{
  margin-bottom: 40px;
}
.b08_list.slick-initialized .slick-slide {
	padding: 15px;
}
.b08_item a {
	display: block;
	text-decoration: none;
	color: var(--txt);
	transition: all 0.3s;
  background: #f8f8f8;
}
.b08_itm_img {
    margin: 0;
    overflow: hidden;
}
.b08_itm_img img {
	width: 100%;
	transition: all 0.3s;
}
.b08_item a:hover .b08_itm_img img {
	transform: scale(1.1);
}
.b08_itm_main {
    padding: 23px 40px 40px;
}
.b08_itm_info {
  display: flex;
  align-items: center;
  color: var(--scolor);
  margin: 0 0 17px;
  line-height: 1;
  font-weight: 500;
  color: #000;
}
.b08_itm_info>span {
	display: flex;
	align-items: flex-end;
}
.b08_itm_info>span:before {
	content: '';
	position: relative;
	display: inline-block;
	background: url("../images/box8_icon1.png") no-repeat center center/contain;
	width: 16px;
	height: 20px;
	margin-right: 11px;
}
.b08_itm_info .auth {
    margin-right: 60px;
}
.b08_itm_info>span.date:before {
	background-image: url("../images/box8_icon2.png");
	width: 20px;
}
.b08_itm_ttl {
  font-size: 20px;
  color: var(--m-color);
  font-weight: 500;
  margin: 0 0 9px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.b08_list {
	margin: 0 -15px;
}
.b08_itm_txt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #666;
  line-height: 1.5;
  margin-bottom: 16px;
}
.b08_itm_btn {
  display: inline-block;
  color: var(--blue);
  padding: 0 0 0 27px;
  background: url("../images/icon_ct.svg") no-repeat left calc(50% - 1px);
  margin-bottom: 0;
      font-weight: 500;
}
.b08_item a:hover {
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.b08_list .slick-dots {
	margin-top: 40px;
}
.box09{
	display:none;

}
.img_zalo{
			width: 20px;
		}
.f_logo{
  margin-bottom: 28px;
}
.f_top{
  text-align: center;
  padding: 80px 0 77px;
  background: #f8f8f8;
}
.f_menu{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.f_menu li{
  margin: 0 26px;
}
.f_menu a{
  text-transform: uppercase;
  font-size: 15px;
  text-decoration: none;
}
.f_box_info{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.f_info:not(:last-child){
  padding-right: 18px;
  margin-right: 18px;
  position: relative;
}
.f_info:not(:last-child)::before{
  content: '';
  position: absolute;
  right: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: #333;
}
.f_branch_address{
  margin-left: -8px;
  padding-top: 3px;
}
.f_branch_address .ttl{
  text-decoration: underline;
}
.f_branch_address li{
  padding-left: 36px;
  background: url(../images/ft_icon2.png) no-repeat left top/25px auto;
  font-size: 15px;
}
.f_branch_address li:first-child{
  background-image: url(../images/ft_icon1.png);
}
.f_branch_address li:not(:last-child){
  margin-bottom: 22px;
}
.f_info a{
  color: #333;
  text-decoration: none;
  font-size: 15px;
}
.f_social a{
  margin: 15px;
}
.f_bottom{
  background: url(../images/ft_bg.jpg) no-repeat center/cover;
  padding: 86px 0 41px;
  color: #fff;
  font-size: 15px;
}
.f_bottom .container{
  padding: 0;
}
.f_bottom a{
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.f_menu_bottom a{
  position: relative;
  z-index: 0;
  padding-left: 22px;
  font-weight: 300;line-height: 1.3;
}
.f_menu_bottom a::before{
  content: '>>';
  position: absolute;
  left: -5px;
    top: -2px;
}
.f_bottom .f_ttl{
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.f_menu_bottom li{
  padding: 5px 5px 6px;
}
.f_list_banner li:not(:last-child){
  margin-right: 16px;
}
.f_box1{
  margin-bottom: 59px;
}
.f_box1 .f_ttl{
  margin-bottom: 14px;
}
.f_box2 .f_ttl{
  margin-bottom: 14px;
}
.f_copyright{
  text-align: center;
  margin-top: 42px;
  padding-top: 46px;
  border-top: 1px solid #ebebeb;
}
.f_col{
  width: calc(100%/4 - 30px);
  margin: 0 15px;
}
@media screen and (max-width: 1000px) {
	.lager{position:relative !important;} 
	.h_cart_mobi{display:inline-block;     padding-left: 24px;
		background: url(../images/icon-cart-2.png) no-repeat top calc(50% - 2px) left / 23px auto;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 6px;
		font-size: 10px;color: #000;}
		.h_search_mobi{
			
			display:inline-block;     padding-left: 24px;
		background: url(../images/icon-search.png) no-repeat top calc(50% - 2px) left / 23px auto;
		padding-right: 10px;
		padding-top: 25px;
		padding-bottom: 6px;
		font-size: 10px;color: #000;
		}
		.submenulist {
		display: none;
		width: 100%;
		position: unset;
		transform: unset;
		}
		.submnlist:not(:last-child) {
		width: 100%;
		margin: 0;
        padding: 0;
		}
		
		
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 55px;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon{
    margin-left: 12px;
  }
  .gnv-ico {
    width: 40px;
    height: 49px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    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;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  .h_main{
    background: var(--m-color);
    width: 100%;
    position: fixed;
    height: calc(100% - 55px);
    top: 55px;
    left: 0;
    padding: 30px 0;
    overflow: auto;
    display: none;
  }
  #gnavi {
    display: block;
  }
  .gnavi {
      display: block;
  }
  .gnavi>li {
      margin: 0!important;
    padding: 0;
      }
  .gnavi>li>a {
      text-align: left;
      padding: 15px 20px;
      border-bottom: 1px solid var(--txt-gray);
      border-radius: 0;
      background: none !important;
      color: #fff;
  }
  .gnavi > li.over{
    padding-right: 0;
    background-image: none;
  }
  .gnavi>li.active>a, .gnavi>li:hover>a{
    color: #fff;
    font-weight: 300;
  }
  .gnavi>li.active>a:before, .gnavi>li:hover>a:before, .gnavi>li.active>a:after, .gnavi>li:hover>a:after{
    content: none;
  }
    .gnavi>li.over>a {
      padding-right: 50px;
    }
  .submenu {
      position: relative;
      left: 0;
      top: 0;
      margin: 0;
      border-radius: 0;
      padding: 10px;
    box-shadow: none;
  }
    .submenu li.over > a {
      padding-right: 20px;
    }
  .submenu a {
      font-size: 13px;
      padding: 10px 0;
    white-space: normal;
    margin-left: 25px;
  }
  .submenu .gnv-ico {
      background: var(--m-color);
    height: 38px;
  }
  .submenu li {
      padding: 0;
  }
    .submenu li.has_child:after {
      display: none;
    }
  .has_child .submenu {
      left: 0;
      margin-top: 0;
      top: 0;
    width: calc(100% + 10px);
  }
  .submnlist li:not(:first-child){display:block;}
  #header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
    height: 55px;
}
  .h_social, .h_wc_txt, .h_cart, .h_box1, .h_box3{
    display: none;
  }
  .h_welcome{
    position: absolute;
    right: 0;
    background: transparent;
    padding: 10px 0;
  }
  .h_welcome .container{
    padding: 0 10px;
  }
  .h_top {
    padding: 18px 10px;
	border:none;
}

.h_box3{
	display:none;
        top: 20px;
        width: 100%;
}
.h_box3 input {
	width:100%;
}
  .gr_language .lang{
    color: #333;
  }
  .gr_language .lang:not(:last-child){
    border-color: #333;
  }
  .h_top .container{
    padding: 0;
  }
  .logo{
    width: 135px;
  }
  .box1_content {
      margin-left: -10px;
      margin-right: -10px;
  }
  .box1_item {
    padding: 15px;
    margin: 10px;
    width: calc(100% / 4 - 20px);
  }
  .box1_title{
    font-size: 15px;
  }
  .idx_h2{
    font-size: 22px;
    margin-bottom: 20px;
  }
  .idx_h2 .ttl {
      padding: 0 36px;
  }
  .idx_h2 .ttl::before, .idx_h2 .ttl::after{
    width: 20px;
  }
  .box01{
    padding: 40px 0;
  }
  .box02 .container{
    display: block;
  }
  .box02{
    padding: 40px 0;
  }
  .box02 .container {
    padding: 0 3%;
}
  .box02_left{
    max-width: 100%;
    height: 40vw;
  }
  .box02_img_button {
    width: 10vw;
    margin: 0 auto 2vw;
  }
  .box02_title1 {
    font-size: 2.2vw;
    margin-bottom: 1vw;
  }
  .box02_title2 {
    font-size: 6vw;
  }
  .box02_col{
    width: 100%;
  }
  .box02_gr_title{
    margin-left: auto;
    margin-right: auto;
  }
  .box02_right {
      padding: 30px 0 0;
  }
  .box02_img_logo {
    max-width: 250px;
  }
  .box02_boxtxt p {
    font-size: 16px;
}
.box02_gr_button .btn:not(:last-child) {
  margin-right: 15px;
}
.box02_gr_button .btn{
  width: calc(100% / 3 - 10px);
}
.box02 .cm_btn {
  margin-top: 30px;
}
.box02_content1{
  margin-bottom: 40px;
}
.box02 .container{
  display: flex;
  justify-content: center;
}
.box02_content2 .ttl-count {
  font-size: 38px;
}
.box02_content2 .title_count {
  font-size: 14px;

}
.box02_content2{
  background-size: cover;
}
.box02_item_count{
  width: calc(100% / 2 - 10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
}
.box02_item_count:not(:nth-child(2n)){
  margin-right: 20px;
}
.box02_item_count:not(:last-child){
  margin-bottom: 20px;
}
.box02_content2 {
  padding: 40px 0 40px;
}
.box03 #tabs li a{
  /* padding: 8px 15px; */
  /* font-size: 15px; */
  
	padding: 4px 7px;
	font-size: 12px;
	margin: 3px;
}
.b03_list_product{
  justify-content: center;
}
.b03_item{
  width: calc(100% / 2 - 20px);
  margin: 10px;
}
.b03_number_sale {
  right: 10px;
  font-size: 12px;
}
.b03_number_code{
  padding: 5px 10px 5px;
}
.b03_item{
  padding: 19px 15px 15px;
}
.b03_price .price_old{
  margin-right: 40px;
}
.box03 {
  padding: 40px 0 30px;
}
.box03 .tabs-container{
  padding-top: 15px;
}
.box04{
  padding: 40px 0 10px;
}
.box04 .idx_h2{
  margin-bottom: 20px;
}

.b4_box_text{
  left: 32px;
  bottom: 30px;
  padding: 17px 27px 21px;
}
.b4_ttl{
  margin-bottom: 5px;
}
.box05{
  padding: 40px 0;
}
.box05 .idx_h2{
  margin-bottom: 0;
}
.b5_item_slider{
  width: calc(100% / 3 - 20px);
}
.b5_img {
  padding: 15px 20px;
}
.box06 {
  padding: 40px 0;
}
.b6_txt{
  margin-bottom: 30px;
}
.b06_content {
  width: 100%;
  max-width: 580px;
}
.b6_txt {
  font-size: 15px;
  word-spacing: normal;
}
.box07{
  padding: 40px 0 40px;
  background-position: left 70% bottom;
  background-size: 160%;
}
.box07 .b7_img {
  right: 0;
  right: 0;
  bottom: 24px;
  width: 65px;
}
.box07 .idx_h2 {
  margin-bottom: 20px;
}
.box7_slider{
  padding-bottom: 50px;
}
.box07 .slick-dots li{
  width: 33px;
  height: 33px;
  margin: 0 4px;
}
.b08_list {
  margin: 0 -10px;
}
.b08_list.slick-initialized .slick-slide {
  padding: 10px;
}
.b08_itm_main {
  padding: 12px 20px 20px;
}
.b08_itm_ttl {
  font-size: 16px;
}
.b08_itm_info .auth {
  margin-right: 30px;
}
.box08 {
  padding: 40px 0 20px;
}
.box08 .idx_h2 {
  margin-bottom: 10px;
}
.f_logo {
  margin-bottom: 20px;
}
.f_logo img{
  max-width: 250px;
}
.f_top{
  padding: 40px 0;
}
.f_menu li {
  margin: 5px 15px;
}
.f_info:not(:last-child){
  margin-bottom: 5px;
}
.f_bottom{
  padding: 40px 0 13px;
}
.f_col {
  width: calc(100% / 2 - 30px);
}
.f_bottom .f_col:first-child, .f_bottom .f_col:last-child{
  width: 100%;
}
.f_bottom .f_col:first-child{
  margin-bottom: 40px;
}
.f_bottom .f_col:last-child{
  margin-top: 40px;
}
.f_branch_address{
  margin-left: 0;
}
.f_box1 {
  margin-bottom: 30px;
}
.f_copyright {
  margin-top: 30px;
  padding-top: 15px;
}
}
@media screen and (max-width: 750px) {
	 .lager{position:relative;} 
	.menu-icon{width: 60px; font-size: 8px;}
	
	
  .box1_item {
    width: calc(100% / 2 - 20px);
  }
  
  .box02_gr_button{justify-content: space-between;}
  .box02_gr_button .btn {
      width: auto;
	  padding: 13px 9px 12px;
	  margin-right: 0 !important;
	  text-transform: uppercase;
      font-size: 12px;
  }
  
  .box02_gr_button .btn .icon{    margin-right: 5px; width:18px !important;}
  
  .box02 .cm_btn{
    text-align: center;
  }
  .b03_item {
	width: calc(50% - 20px);
    margin: 10px;
}
.b03_list_product{
  margin-left: -10px;
  margin-right: -10px;
}
.b06_content {
  max-width: none;
}
.box04 .swiper-slide {
  /* width: 336px; */
  /* height: 336px; */
  /* margin-left: -35px; */
  /* margin-right: -35px; */
}
.box04 .swiper-container {
  height: 500px;
}
.box04::before {
  height: 300px;
}
}
@media screen and (min-width: 481px) and (max-width: 750px){
  .b08_itm_info .auth{
    margin-right: 0;
    margin-bottom: 10px;
  }
  .b08_itm_info{
    flex-wrap: wrap;
  }
  .b08_itm_info .auth, .b08_itm_info .date{
    width: 100%;
  }
}
@media screen and (max-width: 430px) {
  .box04::before {
    height: 242px;
}
  .box04 .swiper-slide {
    width: 236px;
    height: 236px;
  }
  .box04 .swiper-container {
    height: 380px;
  }
  .b4_box_text {
    left: 15px;
    bottom: 15px;
    padding: 16px 17px 17px;
}
  .f_info{
    width: 100%;
  }
  .f_info:not(:last-child){
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .f_info:not(:last-child)::before{
    content: none;
  }
  .f_box_info{
    margin-bottom: 35px;
  }
  .f_col {
    width: 100%;
  }
  .f_bottom .f_col:nth-child(2){
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 375px) {
  .idx_h2{
    font-size: 18px;
  }
  .idx_h2 .ttl {
    padding: 0 30px;
}
}