@charset "UTF-8";
/* アニメーション中に文字が要素からはみ出さないようにする */
.slide-in {
  display: inline-block;
  width: 0; /* 幅0%から始める */
  white-space: nowrap; /* テキストが折り返されないようにする */
  overflow: hidden; /* 幅が狭い間はテキストが見えないようにする */
  opacity: 0; /* 初期状態で透明 */
  animation: expandWidth 0.8s ease forwards; /* 4秒で幅を広げるアニメーション */
}
.slide-in.delay1 {
  animation-delay: 0.3s;
}
.slide-in.delay2 {
  animation-delay: 0.6s;
}
.slide-in.delay3-5 {
  animation-delay: 0.9s;
}

/* @keyframes を使って幅と透明度を変化させる */
@keyframes expandWidth {
  0% {
    width: 0; /* 最初は幅が0 */
    opacity: 0; /* 最初は透明 */
  }
  50% {
    width: 5%;
    opacity: 0;
  }
  100% {
    width: 100%; /* 最終的に幅が100% */
    opacity: 1; /* 表示されたまま */
  }
}
body {
  letter-spacing: 0.1em;
  background: var(--color-white);
}
body h1, body h2 {
  font-family: var(--regular-family);
}

body {
  overflow-x: hidden;
}

@media (width < 375px) {
  .sp-none {
    display: none;
  }
}

.sp-show {
  display: none;
}
@media (width < 375px) {
  .sp-show {
    display: block;
  }
}

@media (width < 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media (width < 768px) {
  .md-show {
    display: block;
  }
}

@media (width < 1026px) {
  .lg-none {
    display: none;
  }
}

.lg-show {
  display: none;
}
@media (width < 1026px) {
  .lg-show {
    display: block;
  }
}

.child-top {
  position: relative;
}
@media (width < 768px) {
  .child-top__img {
    aspect-ratio: 750/400;
  }
}
.child-top__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1600/400;
}
@media (width < 768px) {
  .child-top__img img {
    aspect-ratio: 750/400;
  }
}
.child-top__txt {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.child-top .slide-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.child-top__text-main {
  font-size: 32px;
  letter-spacing: 0.1em;
  color: var(--color-white);
}
@media (width < 768px) {
  .child-top__text-main {
    font-size: clamp(1.75rem, 0.262rem + 7.44vw, 3.75rem);
    line-height: 1.8333333333;
  }
}
.child-top::after {
  position: absolute;
  white-space: nowrap;
  color: var(--color-white);
  font-size: 192px;
  letter-spacing: 0.07em;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (width < 768px) {
  .child-top::after {
    font-size: 100px;
  }
}

.sub-menu {
  width: 100%;
  margin-top: 50px;
}
@media (width < 768px) {
  .sub-menu {
    margin-top: 7.8vw;
  }
}
@media (width < 768px) {
  .sub-menu .lower-inner {
    width: 100%;
  }
}
.sub-menu .sub-menu__items {
  display: flex;
  justify-content: space-between;
}
@media (width < 768px) {
  .sub-menu .sub-menu__items {
    width: 100%;
  }
}
.sub-menu .sub-menu__item {
  cursor: pointer;
  width: 100%;
  text-align: center;
  padding-block: 3px;
  border-right: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item {
    padding-block: 0;
    height: 3.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sub-menu .sub-menu__item:first-child {
  border-left: 1px solid var(--color-black);
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:first-child {
    border-left: none;
  }
}
@media (width < 768px) {
  .sub-menu .sub-menu__item:last-child {
    border-right: none;
  }
}
.sub-menu .sub-menu__item:hover {
  opacity: 0.7;
}
.sub-menu .sub-menu__link {
  font-size: 14px;
  transition: opacity 0.3s;
  display: block;
}
@media (width < 768px) {
  .sub-menu .sub-menu__link {
    font-size: 2.6666666667vw;
  }
}

.link-tab__button {
  position: fixed;
  z-index: 9000;
  right: 0px;
  top: 226px;
  width: 54px;
  height: 160px;
  cursor: pointer;
  background-color: var(--color-black);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (width < 768px) {
  .link-tab__button {
    display: none;
  }
}
.link-tab__button::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 18px;
  left: 50%;
  translate: -50% 0;
  top: 20px;
  background: url(/recruit/career/cmn/img/search.webp) center center/contain no-repeat;
}
.link-tab__button a {
  display: block;
  color: var(--color-white);
  font-size: 16px;
  writing-mode: vertical-rl;
  width: 100%;
  height: 100%;
}
.link-tab__button p {
  position: absolute;
  top: 68px;
  left: 50%;
  translate: -50% 0;
}

.lower-inner {
  padding-inline: 10px;
  width: calc(70% + 20px);
  max-width: 100%;
  margin-inline: auto;
}
@media (width < 768px) {
  .lower-inner {
    width: 86.6666vw;
    margin-inline: auto;
    padding-inline: 0;
  }
}

.lower-title {
  font-size: 32px;
  line-height: 2.2853571429;
  position: relative;
  letter-spacing: 0.07em;
  padding-left: 44px;
}
@media (width < 768px) {
  .lower-title {
    font-size: 6.4vw;
    padding-left: 1em;
    line-height: 1.3;
  }
}
.lower-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-black);
  width: 6px;
  height: 40px;
}
@media (width < 768px) {
  .lower-title::before {
    width: 3px;
    height: 8vw;
  }
}

/*ボタン*/
.btn-area {
  margin-inline: auto;
  display: flex;
  gap: 38px;
  justify-content: center;
}
@media (width < 768px) {
  .btn-area {
    flex-direction: column;
    width: 100%;
    margin: 35px auto 0;
    gap: 8.5333vw;
  }
}
.btn-area .btn {
  margin-inline: auto;
  max-width: 420px;
  width: 50vw;
}
@media (width < 768px) {
  .btn-area .btn {
    width: 85%;
  }
}
@media (width < 768px) {
  .btn-area .btn a {
    height: 70px;
    font-size: 1rem;
  }
}
@media (width < 768px) {
  .btn-area .btn__arrow {
    right: 5vw;
  }
}

.lower-main {
  margin-top: 104px;
}
@media (width < 1026px) {
  .lower-main {
    margin-top: 0;
  }
}

.header__logo-txt {
  color: var(--color-black);
}
.header__item {
  color: var(--color-black);
}
.header__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-black);
  position: absolute;
  bottom: -10px;
  transform: scale(0, 1);
  transform-origin: center;
  transition: transform 0.3s ease-in-out;
}
.header__item.current::after {
  transform: scale(1);
}
.header__item:hover::after {
  transform: scale(1);
}

/*各セクション共通*/
.workstyle section {
  margin-top: 100px;
}
.workstyle .workstyle-btn__area {
  padding-block: 124px 160px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width < 768px) {
  .workstyle .workstyle-btn__area {
    padding-block: 34px 61px;
    width: 100%;
  }
}
@media (width < 768px) {
  .workstyle .workstyle-btn__area.md-none {
    display: none;
  }
}
@media (width < 768px) {
  .workstyle .workstyle-btn__area .btn {
    max-width: initial;
  }
}
@media (width < 768px) {
  .workstyle .workstyle-btn__area .btn a {
    height: 21.8666vw;
  }
}
@media (width < 768px) {
  .workstyle .workstyle-btn__area .btn__arrow {
    right: 5vw;
  }
}

.workstyle-lead {
  margin-top: 72px;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media (width < 768px) {
  .workstyle-lead {
    margin-top: 34px;
    line-height: 1.75;
  }
}

.workstyle-top::after {
  content: "WORK STYLE";
  font-size: 11.875vw;
  letter-spacing: 0.02em;
}
@media (width < 768px) {
  .workstyle-top::after {
    font-size: 46px;
  }
}
@media (width < 768px) {
  .workstyle-top .workstyle-top__text-main {
    margin-top: 8px;
    font-size: 6.4vw;
  }
}

.workstyle section.workstyle-questionnaire {
  margin-top: 91px;
}
@media (width < 768px) {
  .workstyle section.workstyle-questionnaire {
    margin-top: 42px;
  }
}

.workstyle-questionnaire {
  margin-top: 78px;
  padding-block: 62px 129px;
  background-color: var(--color-platinumgray);
}
@media (width < 768px) {
  .workstyle-questionnaire {
    margin-top: 14px;
    padding-block: 52px 39px;
  }
}
.workstyle-questionnaire .lower-title {
  letter-spacing: 0.06em;
}
@media (width < 1026px) {
  .workstyle-questionnaire .lower-title {
    line-height: 1.4;
    border-left: 3px solid var(--color-black);
  }
}
@media (width < 1026px) {
  .workstyle-questionnaire .lower-title::before {
    display: none;
  }
}
.workstyle-questionnaire .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
@media (width < 1200px) {
  .workstyle-questionnaire .cards {
    margin-top: 37px;
    flex-direction: column;
    gap: 19px;
  }
}
.workstyle-questionnaire .card {
  padding: 62px 25px 20px 25px;
  width: calc((100% - 42px) / 3);
  background-color: var(--color-white);
}
@media (width < 1200px) {
  .workstyle-questionnaire .card {
    width: 100%;
  }
}
@media (width < 768px) {
  .workstyle-questionnaire .card {
    padding-block: 9vw 10.4vw;
    padding-inline: 6vw;
  }
}
.workstyle-questionnaire .card .card__title {
  position: relative;
  text-align: center;
  font-family: var(--regular-family);
  font-size: 22px;
  letter-spacing: 0.06em;
  line-height: 1.8181818182;
  padding-bottom: 16px;
}
@media (width < 768px) {
  .workstyle-questionnaire .card .card__title {
    font-size: 5.3333333333vw;
    line-height: 1.6;
    padding-bottom: 4.2666666667vw;
  }
}
.workstyle-questionnaire .card .card__title::after {
  position: absolute;
  content: "";
  right: 0;
  left: 0;
  bottom: -6px;
  margin-inline: auto;
  width: 40px;
  height: 2px;
  background-color: var(--color-black);
}
@media (width < 768px) {
  .workstyle-questionnaire .card .card__title::after {
    bottom: 0px;
    height: 3px;
  }
}
.workstyle-questionnaire .card .card__title span {
  white-space: nowrap;
}
.workstyle-questionnaire .card .card__img {
  margin-top: 33px;
  margin-inline: auto;
  width: 92%;
  height: auto;
  aspect-ratio: 1/1;
}
@media (width < 1200px) {
  .workstyle-questionnaire .card .card__img {
    margin-top: 40px;
    width: 60%;
  }
}
@media (width < 768px) {
  .workstyle-questionnaire .card .card__img {
    margin-top: 25px;
    width: 71.2vw;
  }
}
.workstyle-questionnaire .card .card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.workstyle-questionnaire .card .card__body {
  margin-top: 27px;
  padding: 11px 19px 19px 19px;
  letter-spacing: 0.13em;
  background-color: var(--color-platinumgray);
}
@media (width < 768px) {
  .workstyle-questionnaire .card .card__body {
    margin-top: 26px;
    padding: 10px 16px 15px 16px;
  }
}
.workstyle-questionnaire .card .card__text {
  font-size: 16px;
  line-height: 2;
}
@media (width < 768px) {
  .workstyle-questionnaire .card .card__text {
    font-size: 4.2666666667vw;
    line-height: 1.77;
  }
}
.workstyle-questionnaire .cards2 {
  margin-top: 81px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 {
    margin-top: 19px;
  }
}
.workstyle-questionnaire .cards2.cards1 {
  margin-top: 76px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2.cards1 {
    margin-top: 37px;
  }
}
.workstyle-questionnaire .cards2 .card {
  width: 100%;
  padding: 62px 50px 60px 50px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 .card {
    padding: 62px 22px 30px 22px;
  }
}
.workstyle-questionnaire .cards2 .card__title::after {
  bottom: -3px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 .card__title::after {
    bottom: -1px;
  }
}
.workstyle-questionnaire .cards2 .card__body {
  margin-top: 10px;
  display: flex;
  gap: 27px;
  padding: 25px 28px 20px 23px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 .card__body {
    display: block;
    gap: 20px;
    padding: 15px 12px 18px 15px;
    letter-spacing: 0.1em;
  }
}
.workstyle-questionnaire .cards2 .card__body.card__body1 {
  margin-top: 42px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 .card__body.card__body1 {
    margin-top: 21px;
  }
}
.workstyle-questionnaire .cards2 .card__body img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  width: 70px;
  height: 70px;
  margin-top: -5px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 .card__body img {
    margin-top: 0;
    width: 16vw;
    height: 16vw;
    float: left;
    margin: 2% 5.5% 0 1.5%;
  }
}
.workstyle-questionnaire .cards2 .card__body .card__text {
  display: flex;
  align-items: center;
  letter-spacing: 0.07em;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards2 .card__body .card__text {
    display: block;
    line-height: 1.74;
    letter-spacing: 0.12em;
  }
}
.workstyle-questionnaire .cards3 {
  margin-top: 106px;
}
@media (width < 768px) {
  .workstyle-questionnaire .cards3 {
    margin-top: 19px;
  }
}
@media (width > 1200px) {
  .workstyle-questionnaire .cards3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width > 1200px) {
  .workstyle-questionnaire .cards3 .card {
    width: 100%;
    grid-row: span 3;
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
  }
}
.workstyle-questionnaire .cards3 .card__title {
  font-size: 1.375vw;
}
@media (width < 1200px) {
  .workstyle-questionnaire .cards3 .card__title {
    font-size: 22px;
  }
}
@media (width < 768px) {
  .workstyle-questionnaire .cards3 .card__title {
    font-size: 5.3333333333vw;
  }
}
@media (width < 1200px) {
  .workstyle-questionnaire .cards3 .card__title-br {
    display: none;
  }
}
@media (width < 768px) {
  .workstyle-questionnaire .cards3 .card__title-br {
    display: block;
  }
}

/* keyword */
@media (width < 768px) {
  .strengths section.strengths-keyword {
    margin-top: 16.5333333333vw;
  }
}
.strengths .strengths-keyword .btn-area {
  margin-top: 50px;
  padding-bottom: 0;
}
@media (width < 768px) {
  .strengths .strengths-keyword .btn-area{
    margin-top: 20.6vw;
  }
}
.strengths .strengths-keyword .btn {
  padding-inline: 10px;
}
@media (width < 768px) {
  .strengths .strengths-keyword .btn {
    width: 100%;
    max-width: 100%;
  }
}
@media (width < 375px) {
  .strengths .strengths-keyword .btn {
    padding-inline: 15px;
  }
}
.strengths .strengths-keyword .btn a {
  line-height: 1.6;
}
.strengths .strengths-keyword .btn .md500-show {
  display: none;
}
@media (width < 500px) {
  .strengths .strengths-keyword .btn .md500-show {
    display: block;
  }
}
.strengths .strengths-keyword .sub__link2 {
  position: relative;
  width: 34px;
  height: 17px;
}
@media (width < 1026px) {
  .strengths .strengths-keyword .sub__link2 {
    width: 24px;
  }
}
@media (width < 500px) {
  .strengths .strengths-keyword .sub__link2 {
    width: 34px;
  }
}
.strengths .strengths-keyword .sub__link2::after {
  position: absolute;
  z-index: 3;
  content: "";
  width: 17px;
  height: 17px;
  top: 0;
  right: 0;
  background: url(/recruit/career/strengths/img/window-white.webp) center center/contain no-repeat;
}
.strengths-keyword .cards {
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.85vw;
  justify-content: space-between;
}
@media (width < 1200px) {
  .strengths-keyword .cards {
    row-gap: 20px;
  }
}
@media (width < 1026px) {
  .strengths-keyword .cards {
    row-gap: 14px;
    margin-top: 8vw;
  }
}
.strengths-keyword .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 23.2142857143%;
  height: 18.75vw;
  background-color: var(--color-platinumgray);
}
@media (width < 1200px) {
  .strengths-keyword .card {
    width: 22.6744186047%;
    height: 28vw;
  }
}
@media (width < 1026px) {
  .strengths-keyword .card {
    flex-direction: row;
    width: 100%;
    height: 37.6vw;
  }
}
.strengths-keyword .card__img {
  width: auto;
  height: 9.1vw;
  display: flex;
  align-items: end;
  justify-content: center;
}
@media (width < 1200px) {
  .strengths-keyword .card__img {
    height: 12.5vw;
  }
}
@media (width < 1026px) {
  .strengths-keyword .card__img {
    width: 46%;
    height: 40%;
  }
}
@media (width < 768px) {
  .strengths-keyword .card__img {
    height: 53%;
  }
}
.strengths-keyword .card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media (width < 1026px) {
  .strengths-keyword .card__img img {
    height: 100% !important;
    width: auto !important;
  }
}
.strengths-keyword .card1 .card__img img {
  aspect-ratio: 136/170;
  width: 4.25vw;
}
@media (width < 1200px) {
  .strengths-keyword .card1 .card__img img {
    width: 5.6666666667vw;
  }
}
.strengths-keyword .card2 .card__img img {
  aspect-ratio: 144/144;
  width: 4.5vw;
}
@media (width < 1200px) {
  .strengths-keyword .card2 .card__img img {
    width: 6vw;
  }
}
.strengths-keyword .card3 .card__img img {
  aspect-ratio: 154/162;
  width: 4.8125vw;
}
@media (width < 1200px) {
  .strengths-keyword .card3 .card__img img {
    width: 6vw;
  }
}
.strengths-keyword .card4 .card__img {
  margin-block: -3px 3px;
  margin-left: 9px;
}
@media (width < 1026px) {
  .strengths-keyword .card4 .card__img {
    margin-left: 0;
  }
}
.strengths-keyword .card4 .card__img img {
  aspect-ratio: 142/146;
  width: 4.4375vw;
}
@media (width < 1200px) {
  .strengths-keyword .card4 .card__img img {
    width: 5.9166666667vw;
  }
}
.strengths-keyword .card5 .card__img {
  margin-block: -6px 6px;
}
.strengths-keyword .card5 .card__img img {
  aspect-ratio: 144/144;
  width: 4.5vw;
}
@media (width < 1200px) {
  .strengths-keyword .card5 .card__img img {
    width: 6vw;
  }
}
.strengths-keyword .card6 .card__img {
  margin-block: -10px 10px;
  margin-left: 5px;
}
@media (width < 1026px) {
  .strengths-keyword .card6 .card__img {
    margin-left: 0;
  }
}
.strengths-keyword .card6 .card__img img {
  aspect-ratio: 158/126;
  width: 4.9375vw;
}
@media (width < 1200px) {
  .strengths-keyword .card6 .card__img img {
    width: 6.5833333333vw;
  }
}
.strengths-keyword .card6 .card__text {
  line-height: 1.5;
  margin-top: 0.3vw;
}
.strengths-keyword .card7 .card__img {
  margin-block: 3px -3px;
}
.strengths-keyword .card7 .card__img img {
  aspect-ratio: 126/164;
  width: 3.9375vw;
}
@media (width < 1200px) {
  .strengths-keyword .card7 .card__img img {
    width: 5.25vw;
  }
}
.strengths-keyword .card8 .card__img {
  margin-block: -7px 7px;
  margin-left: 4px;
}
@media (width < 1026px) {
  .strengths-keyword .card8 .card__img {
    margin-left: 0;
  }
}
.strengths-keyword .card8 .card__img img {
  aspect-ratio: 147/130;
  width: 4.625vw;
}
@media (width < 1200px) {
  .strengths-keyword .card8 .card__img img {
    width: 6.1666666667vw;
  }
}
.strengths-keyword .card9 .card__img {
  margin-block: -7px 7px;
}
@media (width < 1026px) {
  .strengths-keyword .card9 .card__img {
    height: 35%;
  }
}
@media (width < 768px) {
  .strengths-keyword .card9 .card__img {
    height: 43%;
  }
}
.strengths-keyword .card9 .card__img img {
  aspect-ratio: 246/144;
  width: 7.6875vw;
}
@media (width < 1200px) {
  .strengths-keyword .card9 .card__img img {
    width: 10.25vw;
  }
}
.strengths-keyword .card10 .card__img {
  margin-block: -3px 3px;
}
.strengths-keyword .card10 .card__img img {
  aspect-ratio: 174/145;
  width: 5.4375vw;
}
@media (width < 1200px) {
  .strengths-keyword .card10 .card__img img {
    width: 7.25vw;
  }
}
.strengths-keyword .card11 .card__img {
  margin-block: 1px -1px;
  margin-left: 1px;
}
@media (width < 1026px) {
  .strengths-keyword .card11 .card__img {
    margin-left: 0;
  }
}
.strengths-keyword .card11 .card__img img {
  aspect-ratio: 157/157;
  width: 5vw;
}
@media (width < 1200px) {
  .strengths-keyword .card11 .card__img img {
    width: 6.6666666667vw;
  }
}
.strengths-keyword .card12 .card__img {
  margin-left: 1px;
}
@media (width < 1026px) {
  .strengths-keyword .card12 .card__img {
    margin-left: 0;
  }
}
.strengths-keyword .card12 .card__img img {
  aspect-ratio: 182/145;
  width: 5.6875vw;
}
@media (width < 1200px) {
  .strengths-keyword .card12 .card__img img {
    width: 7.5833333333vw;
  }
}
.strengths-keyword .card__body {
  text-align: center;
}
@media (width < 1026px) {
  .strengths-keyword .card__body {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
.strengths-keyword .card__category {
  margin-top: 2.1875vw;
  font-size: 1.125vw;
}
@media (width < 1200px) {
  .strengths-keyword .card__category {
    margin-top: 2.9166666667vw;
    font-size: 1.5vw;
  }
}
@media (width < 1026px) {
  .strengths-keyword .card__category {
    margin-top: 0;
    font-size: 26px;
  }
}
@media (width < 768px) {
  .strengths-keyword .card__category {
    font-size: 4.2666666667vw;
  }
}
.strengths-keyword .card__data {
  margin-top: 0.5vw;
  font-size: 1.25vw;
}
@media (width < 1200px) {
  .strengths-keyword .card__data {
    margin-top: 0.8333333333vw;
    font-size: 1.6666666667vw;
  }
}
@media (width < 1026px) {
  .strengths-keyword .card__data {
    margin-top: 3.3333333333vw;
    font-size: 30px;
  }
}
@media (width < 768px) {
  .strengths-keyword .card__data {
    font-size: 4.2666666667vw;
  }
}
.strengths-keyword .card__data span {
  font-size: 2vw;
  letter-spacing: -0.02em;
  margin-right: 4px;
}
@media (width < 1200px) {
  .strengths-keyword .card__data span {
    font-size: 2.6666666667vw;
  }
}
@media (width < 1026px) {
  .strengths-keyword .card__data span {
    font-size: 56px;
  }
}
@media (width < 768px) {
  .strengths-keyword .card__data span {
    font-size: 7.4666666667vw;
  }
}
.strengths-keyword .card__text {
  margin-top: 0.65vw;
  font-size: 0.75vw;
}
@media (width < 1200px) {
  .strengths-keyword .card__text {
    margin-top: 1.25vw;
    font-size: 1vw;
  }
}
@media (width < 1026px) {
  .strengths-keyword .card__text {
    margin-top: 3.7333333333vw;
    font-size: 18px;
  }
}
@media (width < 768px) {
  .strengths-keyword .card__text {
    font-size: min(2.9333333333vw, 18px);
  }
}