@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
  background: #f5f5f5;
  color: #313131;
  /*全体の文字色*/
  margin: 0px;
  padding: 0px;
  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;
  /*コンテナー幅*/
  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: #f3f3f3;
  padding: 20px 50px 40px;
}



input {
  font-size: 100%;
  background-color: #fff;
  border-radius: 0px;
  height: 70px;
  width: 90%;
  margin: 10px 0 20px;
}

hr{
  color: #00364f;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
.text-box {
  width: 90%;
  margin: 1em auto;
}

.fv-wrapper {
  position: relative; /* 子要素の基準点となる */
}

.fv-countdown {
  position: absolute;
  top: 980px;
  left: 118px;
  background-color: transparent;
  padding: 30px 0px 15px;
  
  /* この行を追加します */
  display: flex; /* 子要素を横並びに */
  gap: 8px; /* gapプロパティを追加 */
}

.fv-countdown p{
  color: #292929;
  font-size: 24px;
  font-weight: bold;
}

.fv-form-wrapper {
  position: absolute; /* 親要素を基準に配置 */
  top: 1040px; /* 画像上から1040pxの位置 */
  left: 50%; /* 左から50%の位置に */
  transform: translateX(-50%); /* 水平方向の中央寄せ */
  width: 660px; /* ボックスの幅を調整 */
}

.fv-form-wrapper input[type="email"] {
  width: 100%;
  height: 70px;
  /* paddingの値を調整: 上、右、下、左の順 */
  padding: 8px 55px 4px 15px; /* 右側に55px、左側に15pxの余白を確保 */
  border: 1px solid #ccc;
  border-radius: 0px;

  background-image: url('../img/mailicon.png');
  background-repeat: no-repeat;
  /* background-positionを右側に変更 */
  background-position: right 100px center; /* 右から100px、垂直中央に配置 */
  background-size: 38px auto;
}

.fv-form-wrapper input[type="email"] {
  text-align: left; /* カーソルを左に寄せる*/
}

.fv-form-wrapper input[type="email"]::placeholder {
  font-size: 24px; /* メールアドレスを入力してください文字サイズ */
  color: #696969;
  text-align: center; /* place holderを中央揃え */
}

.fv-form-wrapper .btn {
  width: 660px;
  height: 100px; /* ボタンの高さ */
  border: none;
  background-image: url('../img/button.png'); /* ボタン画像のパス */
  background-size: cover; /* 背景画像をボタンいっぱいに表示 */
  cursor: pointer;

  /* ボタンのvalueを非表示にする */
  text-indent: -9999px;
  overflow: hidden;
}

.erareru-wrapper {
  position: relative; /* 子要素の配置基準に設定 */
}

.er-countdown {
  position: absolute;
  top: 1430px;
  left: 118px;
  background-color: transparent;
  padding: 30px 0px 15px;
  
  /* この行を追加します */
  display: flex; /* 子要素を横並びに */
  gap: 8px; /* gapプロパティを追加 */
}

.er-countdown p{
  color: #292929;
  font-size: 24px;
  font-weight: bold;
}

.er-form-wrapper {
  position: absolute; /* 親要素を基準に配置 */
  top: 1480px; /* 画像上から1040pxの位置 */
  left: 50%; /* 左から50%の位置に */
  transform: translateX(-50%); /* 水平方向の中央寄せ */
  width: 660px; /* ボックスの幅を調整 */
}

.er-form-wrapper input[type="email"] {
  width: 100%;
  height: 70px;
  /* paddingの値を調整: 上、右、下、左の順 */
  padding: 8px 55px 4px 15px; /* 右側に55px、左側に15pxの余白を確保 */
  border: 1px solid #ccc;
  border-radius: 0px;

  background-image: url('../img/mailicon.png');
  background-repeat: no-repeat;
  /* background-positionを右側に変更 */
  background-position: right 100px center; /* 右から100px、垂直中央に配置 */
  background-size: 38px auto;
}

.er-form-wrapper input[type="email"] {
  text-align: left; /*カーソルを左に寄せる */
}

.er-form-wrapper input[type="email"]::placeholder {
  font-size: 24px; /* メールアドレスを入力してください文字サイズ */
  color: #696969;
  text-align: center; /* place holderを中央揃え */
}

.er-form-wrapper .btn {
  width: 660px;
  height: 100px; /* ボタンの高さ */
  border: none;
  background-image: url('../img/button.png'); /* ボタン画像のパス */
  background-size: cover; /* 背景画像をボタンいっぱいに表示 */
  cursor: pointer;

  /* ボタンのvalueを非表示にする */
  text-indent: -9999px;
  overflow: hidden;
}

.white{
  color: #ea4b4b;
  font-size: 26px;
  font-weight: bold;
  margin: 10px;
}

.small{
  font-size: 20px;
}

/*ボタン設定
---------------------------------------------------------------------------*/



/*フッター設定
---------------------------------------------------------------------------*/
footer {
  width: 100%;
  font-size: 24px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 15px;
  color: #696969;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: transparent;
  font-size: 150%;
}

footer a {
  color: #696969;
  margin: 10px 0;
}

footer p {
  margin: 10px 0;
}

.copy{
  color: #696969;
  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_sp.png) center top no-repeat;
    width: 100%;
    height: 150px;
    border: none;
  }



}