@charset "utf-8";

/*------------------------------------------------
   治療案内・料金
------------------------------------------------*/

/* おすすめの治療
****************************************/

#osusume {
  width: 100%;
  background: var(--bg1-color)
}

#osusume .contentsBlock {
  width: 100%;
}

.osusumeBlock {
  width: 100%;
}

.osusumeBox {
  width: 100%;
  background: #fff;
  border: 2px solid var(--main-color);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.osusumeBox a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.osusumeBox a:hover {
  text-decoration: none;
}

.osusumeBox:last-of-type {
  margin-bottom: 0;
}

.osusumeBox .headBlock {
  width: 100%;
}

.osusumeBox .headBlock .title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  padding: 8px 0;
}

.osusumeBox .headBlock .title span {
  font-size: .8em;
  margin-right: .6em;
}

.osusumeBox .headBlock .image {
  width: 100%;
  overflow: hidden;
}

.osusumeBox .headBlock .image img {
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: all 0.5s ease;
}

.osusumeBox a:hover .headBlock .image img {
  transform: scale(1.1);
}

.osusumeBox .textBlock {
  width: 100%;
  padding: 1em;
}

.osusumeBox .textBlock .desc {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
}

.osusumeBox .osusumeBtn {
  width: calc(100% - 2em);
  padding: .6em;
  font-size: 1.5rem;
  text-align: center;
  color: var(--main-color);
  border-radius: 4px;
  border: 1px solid var(--main-color);
  background: #fff;
  transition: all 0.5s;
  margin-bottom: 1em;
}

.osusumeBox a:hover .osusumeBtn {
  background: var(--main-color);
  color: #fff;
}

@media print, screen and (min-width: 601px) {

  .osusumeBlock {
    width: 940px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .osusumeBox {
    width: calc((100% - 40px) / 3);
    margin-bottom: 0;
  }

  .osusumeBox .headBlock {
  }

  .osusumeBox .textBlock {
  }

}

/* 保険内での治療・保険外での治療
****************************************/

#treatment1,
#treatment2 {
  width: 100%;
}

#treatment1 .contentsBlock,
#treatment2 .contentsBlock {
  width: 100%;
}

.treatmentBlock {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.treatmentBox {
  width: calc((100% - 10px) / 2);
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 20px;
}

.treatmentBox:last-of-type {
  margin-bottom: 0;
}

.treatmentBox .imageBlock {
  width: 100%;
  margin-bottom: 10px;
}

.treatmentBox .imageBlock .image {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.treatmentBox .imageBlock .image img {
  width: 100%;
  height: auto;
}


.treatmentBox .textBlock {
  width: 100%;
}

.treatmentBox .textBlock .title {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  text-align: center;
  color: var(--main-color);
  margin-bottom: 10px;
}

.treatmentBox .textBlock .desc {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
}

.treatmentBox .textBlock .note {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 10px;
}

.treatmentBox .textBlock .note::before {
  content: "※";
	margin-right: 0.4em;
	font-size: 1em;
}


@media print, screen and (min-width: 601px) {

  .treatmentBlock {
    width: 800px;
    margin: 0 auto;
  }
  
  .treatmentBlock::after {
    display: block;
    content:"";
    width: calc((100% - 40px) / 3);
  }

  .treatmentBox {
    width: calc((100% - 40px) / 3);
  }

  .treatmentBox .imageBlock {
  }

  .treatmentBox .textBlock {
  }

}

/* 料金
****************************************/

#charge {
  width: 100%;
}

#charge .contentsBlock {
  width: 100%;
}

.chargeBlock {
  width: 100%;
}

.chargeBox {
	margin-bottom: 20px;
}

.chargeBox .subSectionTitle {
	padding: 5px 5px 0 34px;
	font-size: 2.0rem;
	font-weight: 500;
  color: var(--sub-color);
	margin-bottom: 10px;
  position: relative;
}

.chargeBox .subSectionTitle:before {
    position:  absolute;
    top: 14px;
    left: 12px;
    width: 14px;
    height: 14px;
    content: "";
    border: 3px solid #F7CFA3;
}

.chargeBox .subSectionTitle:after {
    position:  absolute;
    top: 6px;
    left: 4px;
    width: 17px;
    height: 17px;
    content: "";
    border: 3px solid #F89244;
}

.chargeTable {
	width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 2px solid var(--sub-color);
  border-bottom: 2px solid var(--sub-color);
	margin-bottom: 20px;
}

.chargeTable tr {
	border-bottom: 1px solid var(--sub-color);
}

.chargeTable tr:last-child {
	border-bottom: none;
}

.chargeTable tr:first-child {
	display: none;
}

.chargeTable tr td {
	display: block;
	padding: 0.6em;
	font-size: 1.6rem;
	border-bottom: 1px dotted var(--sub-color);
}

.chargeTable tr td:last-child {
	border-bottom: none;
}

.chargeTable tr td.subject {
	color: var(--sub-color);
	background: var(--bg2-color);
	border-bottom: none;
}

.chargeTable1 tr td.first::before {
	content: "初診料　　　：　";
}

.chargeTable1 tr td.return::before  {
	content: "再診料　　　：　";
}

.chargeTable1 tr td.normal::before  {
	content: "窓口料金　　：　";
}

.chargeTable2 tr td.charge::before {
	content: "料金　　　　：　";
}

.chargeTable2 tr td.comment::before  {
	content: "備考　　　　：　";
}

@media print, screen and (min-width: 601px) {

  .chargeBlock {
    width: 800px;
    margin: 0 auto;
  }

  .chargeBox {
    margin-bottom: 40px;
  }

  .chargeBox .subSectionTitle {
  }

  .chargeBox .subSectionTitle:before {
    top: 12px;
    left: 12px;
  }

  .chargeBox .subSectionTitle:after {
    top: 4px;
    left: 4px;
  }

  .chargeTable tr {
    display: table-row;
    border-bottom: none;
    border-bottom: 1px solid var(--sub-color);
  }

  .chargeTable tr:last-child {
    border-bottom: none;
  }

  .chargeTable tr:first-child {
    display: table-row;
  }

  .chargeTable tr th {
    display: table-cell;
    padding: 0.6em;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--sub-color);
    background: var(--bg2-color);
    border-right: 1px solid var(--sub-color);
  }

  .chargeTable tr th:last-child {
    border-right: none;
  }

  .chargeTable tr td {
    display: table-cell;
    border-bottom: none;
    border-right: 1px solid var(--sub-color);
  }

  .chargeTable tr td:last-child {
    border-right: none;
  }

  .chargeTable1 tr td.subject {
    width: 40%;
  }

  .chargeTable1 tr td.return,
  .chargeTable1 tr td.normal {
    width: 30%;
    text-align: center;
  }

  .chargeTable1 tr td.first::before,
  .chargeTable1 tr td.return::before,
  .chargeTable1 tr td.normal::before {
    content: "";
  }


  .chargeTable2 tr td.subject {
    width: 40%;
  }

  .chargeTable2 tr td.charge,
  .chargeTable2 tr td.comment {
    width: 30%;
    text-align: center;
  }

  .chargeTable2 tr td.charge::before,
  .chargeTable2 tr td.comment::before {
    content: "";
  }


}
