@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  color: #313131;
  /*全体の文字色*/
  margin: 0px;
  padding: 0px;
  font: 16px/1.6 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}


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;
  /*コンテナー幅*/
  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: #ffffff;
  padding-top:20px;
}



input {
  font-size: 150%;
  background-color: #fff;
  border-radius: 5px;
  border: solid 2px #818181;
  height: 70px;
  width: 90%;
  margin: 10px 0 20px;
}


/* プレースホルダーのスタイルを変更 */
input::placeholder {
  font-size: 22px;
  font-weight:normal;
  color: #797979;     /* グレーカラー */
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}



hr{
  color: #00364f;
}


p.timer {
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
   margin-top: -10px;
}



/*メインコンテンツ
---------------------------------------------------------------------------*/
.text-box {
  width: 90%;
  margin: 1em auto;
}

.countdown{
  background-color: #e96819;
  padding: 15px 0px 15px;
}



p.start {
    color: #ffffff;
    font-size: 24px;
    font-weight: normal;
}


.note {
  color: #797979;
  font-weight: 300;       /* 細めの文字（light） */
  font-size: 22px;        /* 小さめのサイズ */
  line-height: 1.5;       /* 行間少し広めで読みやすく */
  margin-top: -20px;
  padding-bottom: 50px;
}


.white{
  color: #ea4b4b;
  font-size: 26px;
  font-weight: bold;
  margin: 10px;
}

.small{
  font-size: 20px;
}

/*ボタン設定
---------------------------------------------------------------------------*/
.btn {
 background: url(../img/btn.png) center top no-repeat;
  height: 120px;
  border: none;
  width: 100%;
}




/*フッター設定
---------------------------------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
  font-size: 85%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  color: #fff;
  position: relative;
  background-color: #00364F;
  font-size: 90%;
}

footer a {
  color: #fff;
  margin: 10px 0;
}

footer p {
  margin: 10px 0;
}

.copy{
  color: #fff;
  font-size: 65%;
  text-align: center;
 
}


/*その他
---------------------------------------------------------------------------*/
.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"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 768px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}




@media only screen and (max-width: 768px) {

  input {
    font-size: 180%;
    background-color: #fff;
    border-radius: 5px;
    border: solid 2px #818181;
    height: 120px;
    width: 90%;
    margin: 10px 0 20px;
  }
  

