﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";

@font-face {
  font-family: 'BloomingElegant';
  src: url('/W_css/font/fonts/BloomingElegant1.woff2') format('woff2'),
       url('/W_css/font/BloomingElegant1.woff') format('woff'),
       url('/W_css/font/BloomingElegant1.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BloomingElegant1';
  src: url('/W_css/font/fonts/BloomingElegantSans1.woff2') format('woff2'),
       url('/W_css/font/BloomingElegantSans1.woff') format('woff'),
       url('/W_css/font/BloomingElegantSans1.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'BloomingElegant2';
  src: url('/W_css/font/fonts/BloomingElegantHand1.woff2') format('woff2'),
       url('/W_css/font/BloomingElegantHand1.woff') format('woff'),
       url('/W_css/font/BloomingElegantHand1.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Natalie';
  src: url('/W_css/font/Natalie.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root{
	--mcolor:#add172;
	--scolor:#ee765b;
	--color1:#c89e96;
	--color2:#4e4e4b;
}

h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: var(--scolor);
}
a:hover, a:active {
  color: var(--scolor) ;
  text-decoration: none;
}
a:visited {
}
a img:hover {
  opacity: 0.8;
   transition: all 0.5s ease;
}
a img.no-hover:hover {
  opacity: 1;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.8em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 99;
  margin-bottom: 0;
  width: 60px;
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  /*transition: all 0.5s ease;*/
}
body {
  color: #666666;
  font-family: 'UTMAvo', sans-serif;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
#wrapper {
  min-width: 1170px;
  overflow: hidden;
  position: relative;
}
.container {
  width: 1170px;
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
#header {
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  position: fixed;
  padding: 10px 0;
    transition: all 0.5s ease;
	background: rgb(255 255 255 / 60%);
	backdrop-filter: blur(10px);
}
#header.fixed {
  background: rgba(255,255,255,0.9);
  padding: 10px 0;
}
#header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  margin: 0 40px 0 0;
}
.logo img {
	width:220px;
}
.gnavi {
  display: flex;
}
.gnavi > li {
  position:relative;
  margin: 0 15px;
}
.gnavi > li > a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: var(--mcolor);
  font-family: 'VNI-BriquetNormal';
  padding: 15px 5px;
  position: relative;
  transition: font-size 0.3s ease;
  font-family: 'BloomingElegant1';
  font-weight: bold;
  font-size: 26px;
  color: var(--color1);
}
.gnavi > li > a:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--scolor);
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
 transition: all 0.5s ease;
}
.gnavi > li.active > a:before, .gnavi > li:hover > a:before {
  transform: scale(1, 1);
}
.gnavi > li:hover > a, .gnavi > li.active > a {
  color: var(--scolor);
  color: var(--color2);
}
.submenu {
  position: absolute;
  z-index: 99;
  min-width: 200px;
  display: none;
}
.submenu a {
  display: block;
  background: #9dc261;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  transition: all 0.5s ease;
  font-family: 'VNI-BriquetNormal';
  font-size:20px;
  text-align:center;
  font-family: 'BloomingElegant1';
  font-weight: bold;
  background: var(--color1);
  color: var(--color2);
}
.submenu a:hover {
  background: var(--scolor);
  background: #eec9be;
}
.gnv-ico {
  position: absolute;
  border: solid #ffb400;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 10px;
  top: calc(50% - 3px);
  transition: all 0.5s ease;
}
.gnavi li:hover .gnv-ico {
  border: solid #ff9000;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: calc(50% - 1px);
}
.main-slide p {
  margin: 0;
  outline: none;
}
.main-slide .slick-slide img {
  max-width: none;
  width: 100%;
}
.main-slide .slick-dots {
  position: absolute;
  bottom: 40px;
  left: calc(50% + 564px);
  z-index: 10;
}
.main-slide .slick-dots button {
  text-indent: -50000px;
  width: 20px;
  height: 20px;
  border: 1px solid #636363;
  border-radius: 50%;
  background: transparent;
  outline: none;
  cursor: pointer;
}
.main-slide .slick-dots .slick-active button, .main-slide .slick-dots li:hover button {
  border-color: var(--color2);
  background: var(--color2);
}
.main-slide .slick-dots li {
  line-height: 0;
  margin-top: 10px;
}
/**/
.box01 {
  padding: 70px 0;
}
.box01 .container {
  display: flex;
  justify-content: space-between;
}
.b01-img {
  margin: 0;
  width: 510px;
  position: relative;
  z-index: 0;
  order: -1;
}
.b01-img img {
  padding: 14px;
  background: #fff;
  border: 1px solid #d4d4d4;
  -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.05);
}
.b01-img:after {
  content: '';
  position: absolute;
  background: url("../W_images/b01_afimg_new.png") no-repeat;
  background-size: 100% auto;
  width: 463px;
  height: 585px;
    left: 169px;
    top: 28px;
  z-index: -1;
}
.b01-main {
  width: 540px;
  position: relative;
  z-index: 5;
}
.idx-ttl {
  font-size: 60px;
  color: var(--color1);
  margin: 0 0 20px;
  font-family: 'VNI-BriquetNormal';
  line-height: 1em;
}
.idx-ttl-ser{
    font-size: 60px;
    color: var(--color1);
    margin: 0 0 20px;
    font-family: 'VNI-BriquetNormal';
    line-height: 1em;
}
.b01-note {
  font-size: 30px;
  color: var(--color2);
  font-family: 'VNI-BriquetNormal';
  line-height: normal;
  margin: 0 0 20px;
}
.b01-txt {
  font-size: 18px;
}
.b01-time dt {
  font-size: 18px;
  color: var(--color2);
  font-weight: bold;
  text-transform: uppercase;
  background: url("../W_images/b01_ico01_new.png") no-repeat left center;
  padding: 5px 0 5px 50px;
  margin: 0 0 5px;
}
.b01-time dd {
  font-size: 16px;
  color: #666666;
  font-family: 'UTMImpact';
}
.b01-add dt {
  font-size: 18px;
  color: var(--color2);
  font-weight: bold;
  text-transform: uppercase;
  background: url("../W_images/b01_ico02_new.png") no-repeat left center;
  padding: 10px 0 10px 50px;
  margin: 0 0 5px; 
}
.b01-add dd span {
  color: var(--scolor);
  font-size: 18px;
  font-family: 'UTMImpact';
}
.b01-add dd {
  border: 1px dashed #000;
  padding: 15px;
}
.b01-add {
  margin: 0 0 30px;
}
.idx-more {
  margin: 0;
}
.idx-more a {
  display: inline-block;
  background: var(--color2);
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
  text-transform: uppercase;
  transition: all 0.5s ease;
}
.idx-more a:after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  margin-left: 10px;
}
.idx-more a:hover {
  background: var(--color1);
}
.box02 {
  background: url("../W_images/b02_bg_new2.png") no-repeat center;
  padding: 80px 0 120px;
  background-size: cover;
  position: relative;
}
/*.box02::before {
	content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: hsl(0deg 0% 100% / 20%);
}*/
.b02-list {
  width: 100%;
  max-width: 735px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.b02-item {
  width: calc(50% - 15px);
  margin-bottom: 30px;
}
.b02-item a {
  display: flex;
  flex: 1;
  height: 100%;
  border: 2px dashed #4e4e4b;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 30px;
  position: relative;
  z-index: 0;
   transition: all 0.5s ease;
}
.b02-item a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  transform: scale(0.5, 0.5);
  opacity: 0;
  z-index: -1;
   transition: all 0.5s ease;
}
.b02-item a:hover:after {
  transform: scale(1, 1);
  opacity: 1;
}
.b02-info {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
}
.b02-img {
  margin: 0 20px 0 0;
}
.b02-ttl {
  margin: 0;
  font-size: 30px;
  color: #000;
  font-family: 'VNI-BriquetNormal';
  text-align: left;
  line-height: 1em;
}
.b02-more {
  display: block;
  color: var(--scolor);
  font-size: 14px;
  font-family: 'UTMAvo';
  padding-left:10px;
}
.b02-more:after {
  content: '';
  position: relative;
  border: solid var(--scolor);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  top: -2px;
  margin-left: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
   transition: all 0.5s ease;
}
.b02-txt {
  font-size: 18px;
  color: #666;
  margin: 0;
  line-height: normal;
}
.box03 {
  padding: 60px 0;
  text-align: center;
}
.b03-txt {
  font-size: 18px;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 800px;
}
.b03-list {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
}
.b03-item {
  width: 25%;
  margin: 0;
  position: relative;
   transition: all 0.5s ease;
}
.b03-item a {
  display: block;
  position: relative;
   transition: all 0.5s ease;
}
.b03-item:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  left: 0;
  top: 0;
  transform: scale(0.5, 0.5);
  opacity: 0;
   transition: all 0.5s ease;
}
.b03-item:hover:after {

  transform: scale(1, 1);
  opacity: 1;
}
.b03-item a:before {
  content: '';
  position: absolute;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  top: 25px;
  left: 25px;
  border: 1px solid rgba(255,255,255,0.3);
  opacity: 0;
  z-index: 3;
   transition: all 0.5s ease;
}
.b03-item:hover a:before, .b03-item:hover a:after {

  opacity: 1;
}
.b03-item a:after {
  content: '+';
  position: absolute;
  font-size: 72px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: #fff;
  z-index: 4;
  line-height: 0;
   transition: all 0.5s ease;
}
.box04 {
  background: url("../W_images/b04_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 60px 0;
  text-align: center;
}
.b04-list {
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
}
.b04-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}
.b04-item {
  outline: none;
}
.b04-txt {
  font-size: 18px;
  line-height: normal;
  margin: 0 0 20px;
}
.b04-name {
  margin: 0;
  font-weight: bold;
  color: var(--scolor);
  font-size: 18px;
  line-height: 1.3em;
}
.b04-name span {
  display: block;
  font-size: 14px;
  color: var(--color2);
  font-style: italic;
}
.b04-list .slick-arrow {
  position: absolute;
  z-index: 10;
  text-indent: -50000px;
  border: none;
  width: 18px;
  height: 35px;
  top: 60px;
  outline: none;
  cursor: pointer;
}
.b04-list .slick-prev {
  background: url("../W_images/b04_prev.png") no-repeat;
  background-size: 100% auto;
  /*right: calc(50% + 105px);*/
  left:-40px;
   transition: all 0.5s ease;
}
.b04-list .slick-next {
  background: url("../W_images/b04_next.png") no-repeat;
  background-size: 100% auto;
  /*left: calc(50% + 105px);*/
      right: -40px;
   transition: all 0.5s ease;
}
.b04-list .slick-prev:hover {
  background: url("../W_images/b04_prev_hv.png") no-repeat;
  background-size: 100% auto;
}
.b04-list .slick-next:hover {
  background: url("../W_images/b04_next_hv.png") no-repeat;
  background-size: 100% auto;
}
.box05 {
  padding: 60px 0;
}
.box05 .idx-ttl {
  text-align: center;
}
.b05-list {
  display: flex;
}
.b05-item {
  width: calc(33.33% - 20px);
  margin: 0 30px 0 0;
}
.b05-item:nth-child(3n) {
  margin-right: 0;
}
.b05-item a {
  text-decoration: none;
  display: block;
   transition: all 0.5s ease;
}
.b05-img {
  margin: 0;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
  overflow: hidden;
   transition: all 0.5s ease;
}
.b05-img img {
  max-height: 100%;
     transition: all 0.5s ease;
}
.b05-item a:hover .b05-img img {
  transform: scale(1.1, 1.1);

}
.b05-main {
  border-left: 1px dashed #e1e1e1;
  border-right: 1px dashed #e1e1e1;
  border-bottom: 1px dashed #e1e1e1;
  padding: 20px;
}
.b05-ttl {
  font-size: 20px;
  color: var(--color2);
  line-height: normal;
  margin: 0;
}
.b05-date {
  color: var(--scolor);
  margin: 0 0 10px;
}
.b05-txt {
  font-size: 18px;
  color: #666;
  line-height: normal;
  margin: 0;
}
.b05-item a:hover {
  background: #fff;
}
#footer {
  background: url("../W_images/f_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 60px 0 40px;
  color: #fff;
}
.f-form {
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 0 0 40px;
  margin: 0 0 40px;
}
.f-ttl {
  font-size: 40px;
  margin: 0 0 20px;
  line-height: 1em;
  font-family: 'VNI-BriquetNormal';
}
.f-txt {
  font-size: 18px;
  line-height: normal;
}
.f-form .form {
  width: 100%;
  max-width: 637px;
  position: relative;
  margin: 0 auto;
}
.f-form input {
  width: 100%;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  outline: none;
  padding: 17px 20px;
  border-radius: 30px;
}
.f-form .button {
  position: absolute;
  right: 0;
  color: #fff;
  font-size: 16px;
  border: none;
  background: var(--color1);
  top: 0;
  padding: 15px 30px;
  -webkit-border-top-right-radius: 30px;
  -webkit-border-bottom-right-radius: 30px;
  -moz-border-radius-topright: 30px;
  -moz-border-radius-bottomright: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  outline: none;
  cursor: pointer;
}
.f-form button:hover {
  background: var(--scolor);
}
.footer02 {
  display: flex;
  justify-content: space-between;
}
.f02-mod {
  width: 33.33%;
}
.f02-mod:nth-child(1) {
  margin-right: 30px;
  border-right: 1px dashed rgba(255,255,255,0.2);
  padding-right: 30px;
}
.f02-mod:nth-child(2) {
  margin-right: 30px;
  border-right: 1px dashed rgba(255,255,255,0.2);
  padding-right: 30px;
}
.f02-ttl {
  font-size: 18px;
  color: var(--color1);
  margin: 0 0 15px;
  font-weight: bold;
}
.f02-txt {
  font-size: 16px;
  margin: 0;
}
.f02-info {
  margin: 0;
  font-size: 16px;
  padding-left: 25px;
}
.f02-tel {
  background: url("../W_images/f_ico01.png") no-repeat left center;
}
.f02-add {
  background: url("../W_images/f_ico02.png") no-repeat left 8px;
}
.f02-mail {
  background: url("../W_images/f_ico03.png") no-repeat left center;
}
.f02-mail a {
  color: #fff;
  text-decoration: none;
}
.f02-social {
  font-size: 18px;
  font-weight: bold;
  color: var(--color1);
  margin: 0 0 5px;
}
.f02-social a {
  margin-left: 5px;
}
.f-copyright {
  margin: 0;
  font-style: italic;
}
.f-copyright a {
  color: #fff;
  text-decoration: none;
}
#main{
    overflow:hidden;
}
.under{
    margin-top:110px;
}
.under-ttl{
    font-size: 60px;
    color: var(--color1);
    padding: 60px 0 20px;
    margin-bottom: 80px;
    font-family: 'VNI-BriquetNormal';
    line-height: 1em;
    text-align:center;
    position:relative;
}

.under-ttl:before {
    content: '';
    position: absolute;
    width: 172px;
    height: 1px;
    background: var(--color2);
    bottom: 2px;
    left: calc(50% - 86px);
}
.under-ttl:after{
    content: '';
    position: absolute;
    width: 70px;
    height: 5px;
    background: var(--color2);
    bottom: 0;
    left: calc(50% - 35px);
}
.under.gioithieu{
    background: url(../W_images/bg-about.jpg) no-repeat center center / cover;
	padding-bottom:40px;
}
.under.dichvu{
    background: url(../W_images/bg-about.jpg) no-repeat center center / cover;
	padding-bottom:40px;
}
.dichvu .nmc-text{width:880px;margin:0 auto;}
.price-item{
        display: flex;
    justify-content: space-between;
}
.price-left, .price-right{
    display: table-cell;
    margin:0;
}
.price-left span{
        display: block;
}
.price-left span:first-child{
    color: #E8206A;
    font-size: 17px;
    font-family: jura,sans-serif;
}
.price-left span:nth-child(2) {
    font-family: jura,sans-serif;
    color: #8B0000;
    font: normal normal normal 17px/1.4em brandon-grot-w01-light,sans-serif;
}
.price-right{
    font-size: 15px;
    font-family: play,sans-serif;
    color: #3B0A0A;
}
.dichvu .nmc-text h3{
    color: #3B0A0A;
    font-size: 28px;
    font-family: jura,sans-serif;
    margin: 35px 0 15px;
}
.waxing{
    width: 48%;
    float: left;
    padding-right:30px;
}
.waxing:nth-child(2n){
    padding-right:0;
    padding-left:30px;
}
@media screen and (max-width: 768px) {
.under{margin:0;}
.dichvu .nmc-text{width: 100%;}
#wrapper {
  min-width: 100%;
  margin: 0;
  padding-top: 78px;
}
#main, #footer {
  min-width: 100%;
}
.container {
  padding: 0 3%;
  width: 100%;
}
.sp {
  display: block;
  margin: 0 auto;
}
.pc {
  display: none;
}
/* MENU-ICON */
.menu-icon {
	margin: 0;
  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(--scolor);
}
.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: 60px;
    height: 55px;
    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);
}
.submenu {
    position: relative;
    width: 100%;
}
.submenu a {
    background: #9dc261;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
#totop {
  width: 40px;
  right: 3%;
  bottom: 50px;
  line-height: 0;
}
#gnavi {
  position: fixed;
  width: 100%;
  left: 0;
  top: 78px;
  height: calc(100% - 78px);
  background: rgba(255,255,255,0.9);
  display: none;
  transition: none;
}
#header .container {
  justify-content: space-between;
}
#header {
  padding: 5px 0;
  background: rgba(255,255,255,0.9);
}
.gnavi > li > a {
  background: var(--mcolor);
  color: #fff;
  font-size: 24px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.gnavi {
  display: block;
}
.gnavi > li {
  margin: 0;
}
.gnavi > li:hover > a, .gnavi > li.active > a {
  background: var(--scolor);
  color: #fff;
}
.gnavi > li > a:before {
  display: none;
}
.main-slide .slick-dots {
  left: auto;
  right: 3%;
  bottom: 30px;
}
.box01 {
  padding: 40px 0;
  overflow: hidden;
}
.box01 .container {
  display: block;
}
.b01-main {
  width: 100%;
  margin: 0 0 30px;
}
.idx-ttl {
  font-size: 40px;
}
.b01-note {
  font-size: 24px;
}
.b01-txt, .b03-txt, .b02-txt, .b04-txt, .b05-txt, .f-txt, .f02-txt, .f02-info {
  font-size: 14px;
}
.b01-img {
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
}
.box02, .box03, .box04, .box05, #footer {
  padding: 40px 0;
}
.b05-img {
  height: 180px;
}
.f-ttl {
  font-size: 30px;
}
.footer02 {
  flex-wrap: wrap;
}
.f02-mod:last-child {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
.f02-mod {
  width: 46%;
}
.f02-mod:nth-child(2) {
  margin: 0;
  border-right: none;
  padding-right: 0;
}
  .b03-item a::after {
    font-size: 50px;
    top: calc(50% - 10px);
  }
}

@media screen and (max-width: 480px) {
.under.dichvu.spa{background-size:2000px !important;}
.waxing, .waxing:nth-child(2n){
    width:100%;
    padding:0;
}
.b02-item {
  width: 100%;
}
.box02 {
  padding-bottom: 120px;
}
.b03-item {
  width: 50%;
}
.b05-list {
  display: block;
}
.b05-item {
  width: 100%;
  margin: 0 0 30px;
}
.f02-mod:not(:last-child) {
  width: 100%;
  margin: 0 0 20px;
  text-align: center;
}
.f02-mod:nth-child(1) {
  border: none;
  padding: 0;
  margin-right: 0;
}
.f02-mod:nth-child(2) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.f-form input {
    padding: 17px 20px;
}
.f-form button {
    padding: 10px 20px;
    font-size: 14px;
}
.f-form {
    padding: 0 0 20px;
    margin: 0 0 20px;
}
}
