/* ============================================================
   number.css - 数字で見るRFA
   ============================================================ */

.footer {
  margin: 0;
}

.number-page {
  position: relative;
  padding-bottom: 180px;
}

@media screen and (max-width: 768px) {
  .number-page {
    background-size: 90% auto;
    background-position: center 200px;
    padding-bottom: 110px;
  }
}

.text-grad {
  background: linear-gradient(90deg, #295D7E 0%, #43506E 66%, #5D435E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===============================================
   ページタイトル
   =============================================== */
.page-title {
  width: 84%;
  max-width: 1080px;
  margin: 50px auto 0 auto;
}

.page-title__en {
  display: block;
  font-family: var(--font-rfa);
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 32px;
  margin-bottom: 11px;
}

.page-title__ja {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  line-height: 32px;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 20px 20px 20px 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .page-title {
    width: 90%;
    margin: 30px auto 0 auto;
  }

  .page-title__en {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .page-title__ja {
    font-size: 30px;
    padding: 14px 7px;
  }
}

/* ---- Layout ---- */
.number-main {
  padding: 60px 0 100px;
}

.number-main-grid {
  width: 84%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.num-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;

}

/* ---- Card Base ---- */
.num-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 440px;
  display: flex;
  flex-direction: column;
}

/* Card width variants */
.num-card--leftwide   { grid-column: 1 / 3; }
.num-card--rightwide {
  grid-column: 2 / 4;
}
.num-card--full   { grid-column: 1 / 4; }

/* Card color variants */
.num-card--dark {
  background: var(--rfa-color-strong02);
}

.num-card--white {

  position: relative;
  display: inline-block;
}
.num-card--white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  background: var(--rfa-color-strong02);
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0) border-box;;
  mask-composite: exclude;
  border-radius: 10px;
  z-index: -1;
}

/* ---- Common Typography ---- */
.num-card__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.5;
  padding: 28px 0 0;
  flex-shrink: 0;
}

.num-card--dark  .num-card__title { color: #fff; }

/* Number badge (white circle with gradient number) */
.num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.num-badge span {
  font-family: var(--font-rfa), sans-serif;
  font-size: 17px;
  line-height: 1;
  background: linear-gradient(90deg, #295D7E 0%, #43506E 66%, #5D435E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ============================================================
   Row 1: 入社理由 + 車内で昼寝
   ============================================================ */

/* 入社理由 (dark, wide) */
.card-reason {
  padding: 0;
}

.card-reason__body {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  gap: 2.5rem;
}

.card-reason__list {
  display: flex;
  flex-direction: column;
  width: 60%;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
}

.card-reason__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-reason__item-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
    flex: 1;
      min-width: 0;
}

.card-reason__pct {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}

.card-reason__pct-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: #BDE0F7;
  letter-spacing: -0.02em;
}

.card-reason__pct-unit {
  font-size: 1.25rem;
  color: #fff;
}

.card-reason__illust {
  flex-shrink: 0;
  width: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}

.card-reason__illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}
.card-reason__note {
  position: absolute;
  bottom: 14px;
  right: 1.5rem;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.02em;
}


/* 車内で昼寝 (white, narrow) */
.card-nap {
  padding: 0;
  align-items: center;
  justify-content: space-between;
}

.card-nap__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 20px 0;
}

.card-nap__illust {
  width: 200px;
  height: auto;
}

.card-nap__answer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  padding-bottom: 28px;
}

.card-nap__prefix {
  font-size: 28px;
  font-weight: 500;
  color: #295D7E;
}

.card-nap__num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 80px;
  line-height: 1;
}

.card-nap__unit {
  font-size: 24px;
  font-weight: 500;
  color: #295D7E;
  align-self: flex-end;
  padding-bottom: 12px;
}

/* ============================================================
   Row 2: 産休育休 + やりがい
   ============================================================ */

/* 産休育休 (white, narrow) */
.card-maternity {
  align-items: center;
  display: flex;
}

.card-maternity__body {
  display: flex;
  justify-content: center;
  padding: 20px 0 0;
  margin-bottom: 6%;
  flex-direction: column;
}

.card-maternity__illust {
  width: 100%;
  height: auto;
}

.card-maternity__pct {
  display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    position: relative;
}

.card-maternity__num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 9rem;
  line-height: 1;
}

.card-maternity__unit {
  font-size: 2rem;
    font-weight: 500;
    color: #295D7E;
    align-self: flex-end;
    bottom: 16px;
    right: 1rem;
    position: absolute;
}

/* やりがい (dark, wide) */
.card-motivation {
  position: relative;
  isolation: isolate;
}

.card-motivation__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  overflow: hidden;
}

.card-motivation__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 46%;
  gap: 1.4rem;
}

.card-motivation__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-motivation__item-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.card-motivation__chart-wrap {
  flex-shrink: 0;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.card-motivation__chart {
  width: 100%;
  height: 100%;
  margin-top: -12%;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Row 3: オフタイムの過ごし方 (full width)
   ============================================================ */

.card-offtime {
  padding: 0;
  position: relative;
}

.card-offtime__body {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  padding-top: 1.5rem;
}

.card-offtime__lists {
  width: 71%;
  display: flex;
  gap: 20px;
  padding: 16px 20px 0 0;
}

.card-offtime__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0 1.3rem 0 0;
  padding: 0;
}

.card-offtime__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-offtime__item-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  flex: 1;
  min-width: 0;
}

.card-offtime__pct {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}

.card-offtime__pct-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: #BDE0F7;
  letter-spacing: -0.02em;
}

.card-offtime__pct-unit {
  font-size: 1.25rem;
  color: #fff;
}

.card-offtime__note {
  position: absolute;
  bottom: 14px;
  right: 1.5rem;
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}

.card-offtime__illust {
  width: 18%;
  padding: 12px 0px 10px 0;
}

.card-offtime__illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============================================================
   Row 4: 男女比率 + 新卒中途 + 平均年齢
   ============================================================ */

/* 男女比率 (dark, third) */
.card-gender {
  align-items: center;
}

.card-gender__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 28px 0;
  width: 100%;
}

.card-gender__illust {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.card-gender__illust img {
  max-width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.card-gender__labels {
  display: flex;
  justify-content: center;
  gap: 27%;
  width: 100%;
  padding-left: 1rem;
}

.card-gender__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.card-gender__pct {
  display: flex;
  align-items: baseline;
  gap: 1px;
  position: relative;
}

.card-gender__pct-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: #fff;
}

.card-gender__pct-unit {
  font-size: 18px;
  color: #fff;
  bottom: 5px;
  right: -20px;
  position: absolute;
}

.card-gender__sex {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.06em;
}

/* 新卒・中途の割合 (white, third) */
.card-career {
  align-items: center;
}

.card-career__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
}

.card-career__illust {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.card-career__illust img {
  max-width: 220px;
  max-height: 150px;
  object-fit: contain;
}

.card-career__label {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-align: center;
  background: var(--rfa-color-strong02);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-career__pct {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  position: relative;
}

.card-career__pct-num {
  min-width: 161px;
  font-family: var(--font-rfa), sans-serif;
  font-size: 9rem;
  line-height: 1;
  text-align: right;
}

.card-career__pct-unit {
  font-size: 2rem;
  font-weight: 500;
  color: #295D7E;
  align-self: flex-end;
  bottom: 16px;
  right: -1.5rem;
  position: absolute;
}

/* 平均年齢 (dark, third) */
.card-avg-age {
  align-items: center;
}

.card-avg-age__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 35px;
}

.card-avg-age__figures {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.card-avg-age__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-avg-age__figure img {
  height: 140px;
  width: auto;
  object-fit: contain;
}

.card-avg-age__age-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  position: relative;
  gap: 2px;
}

.card-avg-age__num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 9rem;
  line-height: 1;
  color: #fff;
}

.card-avg-age__unit {
  font-size: 2rem;
  color: #fff;
  align-self: flex-end;
      bottom: 16px;
        right: -1.5rem;
        position: absolute;
}


/* 年代比率 */
.card-decade {
  align-items: center;
}

.card-decade__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 35px;
}
.card-decade__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card-decade__item {
  width: 45%;
  margin-bottom: 1rem;
  padding: 0 10%;
  box-sizing: border-box;
  text-align: center;
}
.card-decade__illust {
  margin-bottom: 5px;
}
.card-decade__pct {
  position: relative;
  text-align: center;
  display: inline-block;
}
.card-decade__pct-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}
.card-decade__pct-unit {
  font-size: 18px;
  bottom: 8px;
  right: -15px;
  position: absolute;
}

/* ============================================================
   Row 5: 昇給チャンス + お酒 + 職場での服装
   ============================================================ */

/* 昇給チャンス (white, third) */
.card-raise {
  align-items: center;
}

.card-raise__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 0;
  width: 100%;
  gap: 28px;
  text-align: center;
}

.card-raise__months {
  width: 69%;
  height: auto;
}

.card-raise__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}

.card-raise__icon {
  width: 30%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}

.card-raise__pct {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.card-raise__prefix {
  font-size: 79px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-bottom: 14px;
}

.card-raise__num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 9rem;
  line-height: 1;
}

.card-raise__unit {
  font-size: 79px;
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 14px;
}

/* 出身業界比率 (dark, third) */
.card-industry {
  padding: 0;
}

.card-industry__body {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 40px 0 0;
  gap: 10%;
}
.card-industry__glasses-wrap {
  width: 23%;
}
.card-industry__glasses {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.card-industry__list {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-industry__item {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.card-industry__item-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 22px;
  color: #BDE0F7;
  flex-shrink: 0;
  min-width: 36px;
}

.card-industry__item-unit {
  font-size: 13px;
  color: #fff;
}

.card-industry__item-text {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  flex: 1;
}
.card-industry__pct {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}
.card-industry__pct-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: #BDE0F7;
  letter-spacing: -0.02em;
}
.card-industry__pct-unit {
  font-size: 1.25rem;
  color: #fff;
}



/* お酒に対しての印象 (dark, third) */
.card-alcohol {
  padding: 0;
}

.card-alcohol__body {
  justify-content: center;
  display: flex;
  align-items: center;
  padding: 40px 0 0;
  gap: 10%;
}
.card-alcohol__illust {
  width: 23%;
}
.card-alcohol__glasses {
  width: 100%;
  height: auto;
}

.card-alcohol__list {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-alcohol__item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  line-height: 0;
}

.card-alcohol__item-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 22px;
  color: #BDE0F7;
  flex-shrink: 0;
  min-width: 36px;
}

.card-alcohol__item-unit {
  font-size: 13px;
  color: #fff;
}

.card-alcohol__item-text {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: #fff;
  flex: 1;
}

.card-alcohol__pct {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}
.card-alcohol__pct-num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 2.8rem;
  line-height: 1;
  color: #BDE0F7;
  letter-spacing: -0.02em;
}
.card-alcohol__pct-unit {
  font-size: 1.25rem;
  color: #fff;
}
.card-alcohol__item:nth-of-type(4) {
  align-items: flex-end;
}
.card-alcohol__item:nth-of-type(4) .card-alcohol__item-text {
  font-size: 1.1rem;
  line-height: 1;
}
.card-alcohol__item:nth-of-type(4) .card-alcohol__item-text span.card-alcohol__item-text-min {
  display: block;
  font-size: 0.8rem;
}

/* 職場での服装 (white, third) */
.card-dress {
  align-items: center;
}

.card-dress__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0 0;
  width: 100%;
}

.card-dress__clothes {
  width: 72%;
  overflow: hidden;
  margin-bottom: 11%;
}
.card-dress__pct {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.card-dress__prefix {
  font-size: 2.4rem;
  font-weight: 500;
  color: #295D7E;
  letter-spacing: 0.04em;
  writing-mode: vertical-lr;
}

.card-dress__num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 9rem;
  line-height: 1;
}

.card-dress__unit {
  font-size: 2rem;
  font-weight: 500;
  color: #295D7E;
  align-self: flex-end;
  padding-bottom: 10px;
}

/* ============================================================
   Row 6: 最大勤続年数 + 職種・部門比率
   ============================================================ */

/* 最大勤続年数 (white, narrow) */
.card-tenure {
  align-items: center;
}

.card-tenure__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 0;
  width: 100%;
}

.card-tenure__medal {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.card-tenure__medal img {
  max-width: 150px;
  max-height: 220px;
  object-fit: contain;
}

.card-tenure__years {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.card-tenure__num {
  font-family: var(--font-rfa), sans-serif;
  font-size: 9rem;
  line-height: 1;
      letter-spacing: -0.06rem;
}

.card-tenure__unit {
  font-size: 32px;
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 14px;
      letter-spacing: 0.3rem;
}
.card-tenure__numsub {
  font-family: var(--font-rfa), sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: -0.3rem;
}
.card-tenure__unit02 {
  font-size: 40px;
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 14px;
  letter-spacing: -0.3rem;
}
.card-tenure__unit03 {
  font-size: 45px;
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: 14px;
  letter-spacing: -0.3rem;
}


/* 職種・部門比率 (dark, wide) */
.card-dept {
  padding: 0;
}

.card-dept__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4%;
  justify-content: center;
  overflow: hidden;
}

.card-dept__illust {
  flex-shrink: 0;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.card-dept__illust img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: -12%;
}

.card-dept__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 51%;
  gap: 18px;
}

.card-dept__list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.card-dept__item {
  display: flex;
  align-items: center;
      gap: 4%;
}

.card-dept__item-text {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.card-dept__item-text span {
  font-size: 1rem;
}

/* ===============================================
   レスポンシブ
   =============================================== */
@media screen and (max-width: 768px) {
  .num-row {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
  .num-row.sp-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .num-card {
    height: 270px;
  }
  .num-card--leftwide,
  .num-card--rightwide {
    height: auto;
    grid-column: auto;
  }
  .num-card__title {
    padding: 20px 0 0;
  }
  .card-gender__body {
    width: 76%;
    padding: 10px 0 0 0;
    flex-direction: row;
    justify-content: center;
  }
  .card-gender__illust {
    flex: auto;
    width: 60%;
    margin-bottom: 0;
  }
  .card-gender__labels {
    width: 45%;
    flex-direction: column;
    padding-left: 0;
  }
  .card-gender__pct-num {
    font-size: 4.5rem;
  }
  .card-gender__pct-unit {
    font-size: 1.5rem;
    right: -23px;
  }
  .card-gender__sex {
    font-size: 18px;
  }
  .card-career__body {
    width: 71%;
    flex-direction: row;
    margin: 0 0 0 11%;
    padding: 15px 0 0;
    justify-content: center;
  }
  .card-career__illust {
    margin-bottom: 0.5rem;
  }
  .card-avg-age__body {
    padding: 16px 0 35px;
    flex-direction: row;
    width: 87%;
  }
  .card-avg-age__figures {
    flex-wrap: wrap;
    width: 20%;
    gap: 1px;
  }
  .card-avg-age__figure {
    width: 38%;
  }
  .card-avg-age__figure img {
    height: auto;
    width: 100%;
  }
  .card-avg-age__num {
    font-size: 8rem;
  }
  .card-avg-age__age-num {
    width: 69%;
  }
  .card-avg-age__unit {
    font-size: 1.5rem;
    right: 0;
  }


  .card-decade {
    height: auto;
  }
  .card-industry__body {
    flex-direction: column-reverse;
  }
  .number-main-grid {
    gap: 20px;
  }
  .card-dept__body {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 9%;
    gap: 13px;
  }
  .card-dept__illust {
    width: 74%;
  }
  .card-dept__illust img {
    margin-top: 8%;
  }
  .card-dept__right {
    width: 78%;
    gap: 0;
  }
  .card-dept__list {
    gap: 14px;
  }
  .card-dept__item-text {
    font-size: .95rem;
  }
  .card-dept__item-text span {
    font-size: .7rem;
  }
  .card-tenure__body {
    flex-direction: row;
    width: 82%;
    margin: 0 auto;
    gap: 1.5rem;
    padding: 6% 0 0;
    justify-content: center;
  }
  .card-tenure__medal {
    width: 41%;
  }
  .card-tenure__years {
    width: 46%;
    flex-direction: column;
  }
  .card-tenure__main {
    letter-spacing: -1rem;
  }
  .card-tenure__sub {
    letter-spacing: -1rem;
  }

  .card-tenure__num {
    font-size: 8rem;
  }
  .card-tenure__unit {
    font-size: 25px;
  }
  .card-tenure__numsub {
    font-size: 4rem;
    letter-spacing: -0.1rem;
  }
  .card-tenure__unit03 {
    font-size: 41px;
  }
  .card-motivation__body {
    flex-direction: column-reverse;
    padding-top: 6%;
    padding-bottom: 9%;
  }
  .card-motivation__chart-wrap {
    width: 67%;
    margin-bottom: 4%;
  }
  .card-motivation__chart {
    margin-top: 0;
    margin-left: 9%;
  }
  .card-motivation__list {
    width: 80%;
    gap: 7px;
  }
  .card-motivation__item-text {
    font-size: .95rem;
  }
  .card-raise__body {
    padding: 30px 0 0;
    flex-direction: row;
    width: 84%;
    margin: auto;
    align-items: flex-end;
    gap: 5px;
    justify-content: center;
  }
  .card-raise__months {
    width: 100%;
  }
  .card-raise__bottom {
    width: 65%;
  }
  .card-raise__icon {
    width: 33%;
  }
  .card-raise__prefix {
    font-size: 65px;
  }
  .card-raise__num {
    font-size: 8rem;
  }
  .card-raise__unit {
    font-size: 64px;
  }
  .card-reason__body {
    flex-direction: column-reverse;
    padding-top: 5%;
    padding-bottom: 15%;
    gap: 2rem;
  }
  .card-reason__illust {
    width: 73%;
  }
  .card-reason__list {
    width: 85%;
    gap: 7px;
  }
  .card-reason__item-text {
    font-size: .95rem;
  }
  .card-reason__pct-num {
    font-size: 1.75rem;
  }
  .card-reason__pct-unit {
    font-size: 0.85rem;


  }
  .card-reason__note {
    right: 0;
    left: 0;
    text-align: center;
    bottom: 22px;
  }
  .card-maternity__body {
    width: 93%;
    flex-direction: row;
    align-items: center;
  }
  .card-maternity__pct {
    width: 58%;
    justify-content: left;
  }
  .card-industry {
    height: auto;
    padding-bottom: 9%;
  }
  .card-industry__glasses {
    width: 40%;
  }
  .card-industry__list {
    margin: 5% 0 0 0;
    width: 85%;
    gap: 7px;
  }
  .card-industry__item-text {
    font-size: .95rem;
  }
  .card-industry__glasses-wrap {
    width: 100%;
    text-align: center;
  }
  .card-maternity__unit {
    right: 0rem;
  }
  .card-industry__pct-num {
    font-size: 1.75rem;
  }
  .card-industry__pct-unit {
    font-size: 0.85rem;
  }
  .card-dress__body {
    width: 93%;
    padding: 0.5rem 0 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .card-dress__clothes {
    width: 28%;
    margin-bottom: 0;
  }

  .card-dress__pct {
    width: 58%;
    justify-content: left;
    flex-direction: column;
    align-items: center;
    gap: 0px;
        position: relative;
  }
  .card-dress__prefix {
    writing-mode: inherit;
  }
  .card-dress__unit {
    font-size: 2rem;
    font-weight: 500;
    align-self: flex-end;
    bottom: 7px;
    right: -12px;
    position: absolute;
  }
  .card-alcohol {
    height: auto;
    padding-bottom: 9%;
  }
  .card-alcohol__body {
    flex-direction: column-reverse;
  }
  .card-alcohol__list {
    margin: 5% 0 0 0;
    width: 75%;
    gap: 7px;
  }
  .card-alcohol__illust {
    width: 100%;
    text-align: center;
  }
  .card-alcohol__glasses {
    width: 40%;
  }
  .card-alcohol__item-text {
    font-size: .95rem;
  }
  .card-alcohol__pct-num {
    font-size: 1.75rem;
  }
  .card-alcohol__pct-unit {
    font-size: 0.85rem;
  }
  .card-alcohol__item:nth-of-type(4) .card-alcohol__item-text {
    font-size: .95rem;
  }
    .card-alcohol__item:nth-of-type(4) .card-alcohol__item-text span.card-alcohol__item-text-min {
    display: inline;
      font-size: .95rem;
    }
  .card-alcohol__item:nth-of-type(4) .card-alcohol__item-text span {
  }

  .card-offtime {
    height: auto;
  }
  .card-offtime__body {
    padding-top: 2%;
    padding-bottom: 15%;
    flex-direction: column-reverse;
    align-items: center;
  }
  .card-offtime__illust {
    padding: 0;
    width: 80%;
  }
  .card-offtime__lists {
    width: 82%;
    flex-direction: column;
    gap: 0.3rem;
    padding-right: 0;
  }
  .card-offtime__col {
    margin: 0;
    gap: 0.5rem;
  }
  .card-offtime__item {
    gap: 6px;
  }
  .card-offtime__item-text {
    font-size: .95rem;
  }
  .card-offtime__pct-num {
    font-size: 1.75rem;
  }
  .card-offtime__pct-unit {
    font-size: 0.85rem;
  }
  .card-offtime__note {
    right: 0;
    left: 0;
    text-align: center;
    bottom: 22px;
  }


  .num-badge {
    width: 25px;
    height: 25px;
  }
  .num-badge span {
    font-size: 15px;
  }
}
