@charset "UTF-8";
.header {
  width: 100%;
  height: 100px;
  background-image: url(../img/common/header_bg.png);
  background-position: center;
  background-repeat: repeat;
  background-size: contain;
  position: fixed;
  display: table;
  padding-left: 1%;
  padding-right: 1%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0);
  background-blend-mode: lighten;
  transition: all 0.7s; }
  @media (max-width: 1024px) {
    .header {
      padding-left: 0;
      padding-right: 0;
      height: 70px; } }
  .header .hamburger {
    display: none; }
  @media (max-width: 1024px) {
    .header .hamburger {
      display: block;
      position: fixed;
      top: 10px;
      right: 10px;
      cursor: pointer;
      width: 50px;
      height: 50px;
      border-radius: 5px;
      z-index: 1000; }
      .header .hamburger span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        background: #fff;
        width: 45%; }
        .header .hamburger span:nth-of-type(1) {
          top: 15px; }
        .header .hamburger span:nth-of-type(2) {
          top: 23px; }
        .header .hamburger span:nth-of-type(3) {
          top: 31px; }
      .header .hamburger.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%; }
      .header .hamburger.active span:nth-of-type(2) {
        opacity: 0; }
      .header .hamburger.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%; } }
  .header.lighten {
    background-color: rgba(255, 255, 255, 0.1);
    background-blend-mode: lighten;
    transition: all 0.7s; }
  .header .container-xl {
    display: table-cell;
    vertical-align: middle; }
  .header-inner {
    display: flex;
    justify-content: space-between; }
    @media (max-width: 1024px) {
      .header-inner {
        display: inline-block; } }
  .header-left {
    margin-top: auto;
    margin-bottom: auto;
    min-width: 148px; }
  .header-right {
    display: flex; }
    @media (max-width: 1024px) {
      .header-right {
        display: none;
        width: 100vw;
        height: 100vh;
        background-image: url(../img/common/header_bg.png);
        background-repeat: repeat;
        background-size: contain;
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 140px; } }
  .header-img {
    width: 148px;
    height: auto;
    vertical-align: middle; }
    @media (max-width: 1024px) {
      .header-img {
        width: auto;
        height: 60px; } }
  .header-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    margin-top: auto;
    margin-bottom: auto; }
    @media (max-width: 1024px) {
      .header-list {
        display: block;
        text-align: center; } }
  .header-item {
    margin-right: 1em; }
    @media (max-width: 1024px) {
      .header-item {
        margin-right: 0;
        margin-bottom: 15px; } }
  .header-link {
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block; }
  .header-tel {
    border-left: 1px solid #fff;
    padding-left: 45px;
    margin-right: 1em;
    position: relative;
    margin-top: auto;
    margin-bottom: auto; }
    @media (max-width: 1024px) {
      .header-tel {
        padding-left: 20px;
        margin-right: 0;
        border-left: none;
        margin: 0 auto;
        margin-bottom: 40px;
        display: table; } }
    .header-tel::before {
      content: "";
      display: block;
      width: 17px;
      height: 29px;
      position: absolute;
      top: 4px;
      left: 20px;
      background-image: url(../img/common/tel_icon.png);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
      @media (max-width: 1024px) {
        .header-tel::before {
          left: 0; } }
  .header-reserve {
    width: 163px;
    height: 37px;
    line-height: 160%;
    letter-spacing: .05rem;
    display: block;
    border: 1px solid #fff;
    text-align: center;
    margin-top: auto;
    margin-bottom: 1rem;
    box-sizing: border-box;
    transition: all 0.7s; }
    @media (max-width: 1024px) {
      .header-reserve {
        height: 49px;
        line-height: 37px;
        margin-left: auto;
        margin-right: auto; } }
    .header-reserve:last-child {
      height: 30px;
      line-height: 150%;
      font-size: 1.25rem;
      margin-bottom: 0; }
      @media (max-width: 1024px) {
        .header-reserve:last-child {
          height: 49px;
          line-height: 39px;
          font-size: 1.35rem; } }
    .header-reserve__wrap {
      margin-top: auto;
      margin-bottom: auto; }
    .header-reserve:hover {
      color: #402727;
      background-color: #fff;
      transition: all 0.7s; }
