@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  color: #313131;
  /*全体の文字色*/
  margin: 0px;
  padding: 0px;
  font: 16px/1.6 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

.contents-img-1 {
  padding: 60px 0;
}

.contents-img-2 {
  margin-bottom: 60px;
}

.contents-img-3 {
  margin-bottom: 60px;
}

.contents-img-4 {
  margin-bottom: 60px;
}

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;
  /*コンテナー幅*/
  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: #c93f2d;
  padding: 20px 50px 40px;
}

.form-inner {
  max-width: 600px;  /* 中身の最大幅だけ制御 */
  margin: 0 auto;    /* 真ん中に寄せる */
  width: 100%;
}

input {
  font-size: 150%;
  background-color: #fff;
  border-radius: 5px;
  border: none;
  background-position: center;
  height: 70px;
  width: 100%;
  margin: 10px 0 20px;
  display: block;
  box-sizing: border-box;
}


hr{
  color: #00364f;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.text-box {
  width: 90%;
  margin: 1em auto;
}

.countdown{
  background-color: #c93f2d;
  padding: 30px 0px 15px;
 
}

.countdown p{
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
}



.white{
  background-color: #c93f2d;
  color: #ea4b4b;
  font-size: 26px;
  font-weight: bold;
  margin: 10px;
}

.small{
  font-size: 20px;
}

.countdown .count-title {
  font-size: 20px;
  color: #ffffff;  
  font-weight: normal;
}
.count-num {
  font-size: 36px; /* 大きくする */
  font-weight: bold;
}

/*ボタン設定
---------------------------------------------------------------------------*/
.btn {
  background-image: url("../img/btn.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  width: 100%;          /* 横幅いっぱい */
  height: 150px;        /* ←ここ超重要（スマホのときの高さに合わせてOK） */

  border: none;
  display: block;       /* input は inline-block なので block にして安定表示 */
  padding: 0;  
  margin: 10px auto 20px;  /* input と同じ余白に */
  background-color: transparent; 
  box-sizing: border-box;/* 白背景を透過 */         /* 画像ボタンは padding いらない */
}

.line {
  font-size: 20px;
  color: #ffffff;  
  font-weight: normal;
} 

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  width: 100%;
  margin: 0 auto;
  font-size: 85%;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  color: #fff;
  position: relative;
  background-color: #393c3c;
  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 #ea4b4b;
    height: 120px;
    width: 100%;
    margin: 10px 0 20px;
  }
  
  .btn{
    background: url(../img/btn.png) center top no-repeat;
    width: 100%;
    height: 150px;
    border: none;
  }



}