/* ===========================================
   レスポンシブ対応：600px以下のみ有効
   =========================================== */
@media (max-width: 600px) {

  html, body {
    min-width: 400px;
  }
  .container{
    width: 400px;
  }

  /* テーブルをブロック化して縦に並べる */
  table, tbody, th, td, tr {
    display: block;
  }

  table.table {
    width: 100% !important;
    border-collapse: collapse;
    table-layout: fixed;
    display: block;
    overflow-x: hidden;
  }

  table.table tr {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
  }

  td {
    border: none;
    position: relative;
    padding-left: 50%;
    white-space: normal;
  }

  .TABLE .TR .TD{
    width:280px !important;
  }

  table.table th,
  table.table td,.TR {
    display: block;
    width: 100%;
    box-sizing: border-box;
    word-break: break-word;
  }
  T_DATA_D,.T_DATA_H{
    display: block;
  }

  /* th + 1つ目のtd（必須マーク）は横並び */
  table.table tr > th,
  table.table tr > td:first-of-type {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  /* 2つ目以降のtdは縦に改行させる */
  table.table tr > td:nth-of-type(2) {
    display: block;
    width: 100%;
    margin-top: 6px;
  }

  /* 入力フィールドを幅いっぱいに */
  table.table input[type="text"],
  table.table input[type="password"],
  table.table select,
  table.table textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    font-size:16px;/*iphone対策*/
  }

  .table .input-l {
    width: 380px;
  }

  table.table th{
    padding-top: 5px;
    padding-bottom: 5px;
  }
	
  .table tr td:nth-child(2),
  .table tr td:nth-child(3) ,
   table.table td{
    padding-top: 10px;
    padding-bottom: 10px;
}

  /* 「必須」マークを小さく整列 */
  table.table p.required {
    display: inline-block;
    margin-left: 6px;
    margin-top: 0;
    font-size: 12px;
  }

  /* 注意書き改行 */
  table.table p.remarks,
  table.table p.notice {
    font-size: 13px;
    margin: 6px 0 0 0;
  }

  .table .notice{
    width: 95%;
  }

  .checkbox_policy .checkPolicy_label:before {
    left: 15px !important;
    /* top: 18px; */
    width: 7px;
    height: 12px;
    opacity: 0;
    z-index: 10;
    border-right: 2px solid #0086EC;
    border-bottom: 2px solid #0086EC;
    transform: rotate(45deg);
  }
  .checkbox_policy .checkPolicy_label:after {
    left: 9px !important;
    /* top: 17px; */
    width: 20px;
    height: 20px;
    border: 1px solid #9f9f9f;
    background-color: #ffffff;
  }

  /*確認ページ*/
  table.general tr td {
    width: auto;
  }
  /*金額表示枠*/
  table.general tr td .IB.BG_WHITE.LN_SILVER.RED{
    padding: 17px 90px  !important;
  }

}