
    body {
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
      background-color: #fff;
      color: #202124;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .container {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .logo {
      font-size: 64px;
      font-weight: bold;
      font-family: 'Product Sans', Arial, sans-serif;
      margin-bottom: 30px;
      color: #2ca9e1;
    }

    .search-box {
      display: flex;
      align-items: center;
      border: 1px solid #a0d8ef;
      border-radius: 24px;
      padding: 8px 14px;
      width: 500px;
      max-width: 90%;
      box-shadow: none;
    }

    .search-box input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 16px;
    }

    .buttons {
      margin-top: 30px;
    }

    .buttons button {
      background-color: #f8f9fa;
      border: 1px solid #a0d8ef;
      border-radius: 4px;
      padding: 8px 16px;
      margin: 4px;
      font-size: 14px;
      cursor: pointer;
    }

    .buttons button:hover {
      border: 1px solid #84a2d4;
      box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    }

    .text{
      font-size: 48px;       /* 文字サイズを大きく */
      text-align: center;    /* 横方向の中央寄せ */
    }


/* === 11) サイト全体フッター ====================== */
.site-footer{ margin-top: 28px; border-top: 1px solid var(--border); }
.footer-inner{ 
   padding: 18px 0;
   color: #a89dac; 
   font-size: 14px; 
   text-align: center; 
}
