/* ==============================
 * トップメッセージ（カード化）
 * ============================== */
.top-message {
    max-width: 900px;
    margin: 40px auto;
    padding: 28px 32px;

    background: #ffffff; /* ← 中は白 */
    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #2e7d32; /* ← 緑ライン（統一感） */

    text-align: center;
}

/* 本文 */
.top-message p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 14px;
    color: #444;
}

/* 最初の一文（強調） */
.top-message p:first-child {
    font-size: 16px;
    font-weight: 700;
    color: #222;
}

/* 法定表記 */
.top-message-legal {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #eee;

    font-size: 12px;
    color: #666;
}

.top-cta-btn {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 18px 36px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.2s;
}

.top-cta-btn:hover {
    transform: translateY(-3px);
}

/* ==============================
 * 職業紹介（カード型）
 * ============================== */
.top-intro {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px 32px;

    background: #ffffff; /* ← 中は白 */
    border-radius: 18px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #2e7d32;

    text-align: center;
}

/* 見出し */
.top-intro h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #222;
}

/* 本文 */
.top-intro p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 14px;
    color: #444;
}

/* 法定表記 */
.top-intro-legal {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #666;
}

/* 最後の一文 */
.top-intro-note {
    margin-top: 16px;
    font-size: 14px;
    color: #333;
}

/* ==============================
 * お知らせ（アコーディオン対応）
 * ============================== */
.top-news {
    max-width: 900px;
    margin: 50px auto;
    padding: 28px 30px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border-top: 5px solid #2e7d32;
}

/* リスト */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 1行（クリック部分） */
.news-toggle {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 16px;
    margin-bottom: 10px;

    background: #f7fbf8;
    border-radius: 10px;

    cursor: pointer;
    transition: 0.2s;
}

/* ホバー */
.news-toggle:hover {
    transform: translateX(4px);
    background: #eef7f1;
}

/* 開いたとき */
.news-item.active .news-toggle {
    background: #eaf7ee;
}

/* 中身（初期は閉じる） */
.news-content {
    display: none;
    padding: 16px;
    margin-top: -5px;
    margin-bottom: 12px;

    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #eee;

    font-size: 14px;
    line-height: 1.8;
    color: #444;
}

/* 開いた状態 */
.news-item.active .news-content {
    display: block;
}

/* 日付 */
.news-date {
    font-size: 13px;
    color: #777;
    min-width: 90px;
}

/* テキスト */
.news-text {
    font-size: 14px;
    color: #333;
}

/* NEWバッジ */
.news-badge {
    background: #e53935;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 6px;
}

/* スマホ */
@media (max-width: 768px) {
    .news-toggle {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-date {
        min-width: auto;
    }
}

.top-intro {
  max-width: 560px;
  margin: 40px auto;
  padding: 22px 20px;
  background: #f9fbfa;
  border: 1px solid #e4eeea;
  border-radius: 12px;
}

.top-intro h2 {
  font-size: 18px;
  margin-bottom: 14px;
  color: #1f2d28;
}

.top-intro p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #2f3a35;
}

.top-intro-highlight {
  font-weight: bold;
  color: #06c755;
}

.top-intro-legal {
  font-size: 12px;
  color: #6b7570;
  margin-top: 10px;
}

.top-intro-note {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

.mp-inline-cta {
  text-align: center;
  margin-top: 14px;
}

/* LINE CTA 全体 */
.mp-cta-box {
  max-width: 560px;
  margin: 28px auto 36px;
  padding: 22px 18px;
  background: #ffffff;
  border: 1px solid #dff2e8;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

/* LINEボタン */
.mp-cta-button {
  display: inline-block;
  width: 100%;
  max-width: 340px;
  padding: 14px 18px;
  background: #06c755;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(6, 199, 85, 0.28);
}

/* ボタン下の補足 */
.mp-micro-copy {
  max-width: 460px;
  margin: 10px auto 0;
  font-size: 13px;
  line-height: 1.7;
  color: #4b5a54;
}

/* LINE追加後の案内だけ少し目立たせる */
.mp-cta-box .mp-micro-copy:nth-of-type(2) {
  margin-top: 14px;
  padding: 10px 12px;
  background: #f1fbf6;
  border: 1px solid #d7f0e3;
  border-radius: 10px;
  color: #245b3f;
  text-align: left;
}

/* 例文 */
.mp-example {
  padding: 8px 12px;
  background: #f7faf9;
  border-radius: 8px;
  color: #6b7570;
  font-size: 12px;
  text-align: left;
}

/* スマホ調整 */
@media (max-width: 480px) {
  .mp-cta-box {
    margin: 24px 14px 32px;
    padding: 20px 14px;
  }

  .mp-cta-button {
    font-size: 15px;
    padding: 13px 16px;
  }

  .mp-micro-copy {
    font-size: 12.5px;
  }
}