/* --- リセットCSS & 基本設定 --- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
  font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    /* 1画面に収めるための基本設定 */
    width: 100%;
    height: 100%;
}

/* --- レイアウトコンテナ --- */
.container {
    /* 画面の高さいっぱいに広げる */
    min-height: 100vh;
    width: 100%;
    padding: 20px;

    /* 上下左右中央揃え */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.sp-only {
  display: none;
}

/* --- 各セクションのスタイル --- */

/* 最上部のメッセージ */
.intro-text {
    font-size: 1.8rem;
    color: #8E7E66;
    margin-bottom: 2vh;
    letter-spacing: 0.05em;
}

/* メインロゴ */
.main-logo {
    width: 100%;
    max-width: 720px; /* PCでの最大幅 */
    margin-bottom: 4vh;
}
.main-logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* お知らせテキストエリア */
.announcement {
    margin-bottom: 4vh;
}

.announcement h1 {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 10px;
}

.announcement .date {
    font-size: 3.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.divider {
    width: 40px;
    height: 20px;
    margin-bottom: 4vh;
    position: relative;
}
.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    transform: translate(-50%, -20%) rotate(-45deg);
}
.emphasis-dot {
  /* スタイルと色を一括指定 */
  text-emphasis: filled dot #333;
  -webkit-text-emphasis: filled dot #333;
  text-emphasis-position: over right;
}

/* 3社ロゴリンクエリア */
.brand-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* ロゴ間の余白 */
    margin-bottom: 3vh;
    width: 100%;
    max-width: 800px;
}

.brand-link-item {
    display: block;
    transition: opacity 0.3s;
}
.brand-link-item:hover {
    opacity: 0.7;
}

/* 各ブランドロゴのサイズ調整（仮） */
.brand-logo-img {
    width: auto;
    display: block;
}

/* フッター注釈 */
.footer-note {
    font-size: 1.5rem;
    color: #666;
    line-height: 1.5;
}

/* --- レスポンシブ対応 (SP版: 768px以下) --- */
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .intro-text {
    font-size: 1.5rem;
    letter-spacing: 0;
    margin-bottom: .8em;
  }

  .main-logo {
    max-width: 90%; /* スマホでは画面幅いっぱい近くに */
    margin-bottom: 30px;
  }

  .announcement {
      margin-bottom: 4vh;
  }

  .announcement h1 {
    font-size: 2rem; /* 文字サイズを小さく */
  }

  .announcement .date {
    font-size: 2rem;
  }

  .divider {
    margin-bottom: 4vh;
  }

  /* ロゴを縦並びにする */
  .brand-links {
    flex-direction: column;
    gap: 16px;
  }

  .footer-note {
    margin-top: 10px;
  }
}
