.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 1079px) {
  .tab-show {
    display: block;
  }
}

@media screen and (max-width: 1079px) {
  .tab-hide {
    display: none;
  }
}

.c-container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 80px;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-container {
    padding-inline: 60px;
  }
}
@media screen and (max-width: 1079px) {
  .c-container {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .c-container {
    padding-inline: 20px;
  }
}

.c-header {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.08);
          box-shadow: 0px 4px 6px -2px rgba(0, 0, 0, 0.08);
  background: #fff;
  z-index: 9999999999;
}
@media screen and (min-width: 1281px) {
  body:has(.c-breadcrumb--top) .c-header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  body:has(.c-breadcrumb--top) .c-header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header::after {
    position: absolute;
    top: 60px;
    left: 0;
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #e6e6e6;
  }
}
.c-header__inner {
  display: grid;
  grid-template-rows: 60px;
  grid-template-columns: 230px 1fr 230px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  height: 100%;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__inner {
    grid-template-rows: 60px 60px;
    grid-template-columns: auto auto;
  }
  .c-header__inner:not(:has(.c-header__menu)) {
    grid-template-rows: 60px;
  }
}
@media screen and (max-width: 1079px) {
  .c-header__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.c-header--service .c-header__inner {
  grid-template-columns: auto 1fr;
}
.c-header__logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  height: 30px;
}
.c-header__logo-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-size: 16px;
  font-weight: 400;
}
.c-header__logo-txt::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background: #bababa;
}
.c-header__menu {
  height: 100%;
  background: #fff;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__menu {
    grid-column: 1/3;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header--service .c-header__menu {
    grid-column-start: 1;
  }
}
@media screen and (max-width: 1079px) {
  .c-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 70px 40px;
    z-index: 2;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-header__menu {
    padding: 58px 20px 0;
  }
}
.c-header__menu.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.c-header__menu-list {
  display: grid;
  grid-auto-flow: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  height: 100%;
}
@media screen and (max-width: 1079px) {
  .c-header__menu-list {
    display: block;
    height: 100%;
    padding: 0 11px 16px 0;
    overflow-y: auto;
  }
}
.c-header__menu-item {
  height: 100%;
}
@media screen and (max-width: 1079px) {
  .c-header__menu-item {
    height: auto;
    border-bottom: 1px solid #e6e6e6;
  }
}
@media screen and (max-width: 1079px) {
  .c-header__menu-item:last-child {
    padding-top: 24px;
    border-bottom: none;
  }
}
.c-header__menu-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  color: #242323;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-header__menu-link:visited {
  color: #242323;
}
@media screen and (min-width: 1281px) {
  .c-header__menu-link:hover {
    color: #ff0033;
    text-decoration: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__menu-link:hover {
    color: #ff0033;
    text-decoration: none;
  }
}
@media screen and (max-width: 1079px) {
  .c-header__menu-link {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 18px 12px 18px 0;
  }
}
.c-header__menu-begin {
  position: relative;
}
.c-header__menu-begin::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 11px;
  height: 16px;
  background-image: url(https://image.paypay.ne.jp/page/common/images/ico_common_beginner_01.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.c-header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header--service .c-header__right {
    margin-right: 26px;
  }
}
.c-header__cta-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
@media screen and (max-width: 767px) {
  .c-header__cta-block {
    margin-bottom: 19px;
  }
}
.c-header__open {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  position: relative;
  width: 21px;
  height: 18px;
  margin-top: 0;
  margin-left: 29px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 3;
}
@media screen and (max-width: 1079px) {
  .c-header__open {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-header__open {
    margin-left: 20px;
  }
}
.c-header__open span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #242323;
  border-radius: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-header__open span:nth-of-type(1) {
  top: 0;
}
.c-header__open span:nth-of-type(2) {
  top: 8px;
}
.c-header__open span:nth-of-type(3) {
  bottom: 0;
}
.c-header__open.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
.c-header__open.active span:nth-of-type(2) {
  opacity: 0;
}
.c-header__open.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}
.c-header__cta {
  color: #ff0033;
}
.c-header__cta:visited {
  color: #ff0033;
}
.c-header__cta::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  margin-right: 12px;
  background: #bababa;
}
@media screen and (max-width: 1079px) {
  .c-header__cta::before {
    content: none;
  }
}