﻿@charset "UTF-8";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Oswald:wght@300;400;500;600&family=Roboto:wght@400;500&display=swap');

:root {
    --f-main: 'Montserrat', sans-serif;
    --txt: #000000;
    --m1color: #8D0907;
    --m2color: #D40300;
    --m3color: #D9D9D9;
    --m4color: #FFF4E7;
    --Whitecolor: #FFFFFF;
    --mcolor: #db0707;
    --f-en: 'Oswald', sans-serif;
    --f-roboto: 'Roboto', sans-serif;
    --fa-style-family: "Font Awesome 6 Pro";
}
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(--mcolor);
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.5em;
}
#totop {
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 10;
  margin-bottom: 0;
  width: 50px;
}
#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;
}
#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;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  color: var(--txt);
  font-family: var(--f-main);
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
  padding-top:70px;
}
.container {
    max-width: 1170px;
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
.h_top {
	background: var(--blue);
	color: #fff;
}
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 5px 0;
    transition: all 0.3s;
    background: var(--m1color);
}
.h_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    margin:0;
}
.gnavi {
    display: flex;
	font-family: var(--f-roboto);
}
.h_search {
    margin: 0 0 0 auto;
    position: relative;
}
.h_search_ttl {
    margin: 0;
    cursor: pointer;
    padding: 10px;
}
.h_search_form {
    position: absolute;
    width: 250px;
    right: 0;
    display: flex;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
}
.h_search_form.show {
	opacity: 1;
	visibility: visible;
}
.h_search_form button {
    flex-shrink: 0;
    font-size: 12px;
    background: var(--mcolor);
    color: #fff;
    border: none;
    padding: 5px 10px;
	cursor: pointer;
}
.h_search_form input {
    width: 100%;
    background: #f0f0f0;
    border: none;
    font-size: 12px;
    padding: 10px 20px;
}
.gnavi>li>a {
    color: var(--Whitecolor);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    padding: 17px 20px;
	position: relative;
	transition: all 0.3s;
}
.gnavi>li:hover>a, .gnavi>li.active>a {
	color: var(--mcolor);
}
.gnavi>li>a:after {
	content: '';
	position: absolute;
	background: url("../images/gnv_active.png") no-repeat top center/100% auto;
	width: 9px;
	height: 10px;
	bottom: -15px;
	left: calc(50% - 5px);
	opacity: 0;
	transition: all 0.3s;
}
.gnavi>li:hover>a:after, .gnavi>li.active>a:after {
	opacity: 1;
}
.main_slide img {
	width: 100%;
}
.main_slide p {
	margin: 0;
}
#main {
    background: var(--m4color);
}
.idx_h2 {
    text-align: center;
    font-size: 36px;
    color: #000;
    font-weight: bold;
    margin: 0 0 20px;
    padding-bottom: 21px;
}
.b01_slogan {
    font-family: 'UTMThuPhap';
    color: var(--m1color);
    font-size: 50px;
    text-align: center;
    padding: 45px 0;
    margin: 0;
}
.b01_slogan img {
    width: 70%;
}
.idx_line {
    text-align: center;
    margin-bottom: 60px;
}
.b01_list {
    display: flex;
    flex-wrap: wrap;
}
.b01_item {
    background: var(--Whitecolor);
    width: calc(100%/3 - 20px);
    border-radius: 15px;
    overflow: hidden;
    margin-right: 30px;
    margin-bottom: 35px;
}
    .b01_item a {
     
        text-decoration: none;
    }
    .b01_itm_img {
		position:relative;
        overflow:hidden;
        margin: 0;
    }
.b01_itm_img img{
    transition: all 0.5s;
}
.b01_itm_discount, .b01_itm_type {
    position: absolute;
    background: var(--mcolor);
    color: var(--Whitecolor);
    z-index: 1;
}
.b01_itm_discount {
    top: 5px;
    left: 5px;
    font-size: 13px;
    border-radius: 10px;
    overflow: hidden;
    padding: 2px;
    font-weight: 600;
}
.b01_itm_type {
    bottom: 5px;
    left: 5px;
    border-radius: 5px;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 20px;
}
.b01_itm_main {
    padding: 20px;
}
.b01_itm_info{display:flex;justify-content:space-between;}
.b01_itm_info li {
    font-size: 12px;
    color: var(--txt);
	padding-right: 5px;
}
.b01_itm_info li:last-child {
	padding-right: 0px;
}
.b01_itm_info li:before {
    font-family: var(--fa-style-family);
    padding-right: 3px;
}
.b01_itm_info li:nth-child(1):before {
    content: '\f043';
  
}
.b01_itm_info li:nth-child(2):before {
    content: '\f5ce';
}
.b01_itm_info li:nth-child(3):before {
    content: '\f466';
}
.b01_itm_ttl {
    color: var(--txt);
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    transition: all 0.5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
	/*
    -webkit-line-clamp: 2;
	*/
}
.b01_itm_info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}
.b01_itm_txt {
    color: var(--txt);
    font-weight: 500;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 3;
}
.b01_itm_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.b01_itm_price {
    position: relative;
    margin: 0;
    padding-left: 23px;
    font-size: 20px;
    font-weight: bold;
    color: var(--mcolor);
    line-height: 1.2;
}
.b01_itm_price:before {
font-family: var(--fa-style-family);
    content: "\f02b";
    font-weight: 400;
   
    position: absolute;
    left: 0;
    bottom: 0;
}
.b01_itm_price .old{
    text-decoration: line-through;
    font-size: 80%;
    color: #5a5a5a;
    font-weight: 400;
}
.b01_itm_buy{margin:0;}
.b01_itm_buy {
    display: inline-block;
    color: var(--Whitecolor);
    text-decoration: none;
    padding: 5px 20px;
    background: #f2994a;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.5s;
	font-size: 14px;
}
.b01_item a:hover .b01_itm_buy {
    background: var(--m1color);
}
.b01_item a:hover .b01_itm_ttl {
    color: var(--m1color);
}
.b01_item a:hover .b01_itm_img img {
    transform:scale(1.1,1.1);
}
.b01_item:nth-child(3n) {
    margin-right: 0;
}
.box02{padding:60px 0;}
.b02_item {
    display: flex;
    justify-content: space-between;
    background: var(--Whitecolor);
    border-radius: 16px;
    padding: 60px;
}
.b02_item > div{width:45%;}
.b02_itm_ttl {
    color: var(--txt);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 1.5em;
    line-height: 1.2;
   
}
.b02_itm_des p {
    font-weight: 500;
}
.b02_itm_btn {
    display: inline-block;
    background: var(--m1color);
    text-decoration: none;
    color: var(--Whitecolor);
    border-radius: 8px;
    padding: 8px 25px;
    font-weight: 600;
    margin-top: 1.5em;
    transition:all 0.5s;
}
.b02_itm_btn:hover{background:#f2994a;}
.b02_itm_img_top {
    height: 240px;
    overflow: hidden;
    margin-bottom: 10px;
}
.b02_itm_img_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b02_itm_img_thumb {
    display: flex;
    justify-content: space-between;
}
.b02_itm_img_thumb p {
    width: calc(100%/3 - 6px);
    height:140px;
    margin-bottom: 0;
}
.b02_itm_img_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b03_item {
    display: flex;
    justify-content: space-between;
}
.b03_itm_txt {
    order: 2;
    width: 45%;
}
.b03_itm_img {
    width: 50%;
}
.b03_itm_ttl {
    color: var(--txt);
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 1em;
    line-height: 1.5;
}
.b03_itm_des{font-weight:500;}
.b03_itm_des ul li {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 5px;
}
.b03_video{padding-top:30px;}
.b03_video_list {
   /* display: flex;
   flex-wrap:wrap;*/
}
.b03_video_itm {
	margin: 0 5px;
    /*width: calc(100%/4 - 10px);*/
}
.b03_video_itm a{text-decoration:none;color: #000;
    font-weight: 500;}
.b03_video_img {position:relative;display: block;margin-bottom: 10px;overflow:hidden;}

.b03_video_img:before{
	position: absolute;
    top: 0;
    left: 0;
    content: "";
    background: url(/assets/images/ico_play.png) no-repeat center center #00000030;
    background-size: 50px;
    padding: 25px 25px;
    width: 100%;
    height: 100%;
}
.b03_video_ttl{margin: 0;
    font-size: 12px;text-align: center;}
.b03_video_img img, .b03_video_ttl{transition:all 0.5s;}
/*.b03_video_itm a:hover .b03_video_img img{transform:scale(1.1,1.1);}*/
.b03_video_itm a:hover .b03_video_ttl{color:var(--m1color);}
.b03_video_list .slick-dots {
  display: flex;
  margin: 15px 0 0;
  justify-content: center;
}
.b03_video_list .slick-dots li {
  margin: 0 5px;
  line-height: 0;
}
.b03_video_list .slick-dots li button {
  width: 10px;
  height: 10px;
  text-indent: -5000000px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}
.b03_video_list .slick-dots li.slick-active button, .b03_video_list .slick-dots li:hover button {
  background: var(--m1color);
}
.box04{padding:60px 0;}
.box04 .idx_line {margin:0;}
.b04_main1{overflow-x: scroll;margin-bottom: 40px;}
.b04_list {
    margin-bottom: 30px;
}
.b04_list > *{cursor:pointer;padding: 0 5px;}
.b04_itm {padding:0 3px;border:1px solid #ccc;}
/*.b04_main1::-webkit-scrollbar {
    width: 2px;
	height:3px;
    background-color: #fff4e7;
} 
.b04_main1::-webkit-scrollbar-thumb {
    background-color: var(--m1color);;
}
.b04_main1::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 2px rgba(0,0,0,0.3);
    background-color: #fff4e7;
}*/



.loi-ngo-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #0000006b;
    justify-content: center;
    display: flex;
    align-items: center;
}
.box_loi_ngo {
    background: url(/assets/images/loi-ngo-logo.svg) no-repeat right 10% bottom 15% #fbfbfb;
    position: relative;
    width: 920px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 6px 1px #ccc;
}
.box_loi_ngo:before, .box_loi_ngo:after {
        position: absolute;
        left: 0;
        width: 100%;
        height: 25px;
        content: "";
        background: url(/assets/images/loi-ngo-line.svg);
    }
.box_loi_ngo:before{top: 0;}
.box_loi_ngo:after {bottom: 0;}
.box_loi_ngo_title {
    text-align: center;
    font-family: 'UTMThuPhap';
    color: var(--m1color);
    font-size: 35px;
    margin: 1.2em 0;
}
.box_loi_ngo_main {
    padding: 45px;
}
.box_loi_ngo_content p {
    color: var(--txt);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1em;
}
#footer {
    background: var(--m1color);
    padding: 40px 0;
    color: #fff;
}
.f_main {
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.f_mod {
	width: calc(33.33% - 20px);
}
.f_mod:nth-child(1){width:20%;padding-right: 30px;}
.f_mod:nth-child(2){width:60%;}
    .f_mod:nth-child(3) {
        border-left: 1px solid #fff;
        padding-left: 35px;
        margin-left: 35px;
    }
.f_info {
    margin: 0 0 10px;
    position: relative;
    padding-left: 30px;
}
.f_info a{text-decoration:none;color:var(--Whitecolor);}
    .f_info:before {
        font-family: var(--fa-style-family);
        position: absolute;
        width: 19px;
        height: 19px;
        left: 0;
        top: 0;
    }
.f_add:before {
    content: "\f015" ;

}
.f_tel:before {
    content: "\f095";
}
.f_email:before {
    content: "\f0e0";
}
.f_web:before {
    content: "\f0ac";
}
.f_time:before {
	background-image: url("../images/f_time.png");
}
.f_social .ttl {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--mcolor);
    margin: 0 0 7px;
}
.f_social {
    margin: 30px 0 0;
}
.f_social a {
    display: inline-flex;
    color: #fff;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 2px solid;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
}
.f_ttl {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
.f_menu {
  
}
.f_menu li {
	position: relative;
	padding-left: 28px;
    margin-bottom: 13px;
}
.f_menu li:before{ font-family: var(--fa-style-family);padding-right:5px;position: absolute;
    width: 19px;
    height: 19px;
    left: 0;
    top: 0;}
.f_menu li:nth-child(1):before {content: "\f09d"}
.f_menu li:nth-child(2):before {content: "\f0d1"}
.f_menu li:nth-child(3):before {content: "\f2f7"}
.f_menu li:nth-child(4):before {content: "\f466"}
.f_menu a {
	display: inline-block;
	text-decoration: none;
	color: #fff;
}
.f_menu a:hover {
	text-decoration: underline;
}
.f_item a {
    transition: all 0.3s;
    display: flex;
    background: var(--scolor);
    text-decoration: none;
    color: #fff;
}
.f_item a:hover {
	transform: translateY(-5px);
}
.f_itm_img {
    width: 50%;
    margin: 0;
}
.f_itm_img img {
	width: 100%;
}
.f_itm_main {
    padding: 20px;
    width: 50%;
}
.f_itm_ttl {
    margin: 0;
    font-weight: 700;
}
.f_itm_info {
    margin: 0;
    position: relative;
	padding-left: 20px;
}
.f_itm_info:before {
	content: '';
	position: absolute;
	width: 5px;
	height: 5px;
	background: #fff;
	border-radius: 50%;
	left: 0;
	top: 10px;
}
.f_item:not(:last-child) {
	margin-bottom: 10px;
}
.copyright {
    margin: 60px 0 0;
    text-align: center;
    border-top: 1px solid;
    color: #525260;
    padding: 25px 0;
}
.copyright a {
	text-decoration: none;
    color: #525260;
}
/*------------POPUP PRODUCT-------------------*/
.product_popup_hide{display:none;}
.product_popup {
    background: #00000091;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product_popup_main {
    z-index: 999999;
    width: 900px;
    background: var(--Whitecolor);
    padding: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.product_popup_layout {
    display: flex;
    justify-content: space-between;
}

.product_popup_txt, .product_popup_price {
    width: 45%;
}
.product_popup_buy {
    width: 50%;
}
.product_popup_img {
    order: 1;
    width: 50%;
}
.product_popup_bottom {
    display: flex;
    justify-content: space-between;
}
.product_popup_bottom > *{margin-bottom:0;}

.product_popup_ttl {
    color: var(--m1color);
    font-weight: bold;
    font-size: 21px;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
    transition: all 0.5s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.product_popup_info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

    .product_popup_info li {
        font-size: 14px;
        color: var(--txt);
    }

.product_popup_info li:before {
    font-family: var(--fa-style-family);
    padding-right: 5px;
}

.product_popup_info li:nth-child(1):before {
    content: '\f043';
}

.product_popup_info li:nth-child(2):before {
    content: '\f5ce';
}

.product_popup_info li:nth-child(3):before {
    content: '\f466';
}
.product_popup_des{}
.product_popup_des p{font-size:15px;}
.product_popup_des_scroll{height: 300px;padding-right: 10px;
    overflow-x: hidden;}
.product_popup_des_scroll::-webkit-scrollbar {
    width: 4px;
    background-color: #ffffff;
} 
.product_popup_des_scroll::-webkit-scrollbar-thumb {
    background-color: var(--m1color);
}
.product_popup_des_scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 7%);
    background-color: #ffffff;
}
.product_popup_img_top{margin-bottom:2px;}
.product_popup_img_thumb {
    display: flex;
}
.product_popup_img_thumb p{width: calc(100%/3 - 0px);}
.product_popup_img_thumb p:not(:last-child){border-right: 2px solid #fff;}
.product_popup_price {
    margin: 0;
    font-size: 25px;
    font-weight: bold;
    color: var(--mcolor);
}

    .product_popup_price:before {
        font-family: var(--fa-style-family);
        content: "\f02b";
        font-weight: 400;
        padding-right: 10px;
    }

.product_popup_buy a {
   transition:all 0.5s;
    display: block;
    background: var(--m1color);
    color: var(--Whitecolor);
    text-decoration: none;
    padding: 7px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.5s;
    text-align: center;
}
.product_popup_buy a:hover{background:#f2994a;}
/*.bg_over {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00000091;
    z-index: 999;
}*/
/*------------------POPUP PRODUCT---------------------------*/
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
    .box_loi_ngo_main {
        padding: 20px 30px;
    }
    .box_loi_ngo:before, .box_loi_ngo:after {
        height: 20px;
    }
    .box_loi_ngo_title {
        font-size: 30px;
        margin: 1em 0;
       
    }
    .box_loi_ngo_content p {
        font-size:13px;
    }

}
@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: 14px;
}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top:0;
  }
  #main, #footer {
    min-width: 100%;
  }
  .container {
    padding: 0 2%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: var(--mcolor);
    margin-left: 10px;
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -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: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -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: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .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;
    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: 60px;
    line-height: 0;
  }
	.h_top {
		display: none;
	}
    #gnavi {
        /*position: fixed;
        width: 100%;
        top: 84px;
        left: 0;
        height: calc(100% - 84px);
        background: var(--m1color);
        padding: 30px 0;
        overflow: auto;*/
       
    }
.logo {
	display:none;
    margin: 0;
    width: 70px;
}
#header {
    position: fixed;
    width: 100%;
	top:unset;
	bottom:0;
    left: 0;
   
    padding: 10px 0;
    z-index: 999;
}
.h_search_ttl {
    background: #b8b8c3;
    width: 50px;
    height: 43px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.gnavi.sp, .sp .gnavi{display:flex;align-items: center;}

.gnavi>li>a {
 display: block;
    padding: 0 10px;
    text-align: center;
    font-size: 11px;
   
	
}
	.gnavi>li>a:after {
		display: none;
	}
.idx_line {margin-bottom: 45px;}
    .box02 {
        padding: 5px 0;
    }
    .box_loi_ngo {
        width: 100%;
        height: 70%;
    }
    .box_loi_ngo_main {
        padding: 20px 3%;
      height: 100%;
    }
    .box_loi_ngo_content {
       overflow: scroll;
    height: 80%;
    }
    .box_loi_ngo_title {
        font-size: 18px;
    }
    .box_loi_ngo_content p {
        font-size: 14px;
    }
    .loi-ngo-popup{background: #000000a6;}
    .f_main {
        display: block;
    }
.f_mod {
    width: 100%;
}
.f_logo {
    text-align: center;
    max-width: 250px;
    margin: 0 auto 30px;
}
.f_ttl {
    font-size: 18px;
    margin-top: 40px;
}
.f_menu li {
    margin-bottom: 15px;
}
.f_menu li:before, .f_itm_info:before {
    top: 7px;
}
.f_menu {
    height: 150px;
}
.f_itm_img {
    max-width: 200px;
}
.copyright {
    padding: 15px 0;
    margin-top: 30px;
}
}
@media screen and (max-width: 480px) {
	
	
    .b01_slogan {
        padding: 30px 0;
        font-size: 135%;
    }
.b01_slogan img, .b01_item, .b02_item > div, .b03_itm_txt, .b03_itm_img {
    width: 100%;
}
 .b01_list, .b02_item, .b03_item {
     display: block;
 }
.b01_item a{display:flex;flex-wrap: wrap;}
.b01_itm_main{width: 100%;padding: 10px;}
.b01_itm_img {
   
    width: 100%;
}

.b01_itm_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.b01_itm_ttl{font-size: 18px;
    color: var(--m1color);
    font-weight: bold;}
	.b01_itm_info li {
    font-size: 11px;
}
	.b01_itm_price{font-size: 17px;}
	.b01_itm_buy{padding: 5px 15px;
    background: url(/assets/images/icon_cart.svg)no-repeat center center var(--m1color);
    text-indent: -50000px;
    border-radius: 20px;}
.b01_itm_type{font-size:16px;}
.b01_itm_txt{font-size: 13px;}	
.b02_item{padding:0;background:none;}
.b02_itm_ttl{text-align:center;color: var(--m1color);}
.b02_itm_img_thumb{flex-wrap:wrap;}
.b02_itm_img_thumb > *{width:50% !important;height: 175px !important;padding: 3px;}
.b02_itm_btn{margin-bottom:1.5em;}
.b03_itm_txt{margin-bottom:1.5em;}
.b03_video_list, .b04_list{flex-wrap:wrap;}
.b03_video_itm{width:48%;margin-bottom: 15px;}
.b04_main{}
	.b04_list{}
.b04_list > * {
    
}
.f_itm_main {
    padding: 10px 15px;
}
.f_itm_ttl {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


    .f_mod:nth-child(1), .f_mod:nth-child(2), .f_mod:nth-child(3){width:100%;padding: 0;}
    .f_mod:nth-child(3) {
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 30px;
    }
    /*-------Popup product----*/
	/*.product_popup{align-items:baseline;}*/
    .product_popup_main{width:97%;height: 550px;padding:0;position: relative;margin-top: 25px;}
    .product_popup_layout {
        display: block;
    }
    .product_popup_txt, .product_popup_img, .product_popup_img_thumb p {
        width: 100%;
    }
    .product_popup_img{display:flex;justify-content: space-between;margin-bottom: 15px;}
    .product_popup_img_top{width:66%;overflow:hidden;}
    .product_popup_img_top img{width:100%;height:100%;object-fit:cover;}
    .product_popup_img_top, .product_popup_img_thumb p {
        margin-bottom: 0;
      
    }
    .product_popup_img_thumb {
        width: 33%;
        display: block;
        padding-left:2px;
    }
    .product_popup_ttl{font-size:19px;}
    .product_popup_des p {
        font-size: 14px;
    }
    .product_popup_img_thumb p:nth-child(1) {
        margin-bottom: 2px;
    }
    .product_popup_img_thumb p, .product_popup_img_thumb p:not(:last-child) {
        border-right: none;
    }
    .product_popup_txt, .product_popup_bottom {
        padding: 0 10px;
    }
.product_popup_bottom{
	
	position: absolute;
    bottom: 3%;
    width: 100%;
    left: 0;
}
	.product_popup_price{font-size:20px;}
	.product_popup_des{}
	.product_popup_des_scroll{
		height: 200px;
   
	}
    /*-------Popup product----*/
}
@media screen and (max-width: 375px) {
.gnavi>li>a{font-size:10px;line-height: 1.5;}	
    .b01_slogan {
        padding: 20px 0;
        font-size: 115%;
    }
	.b01_itm_ttl{font-size: 15px;}
	.b01_itm_info li {
    font-size: 9px;
}
	.b03_itm_ttl{font-size: 22px;}
	.product_popup_main{height: 520px}
	.product_popup_des_scroll{
		height: 180px;
    overflow-y: scroll;
	}
	.product_popup_des p {
    font-size: 13px;
}
}