@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #fcfcfc;
  color: #313131;
  /*全体の文字色*/
  margin: 0px;
  padding: 0px;
  font: 16px/1.6 "源ノ角ゴシック JP","小塚ゴシック Pr6N", "メイリオ", 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;
}

/*------------------------------------
 共通設定
------------------------------------*/

#container {
  width: 750px;
  background-color: #fff;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  text-align: center;
  margin: 0 auto;
  overflow: hidden;
}

/*------------------------------------
 カウントダウン（上の青い部分）
------------------------------------*/

.countdown {
  background-color: #256577;
  padding: 40px 0 20px;
  text-align: center;
}

.cd-title {
  color: #ffffff;
  font-size: 34px;   /* ←小見出し */
  font-weight: regular;
  margin-bottom: 15px;/* ← タイトルと数字の間の余白 */
}

.timer {
  color: #ffffff;
  font-size: 65px;   /* ←数字が大きい */
  font-weight: regular;
  line-height: 1.1;    /* ← 行の重なり改善 */
}


/*------------------------------------
 メールアドレス入力部分からボタン、メモ書きまでのエリア(エリアの色は青、ボタンから下は白いエリアが上にのっている）
------------------------------------*/

.form {
  background-color: #256577;
  padding: 0 0px;/* ← この左右を0にしておかないと、下の白いエリアが横幅いっぱいに広がらない */
  margin-top: -20px;/* アドレス入力欄と上のタイマーの数字の間の間隔 */
  }

input{
  font-size: 28px;
  background-color: #fff;
  border-radius: 10px;/* アドレス入力欄の枠の角の丸み */
  border: solid 2px #393939;
  height: 85px;
  width: 95%;
  margin: 20px 0 50px;/* アドレス入力欄の枠と青いエリアの外側との距離 */
  padding: 0 40px;
}

/*------------------------------------
 ボタン＋注意書きを包む白いエリア
------------------------------------*/

.button-area-wrapper {
  background-color: #fcfcfc;
  width: 100%;          /* ← 750pxいっぱいに広がる！！ */
  padding: 15px 0 5px;  /* ← 緑のボタンとその下のメモ書き全体のかたまりの上、左右、下の余白 */
}

  
/*------------------------------------
 ボタン画像のみ（緑のボタン）
------------------------------------*/

.btn {
  background: url(../img/button.png)  center top no-repeat;
  background-size: contain;
  width: 100%;
  height: 180px;       /* ← 大きくしたいならここを変更！ */
  border: none;
  cursor: pointer;
  display: block;
  margin: 5px auto 35px;  /* ← ボタンの周囲の余白　下の注意書きとの間隔もここで調節 */
 }


/*------------------------------------
 ボタンの下（注意書き＋白背景）
------------------------------------*/

.button-area {
  background-color: #fcfcfc;
  padding: 0px 0 15px;  /* ←背が低くなる原因はここだった！大きくしたよ */
  margin-top: -30px;
  text-align: center;
  font-size: 25px;  /* ←大きくする */
  font-weight: regular;
  color: #393939;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
  font-size: 85%;
  text-align: center;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #fff;
  position: relative;
  background-color: #256577;
  font-size: 22px;
}

footer a {
  color: #fff;
  margin: 50px 0;
}

footer p {
  margin: 0 0;
}

.copy{
  color: #fff;
  font-size: 18px;  
  font-weight: regular;
  text-align: center;
 }


/*その他
---------------------------------------------------------------------------*/
.clear {
  clear: both;
}
