/* 全体設定 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family:  'DotGothic16', 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    background-color: #fff;
      font-weight: 400;
  font-style: normal;
    color: #000;
}

/* コンテナ */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5em;
    gap: 20px; /* 要素間の余白 */
}

/* タイトル */
h1 {
    font-size: 2rem;
}

/* 画像のスタイル */
.image img {
    width: 50%; /* 画面幅の50% */
    max-width: 300px; /* 最大幅を設定 */
    height: auto;
    background-color: #ccc;
}

/* フッターテキスト */
.footer-text {
    color: #666;
    font-size: 1rem;
    margin-top: 50px;
    letter-spacing: 0.1em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    .image img {
        width: 80%; /* 画面幅の80%まで縮小 */
    }

    .footer-text {
        font-size: 0.9rem;
    }
}
