@charset "UTF-8";

/* =========================================================
   ティザーサイト 基本スタイル
   ※ 基本情報のみ。配色・フォント等はご自由に改修してください
   ========================================================= */

/* ----- リセット ----- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----- ベース ----- */
body {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----- メインコンテナ ----- */
.teaser {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh; /* モバイルでアドレスバーを考慮 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ----- メインビジュアル ----- */
.teaser__visual {
  width: 100%;
  display: block;
}

.teaser__visual img {
  width: 100%;
  height: auto;
}

/* ----- メッセージエリア ----- */
.teaser__message {
  width: 100%;
  padding: 32px 20px 48px;
  text-align: center;
}

.teaser__lead {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.teaser__date {
  margin: 0 0 24px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #555;
}

.teaser__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* =========================================================
   PC(768px以上)
   ========================================================= */
@media (min-width: 768px) {

  .teaser__message {
    padding: 48px 24px 64px;
  }

  .teaser__lead {
    font-size: 32px;
  }

  .teaser__date {
    font-size: 18px;
  }

  .teaser__note {
    font-size: 16px;
  }

}
