/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xxls: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-ssm: 650px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.study-block {
  position: relative;
  overflow: hidden;
  margin-top: clamp(30px, -10px + 0.0520833333 * 100vw, 65px);
  margin-bottom: clamp(20px, -14.2857142857px + 0.0446428571 * 100vw, 50px);
}
.study-block .title {
  margin: 0;
  font-size: clamp(22px, 6px + 0.0208333333 * 100vw, 36px);
  font-weight: 400;
  letter-spacing: normal;
  margin-bottom: clamp(15px, -2.1428571429px + 0.0223214286 * 100vw, 30px);
}
.study-block .taxonomy-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(20px, -25.7142857143px + 0.0595238095 * 100vw, 60px) clamp(15px, -25px + 0.0520833333 * 100vw, 50px);
}
@media (max-width: 768px) {
  .study-block .taxonomy-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 390px) {
  .study-block .taxonomy-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.study-block .taxonomy-wrapper .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.study-block .taxonomy-wrapper .name {
  text-align: center;
  margin-top: clamp(5px, -17.8571428571px + 0.0297619048 * 100vw, 25px);
  font-weight: 700;
  font-size: clamp(18px, 6.5714285714px + 0.0148809524 * 100vw, 28px);
  letter-spacing: normal;
  width: clamp(160px, 91.4285714286px + 0.0892857143 * 100vw, 220px);
  max-width: 100%;
}
@media (max-width: 768px) {
  .study-block .taxonomy-wrapper .name {
    width: auto;
  }
}
.study-block .taxonomy-wrapper .image {
  width: clamp(80px, -11.4285714286px + 0.119047619 * 100vw, 160px);
  max-width: 100%;
  aspect-ratio: 1/1;
  display: flex;
}
@media (max-width: 768px) {
  .study-block .taxonomy-wrapper .image {
    min-height: 95px;
  }
}
.study-block .taxonomy-wrapper .image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
