@charset "UTF-8";

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  color: inherit;
  font-family: 'メイリオ', 'Meiryo', sans-serif;
  scroll-behavior: smooth;
  transition: 1s;
}

li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

h2 {
  font-size: 30px;
  font-weight: lighter;
}

/* ヘッダー */
#header {
  margin: 100px 0;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  height: 120vh;
}

.header-nav {
  margin: 100px auto;
}

header h1 {
  margin-bottom: 50px;
}

.header-img {
  max-width: 100%;
  height: auto;
}

.header-change {
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  padding: 20px;
  position: absolute;
  transition: .5s;
  width: 100%;
  margin-bottom: 50px;
}

/* .header-change.show{
  top: 0;
} */

.header-change ul {
  display: flex;
  justify-content: space-between;
}

.header-change ul li {
  margin-right: 1em;
}

.header-change .fixed {
  position: fixed;
  top: 0;
}

/* コンセプト */
#concept {
  width: 80%;
  margin: 200px auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.img-2 {
  position: absolute;
  top: 30%;
  left: 25%;
}

.concept-text {
  margin-top: 200px;
}

.concept-text h2 {
  margin-bottom: 50px;
  font-size: 30px;
}

/* schroll */
.items.offs.effect {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
}
.items.ons.effect {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all 2s ease;
  transition: all 2s ease；;
}


#menu {
  width: 80%;
  margin: 200px auto;
  display: flex;
  justify-content: space-around;
}

.menu-cut,
.menu-perm,
.menu-color {
  margin-top: 50px;
  position: relative;
}

.menu-cut h3::after,
.menu-perm h3::after,
.menu-color h3::after {
  content: "";
  display: block;
  width: 300px;
  height: 3px;
  background-color: #808080;
  position: absolute;
  margin-bottom: 50px;
}

.menu-list ul {
  margin-bottom: 2em;
}

.menu-img {
  display: flex;
}

.img-menu01 {
  position: relative;
}

.img-menu02 {
  position: absolute;
  top: 60%;
  left: 110%;
}

#info {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin: 300px auto;
}

.info-text ul {
  margin-top: 2em;
}

.info-text p {
  margin-top: 1em;
}

#style {
  margin: 300px auto;
  text-align: center;
  width: 80%;
}

.style-img {
  margin: 100px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
}

#salon {
  width: 80%;
  margin: 200px 0;
}

#salon h2 {
  text-align: center;
  margin-left: 10em;
}

.salon-1,
.salon-2,
.salon-3 {
  margin: 100px auto;
  display: flex;
  justify-content: space-around;
  position: relative;
}

.salon-text h3 {
  margin: 1em 0;
  font-weight: light;
}

.salon-text::before {
  content: "";
  display: block;
  width: 400px;
  height: 2px;
  background-color: #808080;
  position: absolute;
  /* margin-bottom: 50px; */
}

.salon-link {
  margin-top: 1em;
}

#staff {
  margin: 200px auto;
  width: 100%;
  text-align: center;
  background-color: #dcdcdc;
  height: 60vh;
}

#staff h2 {
  right: 20%;
}

.staff-img {
  display: flex;
  justify-content: space-around;
  width: 80%;
  margin-top: 5em;
}

/* img-hover */
.staff-img1 {
  width: 280px;
  height: 188px;
  overflow: hidden;
  margin: 10px 8px 10px 16px;
  position: relative;
  /* 相対位置指定 */
}

.staff-img1 .caption {
  font-size: 130%;
  text-align: center;
  padding-top: 80px;
  color: #fff;
}

.staff-img1 .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4);
  /* マスクは半透明 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.staff-img1:hover .mask {
  opacity: 1;
  /* マスクを表示する */
}

/* .staff-img2 */
.staff-img2 {
  width: 280px;
  height: 188px;
  overflow: hidden;
  margin: 10px 8px 10px 16px;
  position: relative;
  /* 相対位置指定 */
}

.staff-img2 .caption {
  font-size: 130%;
  text-align: center;
  padding-top: 80px;
  color: #fff;
}

.staff-img2 .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4);
  /* マスクは半透明 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.staff-img2:hover .mask {
  opacity: 1;
  /* マスクを表示する */
}

/* .staff-img3 */
.staff-img3 {
  width: 280px;
  height: 188px;
  overflow: hidden;
  margin: 10px 8px 10px 16px;
  position: relative;
  /* 相対位置指定 */
}

.staff-img3 .caption {
  font-size: 130%;
  text-align: center;
  padding-top: 80px;
  color: #fff;
}

.staff-img3 .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4);
  /* マスクは半透明 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.staff-img3:hover .mask {
  opacity: 1;
  /* マスクを表示する */
}

#staff p {
  margin-top: 2em;
}

#reservation {
  background-image: url(./img/reserve01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  position: relative;
}

#reservation h2 {
  margin-left: 20%;
}

.reserve {
  background-color: #dcdcdc;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 50%;
  height: 80%;
}

.reserve-inner {
  position: absolute;
  top: 30%;
  left: 10%;
}

.reserve-inner h3 {
  font-weight: lighter;
  font-size: 1.5em;
}

.tel,
.web {
  margin-top: 1em;
}

.tel::before {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background-color: #808080;
  margin-bottom: 1em;
}

#recruit {
  /* background: #dcdcdc; */
  height: 50vh;
  position: relative;
}

.recruit-inner {
  width: 70%;
  height: 40vh;
  background-color: #cbe7cc;
  position: absolute;
  z-index: -1;
  top: 10%;
  left: 5%;
}

.recruit-text {
  margin-top: 10%;
  margin-left: 20%;
}

.recruit-bottom {
  background-image: url(./img/foot01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 30vh;
}

footer {
  background-color: #8dc98d;
  height: 40vh;
}

.footer {
  display: flex;
  justify-content: space-between;
}

.footer img {
  margin: 3em;
}

.footer ul {
  display: flex;
}

.footer ul li {
  margin: 0 2em;
}

.footer-nav {
  display: flex;
  align-items: center;
}

footer p {
  text-align: center;
}

/***追従するトップへ戻るボタン***/
#page-top {
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 1.5rem;
  color: #808080;
  padding: 0 0 0 35px;
  border-top: solid 1px;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/***トップへ戻るボタンここまで***/

@media (max-width: 800px) {
  #header {
    flex-direction: column;
  }

  .header-img {
    display: block;
    max-width: 50%;
    object-fit: contain;
  }

  #concept {
    flex-direction: column;
  }

  #concept img {
    object-fit: contain;
  }

  .img-2 {
    top: 30%;
    left: 25%;
  }

  #menu {
    display: block;
  }

  #info {
    display: block;
    background: contain;
  }

  .style-img {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    object-fit: cover;
  }

  .salon-1,
  .salon-2,
  .salon-3 {
    display: block;
  }

  #staff {
    background-size: contain;
  }

  .staff-img {
    display: block;
    margin-top: 1em;
  }

  #reservation {
    margin-top: 5em;
    background-size: contain;
  }

  .tel::before {
    width: 200px;
  }

  .recruit-bottom {
    background-size: contain;
  }

  footer {
    background-size: contain;
    height: 65vh;
  }

  .footer {
    display: block;
  }

  .footer ul {
    display: block;
  }


}