        /* --- アプリのデザインガイドラインに基づく変数の定義 --- */
        :root {
            --bg-color: #a3a3a3;      /* 背景：ライトグレー */
            --card-bg: #ffffff;         /* カード背景：白 */
            --text-color: #333333;      /* 基本文字色：ダークグレー */
            --subtext-color: white;  /* 補助文字色 */

            --highlight-row: #ffe4e6;
            --highlight-col: #ffe4e6;
            --highlight-day: #FFC5C9;
            --sat-color: #4f46e5;
            --sun-color: #ef4444;
            
            --primary-color: #FF8BB2;  /* メイン：今年の今日 #FFC5C9 */
            --secondary-color: #FFAFB5; /* サブ：過去・未来 */
            --accent-color: #a3a3a3;   /* アクセント：希望・計画 */
            
            --border-radius-card: 20px;
            --border-radius-btn: 50px;
            --shadow: 0 4px 6px rgba(0,0,0,0.1);
            --border-color: #e5e5e5;
        }

        /* --- 基本スタイル --- */
        * {
            box-sizing: border-box;
        }

        body {
            margin: 0; padding: 0;
            background-color: var(--bg-color);
            font-family: 'Helvetica Neue', Arial, sans-serif, serif;
            display: flex; flex-direction: column; align-items: center;
            height: 100vh; overflow: auto;
            color: var(--text-color);
            line-height: 1.6;
        }

        a { color: var(--text-color); text-decoration: none; }
        a:hover { var(--text-color); }
	.en-guide { color: #9E9E9E; font-size: 0.85rem; font-family: serif; }
	.en-footer { font-size: 0.85rem; font-family: serif; }

        .container {
            width: 100%; max-width: 500px;
            padding: 10px 10px; display: flex;
            flex-direction: column; align-items: center;
        }

        header { text-align: center; color: var(--subtext-color); margin-bottom: 10px; }
	header a  { color: var(--subtext-color); }
	header a:hover { color: var(--subtext-color);  }
        footer { text-align: center; color: var(--subtext-color); margin-bottom: 15px; margin-top: 15px; }
	footer a  { color: var(--subtext-color); }
	footer a:hover { color: var(--subtext-color);  }
        header h1 { font-size: 2.5rem; margin: 10px 0 5px 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
        header p { font-size: 0.8rem; margin: 0; font-weight: bold; }

        .field { display: flex; justify-content: space-around; width: 100%; margin-bottom: 5px; }

        .nav-button {
            display: flex; justify-content: center; align-items: center;
            background: #eee; border-radius: 50px;
            margin: 5px;
            padding: 0; height: 46px; /* padding を 0 にして a タグに任せる */
            color: #888; font-size: 0.9rem; font-weight: bold;
            white-space: nowrap; text-align: center;
        }

        .nav-button a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            color: inherit;
            text-decoration: none;
        }

        .button-img { width: 50px; height: 50px; cursor: pointer; }

        /* --- コンテンツエリア（カードデザイン） --- */
        .content-card {
            background-color: var(--card-bg);
            padding: 30px;
            border-radius: var(--border-radius-card);
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }
        .calendar-card {
            background-color: var(--card-bg); width: 100%;
            padding: 15px 5px; border-radius: 20px;
        }


        table { width: 100%; border-collapse: collapse; table-layout: fixed; color: #333; }
        th {
            vertical-align: top; border: 1px solid var(--border-color);
            padding: 5px 2px 8px 2px; text-align: center; font-size: 11px;
            overflow: hidden; word-wrap: break-word; height: auto; 
        }
        td {
            vertical-align: top; border: 1px solid var(--border-color);
            padding: 8px 2px; text-align: center; font-size: 11px;
            overflow: hidden; word-wrap: break-word; height: 120px; /* 予定5件分 */
        }
        
        .year-col { width: 45px; font-weight: bold; border-right: 1px solid var(--border-color); color: #555; vertical-align: top; }
        th.year-col { border-top: none; }
        .date-header { color: #888; font-weight: bold; border-top: none; }

        .sat { color: var(--sat-color); font-weight: bold; }
        .sun { color: var(--sun-color); font-weight: bold; }

        .current-year { background-color: var(--highlight-row); }
        .current-day-col { background-color: var(--highlight-col); }
        .current-day-cell { background-color: var(--highlight-day); }

        .event {
            display: block; font-size: 10px; transform: scale(0.9);
            margin-top: 4px; padding: 2px; border-radius: 4px;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }

        tr:last-child td { border-bottom: none; }


        h2 {
            color: var(--primary-color);
            font-size: 1.5rem;
            border-bottom: 2px solid var(--accent-color); /* スカイブルーの下線 */
            padding-bottom: 10px;
            margin-top: 0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        h3 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-top: 30px;
            margin-bottom: 15px;
        }


        ul, ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        li {
            margin-bottom: 10px;
        }

	.guide-class {
            text-align: center;
            justify-content: center;
            align-items: center;
	}
	.guide-img {
            width: 95%; /* 親要素の幅に合わせる */
            height: auto; /* 高さは自動調整 */
	}

        /* 強調テキスト */
        strong {
            color: var(--primary-color);
            font-weight: bold;
        }

        /* インラインコード（ボタン名など） */
        code {
            background-color: #eee;
            padding: 2px 6px;
            border-radius: 4px;
            font-family: monospace;
            color: #555;
        }

        .operation-item {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid var(--accent-color);
        }

        .img-icon {
            width: 80px;
            height: 80px;
        }

        /* --- 連携機能・言語セクション --- */
        .feature-highlight {
            background-color: #fdf2f2; /* ごく薄いコーラル */
            padding: 20px;
            border-radius: 10px;
            border: 1px solid var(--primary-color);
            margin-bottom: 20px;
        }