/* =====================================================================
   ✅ 追記（強め版）：文字とボタンを“確実に”大きくする上書き
   既存CSSを壊しにくいように「末尾で上書き」
   ===================================================================== */

/* 0) 端末の文字拡大/縮小を殺さない（none→100%を固定） */
body{
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
}

/* 1) 全体の基準文字を底上げ（本文14px固定を上書き） */
body{
  font-size: 20px !important;
  line-height: 1.85 !important;
  color: #111 !important;
}

/* 2) 見出し・汎用テキストも「小さすぎ」を潰す */
h1,h2,h3,h4,h5,h6{
  line-height: 1.35;
}
h1{ font-size: 1.5em !important; }
h2{ font-size: 1.3em !important; }
h3{ font-size: 1.15em !important; }

/* 3) フォーム（入力欄が14pxのまま問題）を上書き */
input,
textarea,
select{
  font-size: 18px !important;
  line-height: 1.4 !important;
}

/* 押しやすさ：入力欄の高さと余白も確保 */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select{
  min-height: 56px !important;
  padding: 12px 12px !important;
  box-sizing: border-box;
}

/* 4) 送信ボタン（input#submit_button）を“ボタンとして”巨大化 */
input#submit_button{
  font-size: 20px !important;
  font-weight: 800 !important;
  min-height: 64px !important;   /* 高さ保証 */
  padding: 16px 16px !important; /* 面積UP */
  border-radius: 12px !important;
}

/* 5) サイトメニュー（.u_navi）を大きく＆行全体タップに */
.u_navi li,
.u_navi li:first-child,
.u_navi li:last-child{
  padding: 16px 12px !important;
}

/* もともと height:100% 指定があり、タップ領域が壊れやすいので矯正 */
.arrowinmenu a{
  display: block !important;
  width: 100% !important;
  height: auto !important;

  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.6 !important;

  min-height: 64px !important;             /* “ボタン”としての高さ保証 */
  padding: 16px 44px 16px 12px !important;  /* 右矢印分の余白を確保 */
  box-sizing: border-box;

  background-position: right 12px center !important;
  background-size: 24px 24px !important;
  color: #111 !important;
}

/* メニュー文字が省略される設計なので、読みやすく余白を増やす */
.menutxt{
  line-height: 1.5 !important;
}

/* 6) 小ボタンも押しやすく（small_btn は元が小さすぎる） */
.small_btn{
  height: auto !important;
}
.small_btn a{
  min-height: 52px !important;
  padding: 14px 18px !important;
  font-size: 18px !important;
  line-height: 1.2 !important;
}

/* 7) 見出し（サイトメニュー等）も一緒に大きく */
.label h3.goldlabel{
  font-size: 18px !important;
}
.label h3.goldlabel span{
  font-size: 20px !important;
  padding: 10px 0 12px 10px !important;
}

/* 8) 固定フッタ：高さ/タップ領域を増やす */
div#footerArea_kotei{
  height: 84px !important; /* 76pxよりもう一段 */
}
.black_grade_kotei{
  padding: 8px 6px 12px 6px !important;
}

/* 9) テーブルも文字が小さくなりやすいので底上げ */
table th,
table td{
  font-size: 18px !important;
  line-height: 1.5 !important;
}

/* 10) スマホ：落としすぎず、破綻しない範囲で維持 */
@media screen and (max-width: 480px){
  body{
    font-size: 19px !important;
  }

  .arrowinmenu a{
    font-size: 19px !important;
    min-height: 60px !important;
    padding: 14px 42px 14px 12px !important;
    background-size: 22px 22px !important;
  }

  input#submit_button{
    font-size: 19px !important;
    min-height: 60px !important;
    padding: 14px 14px !important;
  }

  div#footerArea_kotei{
    height: 80px !important;
  }
}
