@charset "UTF-8";

.remodal {
  padding: 10px;
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  /* フォント調整 */
}

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
  /* オーバーレイの色を明示的に指定（動作確認用） */
}

/* 元のコードにはz-index等の指定がありましたが、
   ライブラリのデフォルト動作を妨げないよう一部調整して記述します */

.remodal h4 {
  color: #d80202;
  font-size: 150%;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

.remodal h4.techno {
  color: #1a45d3;
}

.remodal h4.fast {
  color: #ba3081;
}

.remodal .txt_box h5 {
  margin-bottom: 5px;
  text-align: center;
  color: #EC2214;
  font-size: 140%;
  font-weight: bold;
}

.remodal .txt_box {
margin-bottom: 5px;
    border-radius: 4px;
    padding: 5px 0;
}

.remodal .txt_box p {
  font-size: 85%;
  line-height: 1.3;
  text-align: center;
  /* 左寄せから中央寄せに変更（バランスのため） */
  margin: 0;
  font-weight: bold;
}

.btn_yoyaku ul {
  list-style: none;
  padding: 0;
}

.btn_yoyaku li {
  margin-bottom: 20px;
}

.remodal a.techno {
  color: #FFF;
  font-size: 130%;
  font-weight: bold;
  text-align: center;
  background: #0092ff;
  width: 80%;
  line-height: 50px;
  border-radius: 10px;
  margin: 0px auto 10px;
  display: block;
  text-decoration: none;
}

.remodal a.safety {
  color: #FFF;
  font-size: 130%;
  font-weight: bold;
  text-align: center;
  background: #f1420d;
  width: 80%;
  line-height: 50px;
  border-radius: 10px;
  margin: 0 auto 10px;
  /* 下マージンを統一 */
  display: block;
  text-decoration: none;
}

.remodal a.fast {
  color: #FFF;
  font-size: 130%;
  font-weight: bold;
  text-align: center;
  background: #ff7cbb;
  width: 80%;
  line-height: 50px;
  border-radius: 10px;
  margin: 0 auto 10px;
  display: block;
  text-decoration: none;
}

/* 電話番号のアイコンや詳細表示用 */
.remodal a span.sub-text {
  font-size: 70%;
  display: block;
  line-height: 1.2;
  margin-top: -5px;
  padding-bottom: 5px;
}

p.close_text {
  text-align: center;
  color: #0040ff;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 20px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .remodal {
    padding: 15px;
    max-width: 100%;
  }

  .btn_yoyaku li:first-child {
    margin-bottom: 20px;
  }

  .remodal h4 {
    font-size: 120%;
  }

  .remodal .txt_box p {
    font-size: 80%;
  }

  .remodal a.techno,
  .remodal a.safety,
  .remodal a.fast {
    width: 100%;
    /* モバイルでは幅を広げる */
    padding: 10px 0;
    height: auto;
    font-size: 120%;
    line-height: 1.4;
  }
}

/* PC時のコンテナ幅 */
.remodal {
  max-width: 600px;
  /* 見やすくするために少し幅を調整 */
}