.header {
    z-index: 100;
    position: fixed;
    width: 100%;
    height: 80px;
  }
  @media (min-width: 1100px) {
    .header {
      height: 138px;
    }
  }
  .header .bar {
    height: 16px;
    background-color: rgb(139, 0, 0);
  }
  .header .headerInner {
    position: relative;
    margin: 0 auto;
    max-width: 1250px;
    width: 94%;
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  .header .headerInner .left {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header .headerInner .left .logo {
    margin-top: 0px;
    width: 270px;
    height: auto;
  }
  @media (min-width: 500px) {
    .header .headerInner .left .logo {
      margin-top: 0px;
      width: 350px;
    }
  }
  @media (min-width: 1300px) {
    .header .headerInner .left .logo {
      margin-top: -10px;
      width: 500px;
    }
  }
  .header .headerInner .right {
    display: none;
    margin-top: 15px;
  }
  @media (min-width: 1100px) {
    .header .headerInner .right {
      display: block;
    }
  }
  .header .headerInner .right .top {
    display: flex;
    justify-content: flex-end;
  }
  .header .headerInner .right .top .telButton {
    padding: 4px 40px;
    width: 270px;
    height: 58px;
    background-color: rgb(155, 20, 7);
    margin: 0;
  }
  .header .headerInner .right .top .telButton .p {
    font-family: "Yuji Syuku";
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 20px;
  }
  .header .headerInner .right .top .telButton .telFlex {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
  }
  .header .headerInner .right .top .telButton .telFlex .img {
    margin-top: 2px;
    width: 21px;
    height: 21px;
  }
  .header .headerInner .right .top .telButton .telFlex .tel {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-family: "Noto Serif JP";
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 32px;
    white-space: nowrap;
  }
  .header .headerInner .right .bottom {
    padding: 15px 0 5px;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
  }
  .header .headerInner .right .bottom .link {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header .headerInner .right .bottom .link .p {
    font-family: "Yuji Syuku";
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    text-shadow: 0px 0px 10px #000000;
    font-size: 18px;
    line-height: 26px;
  }
  .header .headerInner .right .bottom .link:hover {
    transition: 0.3s;
    transform: translateY(-4px);
  }
  
  .change_color {
    background: rgba(0, 0, 0, 0.3215686275);
  }
  
  .hamburgerWrapper {
    margin-left: 20px;
    margin-top: 20px;
  }
  @media (min-width: 1100px) {
    .hamburgerWrapper {
      display: none;
    }
  }
  .hamburgerWrapper .hamburger {
    display: block;
    position: relative;
    z-index: 4;
    width: 30px;
    height: 30px;
    cursor: pointer;
    text-align: center;
  }
  .hamburgerWrapper .hamburger .span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 0px;
    background: white;
    transition: 0.2s ease-in-out;
  }
  .hamburgerWrapper .hamburger .span:nth-child(1) {
    top: 0px;
  }
  .hamburgerWrapper .hamburger .span:nth-child(2) {
    top: 12px;
  }
  .hamburgerWrapper .hamburger .span:nth-child(3) {
    top: 24px;
  }
  .hamburgerWrapper .hamburger.active {
    transition: all 0.3s ease-in-out;
    transition-delay: 0.6s;
    transform: rotate(45deg);
  }
  .hamburgerWrapper .hamburger.active .span:nth-child(2) {
    width: 0px;
  }
  .hamburgerWrapper .hamburger.active .span:nth-child(1),
  .hamburgerWrapper .hamburger.active .span:nth-child(3) {
    transition-delay: 0.3s;
  }
  .hamburgerWrapper .hamburger.active .span:nth-child(1) {
    transform: translateY(16px);
  }
  .hamburgerWrapper .hamburger.active .span:nth-child(3) {
    transform: translateY(-8px) rotate(90deg);
  }
  .hamburgerWrapper .globalMenuSp {
    position: fixed;
    z-index: 3;
    top: -20px;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    text-align: left;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    padding-bottom: 20px;
  }
  @media (min-width: 1000px) {
    .hamburgerWrapper .globalMenuSp {
      width: 40%;
    }
  }
  .hamburgerWrapper .globalMenuSp .navUl {
    margin: 0 auto;
    padding-top: 100px;
    width: 100%;
  }
  .hamburgerWrapper .globalMenuSp .navUl .link {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 45px;
    text-decoration: none;
    border-bottom: 1px solid rgb(225, 225, 225);
  }
  .hamburgerWrapper .globalMenuSp .navUl .link .insta {
    width: 21px;
    height: 21px;
  }
  .hamburgerWrapper .globalMenuSp .navUl .link .p {
    color: white;
  }
  .hamburgerWrapper .globalMenuSp .navUl .link:hover {
    background-color: rgb(155, 20, 7);
  }
  .hamburgerWrapper .globalMenuSp .navUl .link.tel:hover {
    background: transparent;
  }
  .hamburgerWrapper .globalMenuSp.active {
    opacity: 100;
  }

  @media screen and (max-width:1100px) {
    .header .headerInner .right .sp-fix-bnr {
        position: fixed;
        bottom: 0;
        left: 0;
    }
    .header .headerInner .sp-d-contents{
        display: contents;
    }

    .header .headerInner .right .sp-d-none{
        display: none;
    }
  }