@charset "UTF-8";
@import url(https://cdn.jsdelivr.net/npm/destyle.css@4.0.1/destyle.min.css);
html {
  font-size: 62.5%;
}

.is-sps {
  display: none;
}
@media screen and (max-width: 520px) {
  .is-sps {
    display: block !important;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block !important;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.is-spLarge {
  display: none;
}
@media screen and (max-width: 1024px) {
  .is-spLarge {
    display: block;
  }
}

.is-pcLarge {
  display: block;
}
@media screen and (max-width: 1024px) {
  .is-pcLarge {
    display: none !important;
  }
}

:root {
  --color-white: #fff;
  --color-black: #222222;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-Outfit: "Outfit", sans-serif;
}

img {
  width: 100%;
  vertical-align: top;
}

body {
  font-family: var(--font-noto);
  font-size: 1.6rem;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* l-header
---------------------------------------------------------------------*/
.l-headerPC {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 72px;
  background-color: transparent;
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.4));
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .l-headerPC {
    display: none;
  }
}

.l-headerPC.is-on-white {
  background-color: var(--color-white);
  -webkit-filter: none;
          filter: none;
}

.l-headerPC__inner {
  width: 100%;
  height: inherit;
  padding-inline: 40px;
}
@media screen and (max-width: 1280px) {
  .l-headerPC__inner {
    padding-inline: 28px;
  }
}

.l-headerSP {
  display: none;
}
@media screen and (max-width: 1500px) {
  .l-headerSP {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: block;
    width: 100%;
    height: 59px;
    background-color: transparent;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}

.l-headerSP.is-on-white,
.l-headerSP.is-menu-open {
  background-color: var(--color-white);
}

.l-headerSP__inner {
  width: 100%;
  height: inherit;
  padding-inline: 20px;
}

.l-main {
  margin-top: -72px;
}
@media screen and (max-width: 1500px) {
  .l-main {
    margin-top: 0;
  }
}

/* l-footer
---------------------------------------------------------------------*/
.l-footer {
  width: 100%;
}

/* c-gradientButton
---------------------------------------------------------------------*/
.c-gradientButton {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: transparent;
  -webkit-transition: color 0.3s ease, outline-color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, outline-color 0.3s ease, opacity 0.3s ease;
}

.c-gradientButton::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.c-gradientButton:hover {
  outline-color: transparent;
}

.c-gradientButton:hover::before {
  opacity: 1;
}

/* p-header
---------------------------------------------------------------------*/
.p-headerPC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  height: inherit;
  color: var(--color-white);
  font-weight: 700;
  border-bottom: 1px solid var(--color-white);
}

.l-headerPC.is-on-white .p-headerPC {
  color: #087acc;
  border-bottom-color: var(--color-white);
}

.p-headerPC__brand {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.p-headerPC__logoLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 20px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-headerPC__logoLink:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1024px) {
  .p-headerPC__logoLink {
    gap: 14px;
  }
}

.p-headerPC__logo {
  max-width: clamp(210px, 20vw, 385px);
}

.p-headerPC__siteName {
  color: var(--color-white);
  font-size: clamp(1.3rem, 0.8vw, 1.6rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
}

.l-headerPC.is-on-white .p-headerPC__siteName {
  color: #087acc;
}

.p-headerPC__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
  min-width: 0;
  height: inherit;
}
@media screen and (max-width: 1280px) {
  .p-headerPC__nav {
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .p-headerPC__nav {
    gap: 12px;
  }
}

.p-headerPC__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  height: inherit;
}
@media screen and (max-width: 1280px) {
  .p-headerPC__navList {
    gap: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .p-headerPC__navList {
    gap: 10px;
  }
}

.p-headerPC__navItem {
  height: inherit;
}

.p-headerPC__navLink {
  display: grid;
  place-items: center;
  height: inherit;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-headerPC__navLink:hover {
  opacity: 0.75;
}
@media screen and (max-width: 1280px) {
  .p-headerPC__navLink {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-headerPC__navLink {
    font-size: 1.1rem;
  }
}

.l-headerPC.is-on-white .p-headerPC__navLink {
  color: #087acc;
}

.p-headerPC__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 1280px) {
  .p-headerPC__buttons {
    gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .p-headerPC__buttons {
    gap: 6px;
  }
}

.p-headerPC__button {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 28px;
  padding: 4px 20px;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  outline: 1px solid var(--color-white);
  border-radius: 8px;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1024px) {
  .p-headerPC__button {
    padding-inline: 8px;
    font-size: 1.1rem;
  }
}

.l-headerPC.is-on-white .p-headerPC__button {
  color: #087acc;
  outline-color: #087acc;
  text-shadow: none;
}

.l-headerPC.is-on-white .p-headerPC__button:hover {
  color: var(--color-white);
  outline: 0;
}

.p-headerSP {
  padding-top: 10px;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
}

.l-headerSP.is-on-white .p-headerSP,
.l-headerSP.is-menu-open .p-headerSP {
  color: #087acc;
  border-bottom: 1px solid var(--color-white);
}

.p-headerSP__brand {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.p-headerSP__logoLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}

.p-headerSP__logo {
  width: clamp(257px, 25vw, 280px);
}

.p-headerSP__siteName {
  color: currentColor;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-headerSP__menuButton {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 26px;
  padding: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  background-color: var(--color-white);
  color: currentColor;
}

.l-headerSP.is-on-white .p-headerSP__menuButton,
.l-headerSP.is-menu-open .p-headerSP__menuButton {
  border-color: #00387e;
}

.p-headerSP__menuLines {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  width: 24px;
}

.p-headerSP__menuLines span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

.p-headerSP__menuLines span:nth-child(2) {
  height: 4px;
}

.p-headerSP__menuLines span:nth-child(3) {
  display: none;
}

.l-headerSP.is-menu-open .p-headerSP__menuLines span:nth-child(1) {
  -webkit-transform: translateY(3px) rotate(30deg);
          transform: translateY(3px) rotate(30deg);
}

.l-headerSP.is-menu-open .p-headerSP__menuLines span:nth-child(2) {
  height: 2px;
  -webkit-transform: translateY(-3px) rotate(-30deg);
          transform: translateY(-3px) rotate(-30deg);
}

.l-headerSP.is-menu-open .p-headerSP__menuLines span:nth-child(3) {
  opacity: 0;
}

.p-headerSP__drawer {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  -ms-flex-line-pack: start;
      align-content: start;
  overflow-y: auto;
  padding: 100px 20px 0;
  background-color: rgba(255, 255, 255, 0.98);
  color: #087acc;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}

.l-headerSP.is-menu-open .p-headerSP__drawer {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.p-headerSP__navList {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 335px;
  margin-inline: auto;
}

.p-headerSP__navItem {
  border-bottom: 1px solid #00387e;
}

.p-headerSP__navLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 48px;
  padding-block: 4px;
  border: 0;
  background: transparent;
  color: #087acc;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}

.p-headerSP__navLink::before {
  content: "→";
  display: grid;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  font-family: var(--font-Outfit);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.p-headerSP__navLink--hasChild::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  aspect-ratio: 1;
  margin-left: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#087acc), to(#087acc)) center/12px 2px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#087acc), to(#087acc)) center/2px 12px no-repeat;
  background: linear-gradient(#087acc, #087acc) center/12px 2px no-repeat, linear-gradient(#087acc, #087acc) center/2px 12px no-repeat;
  -webkit-transition: background-size 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-size 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-size 0.25s ease, transform 0.25s ease;
  transition: background-size 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}

.p-headerSP__navLink--hasChild[aria-expanded=true]::after {
  background-size: 12px 2px, 2px 0;
}

.p-headerSP__subMenu {
  border-top: 1px solid #00387e;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  -webkit-transition: max-height 0.35s ease, opacity 0.25s ease;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.p-headerSP__subMenu.is-open {
  max-height: 528px;
  opacity: 1;
}

.p-headerSP__subList {
  display: grid;
}

.p-headerSP__subLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  min-height: 48px;
  border-bottom: 1px solid #00387e;
  color: #087acc;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.45;
}

.p-headerSP__subLink::before {
  content: "";
  width: 4px;
  height: 7px;
  margin-inline: 18px;
  background-color: #087acc;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.p-headerSP__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 335px;
  margin: 40px auto 0;
}

.p-headerSP__button {
  display: grid;
  place-items: center;
  width: calc((100% - 20px) / 2);
  min-height: 25px;
  padding: 4px 20px;
  background-color: var(--color-white);
  outline: 1px solid var(--color-black);
  border-radius: 8px;
  color: var(--color-black);
  font-family: var(--font-noto);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2142857143;
  text-align: center;
  text-decoration: none;
}

.p-headerSP__entry {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: calc(100% + 40px);
  min-height: 80px;
  margin: 20px -20px 0;
  padding: 10px 14px;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
  text-decoration: none;
}

.p-headerSP__entryTrack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-headerSP__entryButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 8px 8px 8px 18px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
}

.p-headerSP__entryText {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}

.p-headerSP__entryCircle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 43px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 50%;
  background: url("../images/common/icon-footerarrow.svg") center/contain no-repeat;
}

@media screen and (max-width: 374px) {
  .p-headerSP__entry {
    padding-inline: 8px;
  }
  .p-headerSP__entryTrack {
    gap: 8px;
  }
  .p-headerSP__entryButton {
    gap: 8px;
    padding: 8px 8px 8px 14px;
  }
  .p-headerSP__entryText {
    font-size: 1.2rem;
  }
  .p-headerSP__entryCircle {
    width: 34px;
  }
}
.p-headerSP__copyright {
  width: 100%;
  max-width: 335px;
  margin: 20px auto 0;
  padding-block: 10px;
  color: var(--color-black);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

body.is-spMenuOpen {
  overflow: hidden;
}

/* p-footer
---------------------------------------------------------------------*/
.p-footer {
  min-height: 404px;
  background-color: #f5f6f4;
  color: #000000;
}

.p-footerEntry {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 34px 20px;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .p-footerEntry {
    min-height: 90px;
    padding: 10px 14px;
  }
}

.p-footerEntry__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 1280px) {
  .p-footerEntry__track {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-footerEntry__track {
    gap: 10px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.p-footerEntry__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 20px 20px 20px 40px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-footerEntry__button:hover {
    background-color: var(--color-white);
  }
  .p-footerEntry__button:hover .p-footerEntry__text {
    color: #00387e;
  }
  .p-footerEntry__button:hover .p-footerEntry__circle {
    border-color: #00387e;
  }
}
@media screen and (max-width: 1280px) {
  .p-footerEntry__button {
    gap: 14px;
    padding: 14px 14px 14px 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-footerEntry__button {
    gap: 10px;
    padding: 8px 8px 8px 18px;
  }
}

.p-footerEntry__text {
  color: var(--color-white);
  font-size: clamp(1.4rem, 2vw, 2.8rem);
  font-weight: 500;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-footerEntry__text {
    font-weight: 700;
  }
}

.p-footerEntry__circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 64px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 50%;
  background: url("../images/common/icon-footerarrow.svg") center/contain no-repeat;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .p-footerEntry__circle {
    width: 48px;
  }
}
@media screen and (max-width: 767px) {
  .p-footerEntry__circle {
    width: 43px;
  }
}

@media screen and (max-width: 374px) {
  .p-footerEntry {
    padding-inline: 8px;
  }
  .p-footerEntry__track {
    gap: 8px;
  }
}
.p-footer__inner {
  max-width: 1920px;
  margin-inline: auto;
  padding: 96px 40px 0;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 20px 20px 0;
  }
}

.p-footer__main {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .p-footer__main {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
}

.p-footer__brand {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 520px) {
  .p-footer__brand {
    display: grid;
    justify-items: start;
  }
}

.p-footer__logo {
  max-width: 578px;
  width: clamp(335px, 40vw, 578px);
}

.p-footer__siteName {
  font-size: clamp(1.6rem, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.p-footer__message {
  margin-top: 36px;
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(1.3rem, 2.2vw, 3.6rem);
  line-height: 1.89;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-footer__message {
    margin-top: 40px;
  }
}

.p-footer__nav {
  display: grid;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  grid-template-columns: 98px auto;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: none;
  }
}

.p-footer__primaryNav {
  display: grid;
  gap: clamp(2rem, 2vw, 4rem);
}

.p-footer__primaryNav a,
.p-footer__jobTitle {
  color: inherit;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-footer__primaryNav a:hover,
.p-footer__jobTitle:hover {
  opacity: 0.75;
}

.p-footer__jobTitle {
  display: inline-block;
}

.p-footer__buttons {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}
.p-footer__buttons.is-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .p-footer__buttons.is-sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__buttons.is-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .p-footer__buttons {
    margin-left: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__buttons {
    width: auto;
    margin-inline: auto;
  }
}
@media screen and (max-width: 520px) {
  .p-footer__buttons {
    gap: 16px;
  }
}

.p-footer__button {
  display: grid;
  place-items: center;
  width: auto;
  padding: 6px 20px 7px;
  outline: 1px solid #000000;
  border-radius: 8px;
  color: inherit;
  font-family: var(--font-Outfit);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-footer__button:hover {
    color: var(--color-white);
  }
}

.p-footer__copyright {
  padding: 20px;
  font-size: 1.2rem;
  text-align: center;
}

.p-footer__image {
  margin-top: 8px;
}

/* p-title   ----------------------------------------------------------------------------
*/
.p-title {
  padding: 5.6rem 4.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border-radius: 0 0 28px 28px;
  background-color: var(--white);
}
@media screen and (max-width: 600px) {
  .p-title {
    border-radius: 0 0 16px 16px;
    padding: 20px;
  }
}

.p-title__icon i {
  font-size: clamp(20px, 3.6vw, 3.2rem);
  color: var(--main);
}

.p-title__text {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.05em;
  font-family: var(--font-zen-maru);
}

/* p-sectionTitle   ----------------------------------------------------------------------------
*/
.p-sectionTitle {
  display: grid;
  gap: 8px;
}

.p-sectionTitle__en {
  font-family: var(--font-Outfit);
  font-size: clamp(3.2rem, 4.27vw, 6.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-sectionTitle__ja {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

.p-sectionTitle__ja--lineheight {
  line-height: 1.5;
}

.p-sectionTitle--gradient .p-sectionTitle__en {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* p-topMv  ----------------------------------------------------------------------------
*/
.p-topMv {
  --top-mv-diagonal-offset: max(340px, 50svh);
  min-height: 680px;
  min-height: max(680px, 100vh);
  min-height: max(680px, 100svh);
}
@media screen and (max-width: 1024px) {
  .p-topMv {
    min-height: 100vh;
    min-height: 100svh;
  }
}

.p-topMv__inner,
.p-topMv__contents {
  min-height: inherit;
}

.p-topMv__contents {
  position: relative;
}

.p-topMv__contents::before,
.p-topMv__contents::after {
  content: "";
  position: absolute;
  z-index: 3;
  width: clamp(160px, 30vw, 500px);
  aspect-ratio: 1;
}

.p-topMv__contents::before {
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#2175f4), to(#13448e));
  background: linear-gradient(90deg, #2175f4 0%, #13448e 100%);
  mix-blend-mode: multiply;
  backdrop-filter: blur(8px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.p-topMv__contents::after {
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(#2175f4), to(#13448e));
  background: linear-gradient(90deg, #2175f4 0%, #13448e 100%);
  mix-blend-mode: multiply;
  backdrop-filter: blur(8px);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.p-topMv__content {
  position: relative;
  min-height: inherit;
}

.p-topMv__image {
  position: absolute;
  inset: 0;
}

.p-topMv__image--left {
  z-index: 1;
  clip-path: polygon(0 0, calc(50% + var(--top-mv-diagonal-offset)) 0, calc(50% - var(--top-mv-diagonal-offset)) 100%, 0% 100%);
}
@media screen and (max-width: 1024px) {
  .p-topMv__image--left {
    --top-mv-diagonal-offset: 50svw;
    clip-path: polygon(0 0, 100% 0, 100% calc(50% - var(--top-mv-diagonal-offset)), 0 calc(50% + var(--top-mv-diagonal-offset)));
  }
}

.p-topMv__image--left picture,
.p-topMv__image--right picture {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
  opacity: 0;
  overflow: hidden;
}

.p-topMv__image--left picture.is-active,
.p-topMv__image--right picture.is-active {
  z-index: 2;
  opacity: 1;
}

.p-topMv__image--left picture.is-next,
.p-topMv__image--right picture.is-next {
  z-index: 1;
  opacity: 1;
}

.p-topMv__image--left picture.is-leave,
.p-topMv__image--right picture.is-leave {
  z-index: 3;
  opacity: 1;
}

.p-topMv__image--left picture.is-leave {
  -webkit-animation: topMvLeftCoverDown 1.35s cubic-bezier(0.83, 0, 0.17, 1) both;
          animation: topMvLeftCoverDown 1.35s cubic-bezier(0.83, 0, 0.17, 1) both;
}

.p-topMv__image img,
.p-topMv__image--left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-topMv__image--right {
  z-index: 0;
}

.p-topMv__image--right picture.is-leave {
  -webkit-animation: topMvRightCoverUp 1.35s cubic-bezier(0.83, 0, 0.17, 1) both;
          animation: topMvRightCoverUp 1.35s cubic-bezier(0.83, 0, 0.17, 1) both;
}

.p-topMv__body {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 3vw, 40px);
  bottom: 0;
  color: var(--color-white);
  display: grid;
  justify-items: start;
  gap: clamp(15px, 3vw, 40px);
}
@media screen and (max-width: 1024px) {
  .p-topMv__body {
    bottom: 84px;
  }
}

.p-topMv__text {
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 520px) {
  .p-topMv__text {
    gap: 18px;
  }
}

.p-topMv__lead {
  font-weight: 500;
  line-height: 1.38;
  font-size: clamp(2.8rem, 4vw, 72px);
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.4);
}

.p-topMv__leadEn {
  font-size: clamp(1.4rem, 3vw, 32px);
  font-weight: 500;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.4);
}

.p-topMv__scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1024px) {
  .p-topMv__scroll {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.p-topMv__scrollLine {
  position: relative;
  display: block;
  width: 1px;
  height: 226px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .p-topMv__scrollLine {
    height: clamp(48px, 8vw, 120px);
  }
}

.p-topMv__scrollLine::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: topHeroScrollLine 4s cubic-bezier(0.76, 0, 0.24, 1) infinite;
          animation: topHeroScrollLine 4s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.p-topMv__scrollText {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: var(--font-Outfit);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media (prefers-reduced-motion: reduce) {
  .p-topMv__scrollLine::before {
    -webkit-animation: none;
            animation: none;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
.p-topMvEntry {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  overflow: hidden;
  display: none;
  place-items: center;
  min-height: 80px;
  padding: 10px 14px;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .p-topMvEntry {
    display: grid;
  }
}

.p-topMvEntry.is-hidden {
  display: none !important;
}

.p-topMvEntry__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.p-topMvEntry__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 8px 8px 8px 18px;
  border: 2px solid var(--color-white);
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-topMvEntry__button:hover {
    background-color: var(--color-white);
  }
  .p-topMvEntry__button:hover .p-topMvEntry__text {
    color: #00387e;
  }
  .p-topMvEntry__button:hover .p-topMvEntry__circle {
    border-color: #00387e;
  }
}

.p-topMvEntry__text {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-topMvEntry__circle {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 43px;
  aspect-ratio: 1;
  border: 2px solid transparent;
  border-radius: 50%;
  background: url("../images/common/icon-footerarrow.svg") center/contain no-repeat;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

@media screen and (max-width: 374px) {
  .p-topMvEntry {
    padding-inline: 8px;
  }
  .p-topMvEntry__track {
    gap: 8px;
  }
  .p-topMvEntry__button {
    gap: 8px;
    padding: 8px 8px 8px 14px;
  }
  .p-topMvEntry__text {
    font-size: 1.2rem;
  }
  .p-topMvEntry__circle {
    width: 34px;
  }
}
@-webkit-keyframes topHeroScrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  48% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@keyframes topHeroScrollLine {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  48% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  49% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}
@-webkit-keyframes topMvLeftCoverDown {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}
@keyframes topMvLeftCoverDown {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}
@-webkit-keyframes topMvRightCoverUp {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes topMvRightCoverUp {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
/* p-topSectionHeading  ----------------------------------------------------------------------------
*/
.p-topSectionHeading {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 739px);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1024px) {
  .p-topSectionHeading {
    grid-template-columns: 1fr;
    gap: 17px;
  }
}

.p-topSectionHeading--large {
  grid-template-columns: minmax(260px, 440px) minmax(0, 780px);
}
@media screen and (max-width: 1024px) {
  .p-topSectionHeading--large {
    grid-template-columns: 1fr;
  }
}

.p-topSectionHeading--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-topSectionHeading--white {
  color: var(--color-white);
}

.p-topSectionHeading__lead {
  font-size: clamp(1.6rem, 1.33vw, 2rem);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-topSectionHeading__lead {
    line-height: 1.75;
  }
}

@media screen and (max-width: 767px) {
  .p-topSectionHeading__lead--wide {
    line-height: 2.5;
  }
}

.p-topSectionHeading__lead--large {
  font-size: clamp(1.6rem, 2.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2777777778;
}

/* p-topConcept  ----------------------------------------------------------------------------
*/
.p-topConcept {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
  padding-block: clamp(48px, 9vw, 96px);
}

.p-topConcept__inner {
  max-width: 1550px;
  margin-inline: auto;
  padding-inline: clamp(20px, 2vw, 25px);
}

.p-topConcept__message {
  font-weight: 500;
}

.p-topConcept__panel {
  position: relative;
  min-height: 600px;
  aspect-ratio: 1500/600;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: clamp(42px, 8vw, 80px);
  padding: 40px;
  border-radius: 16px;
  background-image: url("../images/top/concept-city.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-topConcept__panel {
    padding: 20px 16px;
  }
}
@media screen and (max-width: 520px) {
  .p-topConcept__panel {
    min-height: 338px;
    background-image: url("../images/top/concept-city-sp.webp");
    aspect-ratio: 335/338;
  }
}

.p-topConcept__message {
  max-width: 750px;
  font-size: clamp(1.6rem, 1.33vw, 2rem);
  line-height: 2;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 600px) {
  .p-topConcept__message {
    line-height: 1.75;
  }
}

/* p-topJobs  ----------------------------------------------------------------------------
*/
.p-topJobs {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
}

.p-topJobs__intro {
  display: grid;
  grid-template-columns: 600px auto;
  gap: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 1540px;
  margin-inline: auto;
  padding: 0 20px 0;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__intro {
    grid-template-columns: 1fr;
    padding-top: 38px;
    justify-items: center;
  }
}

.p-topJobs__visual {
  position: relative;
  height: clamp(620px, 64vw, 1232px);
  min-height: 0;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__visual {
    height: 620px;
    max-width: 600px;
    margin-inline: auto;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .p-topJobs__visual {
    height: 440px;
  }
}

.p-topJobs__building,
.p-topJobs__floors {
  position: absolute;
  left: 50%;
  display: block;
  width: min(100%, 600px);
  height: auto;
  will-change: transform, opacity;
}

.p-topJobs__building {
  top: 0;
  z-index: 3;
  -webkit-filter: drop-shadow(0 28px 36px rgba(0, 25, 95, 0.28));
          filter: drop-shadow(0 28px 36px rgba(0, 25, 95, 0.28));
}

.p-topJobs__floors {
  top: 0;
  z-index: 2;
}

.p-topJobs__heading {
  display: grid;
  gap: 40px;
  padding-top: 120px;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__heading {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    padding-top: 0;
    margin-right: auto;
    gap: 27px;
  }
}

.p-topJobs__lead {
  display: grid;
  gap: 32px;
  font-size: clamp(1.6rem, 1.33vw, 2rem);
  font-weight: 700;
  line-height: 2;
}

.p-topJobs__catch {
  margin: 0;
  font-size: clamp(2.4rem, 2.13vw, 3.6rem);
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__catch {
    line-height: 1.25;
  }
}

.p-topJobs__body {
  display: grid;
  grid-template-columns: minmax(0, 724px) minmax(0, 696px);
  gap: 80px;
  max-width: 1540px;
  margin-top: var(--top-jobs-body-overlap, 0px);
  margin-inline: auto;
  padding: 0px 20px 96px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__body {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 120px;
    padding: 0px 0px 36px 0px;
  }
}
@media (max-width: 400px) {
  .p-topJobs__body {
    margin-top: 0px;
  }
}

.p-topJobs__diagram {
  position: relative;
  align-self: start;
  min-height: calc(100vh - 192px);
  min-height: calc(100svh - 192px);
  display: grid;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__diagram {
    min-height: auto;
    place-items: center;
  }
}

.p-topJobs__diagramImage {
  display: block;
  width: 100%;
  max-height: calc(100vh - 80px);
  max-height: calc(100svh - 80px);
  min-height: 680px;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.28s ease;
  transition: opacity 0.28s ease;
  aspect-ratio: 724/1076;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__diagramImage {
    width: calc(100% - 40px);
    max-width: 600px;
    max-height: none;
    min-height: 0;
    aspect-ratio: 335/536;
  }
}

.p-topJobs__diagramImage.is-changing {
  opacity: 0;
}

.p-topJobs__panel {
  padding: 96px 48px;
  border-radius: 16px;
  background-color: var(--color-white);
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__panel {
    max-width: 600px;
    margin-inline: auto;
    padding: 12px 12px 0 12px;
    border-radius: 12px;
  }
}

.p-topJobs__panel .splide__track {
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__panel .splide__track {
    overflow: hidden;
  }
}

.js-jobsSpSlider .splide__pagination {
  display: none;
}

.p-topJobs__bar {
  --top-jobs-bar-x: 0px;
  position: relative;
  width: 100%;
  height: 28px;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
}
.p-topJobs__bar.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.p-topJobs__bar::before, .p-topJobs__bar::after {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  border-radius: 999px;
}
.p-topJobs__bar::before {
  width: 100%;
  height: 4px;
  background-color: #dfdfdf;
}
.p-topJobs__bar::after {
  width: 32px;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-transform: translate(var(--top-jobs-bar-x), -2px);
          transform: translate(var(--top-jobs-bar-x), -2px);
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
  will-change: transform;
}

.p-topJobs__list {
  display: grid;
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
}

.p-topJobs__item {
  position: relative;
}

.p-topJobs__item::before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -16px;
  z-index: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #f1f3f7;
}

.p-topJobs__panel--sp .p-topJobs__item {
  padding: 0 16px 16px 0;
}
@media screen and (max-width: 1024px) {
  .p-topJobs__panel--sp .p-topJobs__item {
    padding: 0 8px 8px 0;
  }
}

.p-topJobs__panel--sp .p-topJobs__item::before {
  right: 0;
  bottom: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
}

.p-topJobs__link {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  max-height: 200px;
  border-radius: 12px;
  color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .p-topJobs__link {
    max-height: 90px;
    border-radius: 8px;
  }
}

.p-topJobs__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.34)), color-stop(42%, rgba(0, 56, 126, 0.22)), color-stop(76%, rgba(0, 104, 183, 0.72)), to(rgba(0, 141, 217, 0.96)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 56, 126, 0.22) 42%, rgba(0, 104, 183, 0.72) 76%, rgba(0, 141, 217, 0.96) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-topJobs__link::after {
  content: "";
  display: none;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: var(--color-white) url("../images/top/jobs-icon-arrow.svg") center/12px 6px no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: background 0.3s ease, border-color 0.3s ease;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.p-topJobs__link img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-topJobs__link span {
  position: absolute;
  z-index: 2;
  left: 32px;
  top: 50%;
  font-size: clamp(1.6rem, 1.33vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (min-width: 1025px) {
  .p-topJobs__link:hover::before {
    opacity: 1;
  }
}

body.is-restoring-page .p-topJobs__link:hover::before {
  opacity: 0;
}

@media screen and (min-width: 1025px) {
  .p-topJobs__item.is-active .p-topJobs__link::before {
    opacity: 1;
  }
}

.p-topJobs__link:hover::after,
.p-topJobs__item.is-active .p-topJobs__link::after {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.16) url("data:image/svg+xml,%3Csvg width='12' height='6' viewBox='0 0 12 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.40912 1.91014H0.321428C0.143919 1.91014 0 2.05653 0 2.23709V3.76288C0 3.94344 0.143919 4.08984 0.321428 4.08984H8.40912V5.34477C8.40912 5.92735 9.10156 6.2191 9.50655 5.80717L11.8117 3.46238C12.0628 3.207 12.0628 2.79297 11.8117 2.53762L9.50655 0.192833C9.10158 -0.219102 8.40912 0.0726505 8.40912 0.65523V1.91014Z' fill='white'/%3E%3C/svg%3E") center/12px 6px no-repeat;
}

body.is-restoring-page .p-topJobs__link:hover::after {
  border-color: transparent;
  background: var(--color-white) url("../images/top/jobs-icon-arrow.svg") center/12px 6px no-repeat;
}

@media screen and (max-width: 1024px) {
  .p-topJobs__item.is-active .p-topJobs__link::after {
    border-color: transparent;
    background: var(--color-white) url("../images/top/jobs-icon-arrow.svg") center/12px 6px no-repeat;
  }
}

/* p-topSupportCareer  ----------------------------------------------------------------------------
*/
.p-topSupportCareer {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
}

.p-topSupportCareer__inner {
  max-width: 1540px;
  margin-inline: auto;
  padding: 96px 20px 44px;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__inner {
    padding-block: 46px 12px;
  }
}

.p-topSupportCareer__sticky {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
  padding: 64px 20px 96px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__sticky {
    padding: 40px 20px 84px;
  }
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__sticky {
    padding: 40px 0px 84px;
  }
}

.p-topSupportCareer__dots {
  position: absolute;
  top: 0;
  right: max(20px, 50vw - 750px);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
  height: 24px;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__dots {
    display: none;
  }
}

.p-topSupportCareer__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background-color: var(--color-white);
  -webkit-transition: height 0.2s ease;
  transition: height 0.2s ease;
}
.p-topSupportCareer__dot.is-active {
  height: 24px;
}

.p-topSupportCareer__bar {
  --support-career-bar-x: 0px;
  position: absolute;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: 0;
    left: 50%;
    width: calc(100% - 40px);
    height: 44px;
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-topSupportCareer__bar::before, .p-topSupportCareer__bar::after {
    position: absolute;
    top: 20px;
    left: 0;
    content: "";
    border-radius: 999px;
  }
  .p-topSupportCareer__bar::before {
    width: 100%;
    height: 4px;
    background-color: #dfdfdf;
  }
  .p-topSupportCareer__bar::after {
    width: 32px;
    height: 8px;
    background: var(--color-white);
    -webkit-transform: translate(var(--support-career-bar-x), -2px);
            transform: translate(var(--support-career-bar-x), -2px);
    -webkit-transition: -webkit-transform 0.1s linear;
    transition: -webkit-transform 0.1s linear;
    transition: transform 0.1s linear;
    transition: transform 0.1s linear, -webkit-transform 0.1s linear;
    will-change: transform;
  }
}

.p-topSupportCareer__barItem {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  width: auto;
  height: 44px;
}

.p-topSupportCareer__viewport {
  width: 100%;
  overflow: visible;
}

.p-topSupportCareer__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 96px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-inline: max(0px, 50vw - 770px);
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__track {
    gap: 32px;
    padding-inline: 0;
  }
}

.p-topSupportCareer__slide {
  --support-career-slide-width: 1500px;
  --support-career-slide-height: clamp(650px, calc((100vw - 40px) / 2), 750px);
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--support-career-slide-width);
          flex: 0 0 var(--support-career-slide-width);
  width: var(--support-career-slide-width);
  min-height: var(--support-career-slide-height);
  border-radius: 16px;
  background-color: var(--color-white);
  color: var(--color-black);
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__slide {
    --support-career-slide-width: var(--support-career-slide-width-sp, calc(100vw - 40px));
    width: var(--support-career-slide-width);
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide {
    --support-career-slide-width: 375px;
    height: auto;
    max-height: none;
  }
}

.p-topSupportCareer__slide--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--split {
    grid-template-columns: 1fr;
  }
}

.p-topSupportCareer__content,
.p-topSupportCareer__slide--program {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__content,
  .p-topSupportCareer__slide--program {
    padding: clamp(16px, 3vw, 32px);
  }
}

@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--program .p-topSupportCareer__title {
    line-height: 1.2;
  }
}

.p-topSupportCareer__content {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: var(--support-career-slide-height);
  -ms-flex-line-pack: start;
      align-content: start;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__content {
    height: auto;
    min-height: auto;
    gap: 12px;
    position: relative;
    z-index: 2;
  }
}

.p-topSupportCareer__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--font-Outfit);
  font-size: clamp(2rem, 2.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.25;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-topSupportCareer__body {
  display: grid;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__body {
    gap: 12px;
  }
}

.p-topSupportCareer__title {
  font-size: clamp(1.6rem, 2.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1111111111;
}

.p-topSupportCareer__text {
  font-size: clamp(1.4rem, 1.33vw, 2rem);
  font-weight: 500;
  line-height: 1.6;
}

.p-topSupportCareer__place {
  -ms-flex-item-align: end;
      align-self: end;
  color: #b9b9b9;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 2;
  text-align: right;
}

.p-topSupportCareer__images picture,
.p-topSupportCareer__images img,
.p-topSupportCareer__imageSingle img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-topSupportCareer__images picture {
  display: block;
}

.p-topSupportCareer__images img {
  min-height: 0;
  aspect-ratio: 750/375;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__images img {
    aspect-ratio: initial;
  }
}

.p-topSupportCareer__imageSingle {
  display: grid;
  place-items: center;
  min-height: var(--support-career-slide-height);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__imageSingle {
    min-height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transform: translateY(-16px);
            transform: translateY(-16px);
    padding-bottom: 16px;
  }
}

.p-topSupportCareer__imageSingle img {
  max-width: 710px;
  aspect-ratio: 710/474;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--rotation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    max-height: none;
  }
}

@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--rotation .p-topSupportCareer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 16px 16px 0;
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--rotation .p-topSupportCareer__imageSingle {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    padding: 0;
    background-color: var(--color-white);
  }
}

@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--rotation .p-topSupportCareer__imageSingle img {
    max-width: 160px;
  }
}

.p-topSupportCareer__slide--program {
  display: grid;
  gap: 40px;
  -ms-flex-line-pack: start;
      align-content: start;
  min-height: var(--support-career-slide-height);
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__slide--program {
    min-height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__slide--program {
    --support-career-slide-width: 375px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    max-height: none;
    padding: 16px;
    gap: 8px;
  }
}

.p-topSupportCareer__programBox {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  margin-top: auto;
  padding: 40px;
  border: 3px solid #00387e;
  border-radius: 24px;
}
@media screen and (max-width: 1024px) {
  .p-topSupportCareer__programBox {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 100%;
    min-height: 0;
    margin-top: 6px;
    padding: 16px;
    border-width: 3px;
    border-radius: 24px;
  }
}

.p-topSupportCareer__programList {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programList {
    gap: 10px;
  }
}

.p-topSupportCareer__programItem {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programItem {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.p-topSupportCareer__programIcon {
  display: grid;
  place-items: center;
  width: 100px;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programIcon {
    width: 40px;
  }
}

.p-topSupportCareer__programIcon img {
  width: 100%;
  height: auto;
}

.p-topSupportCareer__programText {
  display: grid;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programText {
    gap: 0px;
  }
}

.p-topSupportCareer__programTitle {
  font-size: clamp(2rem, 1.73vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5384615385;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programTitle {
    font-size: 1.6rem;
    line-height: 1.25;
    white-space: nowrap;
  }
}

.p-topSupportCareer__programLead {
  font-size: clamp(1.4rem, 1.33vw, 2rem);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-topSupportCareer__programLead {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

/* p-topData  ----------------------------------------------------------------------------
*/
.p-topData {
  background-color: var(--color-white);
}

.p-topDataTop img {
  aspect-ratio: 1920/92;
  width: 100%;
  height: 92px;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-topData__inner {
  max-width: 1540px;
  margin-inline: auto;
  padding: 96px 20px;
}
@media screen and (max-width: 1024px) {
  .p-topData__inner {
    padding-block: 100px 0;
  }
}

.p-topData__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .p-topData__grid {
    grid-template-columns: repeat(4, 335px);
    gap: 24px;
    padding: 10px 12px 12px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: -webkit-grab;
    cursor: grab;
  }
}

.p-topData__grid.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-topData__grid::-webkit-scrollbar {
  display: none;
}

.p-topData__bar {
  --top-data-bar-x: 0px;
  position: relative;
  display: none;
  width: 100%;
  height: 44px;
  margin: 24px auto 0;
  cursor: pointer;
  -ms-touch-action: none;
      touch-action: none;
}
@media screen and (max-width: 1024px) {
  .p-topData__bar {
    display: block;
    margin: 0 auto 0;
  }
}
.p-topData__bar.is-hidden {
  display: none;
}
.p-topData__bar.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.p-topData__bar::before, .p-topData__bar::after {
  position: absolute;
  top: 20px;
  left: 0;
  content: "";
  border-radius: 999px;
}
.p-topData__bar::before {
  width: 100%;
  height: 4px;
  background-color: #dfdfdf;
}
.p-topData__bar::after {
  width: 32px;
  height: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-transform: translate(var(--top-data-bar-x), -2px);
          transform: translate(var(--top-data-bar-x), -2px);
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
  will-change: transform;
}

.p-topData__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  margin: 0;
  padding: 40px 10px 0px;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent;
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-white)), to(var(--color-white))) padding-box, -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2)) border-box;
  background: linear-gradient(var(--color-white), var(--color-white)) padding-box, linear-gradient(90deg, #00387e 0%, #2a80c2 100%) border-box;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1024px) {
  .p-topData__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 335px;
            flex: 0 0 335px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    padding: 20px;
    gap: 12px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
@media screen and (max-width: 520px) {
  .p-topData__item {
    -ms-flex-preferred-size: calc(100vw - 40px);
        flex-basis: calc(100vw - 40px);
  }
}

.p-topData__item picture,
.p-topData__item img {
  display: block;
  width: 100%;
}

.p-topData__item img {
  height: auto;
}

.p-topData__media {
  max-width: 342px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .p-topData__media {
    max-width: 200px;
  }
}

.p-topData__media--circle {
  max-width: 637px;
  display: grid;
  justify-items: center;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .p-topData__media--circle {
    padding-inline: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .p-topData__media--circle {
    width: 237px;
    padding-inline: 0;
  }
}

.p-topData__media--circle picture,
.p-topData__media--circle img {
  max-width: 577px;
}
@media screen and (max-width: 1024px) {
  .p-topData__media--circle picture,
  .p-topData__media--circle img {
    max-width: 300px;
  }
}

@media screen and (max-width: 1024px) {
  .p-topData__item:nth-child(3) .p-topData__media--circle,
  .p-topData__item:nth-child(4) .p-topData__media--circle {
    max-width: 200px;
  }
}

.p-topData__itemTitle {
  margin: 0 0 40px;
  font-size: clamp(2rem, 2.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 1024px) {
  .p-topData__itemTitle {
    width: 100%;
    margin-bottom: 0;
    line-height: normal;
  }
}

.p-topData__stats {
  display: grid;
  gap: 28px;
  justify-items: center;
  margin: 40px 0;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .p-topData__stats {
    -ms-flex-item-align: center;
        align-self: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    gap: 10px;
    justify-items: start;
    margin: 0;
    padding-inline: 0;
  }
}

.p-topData__stat {
  display: grid;
  gap: 8px;
  justify-items: center;
}
@media screen and (max-width: 1024px) {
  .p-topData__stat {
    gap: 0;
    justify-items: start;
  }
}

.p-topData__statLabel {
  font-size: clamp(1.4rem, 2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.4583333333;
}

.p-topData__statValue {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .p-topData__statValue {
    font-size: 2rem;
    line-height: normal;
    letter-spacing: 0.05em;
  }
}

.p-topData__statValue span {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .p-topData__statValue span {
    font-size: 2rem;
  }
}

.p-topData__statValue--primary,
.p-topData__emphasis {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-topData__emphasis {
  margin: auto 0px 40px;
  padding-top: 34px;
  font-size: clamp(1.6rem, 2.13vw, 3.2rem);
  font-weight: 600;
  line-height: 1.4375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-topData__emphasis {
    padding-top: 32px;
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  .p-topData__emphasis {
    width: 100%;
    margin: 0;
    padding-top: 0;
    line-height: normal;
    text-align: center;
  }
}

.p-topData__emphasis::before {
  content: "";
}
@media screen and (max-width: 1024px) {
  .p-topData__emphasis::before {
    content: none;
  }
}

@media screen and (max-width: 1024px) {
  .p-topData__item:nth-child(4) .p-topData__emphasis {
    font-size: 1.6rem;
  }
}

.p-topData__note {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: clamp(20px, 3vw, 40px);
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-topData__note {
    text-align: center;
  }
}

/* p-topIdealProfile  ----------------------------------------------------------------------------
*/
.p-topIdealProfile {
  background-color: var(--color-white);
}

.p-topIdealProfile__inner {
  max-width: 1540px;
  margin-inline: auto;
  padding: 92px 20px 96px;
}
@media screen and (max-width: 1024px) {
  .p-topIdealProfile__inner {
    padding: 40px 20px;
  }
}

.p-topIdealProfile__lead {
  display: grid;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .p-topIdealProfile__lead {
    gap: 20px;
  }
}

.p-topIdealProfile__catch {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(2.4rem, 2.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.4375;
}

.p-topIdealProfile__catch span {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-topIdealProfile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(12px, 2.6vw, 40px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  justify-items: center;
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .p-topIdealProfile__list {
    display: grid;
  }
}

.p-topIdealProfile__group {
  display: contents;
  padding: 0;
  list-style: none;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .p-topIdealProfile__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: clamp(12px, 2.6vw, 40px);
  }
}
@media screen and (max-width: 767px) {
  .p-topIdealProfile__group {
    gap: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-topIdealProfile__list {
    margin-top: 40px;
  }
}

.p-topIdealProfile__item {
  display: grid;
  -ms-flex-line-pack: center;
      align-content: center;
  justify-items: center;
  gap: clamp(4px, 1.1vw, 20px);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(103px, 17vw, 268px);
          flex: 0 0 clamp(103px, 17vw, 268px);
  width: clamp(103px, 17vw, 268px);
  height: clamp(103px, 17vw, 268px);
  aspect-ratio: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: clamp(10px, 2vw, 40px) clamp(8px, 1.4vw, 24px);
  border: clamp(2px, 0.2vw, 3px) solid #0068b7;
  border-radius: 50%;
  background-color: var(--color-white);
  overflow: hidden;
}

.p-topIdealProfile__icon {
  display: grid;
  place-items: center;
  width: clamp(40px, 6.5vw, 100px);
  max-width: 42%;
  aspect-ratio: 1;
}

.p-topIdealProfile__icon img {
  width: 100%;
  height: auto;
}

.p-topIdealProfile__itemTitle {
  width: 100%;
  margin: 0;
  color: #0068b7;
  font-size: clamp(1rem, 1.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  overflow-wrap: anywhere;
}

/* p-topCulture  ----------------------------------------------------------------------------
*/
.p-topCulture {
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
}

.p-topCulture__inner {
  max-width: 1540px;
  margin-inline: auto;
  padding: 96px 20px 96px;
}
@media screen and (max-width: 767px) {
  .p-topCulture__inner {
    padding-block: 56px 40px;
  }
}

.p-topCulture__body {
  display: grid;
  gap: 80px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-topCulture__body {
    gap: 32px;
    margin-top: 12px;
  }
}

.p-topCulture__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 74px;
}
@media screen and (max-width: 767px) {
  .p-topCulture__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-topCulture__column {
  display: grid;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-topCulture__column {
    gap: 0;
    grid-auto-rows: 84px;
  }
}

.p-topCulture__item {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-topCulture__item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-topCulture__column:nth-child(2) .p-topCulture__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 767px) {
  .p-topCulture__column:nth-child(2) .p-topCulture__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-topCulture__icon {
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .p-topCulture__icon {
    width: 40px;
  }
}

.p-topCulture__icon img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-topCulture__itemTitle {
  font-size: clamp(1.8rem, 1.73vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5384615385;
}
@media screen and (max-width: 767px) {
  .p-topCulture__itemTitle {
    font-size: 1.6rem;
    line-height: 1.625;
  }
}

.p-topCulture__benefitsTitle {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.2777777778;
}

.p-topCulture__benefitsText {
  margin-top: 40px;
  font-size: clamp(1.6rem, 1.33vw, 2rem);
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .p-topCulture__benefitsText {
    margin-top: 24px;
    line-height: 2.5;
  }
}

/* p-topApplication  ----------------------------------------------------------------------------
*/
.p-topApplication {
  background-color: var(--color-white);
  color: #222;
}

.p-topApplication__inner {
  max-width: 1540px;
  margin-inline: auto;
  padding: 96px 20px;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__inner {
    padding: 46px 20px;
  }
}

.p-topApplication__body {
  display: grid;
  grid-template-columns: 353px minmax(0, 1051px);
  gap: 96px;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.p-topApplication__heading {
  -ms-flex-item-align: start;
      align-self: start;
}

.p-topApplication__block + .p-topApplication__block {
  margin-top: 40px;
}

.p-topApplication__blockTitle {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.45;
}

.p-topApplication__list {
  margin: 20px 0 0;
  border-top: 1px solid #d4d4d4;
}

.p-topApplication__row {
  display: grid;
  grid-template-columns: 25% minmax(0, 1fr);
  border-bottom: 1px solid #d4d4d4;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .p-topApplication__row:last-child {
    border-bottom: 0;
  }
}

.p-topApplication__term,
.p-topApplication__detail {
  font-size: 1.6rem;
  line-height: 1.2;
}

.p-topApplication__term {
  padding: 20px 20px 20px 0;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__term {
    padding: 23px 0 0;
  }
}

.p-topApplication__detail {
  position: relative;
  margin: 0;
  padding: 20px 0 20px 20px;
  font-weight: 400;
}
.p-topApplication__detail::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 1px;
  background-color: #d4d4d4;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__detail {
    padding: 10px 0px 18px 20px;
  }
  .p-topApplication__detail::before {
    content: none;
  }
}

.p-topApplication__detail p + p {
  margin-top: 8px;
}

.p-topApplication__tel {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .p-topApplication__tel {
    pointer-events: auto;
    cursor: pointer;
  }
}

.p-topApplication__detail--salary {
  padding: 0;
}
.p-topApplication__detail--salary::before {
  content: none;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__detail--salary {
    padding-top: 10px;
  }
}

.p-topApplication__note {
  padding-block: 20px 10px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__note {
    padding-block: 0px 20px;
  }
}

.p-topApplication__salaryWrap {
  position: relative;
  margin-bottom: 20px;
}
.p-topApplication__salaryWrap::before {
  content: "";
  position: absolute;
  top: -42px;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: #d4d4d4;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__salaryWrap::before {
    content: none;
  }
}

.p-topApplication__salary {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: center;
}

.p-topApplication__salary th,
.p-topApplication__salary td {
  padding: 10px 20px;
  border-top: 1px solid #d4d4d4;
  border-right: 1px solid #d4d4d4;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__salary th,
  .p-topApplication__salary td {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-topApplication__salary th,
  .p-topApplication__salary td {
    padding: 7px 10px;
  }
}

.p-topApplication__salary td {
  text-align: center;
  vertical-align: middle;
}

.p-topApplication__salary tbody td:first-child {
  text-align: left;
}

.p-topApplication__salary th {
  text-align: center;
  vertical-align: middle;
}

.p-topApplication__salary th:last-child,
.p-topApplication__salary td:last-child {
  border-right: 0;
}

.p-topApplication__salary tbody tr:last-child td {
  border-bottom: 1px solid #d4d4d4;
}

.p-topApplication__salary tbody tr + tr td {
  border-top-style: dotted;
}

.p-topApplication__salaryText {
  position: relative;
  padding: 20px 0 20px 40px;
}
.p-topApplication__salaryText::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 20px;
  left: 0;
  width: 1px;
  background-color: #d4d4d4;
}
@media screen and (max-width: 1024px) {
  .p-topApplication__salaryText {
    padding: 10px 0px 18px 20px;
  }
  .p-topApplication__salaryText::before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .p-topApplication__salaryText p + p {
    padding-top: 18px;
  }
}

.p-jobs {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
}

/* p-jobsMv  ----------------------------------------------------------------------------
*/
.p-jobsMv {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .p-jobsMv {
    min-height: 100vh;
    min-height: 100svh;
  }
}

.p-jobsMv__image {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-jobsMv__image {
    position: absolute;
    inset: 0;
  }
}

.p-jobsMv__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.p-jobsMv__image img {
  display: block;
  aspect-ratio: 1920/935;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-jobsMv__image img {
    aspect-ratio: auto;
    height: 100%;
  }
}

.p-jobsMv__inner {
  position: absolute;
  bottom: 48px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 40px;
}
@media screen and (max-width: 1024px) {
  .p-jobsMv__inner {
    padding-inline: 20px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    bottom: 40px;
  }
}

.p-jobsMv__content {
  display: grid;
  gap: 40px;
  width: min(100%, 1500px);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-jobsMv__content {
    gap: 40px;
  }
}

.p-jobsMv__heading {
  display: grid;
  gap: 10px;
}

.p-jobsMv__title {
  margin: 0;
  font-size: clamp(4.2rem, 3.75vw, 7.2rem);
  font-weight: 500;
  line-height: 1.3888888889;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-jobsMv__title {
    line-height: 1.2;
  }
}

.p-jobsMv__lead {
  margin: 0;
  font-size: clamp(2.2rem, 1.875vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1111111111;
}

.p-jobsMv__profile {
  display: grid;
  gap: 0;
  margin: 0;
  font-size: clamp(1.6rem, 1.25vw, 2.4rem);
  font-weight: 600;
  line-height: 1.6666666667;
}

/* p-jobsBreadcrumb  ----------------------------------------------------------------------------
*/
.p-jobsBreadcrumb {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  color: var(--color-white);
}

.p-jobsBreadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: min(100% - 40px, 1500px);
  min-height: 54px;
  margin-inline: auto;
  padding-top: 40px;
  list-style: none;
}

.p-jobsBreadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.p-jobsBreadcrumb__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: currentColor;
}

.p-jobsBreadcrumb__item:not(:last-child) {
  color: #d2d2d2;
}

.p-jobsBreadcrumb__link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-jobsBreadcrumb__link:hover {
  opacity: 0.75;
}

/* p-jobsFeature  ----------------------------------------------------------------------------
*/
.p-jobsFeature {
  color: var(--color-white);
}

.p-jobsFeature__inner {
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(0, 710px);
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: min(100% - 40px, 1500px);
  margin-inline: auto;
  padding-block: 48px;
}
@media screen and (max-width: 1024px) {
  .p-jobsFeature__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.p-jobsFeature__inner--reverse .p-jobsFeature__media {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 1024px) {
  .p-jobsFeature__inner--reverse .p-jobsFeature__media {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.p-jobsFeature__inner--reverse .p-jobsFeature__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 1024px) {
  .p-jobsFeature__inner--reverse .p-jobsFeature__body {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.p-jobsFeature__media {
  max-width: 710px;
}

.p-jobsFeature__media img {
  aspect-ratio: 710/376;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.p-jobsFeature__body {
  display: grid;
  gap: 40px;
  -ms-flex-line-pack: start;
      align-content: start;
}
@media screen and (max-width: 1024px) {
  .p-jobsFeature__body {
    gap: 20px;
  }
}

.p-jobsFeature__title {
  margin: 0;
  font-family: var(--font-Outfit);
  font-size: clamp(2.4rem, 1.875vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1111111111;
  letter-spacing: 0.04em;
}

.p-jobsFeature__text {
  margin: 0;
  font-size: clamp(1.6rem, 1.04vw, 2rem);
  font-weight: 500;
  line-height: 2;
  overflow-wrap: anywhere;
}

/* p-jobsSchedule  ----------------------------------------------------------------------------
*/
.p-jobsSchedule {
  padding-block: 48px 96px;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .p-jobsSchedule {
    padding-block: 40px 64px;
  }
}

.p-jobsSchedule__inner {
  display: grid;
  gap: 40px;
  justify-items: center;
  width: min(100% - 40px, 900px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-jobsSchedule__inner {
    gap: 28px;
  }
}

.p-jobsSchedule__title {
  margin: 0;
  font-size: clamp(2.6rem, 1.875vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1111111111;
  text-align: center;
}

.p-jobsSchedule__panel {
  width: 100%;
  padding: 40px 80px;
  border-radius: 40px;
  background-color: #cacdd0;
}
@media screen and (max-width: 1024px) {
  .p-jobsSchedule__panel {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-jobsSchedule__panel {
    padding: 28px 20px;
    border-radius: 28px;
  }
}

.p-jobsSchedule__list {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-jobsSchedule__item {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-jobsSchedule__item {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
  }
}

.p-jobsSchedule__time {
  background: -webkit-gradient(linear, left top, right top, from(#00387e), to(#2a80c2));
  background: linear-gradient(90deg, #00387e 0%, #2a80c2 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-family: var(--font-Outfit);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-jobsSchedule__time {
    font-size: 1.6rem;
  }
}

.p-jobsSchedule__task {
  display: grid;
  place-items: center;
  min-height: 64px;
  margin: 0;
  padding: 18px 20px;
  border-left: 12px solid #00c8ff;
  border-radius: 8px;
  background-color: var(--color-white);
  color: #000;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-jobsSchedule__task {
    min-height: 56px;
    padding: 14px 12px;
    border-left-width: 8px;
    font-size: 1.4rem;
    text-align: left;
  }
}

.p-jobsSchedule__item:nth-child(even) .p-jobsSchedule__task {
  border-left-color: #00387e;
  background-color: #f2f2f1;
}

.p-jobsSchedule__item:nth-child(7) .p-jobsSchedule__task,
.p-jobsSchedule__item:nth-child(9) .p-jobsSchedule__task {
  border-left-color: #00c8ff;
  background-color: #f2f2f1;
}

/* p-jobsSlide  ----------------------------------------------------------------------------
*/
.p-jobsSlide {
  position: relative;
  overflow: hidden;
  padding-block: 0 96px;
  color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide {
    padding-bottom: 30px;
  }
}

.p-jobsSlide::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 200px;
  border-radius: 96px 96px 0 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide::after {
    height: 100px;
    border-radius: 40px 40px 0 0;
  }
}

.p-jobsSlide__title {
  position: relative;
  z-index: 1;
  margin: 0 0 40px;
  font-size: clamp(2.6rem, 1.875vw, 3.6rem);
  font-weight: 500;
  line-height: 1.1111111111;
  text-align: center;
}

.p-jobsSlide__slider {
  position: relative;
  z-index: 1;
  width: min(100% - 128px, 1240px);
  margin-inline: auto;
  border-radius: 0;
  background-color: transparent;
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide__slider {
    max-width: 600px;
    padding: 0;
  }
}

.p-jobsSlide__slider .splide__track {
  overflow: hidden;
}

.p-jobsSlide__slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  position: absolute;
  inset: 50% -72px auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-jobsSlide__slider .splide__arrow {
  pointer-events: auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #d5dbe5;
  border-radius: 50%;
  background: var(--color-white);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  opacity: 1;
}
.p-jobsSlide__slider .splide__arrow:disabled {
  opacity: 0.4;
}
.p-jobsSlide__slider .splide__arrow svg {
  width: 14px;
  height: 14px;
  fill: #00387e;
}

.p-jobsSlide__slider .splide__arrow--prev svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.p-jobsSlide__slider .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  position: absolute;
  left: 50%;
  bottom: -32px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 0;
  padding: 0;
}

.p-jobsSlide__slider .splide__pagination__page {
  width: 10px;
  height: 10px;
  margin: 0;
  background: #c7d0db;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
.p-jobsSlide__slider .splide__pagination__page.is-active {
  background: #00387e;
  -webkit-transform: none;
          transform: none;
}

.p-jobsSlide__bar {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide__bar {
    display: block;
    margin-top: 16px;
  }
}

.p-jobsSlide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-jobsSlide__item {
  position: relative;
  padding: 0 16px 16px 0;
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide__item {
    padding: 0 8px 8px 0;
  }
}

.p-jobsSlide__item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  border-radius: 8px;
  background: #f1f3f7;
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide__item::before {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
}

.p-jobsSlide__link {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  max-height: 200px;
  border-radius: 8px;
  color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .p-jobsSlide__link {
    max-height: none;
  }
}

.p-jobsSlide__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

.p-jobsSlide__link::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white) url("../images/top/jobs-icon-arrow.svg") center/12px 6px no-repeat;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.p-jobsSlide__link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-jobsSlide__link span {
  position: absolute;
  z-index: 2;
  left: 40px;
  top: 50%;
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-jobsSlide__link span {
    left: 24px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1024px) {
  .p-jobsSlide__slider .splide__arrows,
  .p-jobsSlide__slider .splide__pagination {
    display: none;
  }
}
/* u-inlineBlock ----------------------------------------------------------------------------
*/
.u-inlineBlock {
  display: inline-block;
}
