@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;
  }
}

.s420-show {
  display: none;
}
@media (width < 420px) {
  .s420-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;
  }
}

/* リード文 */
.section-lead {
  text-align: center;
  margin-top: 32px;
  line-height: 1.7;
}
@media (width < 768px) {
  .section-lead {
    text-align: left;
    margin-top: 4px;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
}

/*ボタン*/
.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);
}

/*各セクション共通*/
.strengths {
  /*
  //サブリンク
  .sub__link {
    position: relative;
  	margin-top: 48px;
  	letter-spacing: 0.07em;
  	font-size: 16px;
  	width:fit-content;
  	border-bottom: 1px solid var(--color-black);
  	@include v.max(md) {
  		margin-top: 28px!important;
  	}
  	@include v.max(sm) {
  		letter-spacing: -0.02em;
  	}
    &::after{
  		position: absolute;
  		content: '';
  		width: 17px;
  		height: 17px;
  		right: -33px; //keywordセクションの値
      bottom: -1px;	//keywordセクションの値
  		background: url(/recruit/career/strengths/img/window.webp) center center /contain no-repeat;
  		@include v.max(md) {
  			width: 15px;
  			height: 15px;
  			right: -32px;	//keywordセクションの値
  		}
  		@include v.max(sm) {
  			right: -25px;
  		}
  	}
  }
  */
}
.strengths section {
  margin-top: 103px;
}
@media (width < 768px) {
  .strengths section {
    margin-top: 16vw !important;
  }
}
.strengths section.strengths-support {
  margin-top: 83px;
}
@media (width < 768px) {
  .strengths section.strengths-support {
    margin-top: 30vw !important;
  }
}
.strengths .section-lead {
  -moz-text-align-last: left;
       text-align-last: left;
  line-height: 2;
}
@media (width < 768px) {
  .strengths .section-lead {
    margin-top: 28px !important;
    line-height: 1.75;
  }
}
.strengths .lower-title {
  font-size: clamp(1.5rem, 1.043rem + 1.49vw, 2rem);
}
.strengths .lower-title span {
  white-space: nowrap;
}
@media (width < 375px) {
  .strengths .lower-title {
    font-size: 22px;
  }
}
@media (width < 768px) {
  .strengths .strengths-support .lower-title,
  .strengths .strengths-lineup .lower-title,
  .strengths .strengths-customer .lower-title {
    line-height: 1.4;
    border-left: 3px solid var(--color-black);
  }
  .strengths .strengths-support .lower-title::before,
  .strengths .strengths-lineup .lower-title::before,
  .strengths .strengths-customer .lower-title::before {
    display: none;
  }
}
@media (width < 768px) {
  .strengths .sub-menu {
    margin-top: 8vw;
  }
}
.strengths .sub-menu__item {
  padding-block: 5px;
}
@media (width < 768px) {
  .strengths .sub-menu__item {
    height: 8vw;
  }
}
.strengths .btn-area {
  margin-top: 107px;
  padding-bottom: 160px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media (width < 768px) {
  .strengths .btn-area {
    margin-top: 21.333vw;
    padding-bottom: 60px;
    width: 100%;
  }
}
@media (width < 768px) {
  .strengths .btn-area.md-none {
    display: none;
  }
}
@media (width < 768px) {
  .strengths .btn-area .btn {
    max-width: initial;
  }
}
@media (width < 768px) {
  .strengths .btn-area .btn a {
    height: 21.8666vw;
  }
}
@media (width < 768px) {
  .strengths .btn-area .btn__arrow {
    right: 5vw;
  }
}
.strengths .strengths-support .btn-area,
.strengths .strengths-lineup .btn-area,
.strengths .strengths-customer .btn-area,
.strengths .strengths-management .btn-area {
  margin-top: 50px;
  padding-bottom: 0;
}
@media (width < 768px) {
  .strengths .strengths-support .btn-area,
  .strengths .strengths-lineup .btn-area,
  .strengths .strengths-customer .btn-area,
  .strengths .strengths-management .btn-area {
    margin-top: 20.6vw;
  }
}
.strengths .strengths-support .btn,
.strengths .strengths-lineup .btn,
.strengths .strengths-customer .btn,
.strengths .strengths-management .btn {
  padding-inline: 10px;
}
@media (width < 768px) {
  .strengths .strengths-support .btn,
  .strengths .strengths-lineup .btn,
  .strengths .strengths-customer .btn,
  .strengths .strengths-management .btn {
    width: 100%;
    max-width: 100%;
  }
}
@media (width < 375px) {
  .strengths .strengths-support .btn,
  .strengths .strengths-lineup .btn,
  .strengths .strengths-customer .btn,
  .strengths .strengths-management .btn {
    padding-inline: 15px;
  }
}
.strengths .strengths-support .btn a,
.strengths .strengths-lineup .btn a,
.strengths .strengths-customer .btn a,
.strengths .strengths-management .btn a {
  line-height: 1.6;
}
.strengths .strengths-support .btn .md500-show,
.strengths .strengths-lineup .btn .md500-show,
.strengths .strengths-customer .btn .md500-show,
.strengths .strengths-management .btn .md500-show {
  display: none;
}
@media (width < 500px) {
  .strengths .strengths-support .btn .md500-show,
  .strengths .strengths-lineup .btn .md500-show,
  .strengths .strengths-customer .btn .md500-show,
  .strengths .strengths-management .btn .md500-show {
    display: block;
  }
}
.strengths .strengths-support .sub__link2,
.strengths .strengths-lineup .sub__link2,
.strengths .strengths-customer .sub__link2,
.strengths .strengths-management .sub__link2 {
  position: relative;
  width: 34px;
  height: 17px;
}
@media (width < 1026px) {
  .strengths .strengths-support .sub__link2,
  .strengths .strengths-lineup .sub__link2,
  .strengths .strengths-customer .sub__link2,
  .strengths .strengths-management .sub__link2 {
    width: 24px;
  }
}
@media (width < 500px) {
  .strengths .strengths-support .sub__link2,
  .strengths .strengths-lineup .sub__link2,
  .strengths .strengths-customer .sub__link2,
  .strengths .strengths-management .sub__link2 {
    width: 34px;
  }
}
.strengths .strengths-support .sub__link2::after,
.strengths .strengths-lineup .sub__link2::after,
.strengths .strengths-customer .sub__link2::after,
.strengths .strengths-management .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-top::after {
  content: "STRENGTHS";
  font-size: 11.5vw;
}
@media (width < 768px) {
  .strengths-top::after {
    font-size: 13vw;
  }
}
.strengths-top .child-top__txt {
  top: 48%;
}
@media (width < 768px) {
  .strengths-top .child-top__txt {
    top: 50%;
  }
}
.strengths-top .strengths-top__text-main {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 768px) {
  .strengths-top .strengths-top__text-main {
    font-size: 6.4vw;
  }
}
.strengths-top .strengths-top__text-main img {
  width: 145px;
  height: auto;
  margin-right: 7px;
  margin-bottom: 5px;
}
@media (width < 768px) {
  .strengths-top .strengths-top__text-main img {
    width: 29.3333333333vw;
  }
}


.strengths-support .image__container {
  padding: 2.8% 9.8% 5.5% 9.8%;
/*  background-color: var(--color-platinumgray);*/
  margin-top: 36px;
}
@media (width < 768px) {
  .strengths-support .image__container {
/*    padding: 9.8% 5% 11.5% 5%;*/
    padding: 5%;
    margin-top: 25px;
  }
}
.strengths-support .image__container__upper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background-color: var(--color-white);
  padding: 4.9% 4.5% 5% 4.5%;
}
@media (width < 768px) {
  .strengths-support .image__container__upper {
    padding: 9% 4.5% 5% 4.5%;
    gap: 15px;
  }
}
@media (width < 420px) {
  .strengths-support .image__container__upper {
    gap: 10px;
    padding-inline: 10px;
  }
}
.strengths-support .image__container__upper::before {
  position: absolute;
  content: "";
  width: auto;
  height: 37px;
  aspect-ratio: 760/280;
  top: -2px;
  left: 50%;
  translate: -50% -50%;
  background: url(/recruit/cmn/img/logo_black.svg) center center/contain no-repeat;
}
.strengths-support .image__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.strengths-support .image__texts .text1 {
  font-size: 20px;
}
@media (width < 768px) {
  .strengths-support .image__texts .text1 {
    font-size: clamp(1rem, 0.814rem + 0.93vw, 1.25rem);
  }
}
@media (width < 375px) {
  .strengths-support .image__texts .text1 {
    font-size: 15px;
  }
}
.strengths-support .image__texts .text2 {
  font-size: 16px;
  letter-spacing: 0.06em;
}
@media (width < 768px) {
  .strengths-support .image__texts .text2 {
    font-size: clamp(0.75rem, 0.564rem + 0.93vw, 1rem);
  }
}
@media (width < 420px) {
  .strengths-support .image__texts .text2 {
    font-size: 12px;
  }
}
@media (width < 375px) {
  .strengths-support .image__texts .text2 {
    font-size: 10px;
  }
}
.strengths-support .image__texts span {
  display: inline-block;
}
.strengths-support .container__upper {
  background-color: var(--color-platinumgray);
  width: 50%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
}
@media (width < 768px) {
  .strengths-support .container__upper {
    height: 130px;
  }
}
.strengths-support .image__container__lower {
  background-color: var(--color-white);
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width < 768px) {
  .strengths-support .image__container__lower {
    height: 110px;
  }
}
.strengths-support .image__container__middle {
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media (width < 768px) {
  .strengths-support .image__container__middle {
    height: 50px;
  }
}
.strengths-support .image__container__middle span {
  display: inline-block;
  width: 24px;
  height: 34px;
  background: var(--color-white);
}
.strengths-support .image__container__middle .arrow1 {
  -webkit-clip-path: polygon(100% 50%, 75% 50%, 75% 100%, 25% 100%, 25% 50%, 0 50%, 50% 0);
          clip-path: polygon(100% 50%, 75% 50%, 75% 100%, 25% 100%, 25% 50%, 0 50%, 50% 0);
}
.strengths-support .image__container__middle .arrow2 {
  -webkit-clip-path: polygon(75% 0, 75% 50%, 100% 50%, 50% 100%, 0 50%, 25% 50%, 25% 0);
          clip-path: polygon(75% 0, 75% 50%, 100% 50%, 50% 100%, 0 50%, 25% 50%, 25% 0);
}
.strengths-support .section-lead {
  margin-top: 32px;
}
.strengths-support .sub__link {
  margin-top: 40px;
}
@media (width < 768px) {
  .strengths-support .sub__link {
    margin-top: 30px;
    text-decoration: underline;
    text-decoration-color: var(--color-black);
    border-bottom: none;
    line-height: 1.5;
  }
}
.strengths-support .sub__link::after {
  right: -27px;
}
@media (width < 420px) {
  .strengths-support .sub__link::after {
    right: 58px;
    bottom: 2px;
  }
}
@media (width < 375px) {
  .strengths-support .sub__link::after {
    right: 15.4666666667vw;
  }
}

.strengths-lineup .lineup__images {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
@media (width < 1220px) {
  .strengths-lineup .lineup__images {
    flex-direction: column;
    gap: 10px;
  }
}
.strengths-lineup .lineup__plus {
  position: relative;
  width: 10px;
}
.strengths-lineup .lineup__plus-round {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  translate: -50% -60%;
  background: var(--color-black);
  border-radius: 50%;
}
@media (width < 1220px) {
  .strengths-lineup .lineup__plus-round {
    width: 50px;
    height: 50px;
    translate: -50% -50%;
  }
}
.strengths-lineup .lineup__plus-bar {
  position: absolute;
  content: "";
  background: var(--color-platinumgray);
  top: 50%;
  left: 50%;
  translate: -50% -77%;
  z-index: 10;
}
@media (width < 1220px) {
  .strengths-lineup .lineup__plus-bar {
    translate: -50% -50%;
  }
}
.strengths-lineup .lineup__plus-bar1 {
  width: 36px;
  height: 4px;
  top: -16px;
  translate: -50% 100%;
}
@media (width < 1220px) {
  .strengths-lineup .lineup__plus-bar1 {
    width: 18px;
    top: 50%;
    translate: -50% -50%;
  }
}
.strengths-lineup .lineup__plus-bar2 {
  width: 4px;
  height: 36px;
}
@media (width < 1220px) {
  .strengths-lineup .lineup__plus-bar2 {
    height: 18px;
  }
}
.strengths-lineup .lineup__container {
  border: 2px solid var(--color-platinumgray);
  width: calc(50% - 5px);
  width: 100%;
  height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 3.8vw 4.8vw 2.5vw;
}
@media (width >= 1601px) {
  .strengths-lineup .lineup__container {
    padding-block: 61px 40px;
  }
}
@media (width < 1220px) {
  .strengths-lineup .lineup__container {
    height: 500px;
    justify-content: center;
    gap: 20px;
    padding: 3.8vw 4.8vw;
  }
}
@media (width < 768px) {
  .strengths-lineup .lineup__container {
    padding: 2.5vw 4.8vw;
  }
}
.strengths-lineup .lineup__container img {
  aspect-ratio: 1/1;
  width: 300px;
  height: auto;
}
@media (width < 768px) {
  .strengths-lineup .lineup__container img {
    max-width: 300px;
    width: 100%;
  }
}
.strengths-lineup .lineup__texts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background-color: var(--color-platinumgray);
  width: 100%;
  height: 140px;
  padding: 1.5em 2em;
}
@media (width < 768px) {
  .strengths-lineup .lineup__texts {
    height: 100px;
  }
}
.strengths-lineup .lineup__texts .text1 {
  font-size: 20px;
}
@media (width < 768px) {
  .strengths-lineup .lineup__texts .text1 {
    font-size: clamp(1rem, 0.814rem + 0.93vw, 1.25rem);
  }
}
.strengths-lineup .lineup__texts .text2 {
  font-size: 16px;
}
@media (width < 768px) {
  .strengths-lineup .lineup__texts .text2 {
    font-size: clamp(0.75rem, 0.564rem + 0.93vw, 1rem);
  }
}
.strengths-lineup .lineup__texts span {
  display: inline-block;
}
.strengths-lineup .section-lead {
  margin-top: 42px;
  line-height: 2;
}
.strengths-lineup .sub__link {
  margin-top: 44px;
}
@media (width < 768px) {
  .strengths-lineup .sub__link {
    margin-top: 30px;
    text-decoration: underline;
    text-decoration-color: var(--color-black);
    border-bottom: none;
    line-height: 1.5;
  }
}
.strengths-lineup .sub__link::after {
  right: -27px;
}
@media (width < 420px) {
  .strengths-lineup .sub__link::after {
    right: 58px;
    bottom: 2px;
  }
}
@media (width < 375px) {
  .strengths-lineup .sub__link::after {
    right: 15.4666666667vw;
  }
}

.strengths-customer .image__container {
  margin-top: 35px;
  display: flex;
  gap: 10px;
}
@media (width < 768px) {
  .strengths-customer .image__container {
    flex-direction: column;
  }
}
.strengths-customer .image__container img {
  aspect-ratio: 1112/1120;
  width: calc(50% - 5px);
  height: auto;
}
@media (width < 768px) {
  .strengths-customer .image__container img {
    width: 100%;
  }
}
.strengths-customer .section-lead {
  margin-top: 44px;
  line-height: 2;
}
.strengths-customer .sub__link {
  margin-top: 40px;
}
.strengths-customer .sub__link::after {
  right: -27px;
}

.strengths-management .image__container {
  margin-top: 54px;
  display: flex;
  gap: 54px;
}
@media (width < 1026px) {
  .strengths-management .image__container {
    gap: 20px;
  }
}
@media (width < 768px) {
  .strengths-management .image__container {
    flex-direction: column;
    gap: 54px;
  }
}
.strengths-management .image__container img {
  aspect-ratio: 676/564;
  width: calc((100% - 108px) / 3);
  height: auto;
}
@media (width < 1026px) {
  .strengths-management .image__container img {
    width: calc((100% - 40px) / 3);
  }
}
@media (width < 768px) {
  .strengths-management .image__container img {
    width: 100%;
  }
}
.strengths-management .section-lead {
  margin-top: 72px;
  line-height: 2;
}
.strengths-management .sub__link {
  margin-top: 40px;
}
.strengths-management .sub__link::after {
  right: -27px;
}