@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  color: #313131;
  margin: 0;
  padding: 0;
  font: 16px/1.6 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

p {
  line-height: 24px;
  margin-bottom: 10px;
}

table {
  border-spacing: 0;
  font-size: 100%;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
  color: #555;
  text-decoration: none;
}

a:hover {
  color: #006ddc;
}

a:hover .btn {
  position: relative;
  top: 3pt;
  left: 3pt;
}

/*コンテナー（HPを囲むブロック）---------------------------------------------------------------------------*/
#container {
  width: 750px !important;  /* 常に750pxに固定 */
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

.form {
  display: block;
  background-color: #f6f6f6;
  padding: 20px 32px 40px;
  width: 750px !important;     /* 常に750px */
  margin: 0 auto;
  box-sizing: border-box;
}

input {
  font-size: 150%;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #343c40;
  height: 70px;
  width: 100%;
  margin: 10px 0 20px;
}

/* プレースホルダー文字用 */
input::placeholder {
  text-align: left;
  padding-left: 20px;
  color: #a4a4a4;
  font-size: 90%;
  font-weight: 300;
}

/* メールアドレス入力欄 */
#semail {
  text-align: left;      /* 左揃え */
  padding-left: 20px;    /* 左に余白を追加 */
}

.btn {
  background: url(../img/btn01.png) center top no-repeat;
  width: 100%;
  height: 185px;
  border: none;
  display: block;
  margin: 0 auto 10px auto;
}

/* ボタン下のLINE注意書き */
form p {
  color: #202020;
  font-size: 20px;
  font-weight: 100;
  margin-top: 10px;
}

hr {
  color: #00364f;
}

/*メインコンテンツ---------------------------------------------------------------------------*/
.text-box {
  width: 90%;
  margin: 1em auto;
}

/* カウントダウン全体 */
.countdown {
  background-color: #f6f6f6;
  padding: 30px 0 10px;
}

/* ラベル部分 */
.countdown .label {
  color: #202020;
  font-size: 16pt !important;
  font-family: "A-OTF 新ゴ Pro", sans-serif !important;
  font-weight: normal !important;
  margin: 0 0 22px 0;
}

/* タイマー部分 */
.countdown .timer {
  color: #202020;
  font-size: 30pt;
  font-family: "A-OTF 新ゴ Pro", sans-serif;
  font-weight: 600;
  margin: 0 0 -15px 0;
}

.white {
  color: #ea4b4b;
  font-size: 26px;
  font-weight: bold;
  margin: 10px;
}

.small {
  font-size: 20px;
}

/*フッター設定---------------------------------------------------------------------------*/
footer {
  width: 750px !important;  /* フッターも固定 */
  margin: 0 auto;
  padding: 45px 0;
  text-align: center;
  background-color: #343c40;
  color: #fff;
  position: relative;
}

footer a {
  color: #ffffff;
  font-size: 20px;
  margin: 30px 5px;
  text-decoration: none;
}

footer p {
  margin: 10px 0;
}

footer .copy {
  color: #cccccc;
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}

/*その他---------------------------------------------------------------------------*/
.clear {
  clear: both;
}

/*フォント設定---------------------------------------------------------------------------*/
.red { color: #C00; }
.purple { color: indigo; }
.bold { font-weight: bold; }

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

dt,
dd {
  padding: 6px;
}

/* PC/SP切替表示 */
.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 768px) {
  .pc { display: none !important; }
  .sp { display: block !important; }

  input {
    font-size: 180%;
    height: 100px;
    width: 100%;
  }
  
  .btn {
    height: 186px;
  }

  /* フォーム幅を750pxに固定 */
  #container,
  .form,
  footer {
    width: 750px !important;
  }
}