/* リセットと基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif; /* 💡 [初心者説明] フォントを設定しています。 */
    margin: 0; 
    padding: 0; 
    background-color: #f4f7f6; 
    color: #333;
    line-height: 1.6; 
}

h1, h2, h3 {
    font-weight: 700; 
    color: #007bff; 
}

/* 全体のレイアウト調整 */
.section { 
    padding: 40px 5%;
    max-width: 1000px; /* 💡 [企業説明] サイトの最大幅を固定し、見やすさを維持します。 */
    margin: 0 auto; 
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}

/* ヒーローセクション（ファーストビュー） */
.hero {
    background-color: #ffd700; /* 目を引く黄色 */
    text-align: center;
    padding: 60px 20px;
    color: #003a70;
}

/* **CTAボタン（申し込みボタン）** - 最も重要 */
.cta-button {
    display: inline-block; 
    background-color: #ff4500; /* 強調したいオレンジ/赤 */
    color: white;
    font-size: 1.3em;
    font-weight: 700;
    padding: 15px 30px;
    margin: 15px 0;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.1s;
    /* 💡 [企業説明] 視線を集めるためのアニメーションを適用します。 */
    animation: pulse 1.5s infinite; 
}

.cta-button:hover {
    background-color: #e53e00; 
    transform: translateY(-2px); /* 💡 [UX向上] カーソルを合わせたときに少し動かし、クリック感を強調します。 */
}

@keyframes pulse { 
    0% { transform: scale(1); }
    50% { transform: scale(1.03); } 
    100% { transform: scale(1); }
}

/* イベント詳細テーブル */
.date-display {
    display: flex; 
    justify-content: center; 
    gap: 30px;
    margin: 20px 0;
    text-align: center;
    background-color: #fffacd;
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #ffb400;
}

.date-display strong {
    font-size: 1.8em;
    color: #cc0000; /* 💡 [集客効果] 日付を赤色で強調し、視認性を高めます。 */
    display: block;
    margin-top: 5px;
}
/* その他のCSS（中略を補完） */
.hero h1 {font-size: 2.5em;margin-bottom: 10px;color: #003a70;}.highlight-info {font-size: 1.1em;font-weight: 700;margin-bottom: 20px;}.hero img {width: 100%;max-width: 600px;height: auto;border-radius: 8px;margin-top: 20px;box-shadow: 0 4px 8px rgba(0,0,0,0.2);}.card-grid {display: flex;gap: 20px;margin-top: 20px;flex-wrap: wrap;}.card {flex: 1;min-width: 250px;padding: 20px;border: 1px solid #e0e0e0;border-radius: 8px;background-color: #f9f9ff;}.event-table {width: 100%;border-collapse: collapse;margin-top: 20px;}.event-table th, .event-table td {border: 1px solid #ddd;padding: 12px;text-align: left;}.event-table th {background-color: #eaf2ff;width: 30%;}.rules-container {display: grid;grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));gap: 20px;}.rules-container ul {list-style: disc;padding-left: 20px;}footer {background-color: #333;color: white;padding: 20px;text-align: center;font-size: 0.9em;}.footer-content {display: flex;justify-content: center;gap: 40px;flex-wrap: wrap;margin-bottom: 10px;}.footer-content a {color: #ffd700;text-decoration: none;}


/* =======================================
   💡 新規追加：介護イベントリンクのスタイル
   ======================================= */

/* フッターの配置を崩さないための調整 */
.project-link {
    width: 100%; /* フッターの幅全体を使わせる */
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #555; /* 他の情報と区切る線 */
}

.project-link a {
    font-size: 1em;
    color: #ff9800 !important; /* 💡 [強調] ポケカとは異なるオレンジ色で目立たせる */
    text-decoration: none !important;
}

.project-link a:hover {
    text-decoration: underline !important;
}