@charset "utf-8";

body{
  background: url(../img/bg.png) no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.container-mk{
  width: 100%;
  padding: 0;
}
ul{
  list-style: none;
  margin:0;
  padding: 0;
}
section{
  margin:0;
  border-radius: 10px;
}
@media(max-width:767px) {
.container-mk{
  padding: 0 20px;
}
body{
  background: url(../img/bg-sp.jpg) no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
}


.header{
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  z-index: 4;
}
.row-header{
  display: flex;
  text-align: right;
  justify-content: space-between;
  align-items: center;
}
.wrap-humburger{
  position: relative;
}
/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  outline: none;
  z-index: 1000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #debb7d;
  transition: all .6s;
}
.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
}
.nav-overlay__item a{
  text-decoration: none;
}
.nav-overlay__item a:hover{
  text-decoration: none;
  color: #fff;
  opacity: 0.5;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: color .3s;
}
.nav-overlay__link:hover {
  color: #4a90e2;
}
@media(max-width:767px) {
.wrap-logo img{
  zoom: 0.5;
}
.header{
  top: 10px;
  border-radius: 10px;
  padding: 0;
}
#cotactpage .header{
  padding: 10px;
}
.hamburger-overlay{
  top: 3px;
}
}




#hero{
  height: calc(100vh - 71px);
  display: flex;
  background: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: url(../img/bg-overlay.png) rgba(0, 0, 0, 0.6) repeat;
}
.h1-pagetitle{
  text-align: center;
  display: block;
  font-size: 60px;
  font-weight: block;
  width: 100%;
  color: #fff;
  margin-bottom: 20px;
}
#hero p{
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 18px;
}
#hero p b{
  font-size: 140%;
  display: block;
  width: 100%;
}
@media(max-width:767px) {
#hero{
  height: calc(100vh - 46.75px);
  background: none;
}
.h1-pagetitle{
  font-size: 20px;
}
.h1-pagetitle img{
  zoom: 0.6;
}
#hero p{
  font-size: 14px;
}
}



h2{
  text-align: center;
  font-size: 80px;
  margin-bottom: 80px;
  font-weight: bold;
  line-height: 1.4;
  color: #debb7d;
}
h3{
  text-align: center;
  font-size: 30px;
  margin-bottom: 90px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
h3 span:before{
  position: absolute;
  width: 80px;
  content: "";
  height: 5px;
  background: #333;
  bottom:-20px;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 100px;
}
.wrap-inner + .wrap-inner{
  margin-top: 210px;
}
.container + .wrap-inner{
  margin-top: 210px;
}
.wrap-inner p{
  font-size: 18px;
}
@media(max-width:767px) {
h2{
  font-size: 30px;
  margin-bottom: 30px;
}
h3{
  font-size: 18px;
  margin-bottom: 50px;
}
h3 span:before{
  height: 3px;
  bottom:-15px;
}
.wrap-inner + .wrap-inner{
  margin-top: 40px;
}
.container + .wrap-inner{
  margin-top: 40px;
}
.wrap-inner p{
  font-size: 14px;
}
}



#service{
  background: #fff;
  padding:240px 40px 0 40px;
}
.slide-cpn li{
  padding: 0 10px;
}
.row-media{
  width: 100%;
  display: flex;
  box-shadow: 0px 0px 6px #e7e7e7;
  padding: 20px;
  border-radius: 4px;
  background: #fafafa;
  border-radius: 10px;
}
.col-media-img{
  width: 30%;
}
.col-media-info{
  width: 70%;
  padding: 0 0 0 20px;
}
.col-media-info table{
  width: 100%;
  background: #fff;
  margin-bottom: 20px;
}
.col-media-info table th{
  width: 40%;
  padding: 10px;
  font-size: 14px;
}
.col-media-info table td{
  width: 60%;
  padding: 10px;
  font-size: 14px;
}
.text-result{
  text-align: center;
  display: block;
  background: #ffeaf2;
  padding: 10px 5px;
  font-size: 14px !important;
  font-weight: bold;
  color: #EC7190;
  border-radius: 10px;
}
.list-strong{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-strong > li{
  width: 49.5%;
  font-size: 16px;
  background: #fafafa;
  padding: 15px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin:5px 0;
}
.list-strong li i{
  margin-right: 5px;
  color: #EC7190;
}
.slick-dots li button::before {
  background: #fff;
  font-size: 20px;
  border-radius: 100px;
  content: "" !important;
}
.bg-black{
  background: url(../img/bg-2.jpg) center center no-repeat;
  background-size: cover;
  margin: 0 -40px;
  padding: 120px 0 240px;
}
.bg-black h3{
  color: #fff;
}
.bg-black h3 span:before{
  background: #fff;
}
@media(max-width:767px) {
#service{
  padding:40px 10px 20px 10px;
  overflow: hidden;
}
.row-media{
  width: 100%;
  display: block;
  border:solid 1px #eee;
  padding: 20px;
  border-radius: 4px;
}
.col-media-img{
  width: 100%;
  margin-bottom: 20px;
}
.col-media-info{
  width: 100%;
  padding: 0;
}
.col-media-info table{
  width: 100%;
  margin-bottom: 20px;
}
.col-media-info table th{
  padding: 5px;
  font-size: 13px;
}
.col-media-info table td{
  padding: 5px;
  font-size: 13px;
}
.text-result{
  font-size: 13px !important;
}
.list-strong{
  display: block;
}
.list-strong > li{
  font-size: 13px;
  width: 100%;
}
.bg-black{
  background: url(../img/bg-2.jpg) center center no-repeat;
  background-size: cover;
  margin: 0 -10px;
  padding: 60px 0 80px;
}
}


#about{
  padding:240px 40px;
}
#about h2{
  color: #fff;
}
.table-about{
  width: 100%;
  max-width: 800px;
  margin:0 auto;
  border-top:1px dotted #fff;
}
.table-about th,
.table-about td{
  padding: 15px;
  border-bottom:1px dotted #fff;
  color: #fff;
}
@media(max-width:767px) {
#about{
  padding:40px 10px;
}
.table-about{
  width: 100%;
  max-width: 800px;
  margin:0 auto;
  border-top:1px dotted #fff;
}
.table-about th,
.table-about td{
  padding: 10px;
  font-size: 13px;
}
}




#contact{
  background: #fff;
  padding:240px 40px;
}
.list-contact{
  margin-top: 40px;
}
.list-contact > li{
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border:solid 3px #111;
  display: flex;
  width: 100%;
  max-width: 600px;
  margin:0 auto;
  padding: 20px 5px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.list-contact > li i{
  margin-right: 10px;
  position: relative;
  font-size: 40px;
  color: #ccc;
}
.list-contact > li + li{
  margin-top: 20px;
}
.list-contact > li a{
  color: #111;
}
@media(max-width:767px) {
#contact{
  padding:40px 10px;
}
.list-contact > li{
  font-size:18px;
}
.list-contact > li i{
  font-size: 20px;
}
.list-contact > li + li{
  margin-top: 10px;
}
}



.wrap-footer{
  text-align: center;
  background: #333;
  color: #fff;
  padding: 10px;
}
@media(max-width:767px) {
.wrap-footer{
  margin-top: 40px;
}
}



#product{
  background: #fff;
  padding:240px 40px 0 40px;
}
#product h3{
  font-size: 22px;
}
.pack-detail{
  display: block;
  background: #fff;
  padding: 15px 15px;
  margin:15px 0 0 0;
}
.list-pack{
  padding: 0;
}
.list-pack > li{
  position: relative;
  padding-left: 15px;
}
.list-pack > li:before{
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 80%;
}
.list-pack > li + li{
  margin-top: 10px;
}
.text-price-pack{
  border:solid 2px #EC7190;
  color: #EC7190;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 120%;
  border-radius: 4px;
  margin: 0 auto 20px auto;
}
.text-sotugyo{
  text-align: center;
  font-size: 140% !important;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 0;
  color: #EC7190;
}
.contact-product{
  text-align: center;
  margin-top: 40px;
}
.btn-contact{
  display: inline-block;
  padding: 15px 25px;
  background: #80d52f;
  color: #fff;
  border-radius: 4px;
  width: 100%;
  max-width: 400px;
  font-weight: bold;
}
.btn-contact:hover{
  color: #fff;
  opacity: 0.5;
  text-decoration: none;
}
@media(max-width:767px) {
#product{
  padding:40px 10px 0 10px;
  overflow: hidden;
  margin-top: 40px;
}
#product h3{
  font-size: 18px;
}
.text-price-pack{
  text-align: center;
}
.text-sotugyo{
  font-size: 16px !important;
}
}

#mail{
  margin-top: 40px;
}
#mail .container{
  background: #fff;
  border-radius: 10px;
  padding-top: 40px;
}
.title-contact{
  background: #fafafa;
  color: #debb7d;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  padding: 20px;
  margin-bottom: 10px;
}
.title-contact-sub{
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 40px;
}
@media(max-width:767px) {
.title-contact{
  font-size: 18px;
}
.title-contact-sub{
  font-size: 16px;
}
}