@charset "UTF-8";
/**
 *-------------------------------------------------------------------------
 *
 * @Package     : wordpress
 * @SubPackage  : friendly.css
 *
 * イラストギャラリー（Template Name: イラストギャラリー）専用スタイル
 *
 *-------------------------------------------------------------------------
 */

/* ページタイトル（h1）: Lottie 英語ロゴが無いため日本語を大見出しサイズに上書き */
.l-contents-header[data-section-red] .l-contents-header-ttl span[lang=en] {
  display: none;
}
.l-contents-header[data-section-red] .l-contents-header-ttl span[lang=ja] {
  font-size: 4.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-contents-header[data-section-red] .l-contents-header-ttl span[lang=ja] {
    font-size: 2.8rem;
    text-align: center;
  }
}

/* セクション見出し */
.friendly-ttl {
  margin-bottom: 40px;
}

/* グリッド本体: PC は 2 列 × 2 段、SP は 1 列 × 4 段 */
.friendly-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
}

.friendly-grid-item {
  margin: 0;
  padding: 0;
}

.friendly-grid-item-img {
  margin: 0;
}

.friendly-grid-item-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* SP（768px 以下）: 1 列 × 4 段 */
@media screen and (max-width: 768px) {
  .friendly-ttl {
    margin-bottom: 24px;
  }

  .friendly-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .friendly-grid-item-img img {
    border-radius: 6px;
  }
}