@charset "utf-8";
@import url("//share.cr-cms.net/hp_agency/hpagency.css");
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.6.1/css/all.css");

/*-------------------------------------------
テンプレート
ノーマル01 ホワイト 2カラム 右メイン
-------------------------------------------*/ 
html {scroll-behavior: smooth;}

body {
  font-size: 16px;
  color: #444;
  line-height:1.4;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/*--------------------------------------------------------------
変数定義
---------------------------------------------------------------*/
:root {
  --base-width: 1200px;
  --main-width: 900px;
  --side-width: 250px;
  --column-gap: 30px;
  --main-color: #00a2de; /* スカイブルー */
  --sub-green: #0ea340; /* グリーン */
  --sub-orange: #fc7700; /* オレンジ */
  --sub-yellow: #ffd33a; /* イエロー */
  --color-link: #fc7700;
  --color-hover: #b93f03;
}

/*--------------------------------------------------------------
基本レイアウト
---------------------------------------------------------------*/
/* 旧テンプレートの最小幅960pxを解除 */
#wrap {
  width: 100%;
  min-width: 0;
}
/* 全体幅1200px */
#contents,
#title_outer,
#topMenu_outer,
#topMenu_body,
#mainImage_body,
#footer_outer {
  width: var(--base-width);
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}
/*
#contentsには元CSSの左右10pxのpaddingが残っている。
border-boxにすることで、padding込みで1200pxに収める。
*/
#contents {
  padding-right: 10px;
  padding-left: 10px;
}
/* 2カラム */
#mainContents {
  width: var(--main-width);
  float: right;
}
#sideContents {
  width: var(--side-width);
  float: left;
}
/*
以下はすべて#mainContentsの内側。
親要素の幅いっぱいにする。
*/
#mainArticles,
#listTopics,
#mainTopics,
#pankuz,
.mainArticles .article {
  width: 100%;
}
.mainArticles .article {
  margin-bottom: 50px;
}
.mainArticles .article.margin-bottom-15 {
  margin-bottom: 15px;
}
.mainArticles .article.margin-bottom-zero {
  margin-bottom: 0;
}
#mainArticles_body {
  display: flex;
  flex-wrap: wrap;
  gap: 0 24px;
}
.article, .gallery {
  margin-bottom: 40px;
}
#mainArticles_body > h2 {
  width: 100%;
}
/* col2 1/1カラム*/
.mainArticles .article.col2 {
  display: flex;
  width: calc((100% - 24px) / 2);
  box-sizing: border-box;
}
/* col3 1/3カラム*/
.mainArticles .article.col3 {
  display: flex;
  width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}
.mainArticles .article.col3 .article_outer,
.mainArticles .article.col3 .article_body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mainArticles .article.col3 .image,
.mainArticles .article.col3 img {
  max-width: 100%;
  height: auto;
}
/* gallery */
#mainArticles_body > .gallery {
  flex: 0 0 100%;
  width: 100%;
}
/* サイドメニューの既存幅を維持 */
#sideServices {
  width: var(--side-width);
}
/* 記事内画像 */
.mainArticles .article .image,
.mainArticles .article img {
  max-width: 100%;
}
.mainArticles .article_left .image,
.mainArticles .article_left img,
.mainArticles .article_right .image,
.mainArticles .article_right img {
  max-width: 360px;
}
.mainArticles .article_left .image {
  margin-right: 20px;
}
.mainArticles .article_right .image {
  margin-left: 20px;
}

/*--------------------------------------------------------------
表示順序
---------------------------------------------------------------*/
#wrap_body {
  display: flex;
  flex-direction: column;
}
#title {
  order: 1;
}
#topMenu {
  order: 2;
}
#mainImage {
  order: 3;
}
#contents {
  order: 4;
}
#footer {
  order: 5;
}

/*--------------------------------------------------------------
601px～1200px
---------------------------------------------------------------*/
@media screen and (min-width: 601px) and (max-width: 1200px) {
  #contents,
  #title_outer,
  #topMenu_outer,
  #topMenu_body,
  #mainImage_body,
  #footer_outer {
    width: 100%;
  }
  /*
  #contentsの内側幅から、
  サイド250pxとカラム間余白を引いた幅。
  */
  #mainContents {
    width: calc(100% - var(--side-width) - var(--column-gap));
  }
}

/*--------------------------------------------------------------
601px～800px
カラム間を20pxまで縮小
---------------------------------------------------------------*/
@media screen and (min-width: 601px) and (max-width: 800px) {
  :root {
    --column-gap: 20px;
  }
}

/*表示順序入れ替え*/
#wrap_body {
  display: flex;
  flex-direction: column;
}
#title     { order: 1; }
#topMenu   { order: 2; }
#mainImage { order: 3; }
#contents  { order: 4; }
#footer    { order: 5; }

/*--------------------------------------------------------------
リンク
---------------------------------------------------------------*/
a {
  color: var(--color-link);
  font-weight: 500;
}
a:hover {
  color: var(--color-hover);
  font-weight: inherit;
}
a.tel-link {
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
}
a.tel-link::before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  font-weight: bold;
  margin-right: 8px;
}

/*--------------------------------------------------------------
article p
---------------------------------------------------------------*/
.article p {
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
文字装飾
---------------------------------------------------------------*/
.leadCopy {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.6;
}

/*-------------------------------------------------
テーブル
-------------------------------------------------*/
/*デフォルト*/
.article table p {
  margin: 0;
}
.article table:not(.contactTable) {
  border-collapse: collapse;
  border-left: 1px solid #ccc;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  margin: 10px auto;
}
.article table:not(.contactTable) td,
.article table:not(.contactTable) th {
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  height: auto;
  padding: 10px;
  box-sizing: border-box;
}
.article table:not(.contactTable) th {
  background-color: #f7f7f7;
  text-align: center;
}

table.contactTable {
  margin: 0 auto;
}

/*ノーマルテーブル*/
.article table.normalTbl th {
  color: var(--main-color);
  font-weight: 500;
  background: none;
  height: auto;
  line-height: 150%;
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: none;
  border-bottom: solid 1px var(--main-color);
}
.article table.normalTbl:not(.timeTbl) th {
  width: 30%;
}
.article table.normalTbl th {
  color: var(--main-color);
  font-weight: 500;
  background: none;
  height: auto;
  line-height: 150%;
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: none;
  border-bottom: solid 1px var(--main-color);
  width: 30%;
}
.article table.normalTbl td {
  border:none;
  height: auto;
  line-height: 150%;
  padding: 16px;
  border-bottom: solid 1px #eee;
}

/*--------------------------------------------------------------
normalTblフォントサイズ
---------------------------------------------------------------*/
.article table.normalTbl {
  width: 100%;
  font-size: 1.0em;
  border: none;
}

/*--------------------------------------------------------------
シンプルテーブル
---------------------------------------------------------------*/
.article table.simpleTbl {
  width: 100%;
  border: none;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}
.article table.simpleTbl th {
  color: #fff;
  font-weight: 500;
  background: var(--main-color);
  height: auto;
  line-height: 150%;
  padding: 16px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  border: none;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.article table.simpleTbl:not(.timeTbl) th {
  min-width: 30%;
}
.article table.simpleTbl td {
  border:none;
  height: auto;
  line-height: 150%;
  padding: 16px;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

/*--------------------------------------------------------------
診療時間テーブル
---------------------------------------------------------------*/
.article table.timeTbl {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.article table.timeTbl th,
.article table.timeTbl td {
  width: auto;
  text-align: center;
  border: 1px solid #d9d9d9;
  box-sizing: border-box;
}
.article table.timeTbl th {
  color: #fff;
  background: var(--main-color);
}
.article table.timeTbl th:first-child,
.article table.timeTbl td:first-child {
  width: 30%;
}

/*--------------------------------------------------------------
汎用リスト
---------------------------------------------------------------*/
ul.maru {
  font-size: 1.0em;
}
ul.maru li {
  margin-bottom: 0.3em;
}
ul.maru li:before {
  content: "●";
  color: #ccecf8;
  padding-right: 0.1em;
}

/*--------------------------------------------------------------
チェックマークリスト
---------------------------------------------------------------*/
ul.check {
  position: relative;
  padding: 0;
  padding-left: 24px;
}
ul.check li {
  position: relative;
  margin-bottom: 0.5em;
  font-size: 1.0em;
  font-weight: 500;
  list-style: none;
}
ul.check li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24px;
  width: 0.55em;
  height: 0.9em;
  border-right: 4px solid #ff3300;
  border-bottom: 4px solid #ff9900;
  transform: rotate(45deg);
}
/*枠付き*/
div.has-border {
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--main-color);
  border-radius:8px;
}

/*--------------------------------------------------------------
見出し
---------------------------------------------------------------*/
.mainContents h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  margin: 1.0em 0;
}
.mainContents h2 strong {
  font-size: 50%;
  color: #222;
}
.mainContents .article h3, .mainContents div.gallery h3, #mainTopics h2 {
  font-size: 24px;
  color: #111;
  font-weight: 500;
  background-image: none;
  margin: 0 0 1.0em 0;
  padding: 0 0 0.5em 0;
  border: none;
  position: relative;
}
.mainContents .article h3::before, .mainContents div.gallery h3::before, #mainTopics h2::before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 20%;
  background: #00a2de;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.mainContents .article h3::after, .mainContents div.gallery h3::after, #mainTopics h2::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: #d9d9d9;
  left: 0;
  bottom: 0;
}
.article h4 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0.5em 0.8em;
  background: #ccecf8;
  margin-bottom: 0.8em;
}
.article h5 {
  font-size: 17px;
  font-weight: 700;
  color: var(--main-color);
  line-height: 1.6;
  padding: 0;
  margin-bottom: 0.8em;
}

/*--------------------------------------------------------------
メイン画像
---------------------------------------------------------------*/
#mainImage_outer {
  background: #f2fafc;
}
#mainImage_body {
  position: relative;
}
#mainImage[data-ams-editable*='231844'] #mainImage_body::before {
  content: "";
  display: block;
  width: 480px;
  height: 238px;
  background: url("/materials/178521090999401.png") no-repeat;
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 999;
}
.mainImage img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
title
---------------------------------------------------------------*/
#title {
  padding: 10px 0 15px;
  background: transparent;
}
#title_outer {
  padding: 0 20px;
  box-sizing: border-box;
  background-image: url("/materials/178469861586301.png");
  background-repeat: no-repeat;
  background-position: right 20px bottom;
  background-size: 60% auto;
}
#title_body {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#title h1 {
  order: 2;
  width: 34%;
  height: auto;
  padding: 0;
  aspect-ratio: 418 / 113;
  box-sizing: border-box;
}
#title h1 a {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-image: url("/materials/178459632821001.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  text-indent: -9999px;
}
#title .description {
  order: 1;
  margin: 0 0 12px;
  padding: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.4;
}

/*--------------------------------------------------------------
topMenu
---------------------------------------------------------------*/
#topMenu {
  margin: 0;
  background: var(--main-color);
}
#topMenu_body {
  background: none;
}
#topMenu li {
  background: none;
}
#topMenu .topMenu li {
  width: calc(100% / 5);
  position: relative;
}
#topMenu .topMenu li:first-child::before {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: #fff;
  position: absolute;
  top: 15%;
  left: 0;
}
#topMenu .topMenu li::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: #fff;
  position: absolute;
  top: 15%;
  right: 0;
}
#topMenu .topMenu li a {
  width: 100%;
  box-sizing: border-box;
  font-size: 1.0em;
  font-weight: 500;
  width: 100%;
}
#topMenu_outer .topMenu li a:hover {
  color: var(--sub-yellow);
  background: #01a3e1;
}

/*--------------------------------------------------------------
パンくずリスト
---------------------------------------------------------------*/
#pankuz {
  width: 100%;
}
#pankuz p {
  max-width: var(--main-width);
  margin: 0 auto;
}

/*--------------------------------------------------------------
topics
---------------------------------------------------------------*/
#mainTopics h2 {
  font-size: 16px;
  color: #fff;
  background: var(--main-color);
  background-image: none;
  border: none;
  margin-bottom: 0;
}
.mainTopics .topics li .date,
#mainTopics .topics li .date {
  font-size: 14px;
}
.mainTopics .topics li h3,
#mainTopics .topics h3 {
  font-size: 16px;
}
.mainTopics .topics li h3 a {
  color: var(--sub-orange);
  text-decoration: none;
}
#mainTopics .topics .description {
  font-size: 14px;
  margin-top: 7px;
}
#mainTopics .listview {
  background-color: var(--sub-green);
}
#mainTopics .listview a {
  font-size: 16px;
}

/*--------------------------------------------------------------
footer
---------------------------------------------------------------*/
#footer {
  background: var(--main-color);
}
#footer_body .copyright {
  font-size: 14px;
  font-weight: 300;
  background: transparent;
}
.footer p,
.footer p a {
  color: #fff;
}
.footer a:hover, .footer p a:hover {
  color: var(--sub-yellow);
}
.footer li {
  padding-right: 30px;
}
#footer li a {
  background-position: 0 10px;
}
.footer ul.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
#footer li a:hover {
  color: var(--sub-yellow);
}
.footer ul.services li {
  width: calc((100% - 40px) / 5);
  padding: 0;
}

/* フッターメインメニュー */
#footer .topMenu {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  padding: 0;
  background: none;
}
#footer .topMenu li {
  display: flex;
  flex: 1;
  height: 42px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 4px;
}
#footer .topMenu li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  color: var(--main-color);
  text-align: center;
  border-radius: 4px;
}
#footer .topMenu li a::before {
  content: "»";
  position: relative;
  top: -1px;
  margin-right: 0.3em;
  color: #999;
  font-size: 1em;
  line-height: 1;
}
#footer .topMenu li a:hover {
  background: var(--sub-yellow);
}

/*--------------------------------------------------------------
sideContents
---------------------------------------------------------------*/
.side-free-space {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 230px;
  padding: 20px 10px;
  background: var(--sub-yellow);
  margin: 20px 0;
}
.side-headcopy {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  color: #4b212d;
  text-align: center;
}
.side-banner img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
GoogleMap
---------------------------------------------------------------*/
.gmap-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 75%; /*4:3*/
  position: relative;
}
.gmap-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.gmap-wrap.wide {
  padding-bottom: 56.25%;
}

/*--------------------------------------------------------------
GoogleMap
---------------------------------------------------------------*/
.youtube-wrap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 */
  position: relative;
  border: 1px solid #999;
  box-sizing: border-box;
}
.youtube-wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

/*--------------------------------------------------------------
FAQ
---------------------------------------------------------------*/
ul.faq {
  font-size: 16px;
  padding: 0;
  border-bottom:1px dotted #666;
}
ul.faq li.qus ,
ul.faq li.ans {
  display: block;
  line-height: 1.6;
  margin-left: 48px;
  margin-bottom: 30px;
  padding-left: 0;
}
ul.faq li.qus {
  font-weight: bold;
  font-size: 105%;
}
ul.faq li.qus::before ,
ul.faq li.ans::before {
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 1.0em;
  height: 32px;
  line-height: 32px;
  margin: 0 16px 0 -48px;
  text-align: center;
  width: 32px;
}
ul.faq li.qus::before {
  background-color: var(--main-color);
  content: "Q";
}
ul.faq li.ans::before {
  background-color: var(--sub-yellow);
  content: "A";
}
ul.faq li.ans .faq-inline-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
}

/*--------------------------------------------------------------
見出しカラー設定
---------------------------------------------------------------*/
.article.article-green {
  --article-color: var(--sub-green);
  margin-bottom: 0;
}
.article.article-orange {
  --article-color: var(--sub-orange);
  margin-bottom: 0;
}
.article.article-skyblue {
  --article-color: var(--main-color);
  margin-bottom: 0;
}
/* 見出し共通 */
.article.article-green h3,
.article.article-orange h3,
.article.article-skyblue h3 {
  background: var(--article-color);
  color: #fff;
  font-size: 1.4em;
  font-weight: 700;
  padding: 12px 16px;
}

/*--------------------------------------------------------------
3カラム：カラー設定
---------------------------------------------------------------*/
.article.col3.col-green {
  --col-color: var(--sub-green);
  --col-bg: #d3f1d7;
}
.article.col3.col-orange {
  --col-color: var(--sub-orange);
  --col-bg: #ffe2cc;
}
.article.col3.col-skyblue {
  --col-color: var(--main-color);
  --col-bg: #d5f2fc;
}

/*--------------------------------------------------------------
3カラム：共通
---------------------------------------------------------------*/
.article.col3.card {
  background: var(--col-bg);
  border-radius: 12px;
  margin-bottom: 24px;
}
.article.col3.card .image {
  max-width: 240px;
  margin: 20px auto 0;
}
.article.col3.card h4 {
  position: relative;
  display: flex;
  height: 48px;
  justify-content: center;
  align-items: center;
  margin: 0;
  background: var(--col-color);
  color: #fff;
  font-size: 1.1em;
  font-weight: 500;
  text-align: center;
}
.article.col3.card h4 a {
  color: #fff;
  text-decoration: none;
}
.article.col3.card h4 a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.article.col3.card h4 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 4px;
  height: 4px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  transform:
    translate(calc(-50% - 1px), -50%)
    rotate(45deg);
}
.article.col3.card p {
  flex: 1;
  width: 240px;
  margin: 0 auto 24px;
  padding: 12px;
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-sizing: border-box;
  font-size: 15px;
}

/*--------------------------------------------------------------
3カラム：採用カードカラー
---------------------------------------------------------------*/
.article.col3.card.recruit-pink {
  --col-color: #d98273;
  --col-bg: #d98273;
}
.article.col3.card.recruit-blue {
  --col-color: #4ca0c9;
  --col-bg: #4ca0c9;
}
.article.col3.card.recruit-mustard {
  --col-color: #e9b943;
  --col-bg: #e9b943;
}

/*--------------------------------------------------------------
3カラム：採用カード
---------------------------------------------------------------*/
.article.col3.card.recruit-pink,
.article.col3.card.recruit-blue,
.article.col3.card.recruit-mustard {
  background: var(--col-bg);
  color: #fff;
  border-radius: 6px;
}
/* 写真をカード幅いっぱいにする */
.article.col3.card.recruit-pink .image,
.article.col3.card.recruit-blue .image,
.article.col3.card.recruit-mustard .image {
  width: 100%;
  max-width: none;
  margin: 0;
}
.article.col3.card.recruit-pink .image img,
.article.col3.card.recruit-blue .image img,
.article.col3.card.recruit-mustard .image img {
  display: block;
  width: 100%;
  height: auto;
}
/* 本文をカード幅いっぱいにする */
.article.col3.card.recruit-pink p,
.article.col3.card.recruit-blue p,
.article.col3.card.recruit-mustard p {
  width: 100%;
  margin: 0;
  padding: 18px;
  background: transparent;
  color: #fff;
  line-height: 1.6;
}
.article.col3.card[class*="recruit-"] h3 {
  margin: 0;
  padding: 18px 16px 12px;
  background: transparent;
  color: #fff;
  font-size: 1.7em;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}
.article.col3.card[class*="recruit-"] h3 strong {
  margin-left: 0.4em;
  font-size: 0.58em;
  font-weight: 700;
  vertical-align: 0.15em;
}
.article.col3.card[class*="recruit-"] h3::before,
.article.col3.card[class*="recruit-"] h3::after {
  display: none;
}

/*--------------------------------------------------------------
リンクボタン：カラー設定
---------------------------------------------------------------*/
.article.article-btn.btn-green {
  --btn-color: var(--sub-green);
}
.article.article-btn.btn-orange {
  --btn-color: var(--sub-orange);
}
.article.article-btn.btn-skyblue {
  --btn-color: var(--main-color);
}

/*--------------------------------------------------------------
リンクボタン：共通
---------------------------------------------------------------*/
.article.article-btn p {
  margin: 0;
}
.article.article-btn a {
  display: flex;
  width: 100%;
  height: 3em;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 2px solid var(--btn-color);
  border-radius: 8px;
  color: var(--btn-color);
  font-weight: 600;
  text-decoration: none;
}
.article.article-btn a::after {
  content: "\f105";
  margin-left: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.article.article-btn a:hover {
  background: var(--btn-color);
  color: #fff;
}

/*--------------------------------------------------------------
インタビュー
---------------------------------------------------------------*/
.article.interview {
  margin-bottom: 0;
}
.article.interview h4 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  padding: 0.5em 0.8em;
  background: #ccecf8;
  margin-bottom: 0.8em;
}

/*--------------------------------------------------------------
ステップ・フロー
---------------------------------------------------------------*/
.step-list {
  margin: 0;
}
.step-item {
  position: relative;
  width: min(100%, 500px);
  margin: 0 auto 44px;
  border: 1px solid #ddd;
}
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 0;
  height: 0;
  border-top: 14px solid #888;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  transform: translateX(-50%);
}
.step-item dt {
  padding: 14px 20px;
  background: #f8f9fa;
  font-weight: bold;
  text-align: center;
}
.step-item dd {
  margin: 0;
  padding: 16px 20px;
}
.step-item small {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 0.9em;
}

/*--------------------------------------------------------------
アクセスマップ 当院までの道のりギャラリー
---------------------------------------------------------------*/
.gallery.route-gallery .gallery_grid3 li.galleryGrid {
  width: 33%;
}
.gallery.route-gallery li.galleryGrid .galleryGrid_outer {
  position: relative;
  width: auto;
  padding: 0 34px 10px 5px;
}
.gallery.route-gallery li.galleryGrid:not(:nth-child(3n)) .galleryGrid_outer::after {
  content: "";
  position: absolute;
  top: 70px;
  right: 9px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid #f5b400;
}

/*--------------------------------------------------------------
インビザライン
---------------------------------------------------------------*/
.article.invz-point {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.article.invz-point h4 {
  font-size: 18px;
  font-weight: 700;
  background: none;
  padding: 0;
  margin: 0 0 0.5em;
}
.article.invz-point .point-badge {
  font-size: 18px;
  font-weight: 700;
  background-color: var(--main-color);
  padding: 2px 8px 5px;
  display: inline-block;
  color: #fff;
}
/* 比較表 */
table.comparisonTbl {
  width: 100%;
}
table.comparisonTbl th {
  width: auto;
}
table.comparisonTbl td.nowrap {
  white-space: nowrap;
}
/* 4つの特長 */
ul.features {
  width: 600px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
ul.features li {
  width: 48%;
  border: 1px solid #ddd;
  background-color: #f8f9fa;
  padding: 16px;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 22px;
  max-width: 288px;
  margin-bottom: 24px;
  box-sizing: border-box;
}