@charset "UTF-8";

/* ページヒーローセクションの背景 */
  .page-hero-bg {
    /* WordPressのアイキャッチ画像やカスタムフィールドで背景画像を指定することを想定 */
    background-image: url('<?php echo has_post_thumbnail() ? get_the_post_thumbnail_url() : get_template_directory_uri() . "/assets/img/business-hero.jpg"; ?>');
    background-size: cover;
    background-position: center;
  }

  .icon-list ul {
    list-style: none;
    padding: 0;
  }

  .icon-list li {
    display: flex;
    align-items: flex-start;
    padding: 0;
  }

  .icon-list li + li {
    margin-top: 0.75rem;
  }

  .icon-list li::before {
    /* Font Awesome 6のチェックマークアイコンを指定 */
    font-family: "Font Awesome 6 Free";
    content: "\f058";
    font-weight: 900;
    color: #10b981; /* emerald-500 */
    margin-right: 0.75rem;
    margin-top: 0.25em;
    flex-shrink: 0;
  }