@charset "utf-8";

/* consultation.css
 * おまかせプラン ver.7 - v1.0.0
 * 2022-09-01
 * **************************************************
 * Consultation
 * **************************************************
 */

 /* Consultation
------------------------------------------------------------------- */
/* Table */
/* 法定給付、当組合の付加給付 */
.common-table.benefit tbody th {
  width: 130px;
  white-space: nowrap;
}
/* 入院時の標準負担額（1日・3食の場合） */
.common-table.cost tbody td:first-child {
  text-align: left;
  width: 70%;
}
.common-table.cost tbody td {
  text-align: center;
}
/* 生活療養標準負担額 */
.common-table.living-cost tbody td:first-child {
  width: 20%;
  text-align: center;
}
/* 法定給付-区分 */
.common-table.benefit-div tbody th {
  width: 140px;
}
.common-table.benefit-div tbody td:nth-of-type(1) {
  width: 70px;
  text-align: center;
}
/* 法定給付-計算式 */
.table-calculation {
  margin-top: 25px;
  width: 100%;
  border-top: none;
  border-bottom: none;
}
.table-calculation caption {
  margin-bottom: 2px;
  font-size: 2.0em;
  font-weight: 500;
}
.table-calculation td {
  padding: 6px 10px;
  font-size: 1.5em;
  text-align: center;
  vertical-align: middle;
}
.table-calculation td:first-child {
  border: 1px solid #d7d7d7;
  background-color: #e3eff1;
  font-weight: 500;
}
.table-calculation td:nth-of-type(3),
.table-calculation td:nth-of-type(5) {
  border: 1px solid #d7d7d7;
}
.table-calculation td:nth-of-type(2),
.table-calculation td:nth-of-type(4) {
  border-top: none;
}
/* 自己負担限度額 */
.common-table.limit td:nth-child(n+2) {
  text-align: center;
}
/* 自己負担限度額 70歳以上 */
.common-table.limit-70 tbody td {
  text-align: center;
}
.common-table.limit-70 .line-top {
  border-top: 1px solid #d7d7d7;
}
.common-table.limit-70 .line-top-none {
  border-top: none;
}
/* 自己負担限度額(年額 前年8月〜7月の1年間) */
.common-table.limit-70-year tbody td {
  width: 25%;
  text-align: center;
}
.common-table.limit-70-year tbody td:first-child {
  text-align: left;
}
/* 自己負担限度額 75歳以上 */
.common-table.limit-75 tbody td {
  text-align: center;
}
.common-table.limit-75 .line-top {
  border-top: 1px solid #d7d7d7;
}
.common-table.limit-75 .line-top-none {
  border-top: none;
}
/* 自動車事故にあったら */
.common-table.car tbody th {
  width: 22%;
  text-align: left;
}

/* 【国内居住要件の例外となる場合】 */
.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;
  font-size: 1.6em;
}

/* Div */
/* 退職したとき：退職 */
.re-employment > div {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.re-employment > div + div {
  margin-top: 10px;
}
.re-employment h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  min-width: 11.6em;
  font-size: 1.8em;
  font-weight: 500;
  color: #3bb5e2;
  text-align: center;
}
.re-employment h3::before,
.re-employment h3::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 70px;
  height: 1px;
  background-color: #3bb5e2;
}
.re-employment h3::before {
  left:0;
}
.re-employment h3::after {
  right: 0;
}
.re-employment p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  padding: 10px;
  background-color: #f2f2f2;
  min-width: 12em;
  font-size: 1.6em;
  font-weight: 500;
}
.re-employment ol {
  width: 100%;
}
.re-employment .soon-r {
  counter-reset: num-soon;
}
.re-employment .not-r {
  counter-reset: num-not 1;
}
.re-employment ol li {
  position: relative;
  padding: 10px 10px 10px 45px;
  border: 1px solid #d7d7d7;
  background-color: #fff;
  font-size: 1.6em;
  line-height: 1.4;
  font-weight: 700;
}
.re-employment ol li:before {
  position: absolute;
  left: 10px;
  top: 10px;
  display:inline-block;
  counter-increment: num-soon;
  content: counter(num-soon);
  width: 25px;
  height: 25px;
  background: #00A8C7;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.re-employment .not-r li::before {
  counter-increment: num-not;
  content: counter(num-not);
  background: #60D5EB;
}
.re-employment ol li +li {
  margin-top: 5px;
}
.re-employment ol li::after {
  position: absolute;
  top: 14px;
  left: -20px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-right: 0 solid transparent;
}
.re-employment .soon-r li::after {
  border-left: 10px solid #00A8C7;
}
.re-employment .not-r li::after {
  border-left: 10px solid #60D5EB;
}
/* 注釈 */
.re-employment .note {
  display: block;
  margin-top: 10px;
}
.re-employment .note li {
  margin-left: 1em;
  text-indent: -1em;
}

/* もっと詳しく内 */
/* List */
.content__layout__learn-more .note.limit li {
  margin-left: 5em;
  text-indent: -5em;
}
.content__layout__learn-more .note.limit li span {
  margin-right: 1em;
}
/* 自己負担限度額(年額 前年8月〜7月の1年間) */
.content__layout__learn-more dd .note.ov70 li {
  margin-left: 5em;
  text-indent: -5em;
}
.content__layout__learn-more .note.ov70 li span {
  margin-right: 1em;
}

/* 後期高齢者医療制度 */
.content__layout__learn-more .subscription {
  margin-top: 20px;
  width: 100%;
  border: 1px solid #d7d7d7;
}
.content__layout__learn-more .subscription th {
  padding: 6px 10px;
  width: 35%;
  border-right: 1px solid #d7d7d7;
  background-color: #fafafa;
  text-align: left;
  vertical-align: middle;
}
.content__layout__learn-more .subscription td {
  padding: 6px 10px;
  border-right: 1px solid #d7d7d7;
  background-color: #fff;
  font-size: 1.5em;
  text-align: left;
  line-height: 1.6;
  vertical-align: middle;
}
.content__layout__learn-more .subscription td:nth-child(2) {
  width: 30%;
}
.content__layout__learn-more .subscription td:nth-child(2),
.content__layout__learn-more .subscription td:nth-child(3) {
  border-right: none;
}

/*医療費が高額になるとき frame*/
.content__layout__section .frame{
	margin:2em 0 3em;
	padding:1.5em;
	border:1px solid #cecece;
}

.content__layout__section .frame p{
    font-size:1.6em;
}

@media screen and (max-width: 767px) {
  /* Consultation
  ------------------------------------------------------------------- */

  /* Table*/
  /* 法定給付、当組合の付加給付 */
  .common-table.benefit tbody th {
    width: 70px;
    white-space: normal;
  }

  /* 法定給付-区分 */
  .common-table.benefit-div tbody th {
    width: 65px;
  }
  .common-table.benefit-div tbody td:nth-of-type(1) {
    width: 30px;
  }

  /* 【国内居住要件の例外となる場合】 */
  .exc-case {
    padding: 15px 15px;
  }

  /* Div */
  /* 退職したとき：退職 */
  .re-employment h3 {
    display: block;
    min-width: auto;
  }
  .re-employment h3::before,
  .re-employment h3::after {
    width: 40%;
  }
  .re-employment p {
    padding: 8px;
    min-width: 7em;
    font-size: 1.4em;
    line-height: 1.4;
  }
  .re-employment ol li {
    padding: 8px 8px 8px 35px;
    font-size: 1.4em;
  }
  .re-employment ol li:before {
    left: 8px;
    top: 8px;
    width: 20px;
    height: 20px;
  }
  /* もっと詳しく内 */

}
