.body {
  width: 100%;
  margin: 0 auto;
  font-family: serif;
}

.header {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #fff;
}

.head {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.logo img {
  position: fixed;
  z-index: 1000;
  width: 100px;
}

.head-item {
  margin-top: 16px;
  margin-left: auto;
  margin-right: 70px;
}

.mens-btn {
  font-size: 12px;
  padding: 10px;
  color: #fff;
  background: #1a264f;
  border-radius: 20px;
}

.head-menu {
  position: relative;
}

.sale-banner1 {
  text-align: center;
  margin-bottom: 60px;
}

.top-artist-banner {
  text-align: center;
  margin-bottom: 60px;
}

/* 共通文字装飾 */
.font-pink-color {
  color: #f35979;
}

/* ラインボタン */
.line-button {
  width: 90%;
  margin: 40px auto 0;
  text-align: center;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display: block;
  position: absolute;
  z-index: 3;
  right: 10px;
  top: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #BBBBBB;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  display: none;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: #fff;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  transform: translateX(100%);
  transition: all 0.3s;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding-top: 60px;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li {
  position: relative;
  text-align: left;
  padding-left: 20px;
  border-top: 1px solid #333;
}

nav.globalMenuSp ul li::after {
  content: ">";
  position: absolute;
  right: 10px;
  top: 0;
  color: #000;
  font-size: 20px;
}

nav.globalMenuSp ul li:nth-last-child(1) {
  border-bottom: 1px solid #333;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #333;
  padding: 4px 0;
  text-decoration: none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  left: 50%;
  transform: translateX(-50%);
}

/*-----------矢印表示----------*/
.slick-prev:before,
.slick-next:before {
  color: #333;
  font-size: 26px;
}

.slick-next {
  right: 10px;
}

.slick-prev {
  left: 10px;
}

.slick-arrow {
  z-index: 2;
}

/* 当日キャンセル料金発生 */
.menu-cancel-caution {
  text-align: center;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* 施術の流れ */
.operation-flow {
  padding: 20px 0 40px;
  margin-top: 60px;
  background: #faeeed;
}

.operation-flow-content-wrapper {
  margin-top: 40px;
}

.operation-flow-content-wrapper {
  position: relative;
}

.operation-flow-content-number {
  position: absolute;
  top: -40px;
  right: 0;
  color: #d6848e;
  font-size: 48px;
}

.operation-flow-content-line {
  position: absolute;
  top: 26px;
  right: 6px;
  width: 2px;
  height: 96%;
  background: #d6848e;
}

.operation-flow-ttl {
  text-align: center;
  padding-top: 20px;
  font-size: 36px;
}

.operation-flow-content {
  width: 90%;
  margin-right: auto;
  padding: 20px;
  background: #fff;
}

.operation-flow-content-ttl {
  text-align: center;
  padding-bottom: 20px;
  font-size: 32px;
}

.operation-flow-content-after-counseling-ttl {
  font-size: 24px;
}

.operation-flow-content-img {
  text-align: center;
  padding-bottom: 20px;
}

/* アクセス */
.access {
  margin-top: 60px;
  padding-bottom: 40px;
  background: #eff1f2;
}

.access-ttl {
  text-align: center;
  font-size: 32px;
  padding: 20px 0;
}

.access-content {
  width: 90%;
  padding: 20px;
  background: #fff;
  margin: 0 auto;
}

.access-content-img {
  text-align: center;
  padding-top: 20px;
}

.access-content-desc {
  font-size: 12px;
}

.access-content-desc-row {
  display: flex;
  margin-top: 20px;
}

.access-content-desc-row-dl {
  width: 96px;
  height: 26px;
  padding: 4px 10px;
  background: #eff1f2;
}

.access-content-desc-row-dd {
  width: 120px;
  margin: 0 auto;
  padding: 4px 0;
}

/* フッター */
.footer {
  text-align: center;
  margin-bottom: 80px;
  padding: 20px 0;
  background: #000;
  color: #fff;
}

.footer-button {
  z-index: 100;
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 3%;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

.footer-button img {
  width: 96%;
}

.footer-medi-awork {
  color: #fff;
  margin-bottom: 10px;
}

.footer-medi-awork a {
  color: #fff;
}

/* フッター固定ボタン */
.footer-button .line-button {
  width: 70%;
  margin: 10px auto;
}

/* 560px以上に適用されるCSS（PC用） */
@media screen and (min-width: 560px) {

  /* 当日キャンセル料金発生 */
  .menu-cancel-caution {
    font-size: 20px;
  }

  /* 施術の流れ */
  .operation-flow-content-desc {
    font-size: 20px;
  }

  .operation-flow-content-after-counseling-ttl {
    font-size: 32px;
  }

  /* アクセス */
  .access-content-desc {
    font-size: 16px;
  }

  .access-content-desc-row-dl {
    width: 120px;
    height: 34px;
    margin-right: 30px;
  }

  .access-content-desc-row-dd {
    width: 320px;
  }


  /* フッター */
  .footer {
    margin-bottom: 0;
  }

  .footer-button {
    display: none;
  }
}

/* 750px以上に適用されるCSS（PC用） */
@media screen and (min-width: 750px) {
  .body {
    width: 750px;
  }

  .header {
    width: 750px;
  }

  /* メニュー背景　*/
  nav.globalMenuSp {
    width: 750px;
  }

  /* ラインボタン */
  .line-button {
    width: 100%;
    text-align: center;
  }

  /* 施術の流れ */
  .operation-flow-content-wrapper {
    margin-top: 80px;
  }

  .operation-flow-content-number {
    top: -60px;
    right: 40px;
    font-size: 78px;
  }

  .operation-flow-content-line {
    top: 38px;
    right: 50px;
    height: 100%;
  }

  .operation-flow-content-desc {
    width: 500px;
    margin: 0 auto;
  }

  /* アクセス */
  .access-content-desc {
    width: 600px;
    margin: 0 auto;
  }

  .access-content-desc-row-dd {
    width: 400px;
  }
}
