
    /* ホームページ専用スタイル */

    .hero-soft {
      background: linear-gradient(135deg, #f5f7fa 0%, #eef1f5 100%);
      padding: 60px 20px;
      text-align: center;
    }

    .hero-soft__inner {
      max-width: 700px;
      margin: 0 auto;
    }

    .hero-soft__profile {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-bottom: 25px;
    }

    .hero-soft__avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      border: 3px solid #ff6b9d;
      object-fit: cover;
    }

    .hero-soft__author {
      text-align: left;
    }

    .hero-soft__name {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .hero-soft__bio {
      font-size: 13px;
      color: #666;
    }

    .hero-soft__title {
      font-size: 28px;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.5;
      margin-bottom: 15px;
    }

    .hero-soft__subtitle {
      font-size: 15px;
      color: #555;
      line-height: 1.8;
    }

    /* メインコンテンツ */
    .home-main {
      max-width: 1000px;
      margin: 0 auto;
      padding: 50px 20px;
    }

    .section-header {
      margin-bottom: 30px;
    }

    .section-header__title {
      font-size: 22px;
      font-weight: 700;
      color: #1a1a1a;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section-header__title::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 22px;
      background: linear-gradient(180deg, #ff6b9d 0%, #c44569 100%);
      border-radius: 2px;
    }

    /* 記事カード */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 50px;
    }

    @media (max-width: 900px) {
      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .articles-grid {
        grid-template-columns: 1fr;
      }
    }

    .article-card {
      display: block;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
      text-decoration: none;
      color: inherit;
      transition: all 0.3s;
    }

    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .article-card__image {
      width: 100%;
      height: 150px;
      object-fit: cover;
    }

    .article-card__content {
      padding: 15px;
    }

    .article-card__category {
      display: inline-block;
      background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
      color: white;
      padding: 3px 10px;
      border-radius: 12px;
      font-size: 11px;
      font-weight: 500;
      margin-bottom: 8px;
    }

    .article-card__title {
      font-size: 14px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.5;
    }

    /* カテゴリナビ */
    .category-nav {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .category-nav__item {
      display: block;
      flex: 1;
      min-width: 150px;
      background: white;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      text-decoration: none;
      color: #1a1a1a;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: all 0.3s;
    }

    .category-nav__item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .category-nav__icon {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .category-nav__name {
      font-size: 14px;
      font-weight: 600;
    }

    /* 自己紹介セクション */
    .about-section {
      background: white;
      border-radius: 16px;
      padding: 30px;
      margin-bottom: 50px;
      display: flex;
      gap: 30px;
      align-items: center;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 600px) {
      .about-section {
        flex-direction: column;
        text-align: center;
      }
    }

    .about-section__avatar {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 3px solid #ff6b9d;
      object-fit: cover;
      flex-shrink: 0;
    }

    .about-section__content h3 {
      font-size: 18px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .about-section__content p {
      font-size: 14px;
      color: #555;
      line-height: 1.8;
    }

    .view-all-btn {
      display: block;
      text-align: center;
      padding: 15px 30px;
      background: white;
      border: 2px solid #ff6b9d;
      color: #ff6b9d;
      border-radius: 30px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
      max-width: 250px;
      margin: 0 auto;
    }

    .view-all-btn:hover {
      background: #ff6b9d;
      color: white;
    }
  