@charset "utf-8";
.header {
        position: fixed;
    width: 100%;
    top: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
    z-index: 9990;
}
.header__container {
        display: flex;
    justify-content: flex-end;
    padding: 0 clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
}
.header__home {
   position: fixed;
  z-index: 9991;
}
.header__logo {
      width: clamp(5rem, 2.917rem + 4.34vw, 8.125rem);
    height: auto;
      position: fixed;
    top: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
    left: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
    z-index: 9991;
}
.header__right {
      display: flex;
      position: relative;
    right: 70px;
}
.header__btn {
      width: clamp(10rem, 7.083rem + 6.08vw, 14.375rem);
    height: clamp(3.5rem, 2.917rem + 1.22vw, 4.375rem);
    padding: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}
.header__btn:hover {
  opacity: 0.5;
}
.header__btn--red {
  background-color: #9F494A;
}
.header__btn--yellow {
  background-color: #CDA100;
}
.header-btn__text {
      font-size: clamp(0.875rem, 0.708rem + 0.35vw, 1.125rem);
    font-weight: 600;
    transition: all 0.5s;
    color: #000;
}
.sp-header-btn1,
  .sp-header-btn2 {
        display: none;
  }
.header-btn__text--red {
    color: #fff;
}
.header-btn__text--yellow {
    color: #000;
}

.hamBtn {
        max-width: 70px;
    width: 70px;
    cursor: pointer;
    z-index: 9999;
    transition: all .5s;
    background-color: #fff;
    height: clamp(3.5rem, 2.917rem + 1.22vw, 4.375rem);
    display: flex;
    align-items: center;
    justify-content: center;
     position: fixed;
    right: clamp(1.25rem, -1.917rem + 6.6vw, 6rem);
    top: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
}
.hamBar {
        position: relative;
    display: flex;
    flex-direction: column;
    width: 40px;
    height: 20px;
}
.hamBar>div {
        position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: #9F494A;
    transition: .5s;
}
.hamBar>div:nth-child(1) {
  top: 0; 
}
.hamBar>div:nth-child(2) {
  top: 50%;
}
.hamBar>div:nth-child(3) {
  top: 100%;
}
.hamBar.active>div:nth-child(1) {
  top: 8px;
  transform: rotate(-30deg);
}
.hamBar.active>div:nth-child(2) {
  opacity: 0;
}
.hamBar.active>div:nth-child(3) {
  top: 8px;
  transform: rotate(30deg);
}

.sp__menu {
        background-image: url(https://tonkatumiwa.co.jp/system_panel/uploads/images/sp-menu_bg.png);
    background-size: cover;
    background-position: left;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    padding-top: clamp(2.5rem, -2.083rem + 9.55vw, 9.375rem);
    padding-bottom: clamp(2.5rem, -7.5rem + 20.83vw, 17.5rem);
    transform: translateX(100%);
    visibility: hidden;
    transition: .7s;
    z-index: 9995;
    overflow: scroll;
}
.sp-menu__line1 {
      border-top: 8px solid #CDA100;
    position: absolute;
    top: 0;
    width: 100%;
}
.sp-menu__line2 {
      border-top: 8px solid #904142;
    position: absolute;
    top: 8px;
    width: 100%;
}
.sp-menu__line3 {
      border-top: 8px solid #904142;
    position: absolute;
    bottom: 8px;
    width: 100%;
}
.sp-menu__line4 {
      border-top: 8px solid #CDA100;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.sp__menu.active {
    transform: translateY(0%);
    visibility: visible;
    pointer-events: auto;
}
.sp-menu__inner {
  padding: 0 clamp(1.5rem, -4.416rem + 25.24vw, 25.875rem);
}
.sp-menu__container {
      display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.sp-menu__logo {
      width: clamp(5rem, 2.917rem + 4.34vw, 8.125rem);
    height: auto;
}
.sp-menu__items {
      margin-top: clamp(2rem, 1rem + 2.08vw, 3.5rem);
    display: flex;
    flex-direction: column;
    row-gap: clamp(1.25rem, 0.75rem + 1.04vw, 2rem);
}
.sp-menu__item {
      font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
    font-weight: 600;
    transition: all 0.5s;
}
.sp-menu__item:hover {
  opacity:0.5;
  transform: translateX(-0.5em);
}
.sp-menu__copyright {
      margin-top: clamp(2.5rem, 0.833rem + 3.47vw, 5rem);
    font-size: 12px;
    font-weight: 400;
}
.sp-menu__copyright--sp {
  display: none;
    font-size: 12px;
    font-weight: 400;
}
.sp-menu__right {
      display: flex;
    flex-direction: column;
    row-gap: 30px;
}

@media (max-width: 767px) {
  .header {
    top: 0;
  }
  .header__container {
    padding: 0;
  }
  .header__right {
    right: 40px;
  }
  .header__btn {
        height: 40px;
    padding: 9px;
    width: 40px;
  }
  .header-btn__text {
    display: none;
  }
  .sp-header-btn1,
  .sp-header-btn2 {
        display: block;
    width: 22px;
    height: auto;
    object-fit: contain;
  }
  .header__logo {
        width: clamp(4.313rem, 3.601rem + 2.92vw, 5rem);
    position: absolute;
    top: 16px;
    z-index: 10;
  }
  .hamBtn {
        top: 0;
    right: 0;
    height: 40px;
    width: 40px;
  }
  .hamBar {
        height: 16px;
    width: 24px;
  }
  
  .sp-menu__container {
        flex-direction: column;
    align-items: flex-start;
    position: relative;
    row-gap: 40px;
  }
  .sp-menu__copyright {
    display: none;
  }
  .sp-menu__copyright--sp {
    display: block;
  }
}

@media (max-width: 374px) {
   .sp-menu__inner {
      padding: 0 20px;
  }
}