@charset "UTF-8";
/* CSS Document */

/* 画像が端末幅に合わせて自動縮小する設定 */
img {
  margin: auto;
  display: block;
  max-width: 100%;
  height: auto;
}

/* 本文エリア（最大幅650pxの中央配置・白背景） */
#wrapper {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: justify;
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 20px;
}

#wrapper_gp {
  text-align: justify;
  margin: 0 auto;
}

/* タイトルヘッダーのレスポンシブ設定 */
h1 {
  /* スマホ等：16文字が1行で画面横幅の約80%に収まるサイズ */
  font-size: 5vw; 
  white-space: nowrap; /* 絶対に途中で改行させない */
  text-align: center;
  color: #FFFFFF;
  background-color: #aa1f24;
  padding: 15px 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
}

/* パソコン等の画面（wrapperの最大幅650pxに達したとき） */
@media screen and (min-width: 650px) {
  h1 {
    /* 650pxの80%である「520px幅」の中に16文字を1行で収めるサイズ */
    font-size: 32.5px; 
  }
}

h2 {
  font-size: 2em;
  text-align: center;
  color: #FFFFFF;
}

.font_white {
  font-size: 1.4em;
  color: #333333;
}

.font_mini {
  font-size: 0.5em;
  color: #666666; /* 画面全体が白いため、見やすいグレーに変更 */
}

/* 画面全体の背景色を白に統一 */
body {
  background: #ffffff;
  margin: 0;
}

.hr1 {
  border-top: 5px double skyblue;
  text-align: center;
}

.hr1::after {
  content: 'テスト';
  display: inline-block;
  position: relative;
  top: -42px;
  padding: 0 3px;
  color: skyblue;
  font-size: 30px;
}

.hr_margin {
  margin-top: 30px;
  margin-bottom: 60px;
}

.center {
  text-align: center;
}

.comingsoon::before {
  content: "《";
}

.font2em {
  font-size: 2em;
}

/* 白背景で見えやすいリンク色 */
a {
  color: #e6642c;
  text-decoration: underline;
}

a:visited {
  color: #e6642c;
}

.next_link {
  text-align: center;
  margin: 40px auto 20px auto;
  font-size: 1.4em;
}