@charset "utf-8";

/* =========================
   全体設定
========================= */
body {
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #313131;
  font: 16px/1.6 "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
}

/* =========================
   コンテナ（750px基準）
========================= */
#container {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
   /* PC用の高さ */
  background: linear-gradient(to bottom, #f5fcff 1240px, #ffffff 1240px);
}

/* =========================
   画像（PSDスライス）
========================= */
#container img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   フォーム全体
========================= */
.form {
  padding: 10px;
}


.note-text {
  color: #00476c;
  margin-bottom: 30px;
  font-size: 22px;
}

/* =========================
   カウントダウン
========================= */
.countdown {
  margin-top: -30px;
  margin-bottom: 30px;
  text-align: center;
}

.countdown p:first-child {
  display: inline-block;
  background: #3182d9;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  padding: 2px 20px;
  border-radius: 10px;
  position: relative;
  top: 30px;
  z-index: 2;
}

.countdown .timer {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 16px 20px;

  position: relative;
  top: 10px;



  width: 100%;
  max-width: 600px;
  min-height: 86px;
  margin: 0 auto 20px;
  padding: 16px 20px;
  box-sizing: border-box;

  font-size: 37px;
  font-weight: bold;
  line-height: 1.6;
  white-space: nowrap;

  color: #0089dd;
  background: #e5f1fb;
  border-radius: 9999px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

/* =========================
   メール入力欄
========================= */
input[type="email"] {
  display: block;

  width: 100%;
  max-width: 600px;
  min-height: 86px;
  margin: 0 auto 10px;
  padding: 16px 20px;
  box-sizing: border-box;
  
  /* 白を80%まで広げ、残りの20%で黄色へ変化させる設定 */
  background: linear-gradient(to right, #ffffff 80%, #ffffd6 100%) !important;


  font-size: 22px;
  line-height: 1.4;
  text-align: center;

  border: solid 3px #0065b4;
  border-radius: 9999px;
  background: #ffffff;
  color: #00364f;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  outline: none;
}

input[type="email"]::placeholder {
  font-size: 23px;
  font-weight: bold;
  color: #00364f;
  opacity: 0.9;
}

/* =========================
   ボタン（画像）
========================= */
.btn {
  display: block;
  width: 100%;
  max-width: 650px;
  height: 150px;
  margin: 0 auto;
  padding: 0;

  background: url(../img/button1.png) center center no-repeat;
  background-size: contain;

  border: none;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  font-size: 0;
  color: transparent;
  line-height: 0;
}


/* =========================
   フッター
========================= */
footer {
  background: #0089dd;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  padding: 40px 0 30px;
  line-height: 2.4;

}

footer a,
footer .copy {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
 
 
}



/* =========================
   ＊＊スマホ最適化＊＊
========================= */
@media screen and (max-width: 480px) {

  #container {
    background: linear-gradient(to bottom, #f5fcff 650px, #ffffff 650px);
  }

  .form {
    padding: 20px;
  }

  .note-text {
    font-size: 12px;
     margin-top: -34px;  /* ←上に移動 */
     margin-bottom: 20px;
  }

  /* タイマーの上の枠*/
  .countdown p:first-child {
    font-size: 12px;
    padding: 2px 14px;
    top: 16px;
    border-radius: 6px;
  }

  /* タイマー、アドレス入力欄*/
  .countdown .timer,
  input[type="email"] {
  width: 92%;
  max-width: 600px;
  min-height: 44px;
  padding: 3px 16px 6px;  /* ←必要なら微調整 */
  line-height: 1.1;   /* ←文字を中央に寄せる */
  }
  
  
  /* タイマー*/
  .countdown .timer {
    font-size: 18px;
    line-height: 1.6;
    padding: 5px 16px;  /* ←縦を小さく */
    min-height: 46px;    /* ←高さも少し下げる */
  }
  

  input[type="email"]::placeholder {
    font-size: 12px;
  }

  input[type="email"] {
  margin-bottom: -30px;
  margin-top: -10px;   /* ←ここを調整 */
   border: 2px solid #0065b4;  /* ←細くする */
   font-size: 14px;

  }

/* 申し込みボタン*/
.btn {
  margin-top: -32px;
}

/* 「LINEの〜」の2番目の方の、下の余白調整*/
.note-text-bottom {
  margin-bottom: -12px;
}


/* フッター*/
footer {
  padding: 28px 10px 26px;
  font-size: 14px;
  line-height: 3.0;     /*フッターのテキストの行間の調整*/
}

footer a {
  font-size: 9px;
  color: #ffffff;
}

footer .copy {
  font-size: 9px;
  line-height: 1.8;
  margin-top: 10px;
}

footer p {
  margin-bottom: 10px;  /* ←下の余白を減らす */
}

footer .copy {
  margin-top: 0;       /* ←上の余白を消す */
}



}
  




 
