@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: sans-serif;
  font-size: 16px;
  color: #000000;
  line-height: 1;
  background-color: #ffffff;
}

img {
  max-width: 100%;
}

.header-inner {
  max-width: 1200px;
  height: 110px;
  margin-left: auto;
  margin-left: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-menu-button {
  display: none;
}

.header-logo {
  display: block;
  width: 100px;
  height: 50px;
  margin-bottom: 35px;

}

.site-menu ul {
  display: flex;
}

.site-menu ul li {
  margin-left: 20px;
  margin-right: 20px;
}

.site-menu ul li a {
  font-family: 'Bona Nova', serif;
  font-weight: bold;
}

.title {
  height: 310px;
  background-image: url(../images/spa1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  text-shadow: 1px 1px 10px #4b2c14;
}

.title h1 {
  font-family: 'Bona Nova', serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer {
  font-family: 'Bona Nova', serif;
  font-family: "Noto Serif", serif;

  color: #ffffff;
  background-color: #6c0202e9;
  padding-top: 30px;
  padding-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.footer-tel {
  font-size: 26px;
  font-weight: bold;
  margin-top: 28px;
}

.footer-time {
  font-size: 13px;
  margin-top: 16px;
}

.footer-salon {
  font-size: 20px;
  margin-top: 70px;

}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 90px;
}

/* ここからメニュー */


.facial {
  display: flex;
  /* justify-content: space-between; */
  width:930px;
  max-width: 90%;
  margin-top: 75px;
  margin-left: auto;
  margin-right:auto ;
  align-items: flex-start;
  margin-bottom:40px;
}

.facial img{
  padding-right: 20px;
}

.facial-text {
  font-size: 20px;
  line-height: 30px;


  max-width: 500px;
  margin-right: 40px;
  padding: 20px;
}

.facial-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 10px;
}


.body {
  display: flex;
  justify-content: flex-start;
  width: 930px;
  max-width: 90%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.body-text {
  font-size: 20px;
  line-height: 30px;

  max-width: 500px;
  margin-right: 40px;

}

.body-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 15px;
}


.head {
  display: flex;
  justify-content: flex-start;
  width: 930px;
  max-width: 90%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.head-text {
  font-size: 20px;
  line-height: 30px;
  max-width: 500px;
  margin-right: 40px;
}

.head-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 15px;

}

.foot {
  display: flex;
  justify-content: flex-start;
  width: 930px;
  max-width: 90%;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.foot-text {
  font-size: 20px;
  line-height: 30px;
  max-width: 500px;
  margin-right: 40px;
}

.foot-text h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 15px;
}

.link-button {
  background-color: #f06c79;
  display: inline-block;
  min-width: 150px;
  line-height: 24px;
  border-radius: 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  border: none;

}

.link-button-area {
  font-size: 20px;
  margin-top: 10px;

}


/* ここまでメニュー */
@media (max-width: 800px) {
  .site-menu ul {
    display: block;
    text-align: center;
  }

  .site-menu li {
    margin-top: 20px;
  }

  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 50px;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }

  .header-inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    position: relative;
  }
  .header-logo {
    width: 50px;
    margin-top: 45px ;
  }
  .header-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    color: #ffffff;
    background-color: #736E62;
    padding-top: 30px;
    padding-bottom: 50px;
    display: none;
  }

  .header-site-menu.is-show {
    display: block;
  }

  .toggle-menu-button {
    display: block;
    width: 44px;
    height: 34px;
    background-image: url(../images/icon-menu.png);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    border-radius: 0;
    outline: none;
  }

  .main {
    padding-top: 50px;
  }
  .facial {
    display: block;
    width: 500px;
    margin-top: 45px;
  }  

  .facial-text {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .body {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .body-text {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .head {
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .head-text {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .foot{
    display: block;
    width: 500px;
    margin-top: 45px;
  }

  .foot-text {
    margin-left: 0;
    margin-bottom: 20px;
  }

  .footer-salon {
    margin-top: 60px;
  }

  .footer-tel {
    font-size: 20px;
  }

  .copyright {
    margin-top: 50px;
  }
}