@charset "utf-8";
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header__wrapper {
  width: 100%;
  /* height: 100px; */
}

.header__inner {
  height: 0;
  position: relative;
  max-width: 93.7%;
  margin: 0 auto;
}
.header__logo {
  position: fixed;
  left: 33px;
  top: 30px;
  width: 100%;
  max-width: 115px;
  z-index: 3;
}
.low-header .header__logo {
  max-width: 115px;
}

.header__logo img.nomal-logo {
  display: block;
}
.header__logo img.black-logo {
  display: none;
}
.is-active .header__logo img.nomal-logo {
  display: none;
}
.is-active .header__logo img.black-logo {
  display: block;
}
/* .header__logo.is-fixed {
  max-width: 100px;
  position: fixed;
  bottom:auto;
  top: 10px;
  z-index: 1000;
} */

.header__hamburger {
  display: none;
}

.header__nav {
  width: 115px;
  padding-top: 35px;
  margin: 0 0 0 auto;
}

.header__nav--sp {
  display: none;
}

.header__nav-list {
  width: 115px;
  margin: 0 0 0 auto;
}
.header__nav-listItem {
  text-align: right;
}
.header__nav-listItem:not(:last-child) {
  margin-bottom: 4px;
}

.header__nav-listItem a {
  display: inline-block;
  width: fit-content;
  padding: 5px 0;
  color: #000;
  font-family: instrument-serif, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 23px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.is-active .header__nav-listItem a {
  color: #e8e8e8;
}

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

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

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

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

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

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

@media screen and (max-width: 750px) {
  .header__inner {
    /* max-width: 88.26%; */
    width: 100%;
    max-width: 100%;
    height: 0;
  }
  .header__hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 22px;
    font-size: 16px;
    font-family: instrument-serif, sans-serif;
    letter-spacing: 0.02em;
    color: #000;
    cursor: pointer;
  }
  .header__hamburger:hover .menu {
    opacity: 0.7;
  }
  .header__hamburger .menu {
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease;
  }

  .header__hamburger .close {
    opacity: 0;
    position: relative;
    transition: all 0.3s ease;
  }
  .header__hamburger .close::before {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -20px;
    transform: rotate(0);
    transition: all 0.3s ease;
  }
  .header__hamburger .close::after {
    content: "";
    width: 15px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    left: -20px;
    transform: rotate(0);
    transition: all 0.3s ease;
  }

  .header__hamburger.open .menu {
    opacity: 0;
  }
  .header__hamburger.open .close {
    opacity: 1;
    z-index: 3;
    cursor: pointer;
  }
  .header__hamburger.open .close::before {
    transform: rotate(50deg);
  }
  .header__hamburger.open .close::after {
    transform: rotate(-50deg);
  }

  .header__nav--sp {
    padding-top: 0;
    /* display: none; */
    /* transform: translateX(100%); */
    opacity: 0;
    transition: all 1.4s ease;
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ca5e46;
    z-index: 1;
    position: relative;
    pointer-events: none;
  }
  body.fixed .header__nav--sp {
    /* transform: translateX(0); */
    opacity: 1;
    pointer-events: all;
  }

  body.fixed .header__nav--sp::after {
    content: "";
    width: 100%;
    height: 33.53vw;
    background-image: url(../imgs/common/nav_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .header__nav-list {
    width: 82.6%;
    margin: 0 auto;
    padding: 20vh 0 75px 0;
  }
  .header__nav-listItem {
    text-align: left;
  }

  .header__logo {
    width: 83px;
    top: 21px;
    left: 22px;
    backdrop-filter: blur(2px);
  }

  .header__nav-listItem:not(:last-child) {
    margin-bottom: 22px;
  }
  .header__nav-listItem a {
    font-size: 22px;
    font-family: shippori-mincho, sans-serif;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #000000;
  }

  .header__company {
    width: 82.6%;
    margin: 0 auto;
  }
  .header__nav__privacy a {
    font-size: 13px;
  }
  .header__companyTtl {
    margin-bottom: 10px;
    font-size: 11px;
  }
  .header__companyName {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .header__companyAddress {
    font-size: 10px;
  }
}

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