header {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  color: #242323;
  letter-spacing: 0.06em;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.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-btn {
  display: inline-block;
  border-radius: 100vh;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-btn {
    min-width: 240px;
    text-align: center;
  }
}
.c-btn--primary {
  background: #ff0033;
  color: #fff;
}
.c-btn--primary:visited {
  color: #fff;
}
@media screen and (min-width: 1281px) {
  .c-btn--primary:hover {
    background: #fd5c5c;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-btn--primary:hover {
    background: #fd5c5c;
  }
}
.c-btn--primary2 {
  background: #fff;
  color: #ff0033;
  border: 1px solid #ff0033;
}
.c-btn--primary2:visited {
  color: #ff0033;
}
@media screen and (min-width: 1281px) {
  .c-btn--primary2:hover {
    background: #ff0033;
    color: #fff;
    text-decoration: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-btn--primary2:hover {
    background: #ff0033;
    color: #fff;
    text-decoration: none;
  }
}
.c-btn span {
  display: block;
  padding: 12px 24px;
  line-height: 16px;
}

.c-arrow::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 8px;
}
.c-arrow::after {
  -webkit-mask-image: url("https://image.paypay.ne.jp/page/common/images/ico_arrow.svg");
          mask-image: url("https://image.paypay.ne.jp/page/common/images/ico_arrow.svg");
}
.c-arrow--red::after {
  background: #ff0033;
}
.c-arrow--gray::after {
  background: #909090;
}
.c-arrow--down::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.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: 110;
}
@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: 270px 1fr 170px;
  -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%;
}
.c-header__inner:not(:has(.c-header__menu-list):has(.c-header__menu)) {
  grid-template-rows: 60px;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__inner {
    grid-template-rows: 60px 60px;
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 1079px) {
  .c-header__inner {
    grid-template-columns: 3fr 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;
  color: #242323;
  text-decoration: none;
}
.c-header__logo-link:visited {
  color: #242323;
}
@media screen and (min-width: 1281px) {
  .c-header__logo-link:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__logo-link:hover {
    text-decoration: none;
  }
}
.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;
  }
}
.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-right: 11px;
    overflow-y: auto;
  }
  .c-header__menu-list::-webkit-scrollbar {
    width: 4px;
  }
  .c-header__menu-list::-webkit-scrollbar-thumb {
    background-color: #e6e6e6;
    border-radius: 100vh;
  }
}
@media screen and (max-width: 767px) {
  .c-header__menu-list {
    height: calc(100% - 61px);
  }
}
.c-header__menu-item {
  height: 100%;
}
@media screen and (max-width: 1079px) {
  .c-header__menu-item {
    height: auto;
    border-bottom: 1px solid #e6e6e6;
  }
}
.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%;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #242323;
  text-decoration: none;
}
.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;
  }
}
@media screen and (min-width: 1281px) {
  .c-header__menu-link.has-submenu::after {
    width: 6px;
    height: 9px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__menu-link.has-submenu::after {
    width: 6px;
    height: 9px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media screen and (min-width: 1281px) {
  .c-header__menu-link.has-submenu:hover::after {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-header__menu-link.has-submenu:hover::after {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.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;
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
    row-gap: 12px;
  }
}
.c-header__open {
  position: relative;
  display: none;
  width: 21px;
  height: 18px;
  margin-left: 29px;
  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::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  margin-right: 12px;
  background: #bababa;
}

.c-submenu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 60px;
  left: 0;
  background: #fff;
  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);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1281px) {
  .c-submenu {
    border-top: 1px solid #e6e6e6;
  }
  .c-header__menu-item:has(.has-submenu):hover .c-submenu {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-submenu {
    border-top: 1px solid #e6e6e6;
  }
  .c-header__menu-item:has(.has-submenu):hover .c-submenu {
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1079px) {
  .c-submenu {
    top: 0;
    height: 100%;
    padding: 70px 40px;
    z-index: 2;
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
  }
}
@media screen and (max-width: 767px) {
  .c-submenu {
    padding: 58px 20px;
  }
}
.c-submenu.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-submenu {
    top: 120px;
  }
}
.c-submenu__back {
  display: none;
  position: absolute;
  top: 27px;
  left: 40px;
  width: 12px;
  height: 18px;
}
@media screen and (max-width: 1079px) {
  .c-submenu__back {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-submenu__back {
    top: 20px;
    left: 20px;
  }
}
.c-submenu__back img {
  width: 100%;
  height: 100%;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.c-submenu__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 215px);
  row-gap: 32px;
  -webkit-column-gap: 71px;
     -moz-column-gap: 71px;
          column-gap: 71px;
  padding-block: 48px;
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-submenu__list {
    -webkit-column-gap: 112px;
       -moz-column-gap: 112px;
            column-gap: 112px;
  }
}
@media screen and (max-width: 1079px) {
  .c-submenu__list {
    display: block;
    height: 100%;
    padding: 0 11px 0 0;
    overflow-y: auto;
  }
  .c-submenu__list a.c-submenu__link:not(.c-external):after {
    content: none;
  }
}
.c-submenu__item {
  height: auto;
}
@media screen and (max-width: 1079px) {
  .c-submenu__item {
    border-bottom: 1px solid #e6e6e6;
  }
}
.c-submenu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #242323;
}
.c-submenu__link::after {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 3px;
}
.c-submenu__link:visited {
  color: #242323;
}
@media screen and (min-width: 1281px) {
  .c-submenu__link:hover {
    color: #ff0033;
    text-decoration: none;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1280px) {
  .c-submenu__link:hover {
    color: #ff0033;
    text-decoration: none;
  }
}
@media screen and (max-width: 1079px) {
  .c-submenu__link {
    padding: 18px 12px 18px 0;
    font-size: 16px;
  }
}

.c-breadcrumb {
  width: 100%;
  background: #fff;
}
.c-breadcrumb--top {
  -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);
  position: relative;
}
.c-breadcrumb--top::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e6e6e6;
}
@media screen and (max-width: 1079px) {
  .c-breadcrumb--top {
    display: none !important;
  }
}
.c-breadcrumb--bottom {
  border-top: 1px solid #e6e6e6;
}
.c-breadcrumb__inner {
  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;
  padding-block: 12px;
  font-size: 12px;
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c-breadcrumb__item {
  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;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  -webkit-mask-image: url("https://image.paypay.ne.jp/page/common/images/ico_arrow.svg");
          mask-image: url("https://image.paypay.ne.jp/page/common/images/ico_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 10px;
  background: #bababa;
}
.c-breadcrumb__link {
  color: #3895ff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-breadcrumb__link:hover {
  color: #badaff;
}
.c-breadcrumb__link:visited {
  color: #3895ff;
}
.c-breadcrumb__item:last-child .c-breadcrumb__link {
  color: #242323;
}