@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: #e2e3eb;
  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: 5.0em;
  text-indent: -5.0em;
}
.content__layout__learn-more .note.limit li span {
  margin-right: 1em;
}
/* 自己負担限度額(年額 前年8月〜7月の1年間) */
.content__layout__learn-more dd .note.ov70 li {
  margin-left: 5.0em;
  text-indent: -5.0em;
}
.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;
}

/*整骨院・接骨院で施術を受けるとき*/

.osteopathic-line{
	margin-top:20px;
	display:flex;
	justify-content:space-between;
	align-items:start;
}

.osteopathic-line li:nth-child(1){
	width:70%;
	margin-right:5%;
}

table.osteopathic {
	margin-top:0;
}

table.osteopathic tbody th {
  width: 5em;
  background-color: #f6f6ee;
  border-top: 1px solid #7b7b7b;
  border-right: 1px solid #7b7b7b;
  text-align: center;
}
.iconList {
  padding: 0;
}
.iconList li {
  position: relative;
  padding-left: 1.2em;
  background: no-repeat left .3em/.8em;
  font-size:1.6em;
}
.iconList._icon_X li {
  background-image: url("../images/icon_X.png");
}
 h3._title_blu {
  display: inline-block;
  width: auto;
  padding: 7px 10px;
  background: #00a0e9;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.3;
}
.h4-title{
	position:relative;
  display: table;
  position: relative;
  font-size: 120%;
  font-weight: bold;
	border:3px solid #ffe4e4;
	background:#ffe4e4;
	border-radius:15px;
	padding:10px;
}


.h4-title._pink {color: #ff6592;}
.h4-title._gry {
	color: #4B4B4B;
	border:3px solid #f0f0f0;
	background:#f0f0f0;}
.h4-title._ok,
.h4-title._ng {
	padding-left: 2.5em;}
.h4-title._ok::before,
.h4-title._ng::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: no-repeat center/contain;
  width: 2em;
  height: 2em;
}
.h4-title._ok::before {background-image: url("../images/icon_O.png") ;}
.h4-title._ng::before {background-image: url("../images/icon_X.png") ;}
.h4-title._ok._pink::before {background-image: url("../images/icon_Opink.png") ;}
.enclosure {
  display: inline-block;
  border-radius: 100vh;
  background-color: #00a0e9;
  margin-left: 1em;
  padding: .2em 1em;
  color: #ffffff;
  font-size: 80%;
  text-align: center;
}
.h4-title._gry .enclosure {background-color: #4B4B4B;}
.h4-title._pink .enclosure {background-color: #ff6592;}

.box2 {
  padding: 1em;
  border: 2px solid #ff6592;
}
.list-disc._blu li::before {color: #ff6592;}
.list-disc._gry li::before {color: #4B4B4B;}

.box2._gry {border-color: #a9a9a9;}
.box2._red {border-color: #dd746c;margin-top:1em;}
table.osteopathic {
  table-layout: fixed;
  vertical-align: top;
}
.notice {display: table;}
.notice> * {display: table-cell;}
.notice dd {margin: 0;}
 .notice {
  font-weight: bold;
}
 .notice dt {
  width: 10em;
}
 .notice span {
  display: block;
  font-size:1.6em;
  margin-right: 1em;
  padding:1 .5em;
  background-color: #dd746c;
  border-radius: 100vw;
  color: #ffffff;
  text-align: center;
}
 .notice dd {
  margin: 1em 0 0;
}
 .wrapper {
  padding: 0 1em;
	 margin-bottom:50px;
}
 .wrapper p img{
	 max-width:100%;
 }



 .link_a{
		display:inline-block;
		font-size:1.6em;;
		padding:7px 0 0 7px!important;
	}

/* Div */
/* 健康保険のしくみ：医療費控除 */
.medical-deduction {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 15px 0 30px 0;
  font-size: 2.8em;
  color: #777da7;
}
.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: #777da7;
  color: #fff;
}


@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;
  }
/*整骨院・接骨院で施術を受けるとき*/

.osteopathic-line{
	display:block;
}
	
.osteopathic-line > li:nth-child(1){
	width:100%;
	margin-right:0%;
	margin-bottom:20px;
}
 .notice {
	 display:block;
}
 .notice dt {
	 display:block;
}
/* 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;
  }

}
