.featured {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
}
.featured__inner {
  display: flex;
  flex-wrap: wrap row;
  justify-content: center;
  max-width: 1280px;
  width: 100%;
}
.featured__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap column;
  text-decoration: none;
}
.featured__link:hover img {
  transform: scale(1.1);
}
.featured__thumbnail {
  aspect-ratio: 5/3;
  max-width: 50%;
  border-radius: 1rem;
  cursor: pointer;
  overflow: hidden;
}
.featured__thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  transition: transform 0.6s ease;
}
.featured__text {
  max-width: 80%;
  color: var(--gray-900);
}
.featured__text__title {
  font-weight: 700;
}
.featured__text__description {
  margin-top: 16px;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
.featured__footer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}
.featured__footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  padding: 0 24px;
  border-radius: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  background: var(--button-color);
  color: var(--gray-000);
}
@media screen and (min-width: 768px) {
  .featured {
    padding: 64px 16px;
  }
  .featured__link {
    flex-flow: wrap row;
  }
  .featured__thumbnail {
    max-width: 40%;
  }
  .featured__text {
    max-width: 60%;
    padding-left: 40px;
  }
  .featured__footer {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1000px) {
  .featured {
    padding: 80px 24px;
  }
  .featured__text {
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .featured__text {
    margin-top: 16px;
  }
  .featured__footer__link {
    font-size: 0.75rem;
  }
}

.index {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  padding: 40px 16px;
  background: var(--gray-100);
}
.index__inner {
  width: 100%;
  max-width: 1280px;
}
.index__title {
  display: flex;
  flex-flow: wrap column;
  padding-bottom: 16px;
  font-size: 1.125rem;
  text-align: center;
  position: relative;
}
.index__title:after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 4px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 35px);
}
.index__empty {
  margin-top: 32px;
  text-align: center;
}
.index__list {
  display: flex;
  flex-flow: wrap row;
  justify-content: center;
}
.index__list--cases {
  margin-top: 42px;
}
.index__list--download {
  margin-top: 16px;
}
.index__download__item {
  width: 100%;
  padding: 32px 0;
}
.index__download__item__link {
  display: flex;
  flex-flow: wrap row;
  align-items: flex-start;
  text-decoration: none;
}
.index__download__item__link:hover img {
  transform: scale(1.1);
}
.index__download__item__image {
  aspect-ratio: 5/3;
  width: 40%;
  max-width: 500px;
  border-radius: 1rem;
  cursor: pointer;
  overflow: hidden;
}
.index__download__item__image img {
  width: 100%;
  height: 100%;
  max-width: 240px;
  transition: transform 0.6s ease;
}
.index__download__item__text {
  display: flex;
  flex-flow: wrap;
  width: 60%;
  padding-left: 16px;
}
.index__download__item__text__title {
  color: var(--gray-900);
}
.index__download__item__text__footer {
  display: flex;
  width: 100%;
  margin-top: auto;
  padding-top: 16px;
}
.index__download__item__text__footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--button-color);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  min-height: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  padding: 0 24px;
  border-radius: clamp(2.625rem, 2.5138888889rem + 0.5555555556vw, 3rem);
  background: var(--button-color);
  color: var(--gray-000);
}
.index__cases__item {
  width: 50%;
  padding: 8px;
}
.index__cases__item__link {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--gray-000);
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: var(--gray-900);
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}
.index__cases__item__link:hover img {
  transform: scale(1.1);
}
.index__cases__item__image {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
}
.index__cases__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.index__cases__item__text {
  padding: 8px;
}
.index__cases__item__text__title {
  margin-top: 16px;
  font-size: clamp(0.75rem, 0.712962963rem + 0.1851851852vw, 0.875rem);
}
@media screen and (min-width: 768px) {
  .index {
    padding: 64px 16px;
  }
  .index__list--download {
    margin-top: 32px;
  }
  .index__download__item {
    max-width: 232px;
    padding: 16px;
  }
  .index__download__item__link {
    flex-flow: wrap column;
    height: 100%;
  }
  .index__download__item__image {
    width: 100%;
  }
  .index__download__item__text {
    flex: 1;
    width: 100%;
    padding: 0;
  }
  .index__download__item__text__title {
    margin-top: 16px;
  }
  .index__download__item__text__footer {
    justify-content: center;
    padding-top: 24px;
  }
  .index__cases__item {
    width: 33.333%;
    max-width: 324px;
    padding: 32px;
  }
  .index__cases__item__text {
    padding: 24px;
  }
  .index__cases__item__text__title span {
    display: inline-block;
  }
}
@media screen and (min-width: 1000px) {
  .index {
    padding: 80px 24px;
  }
  .index__download__item {
    max-width: 304px;
    padding: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .index__title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 1400px) {
  .index__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .index__download__item__text__footer__button {
    font-size: 0.75rem;
  }
}

/*# sourceMappingURL=archive.css.map */
