@charset "UTF-8";
/* //////////////////////////////////////////////////

Title : index.scss
For   : bell-c/

Created       : 2025-11-14
Last Modified : 2025-11-22

==========================================

Content

////////////////////////////////////////////////// */
/**
 * common
 */
.l-page-home__section {
  padding-inline: var(--home-section-gutter, var(--home-section-gutter-default));
}
.l-page-home__shell {
  max-width: var(--home-contents-width, var(--container-middle));
  margin-inline: auto;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-page-home {
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
  .l-page-home__section {
    --home-section-gutter-default: 2rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: var(--zindex-floating-element);
  }
  .l-page-home {
    -webkit-padding-after: 20rem;
            padding-block-end: 20rem;
  }
  .l-page-home__section {
    --home-section-gutter-default: 11rem;
  }
}
/**
 * components
 */
/* --- carousel --- */
/* コンテナ共通 */
.js-post-carousel,
.js-home-infnite-carousel {
  position: relative;
  width: 100%;
}

/* 初期化前は高さ・レイアウトを保ったままチラつきを抑える */
.js-home-infnite-carousel:not(.is-swiper-initialized) {
  overflow: hidden; /* はみ出し防止 */
  visibility: hidden; /* 高さは維持しつつ、見えなくする */
}

/* 無限カルーセルも初期化前は横並びだけしておく */
.js-home-infnite-carousel:not(.is-swiper-initialized) .swiper-wrapper {
  display: flex;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .js-post-carousel:not(.is-swiper-initialized) {
    overflow: hidden; /* はみ出し防止 */
  }
  /* 1枚だけ見せる想定のスマホ用カルーセル */
  .js-post-carousel:not(.is-swiper-initialized) .swiper-wrapper {
    display: flex;
  }
  .js-post-carousel:not(.is-swiper-initialized) .swiper-slide {
    flex: 0 0 100%; /* slidesPerView: 1 と同じ幅 */
  }
}
.c-home-carousel__pagination {
  --swiper-pagination-top: 0;
  --swiper-pagination-bottom: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-home-carousel__pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-horizontal-gap: 0;
  --swiper-pagination-bullet-border-radius: 100vh;
  --swiper-pagination-bullet-inactive-color: var(--color-white);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--color-primary);
  display: block;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .c-home-carousel__pagination {
    --swiper-pagination-bullet-width: 0.8rem;
    --swiper-pagination-bullet-height: 0.8rem;
    gap: 0.8rem;
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}
/* --- for large viewport --- */
/**
 * hero
 */
.l-home-hero {
  position: relative;
  color: var(--color-primary);
  overflow: hidden;
}

.c-home-hero__visual {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: var(--zindex-behind);
}
.c-home-hero__catch-copy--primary {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.c-home-hero__catch-copy--secondary {
  font-family: var(--font-en);
  font-weight: 500;
  line-height: 1;
}
.c-home-hero__leads {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-home-hero {
    -webkit-padding-before: 10rem;
            padding-block-start: 10rem;
    -webkit-padding-after: 4rem;
            padding-block-end: 4rem;
  }
  .c-home-hero__visual {
    top: 0;
  }
  .c-home-hero__catch-copy--primary {
    font-size: 3.6rem;
    line-height: 1.15;
  }
  .c-home-hero__catch-copy--secondary {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    font-size: 1rem;
  }
  .c-home-hero__leads {
    -webkit-margin-before: 10rem;
            margin-block-start: 10rem;
    font-size: 1.4rem;
  }
  .c-home-hero__lead span {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    -webkit-padding-after: 0.8rem;
            padding-block-end: 0.8rem;
    border-bottom: 1px solid var(--color-light-gray);
  }
  .c-home-hero__lead span + * {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
  .c-home-hero__lead + * {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-home-hero {
    --home-contents-width: 100%;
    --home-section-gutter: 0;
    -webkit-padding-before: 42rem;
            padding-block-start: 42rem;
    -webkit-padding-after: 12rem;
            padding-block-end: 12rem;
  }
  .c-home-hero__visual {
    top: -4rem;
  }
  .c-home-hero__catch-copy {
    -webkit-padding-after: 12rem;
            padding-block-end: 12rem;
    padding-inline: 14rem;
  }
  .c-home-hero__catch-copy--primary {
    font-size: 8rem;
    line-height: 1.15;
  }
  .c-home-hero__catch-copy--secondary {
    -webkit-margin-before: 4.5rem;
            margin-block-start: 4.5rem;
    font-size: 2rem;
  }
  .c-home-hero__leads {
    -webkit-margin-before: 15rem;
            margin-block-start: 15rem;
    font-size: 4rem;
  }
  .c-home-hero__lead {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    -webkit-padding-after: 1.6rem;
            padding-block-end: 1.6rem;
    padding-inline: 6.65rem;
    border-bottom: 1px solid var(--color-light-gray);
  }
  .c-home-hero__lead + * {
    -webkit-margin-before: 3.6rem;
            margin-block-start: 3.6rem;
  }
}
/**
 * strengths
 */
.l-home-strengths {
  --home-section-gutter: 0;
}

.c-home-strengths__container {
  display: grid;
}
.c-home-strengths__lead {
  font-weight: 700;
}
.c-home-strengths__description {
  font-weight: 400;
  letter-spacing: 0.04em;
}
.c-home-strengths__thumbnails {
  display: grid;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgwIiBoZWlnaHQ9IjM4MiIgdmlld0JveD0iMCAwIDI4MCAzODIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3QgeD0iMjgwIiB5PSIzODIiIHdpZHRoPSIyODAiIGhlaWdodD0iMzgyIiB0cmFuc2Zvcm09InJvdGF0ZSgxODAgMjgwIDM4MikiIGZpbGw9InVybCgjcGFpbnQwX2xpbmVhcl82MTBfNzQ4MCkiLz48ZGVmcz48bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXJfNjEwXzc0ODAiIHgxPSIzNjYuNTU5IiB5MT0iNzM0LjcyNSIgeDI9IjY1Ny4yMDMiIHkyPSI1OTIuNzAxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHN0b3Agc3RvcC1jb2xvcj0iIzA2MzQ4OCIvPjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzM3NjhDMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjwvc3ZnPg==");
  background-repeat: no-repeat;
}
.c-home-strengths__thumbnail {
  box-shadow: 0px 0px var(--box-shadow-blur) 0px rgba(51, 80, 134, 0.4);
}
.c-home-strengths__thumbnail[data-thumbnail=top] {
  grid-column: 1/span 2;
  grid-row: 1/span 2;
  align-self: start;
  z-index: var(--zindex-front);
}
.c-home-strengths__thumbnail[data-thumbnail=bottom] {
  grid-column: 2/span 2;
  grid-row: 2;
  z-index: var(--zindex-overlay);
}
.c-home-strengths__button {
  margin-inline: auto;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-home-strengths {
    -webkit-padding-after: 6rem;
            padding-block-end: 6rem;
  }
  .c-home-strengths__container {
    grid-template-columns: 100%;
    row-gap: 4rem;
  }
  .c-home-strengths__lead {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .c-home-strengths__description {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .c-home-strengths__button {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
    margin-inline: auto;
  }
  .c-home-strengths__thumbnails {
    width: 30rem;
    margin-inline: auto;
    grid-template-columns: 18rem 1fr 7.5rem;
    grid-template-rows: 22.3rem auto;
    background-size: 16rem;
    background-position: bottom 3.2rem right 3.2rem;
  }
  .c-home-strengths__thumbnail {
    --box-shadow-blur: 1.6rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-home-strengths {
    --home-contents-width: var(--container-wide);
    -webkit-padding-after: 12rem;
            padding-block-end: 12rem;
  }
  .c-home-strengths {
    -webkit-padding-start: 13rem;
            padding-inline-start: 13rem;
  }
  .c-home-strengths__container {
    grid-template-columns: 1fr 53rem;
    -moz-column-gap: 12rem;
         column-gap: 12rem;
  }
  .c-home-strengths__lead {
    -webkit-margin-before: 8.7rem;
            margin-block-start: 8.7rem;
    font-size: 3.2rem;
    line-height: 1.6;
  }
  .c-home-strengths__description {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .c-home-strengths__button {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
  }
  .c-home-strengths__thumbnails {
    grid-template-columns: 33rem 1fr 13rem;
    grid-template-rows: 40rem auto;
    -webkit-padding-before: 4.8rem;
            padding-block-start: 4.8rem;
    background-size: 28rem;
    background-position: bottom 6rem right 5.6rem;
  }
  .c-home-strengths__thumbnail {
    --box-shadow-blur: 2.8rem;
  }
}
/**
 * recruit
 */
.l-home-recruit {
  --home-section-gutter: 0;
}

.c-home-recruit__title {
  position: relative;
}
.c-home-recruit__title-en {
  font-family: var(--font-en);
  font-weight: 700;
  font-style: Bold;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--color-tertiary);
  opacity: 10%;
}
.c-home-recruit__title-ja {
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--color-primary);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.c-home-recruit__title-ja > span {
  font-size: 8rem;
}
.c-home-recruit__text {
  font-family: var(--font-ja);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
}
.c-home-recruit__button {
  -webkit-margin-before: 2.5em;
          margin-block-start: 2.5em;
  margin-inline: auto;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .c-home-recruit {
    padding-block: 2rem 4rem;
  }
  .c-home-recruit__title {
    margin: 0 auto;
  }
  .c-home-recruit__title-en {
    font-size: 4rem;
    line-height: 1;
    padding-bottom: 4.2rem;
  }
  .c-home-recruit__title-ja {
    font-size: 1.8rem;
    top: 2rem;
  }
  .c-home-recruit__title-ja > span {
    font-size: 2.8rem;
  }
  .c-home-recruit__text {
    font-size: 1.4rem;
    line-height: 2;
    margin: 0 2rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .c-home-recruit {
    padding-block: 5rem 10rem;
  }
  .c-home-recruit__title {
    margin: 0 auto 8rem;
  }
  .c-home-recruit__title-en {
    font-size: 17rem;
    line-height: 0.8;
    padding-bottom: 10rem;
  }
  .c-home-recruit__title-ja {
    font-size: 4.4rem;
    top: 8rem;
  }
  .c-home-recruit__title-ja > span {
    font-size: 8rem;
  }
  .c-home-recruit__text {
    font-size: 2rem;
    line-height: 2.2;
  }
}
.c-home-infnite-carousel__container {
  position: relative;
  overflow: hidden;
}
.c-home-infnite-carousel__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6.6rem;
  transform: translateY(-50%);
  background-color: var(--color-background-default);
}
.c-home-infnite-carousel__shell {
  overflow: visible;
}
.c-home-infnite-carousel__shell .swiper-wrapper {
  transition-timing-function: linear;
}
.c-home-infnite-carousel__shell img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1; /* 正方形維持 */
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 4px 4px 40px 0px rgba(51, 80, 134, 0.4);
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .c-home-infnite-carousel__container {
    padding: 4rem 0 4rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .c-home-infnite-carousel__container {
    padding: 8rem 0 8rem;
  }
}
/**
 * solution
 */
.l-home-solution {
  background-color: var(--color-background-default);
}

.c-home-solution__description {
  font-weight: 400;
}
.c-home-solution__list {
  display: grid;
}
.c-home-solution__thumbnail {
  box-shadow: 0px 0px var(--box-shadow-blur) 0px rgba(51, 80, 134, 0.4);
}
.c-home-solution__title {
  color: var(--color-primary);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.c-home-solution__footer {
  display: flex;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-home-solution {
    -webkit-padding-before: 6rem;
            padding-block-start: 6rem;
    -webkit-padding-after: 8rem;
            padding-block-end: 8rem;
  }
  .c-home-solution__description {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .c-home-solution__list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 3.5rem;
         column-gap: 3.5rem;
    row-gap: 4rem;
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
  .c-home-solution__thumbnail {
    --box-shadow-blur: 2.8rem;
  }
  .c-home-solution__title {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .c-home-solution__footer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-home-solution {
    -webkit-padding-before: 14rem;
            padding-block-start: 14rem;
    -webkit-padding-after: 20rem;
            padding-block-end: 20rem;
  }
  .c-home-solution__description {
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .c-home-solution__list {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 5rem;
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
  }
  .c-home-solution__thumbnail {
    --box-shadow-blur: 2.8rem;
  }
  .c-home-solution__title {
    -webkit-margin-before: 2.4rem;
            margin-block-start: 2.4rem;
    font-size: 1.8rem;
    line-height: 1;
  }
  .c-home-solution__footer {
    justify-content: flex-end;
    gap: 4rem;
    -webkit-margin-before: 6rem;
            margin-block-start: 6rem;
  }
}
/**
 * products
 */
.c-home-products__container {
  display: grid;
  box-shadow: 0px 0px var(--box-shadow-blur) 0px rgba(51, 80, 134, 0.4);
}
.c-home-products__summaries {
  --heading-color: var(--color-white);
  background-image: var(--color-background-gradient);
}
.c-home-products__catch-copy {
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
}
.c-home-products__message {
  color: var(--color-white);
  font-weight: 400;
}
.c-home-products__eyecatch {
  position: relative;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-home-products {
    --background--break-point: 20rem;
  }
  .c-home-products__container {
    --box-shadow-blur: 2.8rem;
  }
  .c-home-products__summaries {
    padding-block: 4rem;
    padding-inline: 3rem;
  }
  .c-home-products__catch-copy {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
    font-size: 2rem;
  }
  .c-home-products__message {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-home-products {
    --home-contents-width: var(--container-wide);
    --background--break-point: 24rem;
  }
  .c-home-products__container {
    --box-shadow-blur: 2.8rem;
    grid-template-columns: auto 1fr;
  }
  .c-home-products__summaries {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-inline: 2.5em;
  }
  .c-home-products__eyecatch:hover {
    --button-background-active: var(--color-button-background-active);
  }
  .c-home-products__catch-copy {
    -webkit-margin-before: 1.5em;
            margin-block-start: 1.5em;
    font-size: 3.2rem;
  }
  .c-home-products__message {
    -webkit-margin-before: 1.5em;
            margin-block-start: 1.5em;
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .c-home-products__button {
    position: absolute;
    bottom: 2.8rem;
    right: 2.8rem;
    display: grid;
    place-items: center;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
    min-height: 4.6rem;
    padding-inline: 3.4rem;
    border: 1px solid var(--color-primary);
    background: var(--button-background-active, var(--color-white));
    font-size: 2rem;
    font-family: var(--font-combine);
    color: var(--color-primary);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    line-height: 1;
    transition: all var(--transition-default);
  }
}
/**
 * news
 */
.c-home-news {
  display: grid;
}
.c-home-news__list {
  display: flex;
  flex-direction: column;
}
.c-home-news__item {
  display: grid;
  grid-template-columns: var(--news-date-width) 1fr;
}
.c-home-news__date {
  font-family: var(--font-en);
  color: #aaa;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: var(--news-title-line-height);
}
.c-home-news__title {
  --news-title-rows: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--news-title-rows);
  max-height: calc(var(--news-title-line-height) * var(--news-title-rows) * 1em);
  line-height: var(--news-title-line-height);
  letter-spacing: 0.12em;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-home-news {
    padding-block: 8rem;
  }
  .c-home-news {
    grid-template-columns: 100%;
  }
  .c-home-news__body {
    -webkit-margin-before: 4rem;
            margin-block-start: 4rem;
  }
  .c-home-news__list {
    row-gap: 2rem;
  }
  .c-home-news__item {
    --news-date-width: 25%;
    --news-title-line-height: 1.8;
    align-items: center;
    gap: 5%;
    font-size: 1.2rem;
  }
  .c-home-news__item:not(:last-of-type) {
    -webkit-padding-after: 2rem;
            padding-block-end: 2rem;
    border-bottom: 1px solid #d6d6d6;
  }
  .c-home-news__button {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    margin-inline: auto;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-home-news {
    padding-block: 20rem;
  }
  .c-home-news {
    grid-template-columns: 25% 1fr;
    -moz-column-gap: 7.5%;
         column-gap: 7.5%;
    row-gap: 6rem;
    align-items: center;
    align-content: center;
  }
  .c-home-news__heading {
    grid-column: 1;
    grid-row: 1;
  }
  .c-home-news__body {
    grid-column: 2;
    grid-row: 1/span 2;
  }
  .c-home-news__list {
    row-gap: 3.2rem;
  }
  .c-home-news__item {
    --news-date-width: 10rem;
    --news-title-line-height: 1.8;
    align-items: center;
    gap: 4rem;
    -webkit-padding-after: 3.2rem;
            padding-block-end: 3.2rem;
    border-bottom: 1px solid #d6d6d6;
    font-size: 1.8rem;
  }
  .c-home-news__button {
    grid-column: 1;
    grid-row: 2;
  }
}
/**
 * posts
 */
.l-home-posts .p-posts__empty {
  text-align: center;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .l-home-posts .p-posts__empty {
    font-size: 1.2rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .l-home-posts .p-posts__empty {
    font-size: 1.8rem;
  }
}
.c-home-posts {
  display: grid;
}
.c-home-posts__container[data-post-type=csr] {
  background-color: var(--color-background-default);
}
.c-home-posts__container[data-post-type=blog] {
  background-color: #eaf0fa;
}
.c-home-posts__heading {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
  color: var(--color-primary);
  line-height: 0.75;
}
.c-home-posts__heading--primary {
  font-weight: 600;
  letter-spacing: 0;
}
.c-home-posts__heading--secondary {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0;
}
.c-home-posts__thumbnail {
  overflow: hidden;
}
.c-home-posts__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-home-posts__overview {
  font-weight: 600;
}
.c-home-posts__date {
  font-family: var(--font-en);
  color: #aaa;
  letter-spacing: 0.09em;
  line-height: 1;
}
.c-home-posts__title {
  --post-title-rows: 2;
  --post-title-line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--post-title-rows);
  max-height: calc(var(--post-title-line-height) * var(--post-title-rows) * 1em);
  line-height: var(--post-title-line-height);
  letter-spacing: 0.12em;
}
.c-home-posts__button {
  margin-inline: auto;
}

/* --- for small viewport --- */
@media (max-width: 767px) {
  .c-home-posts {
    grid-template-columns: 100%;
    row-gap: 4rem;
  }
  .c-home-posts__container {
    padding-block: 3.6rem;
    padding-inline: 2rem;
  }
  .c-home-posts__heading {
    gap: 0.8rem;
  }
  .c-home-posts__heading--primary {
    font-size: 1.2rem;
  }
  .c-home-posts__heading--secondary {
    font-size: 2.8rem;
  }
  .c-home-posts__body {
    width: 30rem;
    -webkit-margin-before: 2.8rem;
            margin-block-start: 2.8rem;
    margin-inline: auto;
  }
  .c-home-posts__thumbnail {
    aspect-ratio: 285/160;
  }
  .c-home-posts__overview {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
    font-size: 1.2rem;
  }
  .c-home-posts__title {
    -webkit-margin-before: 1.2rem;
            margin-block-start: 1.2rem;
  }
  .c-home-posts__button {
    -webkit-margin-before: 3.2rem;
            margin-block-start: 3.2rem;
  }
}
/* --- for large viewport --- */
@media (min-width: 768px) {
  .c-home-posts {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 6.6rem;
         column-gap: 6.6rem;
  }
  .c-home-posts__container {
    display: flex;
    flex-direction: column;
    -webkit-padding-before: 7.2rem;
            padding-block-start: 7.2rem;
    -webkit-padding-after: 6rem;
            padding-block-end: 6rem;
    padding-inline: 6rem;
  }
  .c-home-posts__heading {
    gap: 2rem;
    -webkit-margin-after: 6rem;
            margin-block-end: 6rem;
  }
  .c-home-posts__heading--primary {
    font-size: 1.8rem;
  }
  .c-home-posts__heading--secondary {
    font-size: 6rem;
  }
  .c-home-posts__body {
    width: 100%;
    -webkit-margin-after: 6rem;
            margin-block-end: 6rem;
  }
  .c-home-posts__list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
  }
  .c-home-posts__item {
    height: auto;
  }
  .c-home-posts__item:not(:last-of-type) {
    -webkit-padding-after: 4rem;
            padding-block-end: 4rem;
    border-bottom: 1px solid #d6d6d6;
  }
  .c-home-posts__item-shell {
    display: grid;
    grid-template-columns: 23rem 1fr;
    -moz-column-gap: 2.4rem;
         column-gap: 2.4rem;
    align-items: center;
  }
  .c-home-posts__thumbnail {
    aspect-ratio: 230/130;
  }
  .c-home-posts__overview {
    font-size: 1.8rem;
  }
  .c-home-posts__title {
    -webkit-margin-before: 1.6rem;
            margin-block-start: 1.6rem;
  }
  .c-home-posts__button {
    -webkit-margin-before: auto;
            margin-block-start: auto;
  }
}
/*# sourceMappingURL=index.css.map */