/*===========================================

ヘッダー

===========================================*/

.l-header {
  position: fixed;
  width: 100%;
  height: 82px;
  z-index: 100;
  transition: 0.3s;
  /* 文字の色 */
  color: #fff;
  /* 帯部分の背景 */
  background-color: #101010;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}
.l-header-area {
  width: 95%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-area__title {
  height: 44px;
}
.l-header-area__title > a > img {
  height: 100%;
}

.l-header-area__menu {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 100%;
}

.l-header-area__menu > a > img {
  max-height: 70px;
}

.l-header-area__contact {
  position: relative;
  width: 320px;
  height: 44px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 1.4px;
  color: #333;
  cursor: pointer;
  /* UI Properties */
  background: #fff 0% 0% no-repeat padding-box;
  /* border: 2px solid #707070; */
  border: none;
  border-radius: 22px;
  opacity: 1;
}

.l-header-area__contact::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  position: absolute;
  top: 50%;
  right: 32px;
  margin-top: -4px;
  transform: rotate(45deg);
}

.l-header-area__contact:hover {
  transition: 0.2s;
  background-color: #fff500;
}

.onChange {
  transition: 0.3s;
  background: #fff500 0% 0% no-repeat padding-box;
}
.offChange {
  transition: 0.3s;
  background: #c6ad6d 0% 0% no-repeat padding-box;
}
.offChange:hover {
  background: #fff;
}

@media screen and (max-width: 768px) {
  .l-header {
    height: 70px;
  }
  .l-header-area__contact {
    display: none;
  }
  .l-header-area {
    width: 100%;
  }
  .l-header-area__title {
    font-size: 14px;
    height: 30px;
  }
  .l-header-area__title > a > img {
    padding-left: 20%;
  }
  .l-sp__contact {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px;

    cursor: pointer;
    /* UI Properties */
    border: none;
    border-radius: none;
    opacity: 1;
    z-index: 2000;
  }
  .l-sp__contact > a {
    padding: 16px 0;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    height: 100%;
    letter-spacing: 3.6px;
    color: #333;
    background-color: #c6ad6d;
  }
  .l-sp__contact > a::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #333;
    border-right: solid 2px #333;
    top: 1.55rem;
    margin-left: 10px;
    transform: rotate(45deg);
  }
}
