/* 
  File: style.css
  Author: UG.
  Created: 2025-08-02
  Last Updated: 2025-08-02
  Description:
    サイト全体のレイアウトとスタイル定義を記述するスタイルシート。
    HTMLから <link rel="stylesheet" href="style.css"> により読み込まれる。

  License: MIT License
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:

  The above copyright notice and this permission notice shall be included in all
  copies or substantial portions of the Software.

  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.
*/

        body {
            background: #f0f0f0;
            font-family: 'Noto Serif Japanese', serif;
            margin: 0;
            padding: 1rem;
            color: #333;
        }

        header {
            text-align: center;
            padding: 1rem 0;
        }

        .title_text {
            font-family: 'Fredericka the Great', cursive;
            font-size: 3rem;
            font-weight: bold;
            color: #444;
            margin-bottom: 1rem;
        }

        .new {
            font-family: 'Roboto', sans-serif;
            vertical-align: super;
            color: #f00;
            font-size: 0.7em;
            font-weight: normal;
            background: #fee;
            padding: 0 0.2em;
            border-radius: 3px;
        }

        section {
            max-width: 800px;
            margin: 1rem auto;
            padding: 0 1rem;
        }

        h2 {
            font-size: 1.2rem;
            margin-top: 1.5rem;
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #ccc;
            padding-bottom: 0.2rem;
        }

        a {
            color: #0056b3;
            text-decoration: underline;
        }

        a:hover {
            color: #003d80;
        }

        footer p {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-top: 2rem;
        }
