/* ==========================================
   画面全体の基本設定
   ========================================== */
#aaa {
  margin: 0;
  padding: 0;
  /* 画像を画面全体に綺麗に敷き詰める設定 */
  background-image: url("moroccan-flower.png");
  background-repeat: repeat;
  background-size: 200px; /* パターンの大きさをちょうどいいサイズに固定 */
  
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
}
/* ==========================================
   フォーム表示エリア（19時より前）
   ========================================== */
.wrap-a {
  width: 100%;
  max-width: 800px; /* パソコンで広がりすぎないように制限 */
  margin: 0 auto;   /* 画面の真ん中に寄せる */
  padding: 20px 10px;
  box-sizing: border-box;
}

.wrap-b {
  width: 100%;
  background-color: #fff; /* フォームの背景を白にして見やすく */
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Formsの埋め込み用設定 */
.wrap-b iframe {
  width: 100%;
  height: 80vh; /* 画面の高さの80%分、フォームを表示 */
  border: none;
  display: block;
}

/* ==========================================
   受付時間外エリア（19時以降）
   ========================================== */
/* 「受付時間外」の見出し（左右に金色の線） */
.heading01 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6vmin;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: bold;
}

.heading01::before,
.heading01::after {
  content: '';
  width: 70px;
  height: 3px;
  background-color: #e3bf00;
}

.heading01::before {
  margin-right: 20px;
}

.heading01::after {
  margin-left: 20px;
}

/* 案内文全体の文字サイズと中央寄せ */
h2 {
  font-size: 3vmin;
  text-align: center;
  font-weight: normal;
  line-height: 1.8;
  margin: 0;
  padding: 0 20px;
}

/* 文字列の左側を揃えたまま、枠線を表示して中央に寄せる */
.txt {
  display: inline-block;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.95); /* 背景が透けて文字が見づらくなるのを防ぐ白背景 */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 電話番号のリンク装飾 */
.txt a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}
.txt a:hover {
  text-decoration: underline;
}