@charset "UTF-8";
.benefit .benefit-ttl {
  background-color: #006ee8;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-ttl .l-outer {
    padding: 0;
  }
}
.benefit .entry-btn {
  right: 4%;
}
@media screen and (max-width: 768px) {
  .benefit .entry-btn {
    transform: translate(0, -10%);
  }
}
/* --------------------------------
  intro
--------------------------------*/
.benefit .benefit-intro__inner {
  position: relative;
}
.benefit .benefit-intro__inner::before {
  content: "";
  position: absolute;
  top: 32px;
  left: -47px;
  width: clamp(64px, 8vw, 117px);
  height: clamp(80px, 8vw, 138px);
  aspect-ratio: 117 / 138;
  background-image: url("../../img/page/benefit/icon-flag.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.benefit .benefit-intro__content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.benefit .benefit-intro__text {
  flex: 1;
}
@media screen and (max-width: 1100px) {
  .benefit .benefit-intro__inner::before {
    left: 0;
    transform: translateX(-25%);
  }
}
@media screen and (max-width: 960px) {
  .benefit .benefit-intro__content {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .benefit .benefit-intro__inner::before {
    transform: translateX(0);
    left: -10px;
    top: 16px;
  }
  .benefit .benefit-intro__content {
    flex-direction: column;
    gap: 16px;
  }
}

/* --------------------------------
  cards
--------------------------------*/
.benefit .benefit-cards {
  background-color: #f5f5f5;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 24px);
}
#benefit-01 .benefit-grid > .benefit-card:nth-child(7) {
  grid-column: 1 / -1;
}
#benefit-02 .benefit-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
#benefit-02 .benefit-grid > .benefit-card {
  grid-column: span 3;
}
#benefit-02 .benefit-grid > .benefit-card:nth-child(7),
#benefit-02 .benefit-grid > .benefit-card:nth-child(8),
#benefit-02 .benefit-grid > .benefit-card:nth-child(9) {
  grid-column: span 2;
}
.benefit-card {
  position: relative;
  background-color: var(--c-white);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.benefit-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  height: 100%;
  width: auto;
  background-position: right;
  background-repeat: no-repeat;
}
.benefit-card__body {
  position: relative;
  padding: clamp(16px, 2.2vw, 24px) clamp(16px, 2.5vw, 28px)
    clamp(20px, 2.5vw, 30px);
}
.benefit-card__title {
  margin-bottom: clamp(12px, 1.5vw, 16px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.4em;
  font-size: var(--fs-20);
}
.benefit-card__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}
.benefit-card__text {
  line-height: 1.9;
  font-size: var(--fs-15);
  padding-left: 0.5em;
}
.benefit-card__text--spaced {
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .benefit-grid,
  #benefit-02 .benefit-grid {
    grid-template-columns: 1fr;
  }
  #benefit-02 .benefit-grid > .benefit-card,
  #benefit-02 .benefit-grid > .benefit-card:nth-child(7),
  #benefit-02 .benefit-grid > .benefit-card:nth-child(8),
  #benefit-02 .benefit-grid > .benefit-card:nth-child(9) {
    grid-column: auto;
  }
}
@media screen and (max-width: 768px) {
  .benefit-card__icon {
    width: 20px;
    height: 20px;
  }
  .benefit-card__title {
    letter-spacing: 0.2em;
    margin-bottom: 4px;
  }
}
/* --------------------------------
  career path
--------------------------------*/
.benefit-path {
  position: relative;
  border-top: 3px solid #35539c;
}
.benefit-path::before {
  content: "";
  position: absolute;
  top: 0;
  right: 5%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 19px solid transparent;
  border-left: 19px solid transparent;
  border-top: 23px solid #35539c;
  border-bottom: 0;
}
.benefit-path__header {
  display: grid;
  justify-items: center;
  gap: 10px;
}
.benefit-path__icon {
  height: auto;

  display: block;
}
#benefit-01 .benefit-path__icon {
  width: clamp(64px, 8vw, 92px);
  align-self: 92 / 83;
}
#benefit-02 .benefit-path__icon {
  width: clamp(52px, 8vw, 72px);
  align-self: 72 / 81;
}
.benefit-path__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefit-path__title {
  letter-spacing: 1.19em;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-23);
  text-indent: 1.19em;
  color: #35539c;
  text-align: center;
  line-height: 1.5;
}

.benefit-steps {
  margin-top: calc(clamp(64px, 8vw, 137px) / 2 + 24px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}
.benefit-steps-bg {
  position: relative;
  z-index: 1;
}
.benefit-steps-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background-color: #f5f5f5;
  z-index: -1;
}

.benefit-step {
  position: relative;
  padding: calc(clamp(64px, 8vw, 137px) / 2 + 20px) clamp(16px, 2.5vw, 40px)
    clamp(20px, 2vw, 64px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 4px solid var(--c-white);
  mix-blend-mode: darken;
}
.benefit-step:last-child {
  border-right: none;
}

.benefit-step__year {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(64px, 8vw, 137px);
  height: clamp(64px, 8vw, 137px);
  object-fit: contain;
}
.benefit-step__year img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefit-step__list li {
  text-indent: -16px;
  padding-left: 21px;
  padding-bottom: 0.5em;
  line-height: 1.7;
}
.benefit-step__list li::before {
  content: "・";
}
.benefit-step__img {
  max-width: clamp(120px, 15vw, 200px);
  height: auto;
  aspect-ratio: 206 /110;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}
.benefit-step__income {
  margin-top: clamp(12px, 2vw, 16px);
  padding: 16px 8px 16px 0;
  height: 210px;
}
.benefit-step:nth-of-type(1) .benefit-step__income {
  background-color: rgba(82, 162, 251, 0.1);
}
.benefit-step:nth-of-type(2) .benefit-step__income {
  background-color: rgba(0, 110, 230, 0.1);
}
.benefit-step:nth-of-type(3) .benefit-step__income {
  background-color: rgba(0, 108, 186, 0.1);
}
.benefit-step:nth-of-type(4) .benefit-step__income {
  background-color: rgba(53, 83, 157, 0.1);
}
.benefit-step__income-title {
  position: relative;
  font-weight: var(--fw-bold);
  font-size: var(--fs-20);
  letter-spacing: 0.71em;
  padding-left: 24px;
}
.benefit-step__income-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 0;
}
.benefit-step:nth-of-type(1) .benefit-step__income-title::before {
  border-left: 9px solid #278fff;
}
.benefit-step:nth-of-type(2) .benefit-step__income-title::before {
  border-left: 9px solid #006ee6;
}
.benefit-step:nth-of-type(3) .benefit-step__income-title::before {
  border-left: 9px solid #006eba;
}
.benefit-step:nth-of-type(4) .benefit-step__income-title::before {
  border-left: 9px solid #35539c;
}
.benefit-step:nth-of-type(1) .benefit-step__income-title {
  color: #278fff;
}
.benefit-step:nth-of-type(2) .benefit-step__income-title {
  color: #006ee6;
}
.benefit-step:nth-of-type(3) .benefit-step__income-title {
  color: #006eba;
}
.benefit-step:nth-of-type(4) .benefit-step__income-title {
  color: #35539d;
}
.benefit-step__income-text {
  padding: 16px 0 0 24px;
}
.benefit-step__income-text-note {
  font-size: var(--fs-14);
}
@media screen and (max-width: 1200px) {
  .benefit-path__title {
    font-size: var(--fs-20);
  }
}
@media screen and (max-width: 1100px) {
  .benefit-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: calc(clamp(64px, 8vw, 137px) / 2 + 20px);
    column-gap: 0px;
  }

  .benefit-step:nth-of-type(even) {
    border-right: none;
  }
  .benefit-step:nth-of-type(odd) {
    border-right: 4px solid var(--c-white);
  }
  .benefit-step__income {
    height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .benefit-path::before {
    border-right: 14px solid transparent;
    border-left: 14px solid transparent;
    border-top: 16px solid #35539c;
  }
}
@media screen and (max-width: 600px) {
  .benefit-steps {
    grid-template-columns: 1fr;
    row-gap: calc(clamp(64px, 8vw, 137px) / 2 + 12px);
  }
  .benefit-step {
    padding-top: calc(clamp(64px, 8vw, 137px) / 2 + 16px);
    padding-left: 0;
    padding-right: 0;
    border-right: none;
    border-bottom: 4px solid var(--c-white);
  }
  .benefit-step:last-child {
    border-bottom: none;
  }
  .benefit-step:nth-of-type(odd) {
    border-right: none;
  }
  .benefit-step__income {
    height: auto;
    padding: 12px 8px 16px 0;
  }
  .benefit-step__income-text {
    padding-top: 4px;
  }
}

/* --------------------------------
  future career
--------------------------------*/
.benefit-future {
  text-align: center;
}
.benefit-future__title {
  display: inline-block;
  padding: clamp(12px, 1.5vw, 18px) clamp(32px, 5vw, 72px);
  background-color: #52a2fb;
  color: var(--c-white);
  font-size: var(--fs-30);
  font-family: var(--font-shippori);
  letter-spacing: 0.15em;
  text-indent: 0.15em;
  border-radius: 9999px;
  line-height: 1.5;
}
.benefit-future__body {
  margin-top: clamp(24px, 3vw, 40px);
  color: #35539c;
  font-size: var(--fs-18);
  line-height: 2;
  font-weight: var(--fw-medium);
}
.benefit-future__body p {
  margin: 0;
  text-align: center;
  font-size: var(--fs-18);
  line-height: 2.2;
}
.benefit-future__mark {
  background-color: #faffba;
  color: inherit;
  padding: 0 0.15em;
}
@media screen and (max-width: 768px) {
  .benefit-future__title {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    padding: 10px 20px;
    font-size: var(--fs-24);
  }
  .benefit-future__body {
    text-align: left;
    line-height: 1.8;
  }
}

/* --------------------------------
  dept cards
--------------------------------*/
.benefit .dept-cards-section .dept-cards__wrap {
  gap: 40px;
}
.benefit .dept-cards-section .ud-dept-card-list {
  flex: 1;
}
.benefit .dept-cards-section .ud-sec-ttl-main {
  font-size: clamp(40px, 8vw, 69px);
  letter-spacing: 0.005em;
  font-weight: 200;
}
.benefit .dept-cards-section .ud-sec-ttl-sub {
  font-size: clamp(18px, 2.5vw, 23px);
  color: #00268e;
  letter-spacing: 1em;
}
.benefit .dept-cards-section .triangle-red {
  position: absolute;
  transform: translateY(50%) rotate(270deg);
  bottom: 1em;
}
.benefit .dept-cards-section .ud-dept-card {
  border: 1px solid #00268e;
}

.benefit .dept-cards-section .ud-dept-card__label {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: var(--fw-medium);
}
.benefit .dept-cards-section .ud-dept-card__more {
  padding: 8px;
  font-size: var(--fs-14);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .benefit .dept-cards-section .dept-cards__wrap {
    gap: 24px;
  }
}
@media screen and (max-width: 960px) {
  .benefit .dept-cards-section .dept-cards__wrap {
    flex-direction: column;
    align-items: center;
  }
  .benefit .dept-cards-section .ud-sec-ttl.ud-sec-ttl--column {
    align-items: center;
  }
  .benefit .dept-cards-section .triangle-red {
    transform: translateY(50%) rotate(0);
  }
}
