@charset "utf-8";

/* style-structure-insurance.css
 * おまかせプラン ver.7 - v1.0.0
 * 2024-12-25
 * **************************************************
 * Structure Insurance
 * **************************************************
 */

 /* Structure Insurance
------------------------------------------------------------------- */

/* Table */
/* 日本の医療保険 */
.common-table.j-med th span {
  display: block;
}
/* 健康保険組合の組織 */
.common-table.org th {
  width: 100px;
}
/* 年齢別の給付割合 */
.common-table.ratio th {
  text-align: left;
}
.common-table.ratio td {
  text-align: center;
}
/* 収入の基準 */
.common-table.income-c th {
  width: 20%;
}

/* Div */
/* 健康保険のしくみ：医療費控除 */
.medical-deduction {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 15px 0 30px 0;
  font-size: 2.8em;
  color: #3bb5e2;
}
.medical-deduction span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  padding: 5px 8px;
  min-height: 4.0em;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  font-size: 50%;
  font-weight: 500;
  line-height: 1.4;
}
.medical-deduction .deduction {
  background-color: #3bb5e2;
  color: #fff;
}

/* 【国内居住要件の例外となる場合】 */
.exc-case {
  margin: 10px 0 30px 0;
  padding: 15px 25px;
  background-color: #fafafa;
  border: 1px solid #d7d7d7;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.exc-case > h3 {
  font-size: 1.8em;
  font-weight: 500;
}
/* List（丸数字） */
.exc-case > .list-circle li {
  margin-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  /* Structure Insurance
  ------------------------------------------------------------------- */
  /* Table*/
  /* 日本の医療保険 */
  .common-table.j-med th {
    width: 80px;
    text-align: left;
  }
  /* 健康保険組合の組織 */
  .common-table.org th {
    width: 50px;
  }
  /* 年齢別の給付割合 */
  .common-table.ratio th {
    width: 120px;
  }
  /* 収入の基準 */
  .common-table.income-c th {
    width: 30%;
  }

  /* Div */
  /* 健康保険のしくみ：医療費控除 */
    .medical-deduction {
    display: block;
    justify-content: flex-start;
    align-items: normal;
    margin: 10px 0 25px 0;
  }
  .medical-deduction span {
    display: inline-block;
    justify-content: flex-start;
    align-items: normal;
    margin: 5px 5px;
    min-height: auto;
    vertical-align: middle;
  }
  .medical-deduction .deduction {
    margin: 0 5px;
  }
  .medical-deduction .deduction br {
    display: none;
  }

  /* 【国内居住要件の例外となる場合】 */
  .exc-case {
    padding: 15px 15px;
  }
}
