@charset "UTF-8";
/* ============================================================
// system.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// 給与制度の全体像
------------------------------------------------------------ */
.return-step-section {
  width: 100%;
  max-width: 944px;
  margin-inline: auto;
}

.return-step-grid {
  display: flex;
  gap: clamp(20px, 2.4242424242vw + 10.9090909091px, 40px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .return-step-grid {
    flex-direction: column;
  }
}

.return-step-card {
  flex: 1;
  text-align: center;
  padding: 10px 10px 20px 10px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
}
.return-step-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}
.return-step-card__num {
  display: block;
  width: clamp(40px, 1.2121212121vw + 35.4545454545px, 50px);
  height: auto;
}
.return-step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
  margin: 0;
}
.return-step-card__value, .return-step-card__value-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-size: clamp(36px, 1.4545454545vw + 30.5454545455px, 48px);
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.2;
  margin-bottom: 4px;
}
.return-step-card__value-text {
  align-items: center;
  font-size: clamp(20px, 0.7272727273vw + 17.2727272727px, 26px);
  height: 52px;
}
.return-step-card__range {
  font-size: 0.8em;
  margin-inline: 2px;
}
.return-step-card__symbol {
  font-size: 0.7em;
  margin-right: 2px;
}
.return-step-card__unit {
  font-size: clamp(20px, 0.4848484848vw + 18.1818181818px, 24px);
  margin-left: 2px;
}
.return-step-card__text {
  font-size: 15px;
}

.calculation-area {
  text-align: center;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 40px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
}
.calculation-area__title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  margin-top: 0;
}
.calculation-area__note {
  font-size: 15px;
  margin-top: 25px;
}

.calculation-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: clamp(20px, 0.9696969697vw + 16.3636363636px, 28px);
  font-weight: 700;
  color: #2d8bea;
  line-height: 1.2;
}
.calculation-formula__symbol {
  color: #2d8bea;
  padding-inline: 4px;
}
.calculation-formula__note {
  font-size: 0.6em;
  vertical-align: super;
  margin-left: 2px;
}

/* ------------------------------------------------------------
// 制度がどう年収に反映されるか
------------------------------------------------------------ */
.case-study-grid {
  display: flex;
  gap: clamp(20px, 1.2121212121vw + 15.4545454545px, 30px);
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
}
@media screen and (max-width: 991px) {
  .case-study-grid {
    flex-direction: column;
  }
}

.case-study-card {
  flex: 1;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 139, 234, 0.15);
  cursor: default;
}
.case-study-card__head {
  margin-bottom: 20px;
  padding-inline: clamp(0px, 3.6363636364vw + -13.6363636364px, 30px);
  padding-bottom: 15px;
  border-bottom: 1px solid #2d8bea;
}
.case-study-card__id {
  font-weight: 700;
  margin-bottom: 4px;
}
.case-study-card__title {
  font-size: clamp(18px, 0.2424242424vw + 17.0909090909px, 20px);
  font-weight: 700;
  color: #2d8bea;
}
.case-study-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-inline: clamp(0px, 3.6363636364vw + -13.6363636364px, 30px);
}
.case-study-card__row.is-highlight-blue .case-study-card__label {
  color: #2d8bea;
}
.case-study-card__row.is-highlight-blue .case-study-card__value {
  color: #2d8bea;
}
.case-study-card__label {
  font-size: clamp(14px, 0.1212121212vw + 13.5454545455px, 15px);
  flex-shrink: 0;
}
.case-study-card__value {
  font-size: clamp(15px, 0.3636363636vw + 13.6363636364px, 18px);
  text-align: right;
}
.case-study-card__total {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 32px;
  font-weight: 700;
  color: #2d8bea;
  text-align: left;
  margin-top: 28px;
  padding: 10px 30px;
  background-color: #f0f7fe;
  border-radius: 6px;
}
.case-study-card__total-unit {
  font-size: 18px;
}

/* ------------------------------------------------------------
// 評価ランクと還元率加算
------------------------------------------------------------ */
.rank-grid {
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 1.2121212121vw + 15.4545454545px, 30px);
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .rank-grid {
    flex-direction: column;
  }
}

.rank-table-card {
  flex: 1.8;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
}

.rank-table-header {
  display: flex;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2d8bea;
}
.rank-table-header__item.is-rank {
  text-align: center;
  width: clamp(60px, 2.4242424242vw + 50.9090909091px, 80px);
}
.rank-table-header__item.is-rate {
  text-align: center;
  width: clamp(100px, 2.4242424242vw + 90.9090909091px, 120px);
}
.rank-table-header__item.is-desc {
  flex: 1;
  padding-left: 20px;
}

.rank-row {
  display: flex;
  align-items: center;
  padding-bottom: clamp(30px, 1.2121212121vw + 25.4545454545px, 40px);
}
.rank-row:last-child {
  padding-bottom: 0;
}
.rank-row__item.is-rank {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  width: clamp(60px, 2.4242424242vw + 50.9090909091px, 80px);
}
.rank-row__item.is-rank .u-text-s {
  color: #2d8bea;
}
.rank-row__item.is-rank .u-text-a {
  color: #39b54a;
}
.rank-row__item.is-rank .u-text-b {
  color: #999;
}
.rank-row__item.is-rate {
  font-size: 16px;
  font-weight: 700;
  color: #2d8bea;
  text-align: center;
  width: clamp(100px, 2.4242424242vw + 90.9090909091px, 120px);
}
.rank-row__item.is-desc {
  flex: 1;
  font-size: 15px;
  padding-left: 20px;
}

.bonus-rule-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #2d8bea;
  border-radius: 10px;
}
.bonus-rule-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2d8bea;
}
.bonus-rule-card__note {
  margin-top: auto;
  font-size: 15px;
  color: #999;
  padding-top: 10px;
}

.bonus-rule-item {
  margin-bottom: 20px;
}
.bonus-rule-item__sub {
  font-size: 15px;
  margin-bottom: 5px;
}
.bonus-rule-item__main {
  font-size: 18px;
  font-weight: 700;
  color: #2d8bea;
}