/*
Theme Name: Cocoon Child - Theraplay
Template: cocoon-master
Description: 日本セラプレイ協会用Cocoon子テーマ
Author: Japan Theraplay Alliance
Version: 1.0.0
*/

/* ============================================
   CSS変数（ブランドカラー）
============================================ */
:root {
    --brand-orange: #F59E0B;
    --brand-yellow: #FCD34D;
    --brand-light: #FFFBEB;
    --brand-dark: #78350F;
    --brand-text: #374151;
    --transition-base: 0.3s ease;
}

/* ============================================
   基本設定
============================================ */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--brand-text);
    line-height: 1.8;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   ブログ記事用タイポグラフィ
============================================ */

/* 記事タイトル (h1) */
.entry-title,
.article h1 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--brand-orange);
}

@media (min-width: 768px) {
    .entry-title,
    .article h1 {
        font-size: 2.25rem; /* 36px */
    }
}

/* 見出し h2 */
.article h2,
.entry-content h2 {
    font-size: 1.5rem; /* 24px */
    font-weight: 700;
    color: var(--brand-dark);
    margin: 2.5rem 0 1.25rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(to right, var(--brand-light), transparent);
    border-left: 4px solid var(--brand-orange);
    border-radius: 0 8px 8px 0;
}

@media (min-width: 768px) {
    .article h2,
    .entry-content h2 {
        font-size: 1.75rem; /* 28px */
    }
}

/* 見出し h3 */
.article h3,
.entry-content h3 {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    color: var(--brand-dark);
    margin: 2rem 0 1rem;
    padding-left: 1rem;
    border-left: 3px solid var(--brand-yellow);
    position: relative;
}

.article h3::before,
.entry-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--brand-orange);
}

@media (min-width: 768px) {
    .article h3,
    .entry-content h3 {
        font-size: 1.375rem; /* 22px */
    }
}

/* 見出し h4 */
.article h4,
.entry-content h4 {
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    color: var(--brand-dark);
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px dotted var(--brand-yellow);
}

/* 段落 (p) - 少し大きめに設定 */
.article p,
.entry-content p {
    font-size: 1.0625rem; /* 17px - 01.htmlより少し大きめ */
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--brand-text);
}

@media (min-width: 768px) {
    .article p,
    .entry-content p {
        font-size: 1.125rem; /* 18px */
    }
}

/* リスト (ul/ol) */
.article ul,
.entry-content ul,
.article ol,
.entry-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article ul li,
.entry-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    list-style: none;
}

.article ul li::before,
.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 8px;
    height: 8px;
    background: var(--brand-orange);
    border-radius: 50%;
}

.article ol,
.entry-content ol {
    counter-reset: list-counter;
}

.article ol li,
.entry-content ol li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.8;
    list-style: none;
    counter-increment: list-counter;
}

.article ol li::before,
.entry-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--brand-orange);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 引用 */
.article blockquote,
.entry-content blockquote {
    background: var(--brand-light);
    border-left: 4px solid var(--brand-orange);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
}

.article blockquote p,
.entry-content blockquote p {
    margin-bottom: 0;
}

/* ============================================
   ヘッダーカスタマイズ
============================================ */
.header {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ロゴエリア */
.logo-header {
    display: flex;
    flex-direction: column;
}

.site-name-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brand-text);
}

.site-name-text-link:hover {
    color: var(--brand-orange);
}

/* サブタイトル */
.site-description {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 0.1em;
}

/* ============================================
   タブ風ナビゲーション（サービス/ブログ切り替え）
============================================ */
.tab-navigation {
    display: flex;
    gap: 0;
    margin-right: 1rem;
}

.tab-navigation a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brand-text);
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    transition: var(--transition-base);
    text-decoration: none;
    position: relative;
    top: 1px;
}

.tab-navigation a:hover {
    background: var(--brand-light);
    color: var(--brand-orange);
}

.tab-navigation a.active {
    background: white;
    color: var(--brand-orange);
    border-color: var(--brand-orange);
    border-bottom: 2px solid white;
}

.tab-navigation a i {
    font-size: 1rem;
}

/* ============================================
   グローバルナビゲーション
============================================ */
.navi {
    background: white !important;
    border-top: 1px solid #e5e7eb;
}

.navi-in > ul > li > a {
    color: var(--brand-text) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    transition: var(--transition-base);
}

.navi-in > ul > li > a:hover {
    color: var(--brand-orange) !important;
    background: var(--brand-light) !important;
}

/* 寄付ボタン（グローバルナビ内） */
.navi-in .menu-item-donation > a {
    background: var(--brand-orange) !important;
    color: white !important;
    border-radius: 9999px;
    padding: 0.5rem 1.25rem !important;
    margin: 0.25rem 0.5rem;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
    transition: var(--transition-base);
}

.navi-in .menu-item-donation > a:hover {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.4);
}

/* ============================================
   モバイルヘッダー＆ハンバーガーメニュー
============================================ */
@media (max-width: 1023px) {
    .mobile-menu-buttons .menu-button {
        color: var(--brand-text);
    }

    /* モバイルメニュー内の寄付ボタン */
    .mobile-menu-donation {
        display: block;
        background: var(--brand-orange);
        color: white !important;
        text-align: center;
        padding: 1rem;
        margin: 0.5rem 1rem;
        border-radius: 8px;
        font-weight: 700;
    }
}

/* スライドインメニュー */
.menu-drawer {
    background: white;
}

.menu-drawer a {
    color: var(--brand-text) !important;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.menu-drawer a:hover {
    background: var(--brand-light);
    color: var(--brand-orange) !important;
}

/* ============================================
   フッター
============================================ */
.footer {
    background: var(--brand-dark) !important;
    color: #fef3c7;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2) !important;
}

.footer a {
    color: #fef3c7 !important;
    transition: var(--transition-base);
}

.footer a:hover {
    color: white !important;
}

.footer-title {
    color: white;
    font-weight: 700;
    border-bottom: 1px solid rgba(251, 191, 36, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.copyright {
    color: rgba(254, 243, 199, 0.6);
    font-size: 0.75rem;
}

/* ============================================
   ボタン共通スタイル
============================================ */
.btn-primary,
.wp-block-button__link {
    background: var(--brand-orange) !important;
    color: white !important;
    border: none;
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    transition: var(--transition-base);
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.25);
}

.btn-primary:hover,
.wp-block-button__link:hover {
    background: #d97706 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 158, 11, 0.35);
}

.btn-secondary {
    background: white;
    color: var(--brand-dark);
    border: 2px solid var(--brand-orange);
    border-radius: 9999px;
    padding: 0.75rem 2rem;
    font-weight: 700;
    transition: var(--transition-base);
}

.btn-secondary:hover {
    background: var(--brand-light);
}

/* ============================================
   エントリーカード（ブログ一覧）
============================================ */
.entry-card-wrap {
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-base);
    background: white;
}

.entry-card-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.entry-card-thumb img {
    transition: transform 0.5s ease;
}

.entry-card-wrap:hover .entry-card-thumb img {
    transform: scale(1.05);
}

.entry-card-title {
    color: var(--brand-text);
    font-weight: 700;
    transition: var(--transition-base);
}

.entry-card-wrap:hover .entry-card-title {
    color: var(--brand-orange);
}

.cat-label {
    background: var(--brand-orange) !important;
    border-radius: 4px;
}

/* ============================================
   サイドバー
============================================ */
.sidebar h2,
.sidebar h3,
.widget-title {
    background: var(--brand-dark);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px 8px 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.widget_recent_entries li,
.widget_categories li,
.widget_archive li {
    border-bottom: 1px solid #f3f4f6;
    padding: 0.75rem 0;
}

.widget_recent_entries li a,
.widget_categories li a,
.widget_archive li a {
    color: var(--brand-text);
    transition: var(--transition-base);
}

.widget_recent_entries li a:hover,
.widget_categories li a:hover,
.widget_archive li a:hover {
    color: var(--brand-orange);
    padding-left: 0.5rem;
}

/* ============================================
   アニメーション
============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   その他のユーティリティ
============================================ */

/* ページネーション */
.pagination .page-numbers {
    background: white;
    color: var(--brand-text);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: var(--transition-base);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--brand-orange);
    color: white;
    border-color: var(--brand-orange);
}

/* 目次 */
.toc {
    background: var(--brand-light);
    border: 1px solid var(--brand-yellow);
    border-radius: 12px;
}

.toc-title {
    color: var(--brand-dark);
    font-weight: 700;
}

/* SNSシェアボタン */
.ss-top .social-icon,
.ss-bottom .social-icon {
    border-radius: 8px;
}

/* 関連記事 */
.related-entry-card-wrap {
    border-radius: 8px;
    overflow: hidden;
}

.related-entry-card-wrap:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ============================================
   LP（サービスページ）専用スタイル
============================================ */

/* LP時はCocoonのサイドバーを非表示 */
.page-service .sidebar,
.page-service #sidebar {
    display: none;
}

.page-service .main,
.page-service #main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.page-service .content,
.page-service #content {
    max-width: 100%;
    padding: 0;
}

.page-service .wrap {
    max-width: 100%;
    padding: 0;
}

/* コンテナ */
.tp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .tp-container {
        padding: 0 1.5rem;
    }
}

/* メイン */
.tp-main {
    padding-top: 0;
}

/* セクション共通 */
.tp-section {
    padding: 4rem 0;
}

@media (min-width: 768px) {
    .tp-section {
        padding: 6rem 0;
    }
}

.tp-section-white {
    background: white;
}

.tp-section-stone {
    background: #fafaf9;
}

.tp-section-light {
    background: var(--brand-light);
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.tp-section-gradient {
    background: linear-gradient(to bottom right, var(--brand-light), white);
}

.tp-section-orange {
    background: var(--brand-orange);
    padding: 5rem 0;
}

/* セクションヘッダー */
.tp-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.tp-section-header h2,
.tp-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.tp-section-title-white {
    font-size: 1.875rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 2.5rem;
}

.tp-section-line {
    width: 4rem;
    height: 4px;
    background: var(--brand-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.tp-section-desc {
    font-size: 1.125rem;
    line-height: 2;
    margin-top: 1.5rem;
}

/* ============================================
   ヒーローセクション
============================================ */
.tp-hero {
    background-color: var(--brand-light);
    background-image: radial-gradient(var(--brand-yellow) 1.5px, transparent 1.5px), 
                      radial-gradient(var(--brand-orange) 1.5px, var(--brand-light) 1.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .tp-hero {
        padding: 6rem 0;
    }
}

.tp-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .tp-hero-inner {
        flex-direction: row;
    }
}

.tp-hero-content {
    flex: 1;
}

.tp-hero-badge {
    display: inline-block;
    background: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-orange);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

.tp-hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .tp-hero-title {
        font-size: 3rem;
    }
}

.tp-text-orange {
    color: var(--brand-orange);
}

.tp-hero-subtitle {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: #4b5563;
    margin-top: 0.5rem;
}

@media (min-width: 768px) {
    .tp-hero-subtitle {
        font-size: 1.875rem;
    }
}

.tp-hero-text {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tp-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.tp-hero-image {
    flex: 1;
    position: relative;
}

.tp-blob-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: border-radius 0.5s ease;
}

.tp-blob-shape:hover {
    border-radius: 40% 60% 70% 30% / 50% 60% 30% 60%;
}

.tp-blob-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.tp-blob-shape:hover img {
    transform: scale(1.05);
}

.tp-hero-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-dark);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tp-hero-deco {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 6rem;
    color: var(--brand-yellow);
    opacity: 0.4;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.6; }
}

/* 補助金バー */
.tp-grant-notice {
    background: var(--brand-dark);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .tp-grant-notice {
        font-size: 0.875rem;
    }
}

/* ============================================
   特徴カード
============================================ */
.tp-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tp-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tp-feature-card {
    background: rgba(255, 237, 213, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: background 0.3s ease;
}

.tp-feature-card:hover {
    background: rgba(255, 237, 213, 0.8);
}

.tp-feature-icon {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 1rem;
}

.tp-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

.tp-feature-card p {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   プログラムカード
============================================ */
.tp-program-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

@media (min-width: 768px) {
    .tp-program-card {
        flex-direction: row;
    }
}

.tp-program-image {
    height: 16rem;
    min-height: 250px;
}

@media (min-width: 768px) {
    .tp-program-image {
        flex: 1;
        height: auto;
        min-height: 400px;
    }
}

.tp-program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tp-program-content {
    flex: 1;
    padding: 2rem;
}

@media (min-width: 768px) {
    .tp-program-content {
        padding: 3rem;
    }
}

.tp-program-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--brand-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tp-program-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0.5rem 0 1.5rem;
}

@media (min-width: 768px) {
    .tp-program-content h2 {
        font-size: 1.875rem;
    }
}

.tp-program-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tp-link-arrow {
    display: inline-block;
    color: var(--brand-dark);
    font-weight: 700;
    border-bottom: 2px solid var(--brand-orange);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.tp-link-arrow:hover {
    color: var(--brand-orange);
}

/* ============================================
   対象者カード
============================================ */
.tp-audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tp-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tp-audience-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tp-audience-card:hover {
    transform: translateY(-8px);
}

.tp-audience-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 237, 213, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.tp-audience-icon i {
    font-size: 1.5rem;
    color: var(--brand-orange);
}

.tp-audience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.tp-audience-card > p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tp-check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.tp-check-list li {
    font-size: 0.875rem;
    color: #6b7280;
    padding: 0.5rem 0;
}

.tp-check-list li::before {
    display: none;
}

.tp-check-list i {
    color: #10b981;
    margin-right: 0.5rem;
}

.tp-btn-dark {
    display: block;
    background: var(--brand-dark);
    color: white !important;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.tp-btn-dark:hover {
    background: #1f2937;
}

.tp-btn-yellow {
    display: block;
    background: var(--brand-yellow);
    color: var(--brand-dark) !important;
    text-align: center;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s ease;
}

.tp-btn-yellow:hover {
    background: #fbbf24;
}

/* ============================================
   体験者の声
============================================ */
.tp-voices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tp-voices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tp-voice-card {
    background: white;
    padding: 2rem;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.1);
}

.tp-sticker {
    border-radius: 0 1.5rem 0 1.5rem;
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.tp-sticker:hover {
    transform: rotate(0) scale(1.02);
}

.tp-sticker-alt {
    border-radius: 1.5rem 0 1.5rem 0;
    transform: rotate(1deg);
    transition: transform 0.3s ease;
}

.tp-sticker-alt:hover {
    transform: rotate(0) scale(1.02);
}

.tp-voice-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tp-voice-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.tp-avatar-blue {
    background: #dbeafe;
    color: #3b82f6;
}

.tp-avatar-pink {
    background: #fce7f3;
    color: #ec4899;
}

.tp-voice-header h3 {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
}

.tp-voice-card > p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
}

/* ============================================
   ニュースセクション（WordPress連携）
============================================ */
.tp-news-section {
    padding: 4rem 0;
    background: white;
}

.tp-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.tp-news-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin: 0;
}

.tp-link-more {
    font-size: 0.875rem;
    color: var(--brand-orange);
    transition: text-decoration 0.3s ease;
}

.tp-link-more:hover {
    text-decoration: underline;
}

.tp-news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tp-news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tp-news-card {
    cursor: pointer;
}

.tp-news-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.tp-news-thumb {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.tp-news-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-news-card:hover .tp-news-img {
    transform: scale(1.1);
}

.tp-news-noimg {
    width: 100%;
    height: 12rem;
    background: rgba(255, 237, 213, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.tp-news-noimg i {
    font-size: 2rem;
    color: var(--brand-orange);
    opacity: 0.5;
}

.tp-news-card:hover .tp-news-noimg {
    background: rgba(255, 237, 213, 0.8);
}

.tp-news-meta {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.tp-news-title {
    font-weight: 700;
    color: #1f2937;
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tp-news-card:hover .tp-news-title {
    color: var(--brand-orange);
}

/* ============================================
   寄付セクション
============================================ */
.tp-donation-inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.tp-donation-icon {
    font-size: 3rem;
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
}

.tp-donation-inner h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.tp-donation-inner p {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   LP用フッター調整
============================================ */
.page-service .footer {
    margin-top: 0;
}

.tp-footer-info {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .tp-footer-info {
        grid-template-columns: 1fr 1fr;
    }
}

.tp-footer-logo h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.tp-footer-logo p {
    font-size: 0.875rem;
    opacity: 0.8;
}

.tp-footer-address p {
    font-size: 0.875rem;
    line-height: 1.8;
    opacity: 0.8;
}
