﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Nunito:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Oswald:wght@300&display=swap');
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;
}
:root{
  --primary-color: #f0282e;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: #000000;
}
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;
}

.f_logo{background:#fff; padding:10px; border-radius:5px; text-align: center;}




.uppercase{text-transform:uppercase;}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  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: #282828;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
}
.container {
  width: 100%;
  padding: 0 5%;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
  /* border-top: 5px solid #ebebeb; */
  padding: 5px 0;
  background: #fff;
}
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0;
}
.logo img{
  max-width: 250px;
}
.h_tel {
  display: flex;
  position: relative;
  z-index: 2;
  padding: 10px 0 10px 25px;
  margin-bottom: 20px;
}
.h_tel:before {
  content: '';
  position: absolute;
  background: url("/W_images/icon_tel.png") no-repeat center center/100% auto;
  width: 13px;
  height: 18px;
  left: 0;
  top: 10px;filter: brightness(11);
}
.h_tel li {
  font-size: 14px;
  border-right: 1px solid #fff;
  padding-right: 15px;
  margin-right: 15px;
  color: #fff;
}
.h_tel li span a{
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.h_tel li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.h_tel:after {
  content: '';
  position: absolute;
  width: 100vw;
  height: 100%;
  background: var(--primary-color);
  left: -30px;
  top: 0;
  z-index: -3;
  transform: skewX(40deg);
}
.h_main {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.h_lang {
  color: #000000;
  font-weight: 700;
  border: none;
  margin: 0 0 0 15px;
}
.h_lang a{text-decoration:none;}
.h_search {
  position: relative;
  border-right: 1px solid #dfdfdf;
  padding-right: 15px;
}
.h_search_form {
  position: absolute;
  right: 0;
  background: #ebebeb;
  padding: 5px;
  width: 250px;
  margin-top: 5px;
  display: none;z-index: 9999;
}
.h_search_form input {
  width: 100%;
  padding: 7px 10px;
  font-size: 12px;
  font-style: italic;
}
.h_search_form button {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 12px;
  background: #222;
  color: #fff;
  border: none;
  padding: 9px;
  cursor: pointer;
}
.h_search_ttl {
  margin: 0;
  cursor: pointer;
}

#gnavi {
  margin-right: 30px;
}
.gnavi {
  display: flex;
}
.gnavi li {
  position: relative;
}
.gnavi > li {

  margin: 0 13px;
}

.gnavi > li > a {
  display: inline-block;
  text-decoration: none;
  color: #666666;
  padding: 5px;
  position: relative;
  font-weight: 700;
  transition: all 0.3s;text-transform: uppercase;font-size: 15px;
}
.gnavi > li.active > a, .gnavi > li:hover > a {
  color: var(--primary-color);
}
.gnavi > li > a:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: #000;
  bottom: 0;
  left: calc(50% - 30px);
  transform: scale(0, 1);
  transition: all 0.3s;
}
.gnavi > li.active > a:after, .gnavi > li:hover > a:after {
  transform: scale(1, 1);
  background:var(--primary-color);
}
.submenu {
  position: absolute;
  z-index: 10;
  min-width: 220px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.submenu a {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 8px 15px;
  margin-top: 1px;
  font-size: 14px;
  /*white-space: nowrap;*/
  transition: all 0.3s;
  width: 300px;
}
.submenu a:hover {
  opacity: 0.8;
}

.sublist {
    width: 830px;
    padding: 20px;
    background: var(--primary-color);
}
.sublist > ul{display:flex;}

.sublist_title{font-weight: 600;padding: 8px 15px;text-transform:uppercase;  color: #fff;}
.sublist_itm{min-width:200px;}
.sublist_itm .subsubmenu a {
    background: none;
    color: #fff;
}
    .sublist_itm:nth-child(2) .subsubmenu {
        flex-direction: column;
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 25px;
        -moz-column-gap: 25px;
        column-gap: 25px;
    }
.subsubmenu {
    position: absolute;
    top: 0;
    left: calc(100% + 1px);
    width: 250px;
    display: none;
    background: var(--primary-color);
  
}	
.gnavi > li.san-pham .submenu{min-width: 380px;}
#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: #fff;
  -webkit-animation: header-fixed 0.6s;
  -moz-animation: header-fixed 0.6s;
  -ms-animation: header-fixed 0.6s;
  animation: header-fixed 0.6s;
  /* box shadow bottom */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#header.fixed .h_tel {
  display:none;
}
#header.fixed .logo {
width:110px;
}
@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);
  }
}
.main_slide p {
  margin: 0;
}
.main_slide p img, .main_slide img, .main-slide p img, .main-slide img {
  width: 100%;
}
.main-slide .slick-arrow {
    position: absolute;
    z-index: 10;
    width: 25px;
    height: 50px;
    border: none;
    text-indent: -5000000px;
    transition: all 0.5s ease;
    outline: none;
    cursor: pointer;top: calc(50% - 25px);
  opacity:.6;
}
.main-slide .slick-prev {
    background: url(/W_images/arr_prev.png) no-repeat 6px center #000000a6;
    background-size: 50% auto;
    left: 25px;
}
.main-slide .slick-next {
    background: url(/W_images/arr_next.png) no-repeat 6px center #000000a6;
    background-size: 50% auto;
    right: 25px;
}
.main-slide .slick-prev:hover,.main-slide .slick-next:hover{opacity:1;}
.box01 {
  background: #eeeef0;
  padding: 80px 0;
}
/**/.box01 .container {
  display: flex;
  justify-content: center;
}
.b01_main {
    max-width: 1000px;
  position: relative;
}
.idx_h2 {
  text-align: left;
  border-bottom: 1px solid var(--primary-color);
  font-size: 36px;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.box01 .idx_h2 {
  text-align: left;   color: var(--primary-color);
}
.b01_img {
  width: calc(45% - 60px);
  margin: 0;
}
.b01_img iframe{
  width: 100%;
    height: 100%;
}
.b01_img img {
  width: 100%;
}
.b01_txt p:first-child {

  color: #000;
}

.b01_list{display: flex; flex-wrap: wrap; justify-content: space-between;}
.b01_item {
  position: relative;
  margin-bottom: 60px;
  padding-left: 90px;
  width:46%;
}

  .b01_item:before {
    content: '';
    position: absolute;
    background:var(--primary-color) url("/W_images/icon/icon_01.png") no-repeat center center/80% 80%;
    width: 70px;
    height: 70px;
    left: 0;
    top: 7px;
    border-radius: 5px;
  }

  .b01_item:nth-child(2):before {
    background:var(--primary-color) url("/W_images/icon/icon_02.png") no-repeat center center/80% 80%;
  }

  .b01_item:nth-child(3):before {
    background:var(--primary-color) url("/W_images/icon/icon_03.png") no-repeat center center/80% 80%;
  }
  .b01_item:nth-child(4):before {
    background:var(--primary-color) url("/W_images/icon/icon_04.png") no-repeat center center/80% 80%;
  }

.b01_itm_ttl {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  line-height: 1.3em;
  margin-bottom: 10px;
}

.b01_itm_txt {
  margin: 0;
}

.b01_item:last-child {
  margin-bottom: 0;
}

            
.idx_btn {
  margin: 0;
}
.idx_btn a, .idx_btn button {
  display: inline-block;
  background: url("/W_images/idx_btn.png") no-repeat center center/100% auto;
  text-align: center;
  color: #fff;
  text-decoration: none;
width: 120px;
    padding: 5px;
    transition: all 0.3s;
    font-size: 14px;
}
}
.idx_btn a:hover {
  opacity: 0.7;
}
.box02 {
  padding: 65px 0;
  background: #f6f6f6;
}
.b02_list.slick-initialized .slick-slide {
  margin: 0 15px;
  border: 1px solid #dbdbdb;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}
.b02_list.slick-initialized .slick-slide img {
  max-height: 100%;
}
.b02_list .slick-arrow {
  position: absolute;
  background: url("/W_images/b02_next.png") no-repeat center center;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  z-index: 5;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-indent: -50000px;
  right: 15px;
}
.b02_list .slick-prev {
  background-image: url("/W_images/b02_prev.png");
  left: 15px;
  right: auto;
}
.b02_list .slick-arrow:hover {
  background-color: #fff;
}
.box03 {
  padding: 65px 0;
}
.b03_main_ttl {
  font-size: 18px;
  color: #000;
  line-height: 1.5em;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}
.b03_main_ttl:after {
  content: '';
  position: absolute;
  width: calc(100% - 30px);
  bottom: 0;
  left: 30px;
  height: 1px;
  background: var(--primary-color);
}
.b03_main_ttl span {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
  background: var(--primary-color);
    color: #fff;
}
.b03_main {
  position: relative;
}
.b03_main_more {
  margin: 0;
  position: absolute;
  right: 0;
  top: 15px;
}
.b03_main_more a {
  display: inline-block;
/*color: #3f87c1;*/
    font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.b03_main_more a:hoverc {
  color: #000;
}
.b03_list {
  display: flex;
  flex-wrap: wrap;
}
.b03_item {

flex-shrink: 0;
    width: calc(100%/5 - 20px);
    margin-right: 20px;
margin-bottom: 30px;
}

.b03_item:last-child {

    margin-right: 0px;
}


.b03_item a {
  text-decoration: none;
  display: block;
  color: #353535;
  text-align: center;
  transition: all 0.3s;
}
.b03_item a:hover {
  opacity: 0.7;
}
.b03_itm_img {

  /*border: 1px solid #ebebeb;*/
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;

}
.b03_itm_img img {
  flex-shrink: 0;
  max-height: 100%;
}
.b03_itm_ttl {
  font-weight: 700;
  line-height: 1.3em;
}
.b03_main:not(:last-child) {
  margin-bottom: 40px;
}
.box04 {
  background: #fff;
  padding: 60px 0;
}
.b04_list {
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.b04_item {
  text-decoration:none;
  width: calc(100%/3 - 0px);
  padding-left: 30px;text-align: center;margin-bottom: 40px;
  /*display: flex;
  align-items: center;*/
}
.b04_item:not(:last-child) {

  padding: 0 30px;
}
.b04_itm_img {
  flex-shrink: 0;
  height: 230px;
}

.b04_itm_img img{
  height: 100%;
  /* không bị giãn ảnh */
  object-fit: cover;
}
.b04_itm_ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 15px;
}
.b04_item button{border:none;cursor:pointer;}
.box05 {
  padding: 65px 0;
  background: #ebebeb;
}
.b05_list {
  display: flex;
}
.b05_item {
  width: calc(33.33% - 48px);
  margin: 0 72px 0 0;
}
.b05_item:last-child {
  margin-right: 0;
}
.b05_item a {
  display: block;
  text-decoration: none;
  color: #353535;
  transition: all 0.3s;
}
.b05_itm_img img {
  width: 100%;
  transition: all 0.7s;
}
.b05_item a:hover .b05_itm_img img {
  transform: scale(1.1, 1.1);
}
.b05_itm_ttl {
  color: var(--primary-color);
  text-transform: uppercase;
  line-height: 1.5em;
  font-weight: 700;
  margin: 0 0 10px;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.b05_itm_img {
  margin-bottom: 15px;
  overflow: hidden;
}
.b05_itm_date {
  font-size: 13px;
  position: relative;
  margin-bottom: 10px;
  padding-left: 30px;
}
.b05_itm_date:before {
  content: '';
  position: absolute;
  background: url("/W_images/b05_icon02.png") no-repeat center center/100% auto;
  width: 20px;
  height: 21px;
  left: 0;
  top: -2px;opacity: 0.5;
}
.b05_itm_txt{
  display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  color: #000;
}
.b05_item a:hover {
  opacity: 0.7;
}
.box06 {
  display: flex;
  flex-direction: column;
  gap: 65px;
  background: #ebebeb;
  padding: 65px 0;
}
.box06 .idx_h2 {
  color: var(--primary-color);
}
#footer {
  background: var(--primary-color);
  padding: 50px 0 0;
  color: #fff;
  font-family: 'Nunito', sans-serif;
}
.f_main {
  display: flex;
  justify-content: space-between;margin-bottom: 30px;
}
.f_mod {
  width: calc(25% - 22.5px);
}
.f_mod.contact{
  
  width: calc(33% - 22.5px);
  
}
.f_social a {
  display: flex;
  width: 35px;
  height: 35px;
  border: 2px solid;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s;color: #fff;
}
.f_social a:hover {
  opacity: 0.7;
}
.f_social {
  display: flex;
margin: 19px 0 0;
}
.f_ttl {
  font-size: 30px;
  margin: 0 0 15px;
  font-weight: 300;
}
.f_note {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 5px;
}
.f_info {
  position: relative;
  margin-bottom: 7px;
  padding-left: 25px;font-size: 17px;
}
.f_info:before {
  content: '';
  position: absolute;
  background: url("/W_images/f_add.png") no-repeat center center/100% auto;
  width: 15px;
  height: 15px;
  left: 0;
  top: 5px;filter: invert(1);
}
.f_tel:before {
  background-image: url("/W_images/f_tel.png");
}
.f_mail:before {
  background-image: url("/W_images/f_mail.png");
}
.f_info a {
  text-decoration: none;color: #fff;
}
.f_tel span {
  text-decoration: underline;
}
.f_form_txt {
  font-style: italic;
  margin-bottom: 10px;
}
.f_form input {
  width: 100%;
  background: #fff;
  border: none;
  color: #000;
  padding: 7px 15px;
  margin-bottom: 10px;
}
.f_form input::-webkit-input-placeholder {
  color: #000;
}
.f_form input::-moz-placeholder {
  color: #000;
}
.f_form input:-ms-input-placeholder {
  color: #000;
}
.f_form input:-moz-placeholder {
  color: #000;
}
.f_form button {
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
}
.f_form button img{filter: brightness(0);}
.f_slogan {
  font-family: 'iCielRukola';
  text-align: center;
  font-size: 30px;
  margin: 20px 0;
}
.f_name{font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;}
.copyright {
  font-size: 15px;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid #fff;
}
.copyright a {
  text-decoration: none;color: #fff;
}
/*
  font-family: 'Montserrat', sans-serif;
  font-family: 'Nunito', sans-serif;
  font-family: 'Oswald', sans-serif;
*/
@media screen and (min-width: 1600px) {
  h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 20px;
  }
  .h_tel li {
    font-size: 18px;
  }
  .idx_h2 {
    font-size: 40px;
  }
  .idx_btn a {
    width: 160px;
  }
  .b03_main_ttl {
    font-size: 22px;
  }
  .b04_itm_ttl {
    font-size: 35px;
  }
  .b05_itm_date {
    font-size: 17px;
  }
  .b05_itm_date:before {
    top: 0;
  }
  .f_note {
    font-size: 18px;
  }
  .f_ttl, .f_slogan {
    font-size: 34px;
  }
  

}
@media screen and (max-width: 1400px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .box01 img{height:auto;}
  .b04_item{display:block;}
  
  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 {
    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(--primary-color);
    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, .gnvsub-ico {
    width: 50px;
    height: 51px;
    position: absolute;
    background: #e1373d;
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before, .gnvsub-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,
  .sublist_itm.active > .gnvsub-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  
  #totop {
    width: 40px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    border: none;
    padding: 5px 0;
  }
  .h_tel {
    display: none;
  }
  .logo img {
    max-width: 190px;
  }
  #gnavi {
    position: fixed;
    margin: 0;
    top: 90px;
    left: 0;
    background: var(--primary-color);
    height: calc(100% - 90px);
    width: 100%;
    padding: 30px 4%;
    overflow: auto;
    display: none;
  }
  .submenu a{background: #e44e53;}
  .gnavi {
    display: block;
  }
  .gnavi > li {
    margin: 0;
  }
  .gnavi > li > a {
    display: block;
    padding: 15px 20px;
    border-bottom: 1px solid #fff;
    text-align: center;
  color:#fff;
  }
  .gnavi > li > a:after {
    display: none;
  }
  .submenu {
    position: relative;
  }
  .submenu a {
    text-align: center;
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #fff;
  }
  .sublist{ width: 100%;padding: 0;}
  .sublist > ul{display:block;}
  .sublist_title{display: block;text-align: center;padding:15px;}
  .sublist_itm {position: relative;}
  .sublist_itm:nth-child(2) .subsubmenu {
    flex-direction: unset;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
}
.subsubmenu a{background: #f3994c;}
.subsubmenu{display:none;position:relative;top: 0;
    left: 0;
    width: 100%;}
.gnavi > li.active > a, .gnavi > li:hover > a{color: #fff;}
  .box01 {
    padding: 40px 0;
  }
  .b01_main {
    width: 100%;
  }
  .b01_list{display:block; margin-bottom: 30px;}
  .b01_item{width:100%; margin-bottom: 30px;}
  
  .box01 .idx_h2 {
    text-align: center;
  }
  .idx_h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }

  /* slide */
  .slide3d{
    
  }

  .content_Left, .content_Right{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin: 0 10px;
  }

  .sl_ttl{
    left: 0 !important;
    right: 0 !important;
  }

  .content_Left .sl_ttl{
    top: -440px !important;
  }

  .content_Left button{
    top: -270px !important;
    left: 0 !important;
    transform: unset !important;
  }

  .content_Left .sl_ttl h2{
    font-size: 36px !important;
  }

  .content_Left .sl_ttl p, .content_Right .sl_ttl p {
    font-size: 24px !important;
  }

  .content_Right .sl_ttl{
    top: -250px !important;
    margin-right: 0 !important;
    width: 80%;
  }

  .content_Right button {
    top: -130px !important;
    left: 0 !important;
    transform: unset !important;
    margin-right: 0 !important;
  }

  #button-contact-vr{
      right: 0 !important;
  }


  .b01_img {
    width: 80%;
    max-width: 400px;
    margin: 0 auto 20px;
  }
  .idx_btn {
    text-align: center;
  }
  .box02 {
    padding: 40px 0;
  }
  .b02_list.slick-initialized .slick-slide {
    margin: 0 5px;
    height: 130px;
    padding: 15px;
  }
  .b02_list .slick-arrow {
    width: 40px;
    height: 40px;
    background-size: 8px auto;
    top: calc(50% - 20px);
  }
  .box03 {
    padding: 40px 0 20px;
  }
  .b03_main_ttl {
    font-size: 15px;
  }
  .b03_list {
    flex-wrap: wrap;
  }
  .b03_item {
    width: calc(33.33% - 10px);
    margin-bottom: 20px;
    min-width: auto;
    margin-right: 15px;
  }
  .b03_item:nth-child(2n) {
    margin-right: 0;
  }
  
  .b03_item:last-child {}

  
  .b03_itm_img {
    height: 200px;
    margin-bottom: 10px;
  }
  .box04 {
    padding: 40px 0;
  }
  .b04_list {
    display: block;
  }
  .b04_item {
    width: 100%;
    padding: 0;
  }
  .b04_item:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid #ccc;
    padding: 0 0 20px;
    margin-bottom: 20px;
  }
  .b04_itm_ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .box04 .idx_btn {
    
  }
  .b04_itm_txt {
    margin-bottom: 10px;
  }
  .box05 {
    padding: 40px 0 10px;
  }
  .b05_list {
    display: block;
  }
  .b05_item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }
  .b05_item:last-child {
    margin-right: auto;
  }
  .box06 {
    padding: 40px 0;
  }
  #footer {
    padding: 30px 0 0;
  }
  .f_main {
    flex-wrap: wrap;margin-bottom:0;
  }
  .f_mod,.f_mod.contact {
    width: 100%;
    margin: 0 0 20px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 20px;
  }
  .f_mod:last-child{border:none;}
  .f_logo {text-align:center;
    width: 50%;
    margin: 0 auto 15px;
  }
  .f_slogan {
    margin: 0 0 10px;
    font-size: 22px;
  }
  .copyright {
    font-size: 12px;
  }
  .f_ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .b03_list{justify-content:space-between;}
  .b03_item{width: 48%;margin-right: 0;}
  
  
}
@media screen and (max-width: 425px) {
.b01_img{width:100%;}	
.b01_img iframe{width:100%;height:300px;}	
  .b03_item {
    width: 49%;
    margin: 0 2% 20px 0;
  }
  .b03_item:nth-child(3n) {
    margin-right: 2%;
  }
  .b03_item:nth-child(2n) {
    margin-right: 0;
  }
  .b04_itm_img {
  
    margin-right: 0;
  }
  .idx_btn a {
    font-size: 12px;
    padding: 5px;
    width: 120px;
  }
  .b03_main_ttl {
    font-size: 13px;
  }
  .b03_main_ttl span {
    padding: 10px;border-radius: 5px;    width: 250px;line-height: 1.6;
  }
  .b03_main_more {
    font-size: 12px;
    top: 10px;
  }
  .b03_itm_img {
    height: 160px;
  }
}
@media screen and (max-width: 360px) {
  .b03_main_ttl span {width: 230px;}
  
}