@charset "UTF-8";
/* variable */
/* mixin */
/*base*/
html {
  font-size: 62.5%;
  scroll-padding-top: 5rem;
}
@media print, screen and (width >= 1025px) {
  html {
    scroll-padding-top: 26rem;
  }
}
@media print, screen and (width >= 1500px) {
  html {
    scroll-padding-top: 28rem;
  }
}

html:focus-within {
  scroll-behavior: auto;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-y: scroll;
  min-height: 100vh;
  color: #000;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳＰゴシック", sans-serif;
  font-size: 1.6em;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
}

:focus:not(:focus-visible) {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

@media print, screen and (width >= 1025px) {
  a[href*="tel:"] {
    cursor: pointer;
  }
}

img {
  height: auto;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding-left: 2.5rem;
}

input,
select,
textarea {
  padding: 0;
  font-size: 1.6rem;
}

input::-ms-reveal {
  visibility: hidden;
}

input[type=checkbox], input[type=radio], input[type=button], input[type=submit] {
  cursor: pointer;
}

textarea {
  resize: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

select {
  cursor: pointer;
}

hr {
  border: none;
  margin: 1rem 0;
}

rt {
  padding: 0.2rem;
  text-align: center;
}

/* body */
.l-body.is-fixed {
  overflow: hidden;
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 400;
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

/* main */
.l-main {
  flex-grow: 1;
  overflow: clip;
  width: 100%;
}

/* wrapper */
.l-wrapper {
  margin-inline: auto;
  width: 100%;
}

/* footer */
.l-footer {
  margin-inline: auto;
  width: 100%;
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  line-height: 3rem;
  text-decoration: none;
}

.c-text {
  font-weight: bold;
}
.c-text--highlight {
  background-image: linear-gradient(#F8FF9C);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.75em;
}
@media print, screen and (width >= 1025px) {
  .c-text--highlight {
    background-size: 100% 0.8em;
  }
}
.c-text--nowrap {
  white-space: nowrap;
}

.c-link {
  text-decoration: none;
}
@media (any-hover: hover) {
  .c-link:hover {
    text-decoration: underline;
  }
}
.c-link[target=_blank]::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.5rem;
  background-color: currentColor;
  mask: url("../img/cmn/cmn_icon_external-link.svg") no-repeat center/contain;
}
@media print, screen and (width >= 1025px) {
  .c-link[target=_blank]::after {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* inner --------------------------------- */
.p-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 192rem;
  height: 5rem;
}
@media print, screen and (width >= 1025px) {
  .p-header {
    margin-inline: auto;
    height: 10rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-header {
    height: 12rem;
  }
}

/* logo --------------------------------- */
.p-header-logo {
  margin-left: 2rem;
}
@media print, screen and (width >= 1025px) {
  .p-header-logo {
    margin-left: 6rem;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
  }
}
@media print and (any-hover: hover), screen and (width >= 1025px) and (any-hover: hover) {
  .p-header-logo:hover {
    opacity: 0.7;
  }
}

.p-header-logo__img {
  display: block;
  height: 3.4rem;
  width: auto;
}
@media print, screen and (width >= 1025px) {
  .p-header-logo__img {
    height: auto;
    width: clamp(15rem, 11vw, 21rem);
  }
}

/* nav ---------------------------------- */
.p-header-nav {
  height: 100%;
}
@media print, screen and (width >= 1025px) {
  .p-header-nav {
    display: flex;
    align-items: center;
    gap: 4rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-header-nav {
    gap: 5rem;
  }
}

/* menu --------------------------------- */
.p-header-nav-list {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  width: 100%;
  height: calc(100vh - 5rem);
  background: transparent;
  transition: transform 0.4s ease;
  overflow-y: auto;
}
@media print, screen and (width >= 1025px) {
  .p-header-nav-list {
    position: static;
    display: flex;
    transform: none;
    height: 100%;
    background: #fff;
    overflow: visible;
    width: auto;
    gap: 2rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-header-nav-list {
    gap: 5rem;
  }
}

.p-header-nav-list__item {
  flex-shrink: 0;
  height: 8rem;
  width: 100%;
  border-top: 0.2rem solid #fff;
  list-style: none;
  background: #001752;
}
@media print, screen and (width >= 1025px) {
  .p-header-nav-list__item {
    flex-shrink: 1;
    height: 100%;
    width: auto;
    background: transparent;
  }
}

.p-header-nav-list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
@media print, screen and (width >= 1025px) {
  .p-header-nav-list__link {
    position: relative;
    display: flex;
    align-items: center;
    font-size: clamp(1.6rem, 1.25vw, 2rem);
    color: #000;
    transition: color 0.3s;
  }
  .p-header-nav-list__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) skew(160deg);
    width: calc(100% - 3.2rem);
    height: 0.8rem;
    background: #143790;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .p-header-nav-list__link:hover {
    color: #143790;
  }
  .p-header-nav-list__link:hover::after {
    opacity: 1;
  }
}

/* buttons ------------------------------ */
.p-header__buttons {
  display: none;
}
@media print, screen and (width >= 1025px) {
  .p-header__buttons {
    display: flex;
  }
}

/* toggle (hamburger) -------------------- */
.p-header-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.p-header-toggle.is-open .p-header-toggle__bar:nth-child(1) {
  transform: translateY(0.8rem) rotate(45deg);
}
.p-header-toggle.is-open .p-header-toggle__bar:nth-child(2) {
  background-color: transparent;
}
.p-header-toggle.is-open .p-header-toggle__bar:nth-child(3) {
  transform: translateY(-0.8rem) rotate(-45deg);
}
@media print, screen and (width >= 1025px) {
  .p-header-toggle {
    display: none;
  }
}

.p-header-toggle__bar {
  width: 2.5rem;
  height: 0.3rem;
  background: #001752;
  transition: 0.3s ease;
}

/* ===== header-shadow ===== */
.p-header-shadow {
  position: fixed;
  display: none;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  margin: auto;
  background: rgba(0, 0, 0, 0.68);
  z-index: 90;
}

/*fixed-footer*/
.p-fixed-footer {
  position: fixed;
  bottom: 0;
  z-index: 400;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.05);
}
@media print, screen and (width >= 1025px) {
  .p-fixed-footer {
    display: none;
  }
}

.p-fixed-footer-container {
  display: flex;
  width: 100%;
}

/*p-footer*/
.p-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 4rem 8rem;
  background-color: #DBE2EF;
}
@media print, screen and (width >= 1025px) {
  .p-footer {
    padding-block: 6rem 3.5rem;
  }
}

.p-footer__logo {
  margin-bottom: 1rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer__logo {
    margin-bottom: 2rem;
    transition: all 0.2s ease 0s;
    -webkit-transition: all 0.2s ease 0s;
  }
}
@media print and (any-hover: hover), screen and (width >= 1025px) and (any-hover: hover) {
  .p-footer__logo:hover {
    opacity: 0.7;
  }
}

.p-footer__button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.p-footer-text {
  text-align: center;
  margin-bottom: 5rem;
  font-size: 1.4rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer-text {
    font-size: 1.6rem;
  }
}

.p-footer-homepage {
  margin-bottom: 1rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer-homepage {
    margin-bottom: 1.5rem;
  }
}

.p-footer-link {
  font-size: 1.2rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer-link {
    font-size: 1.4rem;
  }
}

.p-footer-link-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 1rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer-link-list {
    column-gap: 2rem;
  }
}

.p-footer-link-list__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  border-left: 1px solid #000;
  margin-left: 1rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer-link-list__item:not(:last-child)::after {
    margin-left: 2rem;
  }
}

.p-footer-copyright {
  margin-top: 2rem;
  font-size: 1.1rem;
}
@media print, screen and (width >= 1025px) {
  .p-footer-copyright {
    font-size: 1.3rem;
  }
}

.p-conversion-button {
  position: relative;
  width: 50%;
  height: 7rem;
}
.p-conversion-button span {
  position: relative;
  z-index: 1;
}
@media print, screen and (width >= 1025px) {
  .p-conversion-button {
    width: clamp(20rem, 18vw, 30rem);
    height: 10rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-conversion-button {
    width: clamp(30rem, 18vw, 36rem);
    height: 12rem;
  }
}

.p-button-icon {
  display: inline-block;
  width: 2rem;
  margin-left: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  aspect-ratio: 34/27;
}
@media print, screen and (width >= 1025px) {
  .p-button-icon {
    width: clamp(2rem, 1.75vw, 3rem);
  }
}

/*selection-button*/
.p-selection-button {
  background: linear-gradient(135deg, #1DB5A1 0%, #2D8F6D 100%);
  color: #fff;
  font-size: 1.8rem;
}
@media (any-hover: hover) {
  .p-selection-button:hover .p-selection-button__text {
    background: linear-gradient(135deg, #1DB5A1 0%, #2D8F6D 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .p-selection-button:hover::after {
    opacity: 1;
    z-index: 0;
  }
  .p-selection-button:hover .p-selection-button__icon {
    background-image: url(../../assets/img/cmn/cmn_icon_mail-green.svg);
  }
}
@media print, screen and (width >= 1025px) {
  .p-selection-button {
    padding-top: 1rem;
    font-size: clamp(1.6rem, 1.5vw, 2.8rem);
  }
}
.p-selection-button--large {
  padding: 4rem;
  height: 12rem;
  width: 100%;
  max-width: 35rem;
  font-size: 2.5rem;
}
@media print, screen and (width >= 1025px) {
  .p-selection-button--large {
    padding: 6rem;
    height: 18rem;
    max-width: 57rem;
    font-size: 4rem;
  }
}
.p-selection-button--large::after {
  border: 2px solid #1DB5A1;
  border-image: linear-gradient(135deg, #1DB5A1 0%, #2D8F6D 100%) 1;
}
.p-selection-button::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.5s;
}

.p-selection-button__text {
  display: inline-block;
  line-height: 1.8;
}

.p-selection-button__icon {
  background: url(../../assets/img/cmn/cmn_icon_mail-white.svg) no-repeat center;
  background-size: contain;
}
.p-selection-button__icon--large {
  width: 2.5rem;
  height: 2rem;
  margin-left: 1rem;
}
@media print, screen and (width >= 1025px) {
  .p-selection-button__icon--large {
    width: 3.5rem;
    height: 3rem;
  }
}

/*interview-button*/
.p-interview-button {
  display: inline-flex;
  flex-direction: column;
  background-color: #F6F9FF;
  font-size: 1.8rem;
  text-decoration: none;
}
@media print, screen and (width >= 1025px) {
  .p-interview-button {
    padding-top: 1.5rem;
    border-left: 1px solid #C5D6FF;
  }
}
.p-interview-button::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3061DE 0%, #143790 100%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 0;
}
@media (any-hover: hover) {
  .p-interview-button:hover::after {
    opacity: 1;
  }
  .p-interview-button:hover .p-interview-button__text-sub {
    color: #fff;
  }
  .p-interview-button:hover .p-interview-button__text-main {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
  }
  .p-interview-button:hover .p-interview-button__icon {
    background-image: url(../../assets/img/cmn/cmn_icon_mail-white.svg);
  }
}
.p-interview-button--small {
  justify-content: center;
  padding: 2rem;
  height: 5.5rem;
  width: 100%;
  max-width: 20rem;
  background-color: #fff;
  border: 1px solid #234EBB;
  letter-spacing: 0.02em;
}
@media (any-hover: hover) {
  .p-interview-button--small:hover .p-interview-button__text-main--small {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #fff;
  }
  .p-interview-button--small:hover .p-interview-button__icon--small {
    background-image: url(../../assets/img/cmn/cmn_icon_mail-white.svg);
  }
}

.p-interview-button__text-box {
  display: inline-flex;
  align-items: center;
}
@media print, screen and (width >= 1025px) {
  .p-interview-button__text-box {
    transform: translateY(-1.75rem);
  }
}
.p-interview-button__text-box--small {
  transform: translateY(0);
}

.p-interview-button__text-sub {
  font-size: 1.1rem;
  color: #000;
  line-height: 0.3rem;
  text-align: center;
}
@media print, screen and (width >= 1025px) {
  .p-interview-button__text-sub {
    font-size: clamp(1.3rem, 1vw, 1.6rem);
    line-height: 3rem;
    transform: translateY(-1rem);
  }
}
@media print, screen and (width >= 1500px) {
  .p-interview-button__text-sub {
    transform: translateY(-1.5rem);
  }
}

.p-interview-button__text-main {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #3061DE 0%, #143790 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media print, screen and (width >= 1025px) {
  .p-interview-button__text-main {
    font-size: clamp(1.6rem, 1.5vw, 2.8rem);
  }
}
.p-interview-button__text-main--small {
  font-size: 1.8rem;
  font-weight: bold;
  background: linear-gradient(135deg, #3061DE 0%, #143790 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-interview-button__icon {
  background: url(../../assets/img/cmn/cmn_icon_mail-blue.svg) no-repeat center;
  background-size: contain;
}
.p-interview-button__icon--small {
  width: 2rem;
  height: 1.5rem;
  background: url(../../assets/img/cmn/cmn_icon_mail-blue.svg) no-repeat center;
  background-size: contain;
}

/*border-button*/
.p-border-button {
  position: relative;
  align-self: flex-start;
  padding: 1.5rem 5rem 1.5rem 3rem;
  border: 1px solid #000;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.6;
}
.p-border-button--footer {
  align-self: center;
}
.p-border-button::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
}
@media print, screen and (width >= 1025px) {
  .p-border-button {
    font-size: 1.8rem;
  }
}
@media (any-hover: hover) {
  .p-border-button:hover {
    background-color: #434343;
    border: 1px solid #434343;
    color: #fff;
  }
  .p-border-button:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

/* main */
@media print {
  .p-main {
    margin-top: 0;
  }
}

/* main-visual */
.p-main-visual {
  background: linear-gradient(to bottom, #195092 calc(100% - 1px), #fff calc(100% - 1px));
}
@media print, screen and (width >= 768px) {
  .p-main-visual {
    overflow: hidden;
  }
}

.p-main-visual__img {
  width: 100%;
}
@media print, screen and (width >= 768px) {
  .p-main-visual__img {
    position: relative;
    max-width: 242rem;
    width: 126%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* p-company（SP first）*/
.p-company {
  padding-top: 6rem;
  padding-inline: 2rem;
}
@media print, screen and (width >= 768px) {
  .p-company {
    padding-top: 16rem;
    padding-inline: 7.5rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-company {
    position: relative;
    padding: 16rem 12rem 20rem;
    max-width: 216rem;
    margin-inline: auto;
  }
}

.p-company__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (width >= 1500px) {
  .p-company__inner {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10rem;
    height: auto;
  }
}

.p-company__title {
  position: relative;
  display: inline-block;
  align-self: center;
  text-align: center;
  color: #707070;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-company__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
}
@media print, screen and (width >= 1025px) {
  .p-company__title {
    font-size: 2.2rem;
  }
}

.p-company-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
@media print, screen and (width >= 768px) {
  .p-company-body {
    margin-top: 5rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-company-body {
    width: calc(50% - 6rem);
    max-width: 80rem;
  }
}

.p-company-body__title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.3;
}
@media print, screen and (width >= 1025px) {
  .p-company-body__title {
    margin-right: -8rem;
    margin-bottom: 0.5rem;
    font-size: 5rem;
  }
}

.p-company-body__subtitle {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.33;
}
@media print, screen and (width >= 1025px) {
  .p-company-body__subtitle {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}

.p-company-body__text {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 1.6;
}
@media print, screen and (width >= 1025px) {
  .p-company-body__text {
    margin-bottom: 2rem;
  }
}

.p-company-imgbox {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92.3076923077vw;
  margin-left: -12px;
}
@media screen and (768px <= width <= 1024px) {
  .p-company-imgbox {
    margin-top: -6rem;
    height: 63rem;
    margin-left: 0;
  }
}
@media print, screen and (width >= 1025px) {
  .p-company-imgbox {
    margin-top: -8rem;
    height: 63rem;
  }
}
@media print, screen and (width >= 1500px) {
  .p-company-imgbox {
    position: absolute;
    overflow: visible;
    top: 0;
    right: 0;
    margin-top: 0;
    width: 50%;
    height: 100%;
  }
}

.p-company__img {
  display: block;
  max-width: 60rem;
  width: 89.7435897436vw;
  z-index: -1;
}
@media print, screen and (width >= 768px) {
  .p-company__img {
    width: 58.5365853659vw;
  }
}
@media print, screen and (width >= 1500px) {
  .p-company__img {
    position: absolute;
    top: calc(50% + 8rem);
    left: 40%;
    min-width: 89rem;
    width: 52.0833333333vw;
    transform: translate(-50%, -50%);
  }
}

/* p-feature（SP first）*/
.p-feature {
  padding: 6.5rem 2rem 8rem 2rem;
  background: linear-gradient(90deg, #195092 0%, #275A9E 30%, #153892 100%);
}
@media print, screen and (width >= 1025px) {
  .p-feature {
    padding: 16rem 12rem 20rem 12rem;
    background: linear-gradient(100deg, #195092 0%, #275A9E 30%, #153892 100%);
  }
}

.p-feature__title {
  margin-inline: auto;
  width: 100%;
}
.p-feature__title + * {
  margin-top: 6rem;
}
@media print, screen and (width >= 1025px) {
  .p-feature__title + * {
    margin-top: 16rem;
  }
}
@media print, screen and (width >= 1025px) {
  .p-feature__title {
    max-width: 107rem;
  }
}

.p-feature__title-img {
  width: 100%;
}

.p-feature__content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10rem;
  counter-reset: primary;
}
@media print, screen and (width >= 1025px) {
  .p-feature__content {
    gap: 20rem;
    margin-inline: auto;
    max-width: 142rem;
  }
}

.p-feature-item__title {
  position: relative;
  text-align: left;
  padding-top: 8rem;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
  counter-increment: primary;
}
.p-feature-item__title::after {
  content: counter(primary, decimal-leading-zero);
  position: absolute;
  top: -1.5rem;
  left: 0;
  font-size: 15rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
}
@media print, screen and (width >= 1025px) {
  .p-feature-item__title {
    top: 0;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-left: 0;
    height: 22rem;
    font-size: clamp(3.5rem, 3vw, 5rem);
  }
  .p-feature-item__title::after {
    top: 50%;
    left: max(-13rem, -7vw);
    font-size: 30rem;
    transform: translateY(-50%);
  }
}
.p-feature-item__title + * {
  margin-top: 3rem;
}

.p-feature-item__text {
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.6;
}
@media print, screen and (width >= 1025px) {
  .p-feature-item__text {
    line-height: 1.8;
  }
}
.p-feature-item__text + * {
  margin-top: 4rem;
}
@media print, screen and (width >= 1025px) {
  .p-feature-item__text + * {
    margin-top: 6rem;
  }
}

.p-feature-process__header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 11.5rem;
  background: #C9DBF8;
}
@media print, screen and (width >= 1025px) {
  .p-feature-process__header {
    height: 19rem;
  }
}

.p-feature-process__lead {
  display: inline-block;
  padding-inline: 1.5rem;
  background: #00296D;
  color: #fff;
  font-size: clamp(1.6rem, 1.5vw, 2rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
@media print, screen and (width >= 1025px) {
  .p-feature-process__lead {
    padding-inline: 3rem;
    width: 40%;
    max-width: 56rem;
    letter-spacing: 0.1em;
  }
}

.p-feature-process__title {
  color: #00296D;
  font-size: 2.2rem;
  font-weight: bold;
}
@media print, screen and (width >= 1025px) {
  .p-feature-process__title {
    font-size: clamp(3rem, 2.5vw, 4.5rem);
  }
}

.p-feature-process__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  padding: 3rem 2rem 5rem;
  background-color: #fff;
}
@media print, screen and (width >= 1025px) {
  .p-feature-process__body {
    gap: 6rem;
    padding: 5rem 9rem 8rem;
  }
}

.p-feature-process__imgbox {
  width: 100%;
}

.p-feature-process__img {
  width: 100%;
}

.p-feature-process__text {
  color: #000;
  font-size: 1.8rem;
}
@media print, screen and (width >= 1025px) {
  .p-feature-process__text {
    font-size: 2rem;
  }
}

.p-feature-flexibility-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-inline: 1rem;
}
@media screen and (768px <= width <= 1024px) {
  .p-feature-flexibility-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (width >= 1025px) {
  .p-feature-flexibility-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (width >= 1500px) {
  .p-feature-flexibility-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    padding-inline: 0;
    margin-inline: -5rem;
  }
}

.p-feature-flexibility-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  justify-items: center;
  gap: 1.5rem;
  padding: 4rem 4.5rem 5rem;
  background: #fff;
}
@media print, screen and (width >= 1025px) {
  .p-feature-flexibility-list__item {
    padding: 5rem 5.5rem;
  }
}

.p-feature-flexibility-list__item-img {
  align-self: center;
}
@media print, screen and (width >= 1025px) {
  .p-feature-flexibility-list__item-img {
    display: block;
    min-height: 19rem;
  }
}

.p-feature-flexibility-list__item-title {
  width: 100%;
  text-align: center;
  font-size: clamp(2.2rem, 1.6vw, 3rem);
  font-weight: bold;
  border-bottom: 3px solid #3F6FBE;
}

.p-feature-flexibility-list__item-text {
  font-size: 1.8rem;
}

.p-feature-team-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media print, screen and (width >= 1025px) {
  .p-feature-team-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
  }
}

.p-feature-team-list__item {
  display: flex;
  flex-direction: column;
}

.p-feature-team-list__item-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 3px solid #2F5795;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  background: #fff;
}
@media print, screen and (width >= 1025px) {
  .p-feature-team-list__item-header {
    font-size: 3rem;
  }
}

.p-feature-team-list__item-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2rem 3rem;
  background: #fff;
}
@media print, screen and (width >= 1025px) {
  .p-feature-team-list__item-body {
    flex-grow: 1;
    gap: 3rem;
    padding: 5rem 5rem 4rem;
  }
}

.p-feature-team-list__item-img {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 40rem;
}

.p-feature-team-list__item-text {
  margin-left: -1rem;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.4;
  font-feature-settings: "palt";
  text-align: center;
}
@media print, screen and (width >= 1025px) {
  .p-feature-team-list__item-text {
    font-size: 3.5rem;
  }
}

.p-emphasis-number {
  font-size: 6.5rem;
  color: #1F50AE;
  letter-spacing: normal;
}
@media print, screen and (width >= 1025px) {
  .p-emphasis-number {
    font-size: 8rem;
  }
}

/* Job Description */
.p-description {
  padding: 10rem 1rem 2.5rem;
}
@media print, screen and (width >= 1025px) {
  .p-description {
    padding: 16rem 8rem 10rem;
    margin-inline: auto;
    max-width: 168rem;
  }
}

.p-description-title {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.p-description-title + * {
  margin-top: 3rem;
}
@media print, screen and (width >= 1025px) {
  .p-description-title + * {
    margin-top: 6rem;
  }
}

.p-description-title__heading {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
@media print, screen and (width >= 1025px) {
  .p-description-title__heading {
    font-size: 5rem;
    letter-spacing: 0.05em;
    line-height: 1.45;
  }
}

.p-description-title__label {
  display: inline-block;
  padding-inline: 3rem;
  background: #143790;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}
@media print, screen and (width >= 1025px) {
  .p-description-title__label {
    font-size: 3rem;
  }
}

.p-description-content {
  padding: 4rem 2rem;
  border-radius: 2rem;
  background-color: #F6F9FF;
}
@media print, screen and (width >= 1025px) {
  .p-description-content {
    padding: 10rem;
  }
}

.p-description-content__title {
  font-size: 2rem;
  font-weight: bold;
}
@media print, screen and (width >= 1025px) {
  .p-description-content__title {
    font-size: 3rem;
  }
}
.p-description-content__title + * {
  margin-top: 1.5rem;
}
@media print, screen and (width >= 1025px) {
  .p-description-content__title + * {
    margin-top: 3rem;
  }
}

@media print, screen and (width >= 1025px) {
  .p-description-list__item {
    display: grid;
    grid-template-columns: 24rem 1fr;
  }
}
.p-description-list__item + .p-description-list__item {
  margin-top: 2rem;
}

.p-description-list__title {
  margin-bottom: 0.5rem;
  border-bottom: 3px solid #143790;
  font-size: 1.8rem;
  font-weight: bold;
}
@media print, screen and (width >= 1025px) {
  .p-description-list__title {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 1rem 2.5rem;
    border-bottom: none;
    border-left: 10px solid #143790;
    font-size: 2rem;
  }
}

.p-description-list__data {
  display: flex;
  align-items: center;
}

/* recruit-flow */
.p-recruit-flow {
  padding: 2.5rem 2rem 2rem;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow {
    padding: 0 8rem 0;
    margin-inline: auto;
    max-width: 138rem;
  }
}

.p-recruit-flow__title {
  position: relative;
  display: block;
  margin-inline: auto;
  padding: 0.5rem 5.5rem;
  width: fit-content;
  font-size: 2rem;
  font-weight: bold;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow__title {
    font-size: 3rem;
  }
}
.p-recruit-flow__title::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #143790;
  transform: skewX(-20deg);
}
.p-recruit-flow__title + * {
  margin-top: 3rem;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow__title + * {
    margin-top: 8rem;
  }
}

.p-recruit-flow__content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.p-recruit-flow-list {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7rem;
  padding-left: 0;
  margin-inline: 2.5rem;
  max-width: 50rem;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow-list {
    grid-template-columns: repeat(5, 1fr);
    gap: 8rem;
    margin-inline: 0;
    max-width: none;
  }
}

.p-recruit-flow-list__item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr;
  justify-content: start;
  gap: 0.5rem 2rem;
}
.p-recruit-flow-list__item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: -3.5rem;
  width: 8px;
  height: calc(50% - 2.5rem + 3.5rem);
  background: radial-gradient(circle at center, #000 2px, transparent 2px);
  background-size: 8px 10px;
  background-repeat: space;
  background-position: center bottom;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
.p-recruit-flow-list__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: calc(50% + 2.5rem);
  width: 8px;
  height: calc(50% - 2.5rem + 3.5rem);
  background: radial-gradient(circle at center, #000 2px, transparent 2px);
  background-size: 8px 10px;
  background-repeat: space;
  background-position: center top;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow-list__item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-recruit-flow-list__item:not(:first-child)::before {
    content: none;
  }
  .p-recruit-flow-list__item:not(:last-child)::after {
    top: 2.5rem;
    left: calc(50% + 2.5rem);
    width: calc(100% + 8rem - 5rem);
    height: 6px;
    background: radial-gradient(circle, #000 3px, transparent 3px);
    background-size: 16px 6px;
    background-repeat: space;
    background-position: left center;
    transform: translateY(-50%);
  }
}

.p-recruit-flow-list__badge {
  position: relative;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  grid-area: 1/1/3/2;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #143790;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  z-index: 1;
}

.p-recruit-flow-list__title {
  grid-area: 1/2/2/3;
  font-size: 2rem;
  font-weight: bold;
}

.p-recruit-flow-list__text {
  grid-area: 2/2/3/3;
}

.p-recruit-flow-note {
  margin-top: 2rem;
  margin-inline: 1rem;
  line-height: 1.6;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow-note {
    margin-top: 3rem;
    text-align: center;
    line-height: 1.8;
  }
}

.p-recruit-flow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
}
@media print, screen and (width >= 1025px) {
  .p-recruit-flow-button {
    margin-top: 8rem;
  }
}

/*casual-meeting*/
.p-casual-meeting {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting {
    padding: 10rem;
    margin-inline: auto;
    max-width: 142rem;
  }
}

.p-casual-meeting__container {
  max-width: 50rem;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting__container {
    max-width: none;
  }
}

.p-casual-meeting-card {
  display: grid;
  grid-template-columns: 1fr;
  padding: 2rem;
  border: 2px solid #B5CBFF;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-card {
    grid-template-columns: 63fr 57fr;
    gap: 2rem;
    padding: 0;
  }
}

.p-casual-meeting-card__content {
  display: flex;
  flex-direction: column;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-card__content {
    align-self: center;
    padding-left: min(4vw, 8rem);
    padding-block: 5rem;
  }
}

.p-casual-meeting-title {
  display: flex;
  flex-direction: column;
}

.p-casual-meeting-title__lead {
  color: #2653C3;
  font-weight: bold;
  line-height: 1.5;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-title__lead {
    font-size: 1.8rem;
  }
}

.p-casual-meeting-title__main {
  color: #143790;
  font-size: 2.8rem;
  font-weight: bold;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-title__main {
    font-size: 3.3rem;
  }
}

.p-casual-meeting-feature {
  display: flex;
}

.p-casual-meeting-feature__item {
  display: inline-block;
  padding-inline: 1rem;
  background: #143790;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  clip-path: polygon(7px 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-feature__item {
    padding-inline: 1.5rem;
    font-size: 1.6rem;
  }
}

.p-casual-meeting__text {
  margin-top: 1.5rem;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting__text {
    margin-top: 2rem;
  }
}

.p-casual-meeting__action {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting__action {
    justify-content: flex-start;
    margin-top: 2rem;
    margin-bottom: 0;
  }
}

.p-casual-meeting-card__img {
  margin-inline: auto;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-card__img {
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
}

.p-casual-meeting-notebox {
  max-width: 50rem;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting-notebox {
    max-width: none;
  }
}

.p-casual-meeting__note {
  margin-top: 3rem;
  margin-bottom: 10rem;
  line-height: 1.4;
}
@media print, screen and (width >= 1025px) {
  .p-casual-meeting__note {
    margin-top: 5rem;
    margin-bottom: 6rem;
    text-align: center;
  }
}

.u-d-sp {
  display: block;
}
@media print, screen and (width >= 768px) {
  .u-d-sp {
    display: none;
  }
}

.u-d-sp-tab {
  display: block;
}
@media print, screen and (width >= 1025px) {
  .u-d-sp-tab {
    display: none;
  }
}

.u-d-pc-inline-block {
  display: none;
}
@media print, screen and (width >= 1025px) {
  .u-d-pc-inline-block {
    display: inline-block;
  }
}/*# sourceMappingURL=style.css.map */