.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  /*background: #fff;*/
  /*box-shadow: 0px 5px 3px rgba(0,0,0,0.1);*/
  transition: all 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.header.is-scroll .header-wrapper {
  background: #fff;
  box-shadow: 0px 0 10px rgba(0,0,0,0.2);
}
.header-wrapper .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
  margin-left: 20px;
}
.header-wrapper .logo svg {
  width: 230px;
  fill: #fff;
  transition: all 600ms cubic-bezier(0v.165, 0.84, 0.44, 1);
}
.header.is-scroll .header-wrapper .logo svg {
  fill: #35415f;
}
.header__btn {
  background: #fff;
}

.header__btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding: 0 65px 0 45px;
  font-size: 24px;
  background: #b03641;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.header__btn a:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_arr01_pc.png) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 1;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.header__btn a small {
  display: block;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: .01em;
  margin-bottom: 4px;
  white-space: nowrap;
}
.header__btn a span {
  display: block;
  letter-spacing: .05em;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .header-wrapper .logo {
      gap: 10px
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
  }
}


/*********************************/
/*        SP Responsive          */
/*********************************/
@media (max-width: 768px) {
  .header {
    position: absolute;
  }
  .header-wrapper {
    padding: 0;
  }
  .header-wrapper .logo {
    align-items: flex-end;
    height: 55px;
    margin-left: 0;
    padding: 0;
  }
  .header-wrapper .logo svg {
    width: 172.5px;
  }
  .header.is-scroll .header-wrapper .logo svg {
    fill: #fff;
  }
  .header-wrapper img {
    width: 50%;
  }
  .header__btn {
    display: none;
  }
}