/*============================
	header
============================*/

.header {
  width: 100vw;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background: url(https://calicohairworks.com/system_panel/uploads/images/hd_bg02.png);
}

.hd__inner {
  max-width: 1720px;
  width: 96%;
  height: 220px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hd__left {
  max-width: 248px;
  width: 14.5%;
  margin-top: 30px;
}

.hd__left img {
  width: 100%;
}

.hd__right {
  display: flex;
  width: 83%;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.hd__tel {
  font-size: 18px;
  margin-left: 50px;
  color: #fff;
  margin-top: 45px;
  white-space: nowrap;
}

.hd__tel strong {
  font-size: 30px;
  color: #fff;
}

.hd__mail {
  width: 220px;
  height: 50px;
  margin-left: 20px;
  background: #00909d;
  border-radius: 25px;
  margin-top: 30px;
  white-space: nowrap;
}

.hd__mail a {
  display: block;
  cursor: pointer;
  font-weight: normal;
  line-height: 50px;
  text-align: center;
  padding: 0 10px;
}

.hd__mail p {
  display: inline-block;
  color: #fff;
}

.hd__insta {
  min-width: 29px;
  margin-left: 30px;
  margin-top: 40px;
}

@media screen and (max-width: 1380px) {
  .hd__tel {
    font-size: 16px;
    margin-left: 20px;
  }

  .hd__tel strong {
    font-size: 24px;
    color: #fff;
  }

  .hd__mail a {
    font-size: 13px;
  }
}

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

  .hd__left {
    width: 90px;
    margin-top: 8px;
  }
}


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

  .hd__left {
    width: 75px;
  }
}

/***** g-nav PC ▼*****/

.hd__nav {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  width: 60%;
}

.hd__nav__item {
  position: relative;
}

.hd__nav__item a {
  color: #fff;
  font-weight: normal;
  position: relative;
  display: block;
  transition: .3s ease-out;
  text-align: center;
  white-space: nowrap;
  font-size: 20px;
  letter-spacing: .05em;
  padding: 50px 5px 0;
  text-transform: uppercase;
}

.hd__nav__item a:hover {
  opacity: 1;
  color: #00909d;
}

@media screen and (max-width: 1380px) {
  .hd__nav__item a {
    font-size: 16px;
  }
}

@media screen and (max-width:1180px) {
  .hd__right {
    display: none;
  }
}

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


/* child */
/* .hd__nav__item:hover .dropdown__items {
  display: block;
}
.dropdown__items {
  display: none;
  width: 200px;
  padding: 20px;
  background-color: #111;
  transition: all .3s;
  position: relative;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.dropdown__item a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  text-transform: uppercase;
  line-height: 2;
  color: #fff;
} */

/***** g-nav ▲*****/



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

.hd__hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  margin: auto;
  width: 50px;
  height: 60px;
  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: 15px;
}

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

.hd__hamburger .font-en {
  font-size: 14px;
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
}

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

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

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

.hd__nav--sp.open .hd__hamburger .font-en {
  color: #fff;
}

/* hamburger menu */
.hamburger__inner {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 20% 5%;
  width: 100%;
  height: 100%;
  background: rgba(62, 39, 9, 0.8);
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  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 {
  display: grid;
  place-content: center;
  place-items: center;
  width: 100%;
}

.nav__item--sp {
  margin: auto;
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  padding: 12px 0;
  font-weight: 500;
}

.nav__item--sp a {
  display: block;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.hd__tel--sp {
  margin-top: 30px;
}

.hd__tel--sp p {
  color: #fff;
}

.hd__tel--sp a strong {
  font-size: 18px;
  color: #fff;
}

.hd__insta--sp {
  margin-top: 10px;
}

.hd__mail--sp {
  margin-top: 15px;
  width: 180px;
  height: 45px;
  background: #00909d;
  border-radius: 25px;
}

.hd__mail--sp a {
  display: block;
  cursor: pointer;
  line-height: 45px;
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.hd__nav--sp.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:1180px) {
  .hd__hamburger {
    display: block;
    width: 40px;
    height: 30px;
    top: 25px;
    right: 20px;
  }
}

@media screen and (max-width:768px) {
  .hd__hamburger {
    width: 30px;
    height: 30px;
    top: 25px;
    right: 20px;
  }

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

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

  .hd__hamburger .font-en {
    font-size: 11px;
    letter-spacing: 0;
  }
}

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


/* sidebar */
.sidebar {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1280px) {
  .sidebar {
    display: none !important;
  }
}