﻿/* ================================
   Header（リンク色・下線なし）
================================ */
header a{
				color:#fff;
				text-decoration: none;
}

header a:hover {
    opacity: 0.8;
}

/* ロゴも白に統一 */
.logo {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* ================================
   ライフナビゲート セクション
================================ */
#lifenavigate {
    margin-top: 100px;
		margin-left: 100px;
}



.ln-block {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.ln-block:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ================================
   事例カード（case-item）
================================ */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.case-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.case-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.case-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* ================================
   寄付ページデザイン強化
================================ */

/* セクション全体の余白と読みやすさ */
.donation-intro,
.donation-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    line-height: 1.8;
}

/* 見出しデザイン */
.donation-intro h1,
.donation-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #333;
}

/* 寄付案内テキスト */
.donation-text {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* 寄付ボックス（銀行情報） */
.donation-box {
    background: #fff;
    border: 2px solid #f2b94b;
    border-radius: 12px;
    padding: 1.8rem;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* 寄付ボックス内の文字 */
.donation-box p {
    margin: 0.4rem 0;
    font-size: 1.1rem;
}

/* 背景に淡い色を追加（寄付セクション） */
.donation-section {
    background: linear-gradient(180deg, #fff7e6 0%, #ffffff 100%);
    border-radius: 16px;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* メールアドレス強調 */
.donation-text strong {
    font-size: 1.2rem;
    color: #d47a00;
}

/* ================================
   スマホ最適化
================================ */
@media (max-width: 768px) {

    .donation-intro,
    .donation-section {
        padding: 2rem 1rem;
    }

    .donation-box {
        padding: 1.5rem 1rem;
    }

    .donation-text {
        font-size: 1rem;
    }

    .donation-box p {
        font-size: 1rem;
    }
}
