@charset "urf-8";

/* リセットCSS */

*,
::before,
::after {
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
  list-style: none;
  font-size: 20px;
  color: #000;
  letter-spacing: 0.2em;
  line-height: 2.5em;
  font-family: "Shippori Mincho";
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  background-color: #FFFEFC;
}

img {
  max-width: 100%;
}

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

a:hover {
  display: block;
    transform: translateY(3px);
    transition: 0.3s;
}


.inview {
  opacity: 0;
  transform: translateY(50px);
  transition: 1.9s;
  transition-delay: 0.5s;
}

.inview.is-show {
  opacity: 1;
  transform: translateY(0px);
}



/* ヘッダー */

.shop-info {
  color: #000;
  line-height: 3.5;
  font-size: 14px;
  letter-spacing: 0.8px;
  position: absolute;
  top: 40px;
  right: 280px;
  font-family: sans-serif;
}

#open {
  display: none;
}

.toggle .on {
  margin-top: 3px;
  display: block;
  width: 55px;
  height: 2px;
  background-color: #000;
  transition: all 0.8s;
}

.toggle {
  width: 57px;
  height: 42px;
  font-size: 0;
}

.toggle .on:nth-of-type(2) {
  width: 42px;
  margin: 10px auto 0;
}

.toggle .on:nth-of-type(3) {
  margin-top: 10px;
}

.off {
  display: block;
  font-size: 13px;
  font-family: "Shippori Mincho";
  line-height: 1.5;
  letter-spacing: 5%;
  margin: 0 auto;
  text-align: center;
}

#open:checked~.toggle span:nth-of-type(1) {
  rotate: 30deg;
  margin-top: 11px;
}

#open:checked~.toggle span:nth-of-type(2),
#open:checked~.toggle p {
  scale: 0;
}

#open:checked~.toggle span:nth-of-type(3) {
  rotate: -30deg;
  margin-top: -13px;
}

.mainlogo {
  position: fixed;
  top: 30px;
  left: 45px;
  width: 310px;
  z-index: 10000;
}

.footerlogo {
  width: 310px;
}

.navigation img {
  width: 42px;
  opacity: 0.8;

}

.navigation {
  display: flex;
  gap: 31px;
  margin-top: 12px;
  /* filter: saturate(60%) drop-shadow(1px 1px 0.5px #aaa); */
  /* ↑フィルターかかっってると子要素のfixedが効かない！！*/
}

.header-icon {
  position: fixed;
  top: 30px;
  right: 45px;
  z-index: 1000;
}

/* ハンバーガーメニュー中身↓ */

nav {
  width: 100vw;
  height: 100vh;
  padding: 100px;
  position: fixed;
  top: -100%;
  right: 0;
  color: #000;
  background-color: #FFFEFC;
  transition: all 0.8s;
  font-size: 0;
  z-index: -1;
}

#open:checked~nav {
  top: 0;
}

nav ul {
  margin-top: 70px;
  display: block;
  text-align: center;
}

.menu-item {
  padding-bottom: 60px;
}

.menu-item span {
  text-decoration: underline;
  font-size: 28px;
  line-height: 0;
  letter-spacing: 0;
  font-family: "Shippori Mincho";
}

.menu-item2 {
  font-size: 12px;
  line-height: 0;
  font-family: inter;
  margin-top: 11px;
}

/* ハンバーガーメニュー中身ここまで */

/* ヘッダーここまで */

/* reservation固定ここから */
.reservation-button {
  width: 50px;
  height: 190px;
  padding: 21px;
  border: 1px solid #787878;
  border-right: none;
  background-color: #9BCC7C70;
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 18px;
  line-height: 0;
  letter-spacing: 10%;
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 10000000;
}

.reservation-button span {
  filter: drop-shadow(1px 1px 1px #aaa);
  color: #fff;
  font-family: inter;
}

/* reservation固定ここまで */


/* カーソルにアイコンつける */
.cursor {
  width: 70px;
  aspect-ratio: 1/1;
  background-image: url(../img/maru-indx1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  top: 50px;
  left: 10px;
  z-index: 9999999999;
  transform: rotate(-30deg);
  pointer-events: none;
  opacity: 0;
}

.cursor2 {
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../img/Ellipse2.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  top: 0px;
  left: 40px;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
}

/* ブラウザの上でのみ出現＝外にカーソルが出ると消失（.cursorにはopacity0を入れる） */
body:hover .cursor {
  opacity: 1;
}

/* カーソルここまで */


/* フッターここから */

footer {
  width: 100%;
  margin: 0 auto;
  background-image: url(../img/index/footerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Shippori Mincho";
  font-size: 18px;
  padding-bottom: 20px;
  position: relative;
}

.footerbutton {
  position: absolute;
  top: -55px;
  right: 20px;
}

.footer-inner {
  padding: 180px 70px 50px 90px;
  display: flex;
  gap: 100px;
}

.footer-salonname {
  display: flex;
  align-items: baseline;
  font-size: 13px;
  gap: 8px;
}

.footer-salonname :nth-child(1) {
  font-size: 30px;
  letter-spacing: 0;
}

.footer-inner2 {
  display: flex;
  margin: 15px 0 10px 10px;
  gap: 30px;
}

.hiroshima-address p,
.yanai-address p {
  font-family: inter;
  font-size: 10px;
}

.hiroshima-address,
.yanai-address {
  line-height: 1.5;
}

.hiroshima-address span,
.yanai-address span {
  display: block;
  flex-direction: column;
}

.contactbutton {
  width: 140px;
  text-align: center;
  margin-left: 20px;
  padding: 8px;
  border: 1px solid #787867;
}

.contactbutton img {
  width: 40px;
}

.contactbutton span {
  margin-left: 5px;
  font-size: 13px;
  font-family: inter;
  line-height: 0;
}

.copyright {
  text-align: center;
  font-size: 16px;
}

.copyright span {
  letter-spacing: 0;
}

/* フッターここまで */

/* ここからレスポンシブ */

@media (width < 840px) {

a:hover {
  transform: translateY(0);
}

  .inview {
    opacity: 1;
    transform: translateY(3px);
    transition: 1.9s;
    transition-delay: 0.5s;
}

.inview.is-show {
    opacity: 1;
    transform: translateY(0px);
}

  main {
    width: 100%;
    margin: 120px auto;
  }

  .shop-info {
    width: 90%;
    color: #000;
    line-height: 1;
    font-size: 12px;    position: absolute;
    top: 96px;
    left: 4%;
  }

  .shop-info p{
    letter-spacing: 0;
  }

  .toggle .on {
    margin-top: 3px;
    display: block;
    width: 42px;
    height: 2px;
    background-color: #000;
    transition: all 0.8s;
  }

  .toggle .on:nth-of-type(2) {
    width: 30px;
    margin: 10px auto 0;
  }

  .toggle .on:nth-of-type(3) {
    margin-top: 10px;
  }

  .off p {
    line-height: 1;
  }

  .mainlogo {
    position: fixed;
    top: 25px;
    left: 15px;
    width: 150px;
    z-index: 10000;
  }

  .footerlogo {
    width: 200px;
    margin: 50px auto 0;
  }

  .navigation img {
    width: 35px;
    opacity: 0.8;
  }

  .navigation {
    gap: 17px;
    margin-top: 0px;
  }

  .header-icon {
    position: fixed;
    top: 30px;
    right: 23px;
    z-index: 1000;
  }

  nav ul {
    margin-top: 80px;
  }
  
  .menu-item {
    padding-bottom: 45px;
  }
  
  .menu-item2 {
    font-size: 11px;
  }
.menu-item span {
  font-size: 20px;
}

.cursor,
.cursor2 {
  display: none;
}

.reservation-button {
  width: 45px;
  height: 180px;
  padding: 21px;
  bottom: 50px;
}

.footerbutton {
  position: absolute;
  top: -150px;
  right: 20px;
}

.footer-inner {
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-address {
 margin:0 auto;
}

.footer-salonname {
  margin-bottom: 10px;
}

.footer-salonname :nth-child(1) {
  font-size: 30px;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.footer-inner2 {
  display: flex;
  flex-direction: column;
  margin:0 auto;
  gap: 0px;
  font-size: 15px;
}

.hiroshima-address p,
.yanai-address p {
  font-family: inter;
  font-size: 11px;
}

.hiroshima-address {
  line-height: 1.5;
  margin: 0 auto 10px;
}
.yanai-address {
  line-height: 1.5;
  margin: 0 auto 30px;
}

.hiroshima-address span,
.yanai-address span {
  display: block;
  flex-direction: column;
}

.contactbutton {
  width: 140px;
  text-align: center;
  margin: 0 auto 10px;
  padding: 8px;
  border: 1px solid #787867;
}

.contactbutton img {
  width: 40px;
}

.contactbutton span {
  margin-left: 5px;
  font-size: 13px;
  font-family: inter;
  line-height: 0;
}

.copyright {
  text-align: center;
  font-size: 16px;
}

.copyright span {
  letter-spacing: 0;
}

}