@charset "UTF-8";
/* CSS Document */
.header {
  border-top: solid 10px #ded2bc;
}
.hamburger {
  border: 0;
  background: none;
  position: fixed;
  right: 20px;
  top: 30px;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 300;
}
.hamburger__line {
  position: absolute;
  width: 50px;
  height: 3px;
  right: 0;
  background-color: #ded2bc;
  transition: all 0.5s;
}
.hamburger__line--1 {
  top: 1px;
}
.hamburger__line--2 {
  top: 18px;
}
.hamburger__line--3 {
  top: 36px;
}
.open .hamburger__line--1 {
  transform: rotate(-45deg);
  top: 11px;
}
.open .hamburger__line--2 {
  opacity: 0;
}
.open .hamburger__line--3 {
  transform: rotate(45deg);
  top: 11px;
}
.sp-nav {
  padding-top: 150px;
  position: fixed;
  right: -100%;
  top: 0;
  width: 30%;
  min-width: 275px;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
}
.sp-nav li {
  border-bottom: solid 1px #ded2bc;
  margin: auto 20%;
}
.sp-nav li:last-child {
  border-bottom: none;
}
.sp-nav li img {
  height: 18px;
  padding: 20px 0;
}
.sns-icon {
  display: inline-flex;
  justify-content: space-between;
  width: 25%;
  margin-top: 55px;
}
.sns-icon img {
  width: 30px;
}
.open .sp-nav {
  right: 0;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}
@media (max-width: 1024px) {
  .hamburger {
    width: 55px;
    height: 50px;
    background-color: #fff;
    border: 0;
  }
  .hamburger__line {
    width: 40px;
    margin: 8px;
  }
  .hamburger__line--1 {
    top: 1px;
  }
  .hamburger__line--2 {
    top: 15px;
  }
  .hamburger__line--3 {
    top: 30px;
  }
}
.top-image {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  height: 500px;
}
.top-image_1, .top-image_3 {
  width: 30%;
  object-fit: cover;
  min-height: 325px;
}
.top-image_2 {
  width: 39%;
  object-fit: cover;
  object-position: right;
}
@media (max-width: 1024px) {
  .top-image {
    height: 325px;
  }
}
.about {
  line-height: 4.8rem;
  letter-spacing: 0.1em;
}
.about h2 {
  margin: 120px auto 60px;
}
.about h3 {
  margin: 100px auto 90px;
  font-weight: 600;
}
.br {
  display: none;
}
.about_description1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.about_description1 img {
  width: 40%;
  height: 100%;
}
.about_description1 p {
  width: 55%;
  text-align: left;
}
.about_description2 div {
  margin-top: 70px;
  display: flex;
  align-items: center;
}
.about_description2 img {
  height: 4vw;
  min-height: 30px;
  margin-right: 30px;
}
.about_description2 span {
  text-align: left;
}
@media (max-width: 768px) {
  .about {
    line-height: 2.8rem;
    font-size: 1.2rem;
  }
  .about h2 {
    margin: 90px auto 50px;
  }
  .about_lead {
    text-align: left;
  }
  .about h3 {
    font-size: 1.4rem;
    margin: 60px auto 30px;
  }
  .br {
    display: block;
  }
  .about_description1 {
    display: block;
    padding-bottom: 0;
  }
  .about_description1 img {
    width: 65%;
    min-width: 250px;
  }
  .about_description1 p {
    width: 100%;
    margin-top: 30px;
  }
  .about_description2 div {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }
  .about_description2 {
    margin-top: 70px;
  }
  .about_description2 span {
    margin: 20px 0;
  }
}
.news h2 {
  margin: 150px auto 60px;
}
.news_box {
  text-align: left;
  overflow: auto;
  height: 700px;
}
.news_box::-webkit-scrollbar {
  width: 10px;
}
.news_box::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ded2bc;
}
.news_box::-webkit-scrollbar-track {
  border-radius: 10px;
  border: solid 2px #ded2bc;
  background: #fff;
}
.news_box li {
  border-bottom: solid 2px #ded2bc;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-right: 5px;
}
.news_box li:last-child {
  border-bottom: none;
}
.news_box h3 {
  font-size: 1.8rem;
}
.news_box li time {
  font-size: 1.4rem;
}
.news_box li p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .news h2 {
    margin: 70px auto 50px;
  }
  .news_box {
    height: 550px;
  }
  .news_box li {
    padding-top: 10px;
  }
  .news_box h3 {
    font-size: 1.4rem;
  }
  .news_box li time {
    font-size: 1.1rem;
  }
  .news_box li p {
    margin-top: 10px;
  }
  .news_box::-webkit-scrollbar {
    width: 7px;
  }
  .news_box::-webkit-scrollbar-thumb {
    border-radius: 7px;
  }
  .news_box::-webkit-scrollbar-track {
    border-radius: 7px;
    border: solid 1px #ded2bc;
  }
}
.gallery h2 {
  margin: 150px auto 60px;
}
.slider div div {
  border: solid 2px #FFF;
}
.slider img {
  width: 100%;
}
@media (max-width: 768px) {
  .gallery h2 {
    margin: 90px auto 50px;
  }
}
.menu h2 {
  margin: 150px auto 60px;
}
.menu_contents {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  justify-content: space-between;
}
.menu_a {
  text-align: center;
}
.menu-h {
  height: 2.5vw;
  min-height: 20px;
}
.harukafont {
  height: 1.8vw;
  min-height: 20px;
  margin-bottom: 20px;
}
.menu_contents table {
  width: 45%;
  margin: 30px 0;
}
.menu_contents table td {
  text-align: right;
}
.caution {
  padding-top: 20px;
  font-weight: 600;
  text-align: left;
  caption-side: bottom;
}
.menu_caution {
  text-align: left;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .menu h2 {
    margin: 90px auto 35px;
  }
  .menu_contents {
    flex-direction: column;
  }
  .menu_contents table {
    width: 100%;
    margin: 15px 0;
  }
  .menu_caution {
    margin-top: 15px;
  }
}
.salon h2 {
  margin: 150px auto 60px;
}
.salon_text {
  line-height: 3.2rem;
  margin-top: 50px;
}
.salon_img {
  margin-bottom: 50px;
}
.salon_img div img {
  height: 45vw;
  width: 100%;
  object-fit: contain;
}
.salon_access {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.salon_access p {
  text-align: left;
}
.salon_access h3 {
  margin-bottom: 30px;
}
.salon_access h3 img {
  height: 2.2vw;
  min-height: 20px;
  float: left;
}
.salon_map, .salon_parking {
  float: left;
}
.map-img {
  width: 40vw;
  max-width: 600px;
  height: 30vw;
  max-height: 400px;
  min-height: 250px;
}
.parking-img {
  width: 30vw;
  max-width: 400px;
  object-fit: contain;
  min-width: 250px;
  border: solid 2px #ded2bc;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .salon h2 {
    margin: 90px auto 50px;
  }
  .salon_img div img {
    height: 100%;
  }
  .salon_text {
    text-align: left;
    line-height: 2.4rem;
  }
  .salon_access {
    flex-direction: column;
    margin-top: 25px;
  }
  .salon_access h3 img {
    display: block;
  }
  .salon_map, .salon_parking {
    display: block;
    margin-bottom: 30px;
  }
  .map-img {
    width: 100%;
  }
  .parking-img {
    width: 100%;
    height: auto;
  }
}
.reservation h2 {
  margin: 150px auto 60px;
}
.reservation p {
  line-height: 3.2rem;
}
.line-button {
  margin-top: 45px;
  width: 200px;
}
@media (max-width: 768px) {
  .reservation h2 {
    margin: 90px auto 50px;
  }
  .reservation p {
    line-height: 2.4rem;
  }
  .line-button {
    margin-top: 25px;
  }
}
.instagram h2 {
  margin: 150px auto 60px;
}
.instagram_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.col-4 {
  width: 30%;
}
.instagram_img figure {
  vertical-align: bottom;
  line-height: 0;
  margin: 2px;
  position: relative;
}
.instagram_img figure::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.instagram_img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.instagram_img figcaption {
  display: none;
}
@media (max-width: 768px) {
  .instagram h2 {
    margin: 90px auto 50px;
  }
}
.sns_fixed {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 150px;
  left: 0px;
}
.sns_fixed img {
  width: 35px;
}
@media (max-width: 768px) {
  .sns_fixed {
    flex-direction: row;
    background-color: #FFFFFF;
    border-top: solid 5px #ded2bc;
    position: fixed;
    justify-content: center;
    align-items: center;
    left: auto;
    bottom: 0;
    width: 100%;
    height: 60px;
  }
}
.sns_fixed img:first-child {
  margin-right: 30px;
}
.sns_fixed img:last-child {
  margin-left: 30px;
}
.footer {
  background-color: #a18f80;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 120px;
}
.footer img {
  margin-top: 60px;
  height: 60px;
}
.space {
  display: none;
}
@media (max-width: 768px) {
  .footer {
    margin-top: 90px;
    font-size: 1.0rem;
  }
  .footer img {
    margin-top: 30px;
  }
  .space {
    display: block;
    height: 60px;
  }
}