@charset "UTF-8";

/* ここから診療の流れ */
.inner figure img.auto {
  height: auto;
}

.sect_ttl_02 {
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.sect_ttl_02 em {
  display: block;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.35;
}

.sect_ttl_02 + p {
  margin-top: -20px;
  text-align: center;
  padding-bottom: 80px;
}

@media screen and (max-width: 740px) {
.sect_ttl_02 {
    padding: 40px 0;
    text-align: center;
    position: relative;
  }
.sect_ttl_02 em {
    font-size: 2rem;
  }
.sect_ttl_02 + p {
    margin-top: -20px;
    text-align: center;
    padding-bottom: 40px;
  }
}
.flow {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto 50px;
  position: relative;
  overflow: hidden;
}
.flow .item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 70px;
  position: relative;
}
.flow .item:before {
  content: "";
  width: 1px;
  height: calc(100% - 20px);
  position: absolute;
  left: 32.5px;
  top: 20px;
  border-right: #ff7366 solid 5px;
}
.flow .item em {
  font-size: 3.5rem;
  font-weight: 600;
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background: #ff7366;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}
.flow .item .text {
  padding: 0 50px;
  margin-right: auto;
}
.flow .item .text h3 {
  padding-top: 20px;
  padding-bottom: 10px;
  line-height: 1.25;
  font-size: 1.6rem;
  color: #ff7366;
}
.flow .item figure {
  flex-shrink: 0;
}
.flow .item figure img {
  border-radius: 2px;
}
.flow .item:last-child:before {
  content: none;
}

@media screen and (max-width: 740px) {
  .flow {
      width: 100%;
      padding: 0;
      box-sizing: border-box;
      margin: 0 auto;
      position: relative;
      overflow: hidden;
    }
  .flow .item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      padding-bottom: 30px;
      position: relative;
    }
    .flow .item:before {
      height: calc(100% - 50px);
      left: 22px;
      top: 50px;
    }
    .flow .item em {
      font-size: 1.5rem;
      width: 50px;
      height: 50px;
    }
    .flow .item .text {
      width: calc(100% - 50px);
      padding: 0 0 0 10px;
      box-sizing: border-box;
      margin-bottom: 15px;
    }
    .flow .item .text h3 {
      padding-top: 0;
      padding-bottom: 5px;
    }
    .flow .item figure {
      padding-left: 60px;
      flex-shrink: inherit;
    }
    .flow .item figure img {
      width: 100%;
      border-radius: 2px;
    }
    .flow .item:last-child:before {
      content: none;
    }
  }
section {
  text-align: left;
  padding-bottom: 80px;
}

section.bg {
  background: #eef5ff;
}

section .inner figure img.auto {
  height: auto;
}

@media screen and (max-width: 740px) {
section {
    padding-bottom: 10px;
  }
}
figure, em, section, div {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-style: normal;
}
figure, section {
	display: block;
}
/* ここまで診療の流れ */

/* スクロールimg */
.image-container {
	width: 200%; /* 2セットの画像 */
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	animation: scroll 90s linear infinite;
}
/* コンテナのアニメーション */
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}
.image-container img {
	display: inline-block;
	width: 8.33%;
}
/* モバイル用 */
@media (max-width: 768px) {
	.image-container {
		width: 100%;
		animation: scroll 50s linear infinite;
	}
	.image-container img {
		width: 36.83%;
	}
}
/* スクロールimg */

/*ここから診療時間 */

.time-table01 {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  margin-bottom: 20px;
  width: 100%;
 }
 
 .time-table01 th,
 .time-table01 td {
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  font-size: 19px ;
  color: #000;
 }
 
 .time-table01 th {
  border-bottom: 1px solid #000;
  padding: 15px 5px;
 }
 
 .time-table01 th:first-child {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  color: #000;
  width: 140px;
 }
 
 .time-table01 th:last-child {
  width: 60px;
 }
 
 .time-table01 td {
  border-bottom: 1px solid #000;
  padding: 20px 5px;
 }
 
 .time-table01 td:first-child {
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
  color: #000;
 }
 
 .time-table01 tr:last-child th,
 .time-table01 tr:last-child td {
  border-bottom: none;
 }
 
 .time-event-txt{
 color: #000 ;
 }

table {
  width: 100%;
  max-width: 800px; /* ある一定以上の幅にならないように設定 */
  margin: auto;
  border-collapse: collapse;
}
th {
border: 1px solid black;
  text-align: center;
  padding: 8px 12px;
background-color: #F5D4D1;
}
td {
  text-align: center;
  padding: 8px 12px;
}
th {
  background-color: #F5D4D1; /* 1行目の背景色 */
}
.time-event-txt {
	  font-family: 'Bentham', serif;
}
/*ここまで診療時間 */

/* コラム見出し */
h2.wp-block-heading {
    color: #d36b8e;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 32px;
    border-bottom: 3px solid #f1a7c1;
    padding-bottom: 5px;
    letter-spacing: 1px;
}
h3.wp-block-heading {
    font-size: 24px;
    border-left: 4px solid #f1a7c1;
    padding-left: 10px;
    margin-top: 20px;
}
.entry-content .wp-block-columns {
    padding: 20px 0;
}