@charset "utf-8";

/*------------------------------------------------
   当院について
------------------------------------------------*/

/* 院内設備・治療機器
****************************************/

#facilities,
#equipment {
  width: 100%;
}

#facilities .contentsBlock,
#equipment .contentsBlock {
  width: 100%;
}

.facilitiesBlock,
.equipmentBlock {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.facilitiesBox {
  width: calc((100% - 10px) / 2);
  margin-bottom: 20px;
}

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

.facilitiesBox .image {
	width: 100%;
	padding: 4px;
	border: solid 1px var(--line-color);
	margin-bottom: 10px;
}

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

.facilitiesBox .textBlock {
  padding: 0 10px;
}

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

.facilitiesBox .textBlock .text {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
	margin-top: 10px;
}

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

  .facilitiesBlock,
  .equipmentBlock {
    width: 800px;
    margin: 0 auto;
  }
  
  .facilitiesBox {
    width: calc((100% - 20px) / 2);
  }

}

/* スタッフ紹介
****************************************/

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

#staff .contentsBlock {
  width: 100%;
}

.staffBlock {
  width: 100%;
}

.staffBox {
  width: 100%;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

.staffBox .staffHead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 3px solid var(--main-color);
}

.staffBox .staffHead .textBlock {
  width: 60%;
  text-align: center;
  margin-bottom: 10px;
}

.staffBox .staffHead .textBlock .position {
	font-size: 1.4rem;
	margin-bottom: 8px;
}

.staffBox .staffHead .textBlock .name {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--main-color);
}

.staffBox .staffHead .textBlock .name span {
  display: block;
	font-size: .7em;
  margin-top: .2em;
}

.staffBox .staffHead .imageBlock {
  width: 40%;
  padding-left: 10px;
}

.staffBox .staffHead .image {
	width: 100%;
}

.staffBox .staffHead .image img {
	width: 100%;
	height: auto;
}

.staffBox .infoBlock {
	width: 100%;
	padding: 10px;
}

.staffBox .infoBlock dl {
}

.staffBox .infoBlock dl .infoRow {
	padding: 6px;
	border-bottom: solid 1px var(--sub-color);
}

.staffBox .infoBlock dl .infoRow:last-child {
	border-bottom: none;
}

.staffBox .infoBlock dl dt,
.staffBox .infoBlock dl dd {
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 2px 0;
}

.staffBox .infoBlock dl dt {
	color: var(--sub-color);
}

.staffBox .infoBlock dl dd {
  text-align: justify;
}

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

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

  .staffBox {
    width: calc((100% - 20px) / 2);
  }
  
  .staffBox:nth-child(3),
  .staffBox:nth-child(4) {
    margin-bottom: 0;
  }

  .staffBox .staffHead .imageBlock {
  }

  .staffBox .staffHead .image {
  }

  .staffBox .infoBlock {
  }

  .staffBox .infoBlock dl .infoRow {
    display: flex;
  }

  .staffBox .infoBlock dl dt,
  .staffBox .infoBlock dl dd {
    padding: 0;
  }

  .staffBox .infoBlock dl dt {
    width: 8em;
  }

  .staffBox .infoBlock dl dd {
    width: calc(100% - 8em);
  }

}

/* 当院概要
****************************************/

#outline {
  width: 100%;
}

#outline .contentsBlock {
  width: 100%;
}

.outlineBlock {
  width: 100%;
}

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

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

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

.outlineTbl tr th,
.outlineTbl tr td {
	display: block;
	padding: .6em;
  font-size: 1.5rem;
	font-weight: 500;
  line-height: 1.5;
}

.outlineTbl tr th {
	text-align: left;
	color: var(--sub-color);
	background: var(--bg2-color);
}

.outlineTbl tr td {
}

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

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

  .outlineTbl tr {
    border-bottom: none;
  }

  .outlineTbl tr th,
  .outlineTbl tr td {
    display: table-cell;
  }

  .outlineTbl tr th {
    width: 20%;
    border-bottom: 2px solid #fff;
  }

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

  .outlineTbl tr td {
    width: 80%;
    border-bottom: 2px solid var(--bg2-color);
  }

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

}

/* 診療時間
****************************************/

#schedule {
  width: 100%;
}

#schedule .contentsBlock {
  width: 100%;
}

.scheduleBlock {
  width: 100%;
}

.scheduleBox {
  margin-bottom: 20px;
}

.scheduleBox .scheduleTbl {
	width: 100%;
	overflow: hidden;
  border-radius: 4px 4px 0 0;
	table-layout: fixed;
	background: #fff;
  margin-bottom: 10px;
}

.scheduleBox .scheduleTbl tr:first-child {
	background: #999;
  color: #fff;
}

.scheduleBox .scheduleTbl tr:not(:first-child) {
	border-bottom: 1px solid #ccc;
}

.scheduleBox .scheduleTbl tr th {
	width: 30%;
}

.scheduleBox .scheduleTbl tr td {
	width: calc(70% / 7);
}

.scheduleBox .scheduleTbl tr th,
.scheduleBox .scheduleTbl tr td {
  font-size: 1.5rem;
	text-align: center;
	padding: .6em 0;
}

.scheduleBox .scheduleTbl th {
  font-weight: 500;
}

.scheduleBox .scheduleTbl tr td.open,
.scheduleBox .legend .open {
	color: var(--main-color);
}

.scheduleBox .scheduleTbl tr td.seitai,
.scheduleBox .legend .seitai {
	color: var(--sub-color);
}

.scheduleBox .legend {
  font-size: 1.4rem;
  text-align: right;
}

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

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

}

/* アクセス
****************************************/

#access {
  width: 100%;
}

#access .contentsBlock {
  width: 100%;
}

.accessBlock {
  width: 100%;
}

.accessBlock .googleMap {
  position: relative;
  width: 100%;
	height: 200px;
	background: #eee;
	border: 1px solid #e1deda;
  overflow: hidden;
  margin-bottom: 40px;
}
  
.accessBlock .googleMap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.accessBlock .accessList {
  width: 100%;
}

.accessBlock .accessList dt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  font-feature-settings: "palt" 1;
  border: 1px solid var(--main-color);
  border-left: 8px solid var(--main-color);
  position: relative;
  padding: 8px 0 8px 10px;
  margin-bottom: 10px;
}

.accessBlock .accessList dd {
  padding-left: 10px;
  margin-bottom: 20px;
}

.accessBlock .accessList dd:last-child {
  margin-bottom: 0;
}

.accessBlock .accessList dd p {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 8px;
  position: relative;
  display: flex;
  align-items: center;
}

.accessBlock .accessList dd p::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.4em;
  font-size: 1.2em;
}

.accessBlock .accessList dd p.train::before {
  content: '\f238';
}

.accessBlock .accessList dd p.car::before {
  content: '\f1b9';
}

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

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

  .accessBlock .googleMap {
    width: 100%;
    height: 300px;
  }

  .accessBlock .accessList dt {
    margin-bottom: 10px;
  }

  .accessBlock .accessList dd {
    padding-left: 18px;
  }

  .accessBlock .accessList dd p {
    margin-bottom: 4px;
  }

}
