/*============================
	header
============================*/
.header {
  width: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
  /* 初期は透明 */
  transition: background-color 0.3s ease;
  /* 背景色の変化をアニメーション化 */
}

/* スクロール後の背景色を設定 */
.scrolled-header {
  background-color: #343029;
  /* 任意の背景色に変更 */
}

.hd__inner {
  width: 96%;
  max-width: 1720px;
  height: 150px;
  margin: 0 auto;
  position: relative;
}

.header__h1 {
  position: absolute;
  top: 20px;
  right: 0;
  font-size: 11px;
  color: #fff;
}

@media screen and (max-width: 1280px) {
  .hd__inner {
    height: 100px;
  }

  .header__h1 {
    top: 10px;
  }
}

@media screen and (max-width: 1140px) {}

@media screen and (max-width: 1024px) {
  .hd__inner {
    height: 80px;
  }

  .header__h1 {
    right: auto;
    left: 0;
  }
}

@media screen and (max-width:768px) {
  .hd__inner {
    height: 70px;
  }
}

/***** ハンバーガー ▼*****/

.hd__hamburger {
  display: block;
  position: fixed;
  top: 80px;
  right: 100px;
  margin: auto;
  width: 80px;
  height: 34px;
  cursor: pointer;
  z-index: 9999;
}

.hd__hamburger .span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #ffffff;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

.hd__hamburger .span:nth-child(1) {
  top: 0;
}

.hd__hamburger .span:nth-child(2) {
  top: 16px;
}

.hd__hamburger .span:nth-child(3) {
  top: 32px;
}


/* open */
.hd__menu.open .hd__hamburger .span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}

.hd__menu.open .hd__hamburger .span:nth-child(2) {
  width: 0;
  left: 50%;
}

.hd__menu.open .hd__hamburger .span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}

/* hamburger menu */
.hamburger__inner {
  /* display: block; */
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 8% 5%;
  width: 40%;
  height: 100%;
  background: #343029;
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  font-size: 13px;
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
}

.nav__items--sp {
  width: 48%;
}

.nav__item--sp {
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 1;
}

.nav__item--sp a {
  display: block;
  font-size: 18px;
  color: #fff;
  margin: 20px 0;
  letter-spacing: .05em;
}

.nav__item--sp a .font-en {
  font-size: 13px;
  letter-spacing: .1em;
  margin-top: .3rem;
}

.nav__items--right {
  width: 48%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.nav__reservation {
  max-width: 200px;
  height: 60px;
  width: 100%;
  margin-bottom: 30px;
}

.nav__reservation a {
  display: block;
  padding: 0 18px 0 50px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
  background: url(https://nailspacesoari.com/system_panel/uploads/images/icon_web_sp.png) no-repeat 20px center / 29px auto;
  line-height: 60px;
}

.hd__tel {
  display: flex;
  margin-bottom: 20px;
  white-space: nowrap;
  align-items: center;
}

.hd__tel a {
  font-size: 21px;
  display: inline-block;
  margin-left: 1rem;
}

.hd__time {
  width: fit-content;
  margin: 0 auto;
}

.hd__menu.open .hamburger__inner {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
}

@media screen and (max-width:1519px) {
  .hamburger__inner {
    width: 50%;
    padding: 2% 6%;
  }

  .nav__item--sp a {
    font-size: 16px;
  }

}

@media screen and (max-width:1480px) {
  .hamburger__inner {
    width: 50%;
    padding: 4% 6%;
  }
}

@media screen and (max-width:1280px) {
  .hd__hamburger {
    width: 55px;
    height: 34px;
    top: 40px;
    right: 50px;
  }

  .nav__reservation {
    height: 50px;
  }

  .nav__reservation a {
    line-height: 50px;
    background: url(https://nailspacesoari.com/system_panel/uploads/images/icon_web_sp.png) no-repeat 20px center / 25px auto;
  }

  .nav__item--sp a {
    font-size: 16px;
  }

  .nav__item--sp a .font-en {
    font-size: 12px;
  }
}

@media screen and (max-width:1080px) {
  .hamburger__inner {
    width: 80%;
    padding: 8% 10%;
  }
}

@media screen and (max-width:1024px) {
  .hd__hamburger {
    width: 42px;
    height: 52px;
    top: 28px;
    right: 20px;
  }

  .hd__hamburger .span:nth-child(2) {
    top: 13px;
  }

  .hd__hamburger .span:nth-child(3) {
    top: 26px;
  }
}

@media screen and (max-width:768px) {
  .hamburger__inner {
    width: 100%;
    padding: 8%;
    background: rgba(52, 48, 41, .9);
    justify-content: center;
    align-items: center;
  }

  .nav__items--right {
    padding-top: 0;
  }

  .hd__hamburger {
    width: 33px;
    height: 45px;
    top: 25px;
    right: 20px;
  }

  .hd__hamburger .span:nth-child(2) {
    top: 10px;
  }

  .hd__hamburger .span:nth-child(3) {
    top: 20px;
  }
}


@media screen and (max-width:414px) {
  .hamburger__inner {
    padding: 8%;
    display: grid;
    place-content: center;
    place-items: center;
    overflow-y: scroll;
  }

  .nav__items--sp {
    width: 100%;
    text-align: center;
  }

  .nav__item--sp a {
    font-size: 14px;
    margin: 10px 0;
  }

  .nav__item--sp a .font-en {
    font-size: 11px;
  }

  .nav__items--right {
    width: 100%;
    margin-top: 30px;
  }

  .nav__reservation {
    height: 50px;
  }

  .nav__reservation a {
    font-size: 12px;
    padding: 0 18px 0 40px;
    background: url(https://nailspacesoari.com/system_panel/uploads/images/icon_web_sp.png) no-repeat 20px center / 20px auto;
    line-height: 50px;
  }

  .hd__tel {
    margin-bottom: 10px;
  }

  .hd__time {
    font-size: 12px;
  }
}

/*============================
	footer
============================*/


/* linkarea */

.ft__linkarea {
  margin: 170px 0;
}

.ft__linkarea .inner {
  max-width: 1050px;
}

.ft__linkarea h2 {
  font-size: 28px;
  color: #ad8e2b;
  font-weight: normal;
  margin-bottom: 30px;
}

.ft__linkarea .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ft__linkarea .item img {
  margin-right: 1rem;
}

@media screen and (max-width:1024px) {
  .ft__linkarea {
    margin: 130px 0;
  }

  .ft__linkarea h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width:768px) {
  .ft__linkarea {
    margin: 100px 0;
  }

  .ft__linkarea .flex-btw {
    flex-direction: column;
  }

  .ft__linkarea .item {
    margin: 0 auto 50px;
  }

  .ft__linkarea .item:last-child {
    margin-bottom: 0;
  }
}

/* footer */

.footer {
  padding: 100px 0 60px;
  background: #343029;
}

.ft__logo {
  margin: 0 auto 50px;
  max-width: 227px;
}

.ft__address {
  text-align: center;
}

.ft__address .font-en {
  font-size: 19px;
}

.ft__address .font-jp {
  font-size: 14px;
}

.ft__sitemap {
  margin-bottom: 75px;
}

.ft__sitemap .items:first-of-type {
  margin-bottom: 20px;
}

.ft__sitemap .items .item {
  padding: 0 1.5rem;
}

.ft__sitemap .items .item:not(:last-of-type) {
  border-right: 1px solid #fff;
}

.ft__sitemap .item a {
  font-family: "Zen Old Mincho", serif;
  display: inline-block;
  color: #fff;
}

.ft__copy {
  font-size: 13px;
}


@media screen and (max-width:768px) {

  .ft__address .font-en {
    font-size: 14px;
  }

  .ft__address .font-jp {
    font-size: 12px;
  }
}



.pc-d-none {
  display:none;
}
@media screen and (max-width:768px) {
    .sp-d-none {
      display:none;
    }
  .pc-d-none {
      display:block;
    }
}