@charset "UTF-8";
/* CSS Document */
/* header */
header {
  width: 100%;
  height: 80px;
  position: relative;
  background-color: #fff;
}
.header__img {
  position: absolute;
  height: 25px;
  object-fit: cover;
  left: 10px;
  top: 35px;
}
.header p {
  color: #000000;
  font-size: 1.2rem;
  position: absolute;
  left: 10px;
  top: 5px;
}
/* navigation */
.open-button, .close-button {
  display: none;
}
@media(max-width:1040px) {
  .open-button {
    display: block;
    position: absolute;
    right: 24px;
    top: 23px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open-button span, .open-button span:before, .open-button span:after {
    position: absolute;
    height: 5px;
    width: 40px;
    background: #333;
    display: block;
    content: "";
  }
  .open-button span:before {
    bottom: -12px;
  }
  .open-button span:after {
    bottom: -24px;
  }
  .close-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #333;
    font-size: 30px;
    padding: 20px;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /**height: 100%; **/
    /*padding-top: 80px;*/
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4);
  }
  .header nav ul li {
    border-bottom: solid 1px rgba(255, 255, 255, 0.5);
    background-color: #fff;
  }
  .header nav ul li:first-child {
    border-top: solid 1px rgba(255, 255, 255, 0.5);
  }
  .header nav ul li a {
    font-weight: 600;
    line-height: 40px;
    vertical-align: middle;
    text-decoration: none;
    color: #333333;
  }
}
/****************** PC *********************/
@media(min-width:1040px) {
  header {
    height: 80px;
  }
  .header-content-wrapper {
    /*max-width: 1040px; */
    margin: 0 auto;
    position: relative;
  }
  .header h1 {
    padding-top: 15px;
    position: absolute;
    left: 0;
    width: 100%;
  }
  .header-content-wrapper img {
    height: 40px;
  }
  .header-content-wrapper p {
    margin-bottom: 10px;
    font-size: 1.2rem;
  }
  .header nav {
    visibility: visible;
    display: block;
    text-align: right;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .header nav li a {
    text-decoration: none;
    display: block;
    padding: 30px 20px 0;
    color: #333;
    /*height: 83px;*/
    font-weight: 600;
    font-size: 1.8rem;
  }
}