@charset "UTF-8";
/* ------
  - *基本設定
  - *パンくずリスト
  - *ページ内リンク
  - *ページャー
  - *サイドバー
  - *書式設定
  - *タイトル
  - *リスト（ul）
  - *リスト（ol）
  - *レイアウト
  - *アコーディオン
  - *タブ
  - *テーブル
  - *メインビジュアル
  - *お知らせ
  - *問い合わせフォーム
  - *パスワード保護ページ
  - *ブログ
  - *404
  - *医院案内
  - *アクセス
------ */

/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
main {
  padding-bottom: 80px;
}

main section:first-of-type {
  padding-top: 60px;
  border-top: 1px solid var(--line-color);
}

main section:not(:last-child) {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 60px;
}

/* ==================================================================================================================================

  *パンくずリスト

================================================================================================================================== */
.breadcrumb {
  margin: 30px auto !important;
}

.breadcrumb_list {
  counter-reset: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}

.breadcrumb_list li {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

.breadcrumb_list li::after {
  content: "\f054";
  position: relative;
  top: -1px;
  padding: 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
}

/* 親、子、孫が複数ある場合、最後以外にカンマを表示 */
.breadcrumb_list li.parent:has(~ .parent)::after,
.breadcrumb_list li.child:has(~ .child)::after,
.breadcrumb_list li.grandchild:has(~ .grandchild)::after {
  content: ",";
  position: relative;
  top: 0;
  padding: 0 5px;
  font-family: inherit;
  font-weight: normal;
  font-size: 100%;
}

/* 最後の要素の矢印を消す */
.breadcrumb_list li:last-of-type::after {
  display: none;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .breadcrumb {
    font-size: 13px;
  }
}

/* ==================================================================================================================================

  *ページ内リンク

================================================================================================================================== */
.page_links {
  margin-bottom: 50px;
}

.page_links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.page_links li {
  position: relative;
  z-index: 1;
}

.page_links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #ffffff;
  font-size: 95%;
  text-align: center;
  transition: color 0.2s, background 0.2s;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.6;
  border-radius: 30px;
}

.page_links a:hover {
  background: #ffffff;
  color: var(--sub-color);
}

/* ----- 2列 ----- */
.twoLinks li {
  width: calc(50% - 5px);
}

/* ----- 3列 ----- */
.threeLinks li {
  width: calc(33.3333333333% - 6.6666666667px);
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .page_links {
    margin-bottom: 40px;
  }

  /* ----- 2列 ----- */
  .twoLinks li {
    width: 100%;
  }

  /* ----- 3列 ----- */
  .threeLinks li {
    width: 100%;
  }
}

/* ==================================================================================================================================

  *ページャー

================================================================================================================================== */
.pager {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  font-size: 15px;
}

/* ----- ページャーのボタン ----- */
.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0 0 1px 2px;
  background: #d7d7d7;
  border-radius: 50%;
  color: #ffffff;
  line-height: 1;
}

/* リンクの場合  */
a.page-numbers.prev, a.page-numbers.next {
  padding: 0 0 5px 1px;
  font-size: 170%;
}

a.page-numbers:hover {
  background: #929292;
  color: #ffffff;
}

/* 開いているページ */
.page-numbers.current {
  background: var(--main-color);
  color: #ffffff;
}

/* ==================================================================================================================================

  *サイドバー

================================================================================================================================== */
.sidebar {
  z-index: 3;
  flex-shrink: 0;
  width: 25%;
}

.side_box {
  padding: 20px;
  background: var(--bg-color);
}

.side_box:not(:last-of-type) {
  margin-bottom: 30px;
}

.side_box .children {
  padding-left: 10px;
}

.side_box a {
  color: var(--text-color);
}

.side_box a:hover {
  color: var(--main-color);
}

.side_title {
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  font-size: 110%;
  line-height: 1.5;
  text-align: left;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
}

.side_title i {
  margin-right: 10px;
  color: var(--main-color);
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .sidebar {
    width: 100%;
    margin: 0;
    padding: 0 5%;
  }

  .side_box:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

/* ==================================================================================================================================

  *書式設定

================================================================================================================================== */
.mtem {
  margin-top: 2em;
}

.mbem {
  margin-bottom: 1em;
}

/* 段落余白 */
main .inner > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

main .inner > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 0;
}

/* ----- text ----- */
.text {
  position: relative;
}

.text > *:not(h1, h2, h3, h4, h5, h6) {
  margin-bottom: 2em;
}

.text > *:not(h1, h2, h3, h4, h5, h6):last-child {
  margin-bottom: 0;
}

/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
h2, h3, h4, h5, h6 {
  position: relative;
  z-index: 1;
  margin-top: 50px;
  line-height: 1.75;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
}

h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type, h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
  margin-top: 0;
}

h2 {
  margin-bottom: 30px;
  font-size: 165%;
  letter-spacing: 0.1em;
  text-align: center;
}
h2::after  {
  display: block;
  content: "";
  width: 28px;
  aspect-ratio: 56/10;
  background: url(../images/tit_dec.jpg) left top/100% auto no-repeat;
  margin: 15px auto 0;
}

h3 {
  margin-bottom: 20px;
  font-size: 129%;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--main-color);
  position: relative;
}
h3::before {
  display: block;
  content: "";
  width: 50%;
  height: 1px;
  background: var(--text-color);
  position: absolute;
  right: 0;
  bottom: -1px;
}

h4 {
  width: fit-content;
  margin-bottom: 17px;
  color: var(--navy-color);
  font-size: 125%;
  border-bottom: 1px solid var(--line-color);
}

h5 {
  margin-bottom: 15px;
  font-size: 110%;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  h2 {
    font-size: 138%;
  }
}

/* ==================================================================================================================================

  *リスト（ul）

================================================================================================================================== */
/* ------ 共通 ------ */
ul {
  display: block;
}

/* ------ 無装飾 ------ */
.list01 li {
  padding: 5px 0;
}

/*　------　下線 ------　*/
.list02 li {
  padding: 5px 5px;
  border-bottom: 1px dotted var(--line-color);
  list-style-type: none;
}

/*　------ 点 ------　*/
.list03, .list03_border, .list03_bg {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.list03.list_inline, .list03_border.list_inline, .list03_bg.list_inline {
  flex-flow: wrap row;
  gap: 10px 25px;
}

.list03_border, .list03_bg {
  padding: 20px;
}

.list03_border {
  border: 1px solid #dedede;
}

.list03_bg {
  background: var(--bg-color);
}

.list03 li, .list03_border li, .list03_bg li {
  position: relative;
  display: block;
  padding: 0 0 0 25px;
}

.list03 li:before, .list03_border li:before, .list03_bg li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 10px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: var(--main-color);
  border-radius: 50%;
}

/* ------ チェック ------ */
.list04, .list04_border, .list04_bg {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.list04.list_inline, .list04_border.list_inline, .list04_bg.list_inline {
  flex-flow: wrap row;
  gap: 10px 30px;
}

.list04_border, .list04_bg {
  padding: 20px 30px;
}

.list04_border {
  border: 1px solid #dedede;
}

.list04_bg {
  background: var(--bg-color);
}

.list04 li, .list04_border li, .list04_bg li {
  position: relative;
  padding: 0 0 0 30px;
}

.list04 li:before, .list04_border li:before, .list04_bg li:before {
  content: "\f14a";
  position: absolute;
  top: 0px;
  left: 7px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
}

/* ------ リンク ------ */
.list05 {
  display: flex;
  flex-flow: column;
  gap: 10px 20px;
}

.list05.list_inline {
  flex-flow: wrap row;
  gap: 10px 20px;
}

.list05 li {
  padding: 0 5px 5px;
  border-bottom: dotted 2px #e6e6e6;
}

.list05 li a {
  position: relative;
  padding: 0 0 0 30px;
  color: var(--text-color);
  transition: none;
  transition: color 0.2s;
}

.list05 li a:hover {
  color: var(--main-color);
}

.list05 li a::before {
  content: "\f35d";
  position: absolute;
  left: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: rgb(183, 183, 183);
  transition: color 0.2s;
}

.list05 li a:hover::before {
  color: var(--main-color);
}

.list05 li a.pointer_none {
  pointer-events: none;
}

.list05 li a.pointer_none::before {
  color: rgb(238, 238, 238);
}

/* ------ アクセス ------ */
.list_access li {
  padding: 8px 10px;
  border-bottom: 1px dashed var(--line-color);
  font-size: 95%;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .list03_border, .list03_bg {
    padding: 20px 15px;
  }

  .list03 li:before, .list03_border li:before, .list03_bg li:before {
    top: 11px;
  }

  .list04_border, .list04_bg {
    padding: 20px 15px;
  }
}

/* ==================================================================================================================================

  *リスト（ol）

================================================================================================================================== */
ol:not(.breadcrumb_list) {
  counter-reset: number;
  display: flex;
  flex-flow: column;
  gap: 15px;
}

ol:not(.breadcrumb_list) li {
  position: relative;
  padding: 0 0 0 30px;
}

ol:not(.breadcrumb_list) li:before {
  content: counter(number) ".";
  counter-increment: number;
  position: absolute;
  top: 0;
  left: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}

/* ------ 背景付き ------ */
ol.bg {
  padding: 20px;
  background: var(--bg-color);
}

/* ------ 番号（四角の背景色付き） ------ */
ol.square li {
  padding: 0 0 0 50px;
}

ol.square li:before {
  content: counter(number);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 90%;
}

/* ------ 番号（丸の背景色付き） ------ */
ol.circle li {
  padding: 0 0 0 50px;
}

ol.circle li:before {
  content: counter(number);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding-left: 2px;
  background: var(--main-color);
  border-radius: 50%;
  color: #ffffff;
  font-size: 90%;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  ol.circle li:before {
    padding: 0;
  }
}

/* ==================================================================================================================================

  *レイアウト

================================================================================================================================== */
/* ------ 共通 ------ */
.layout_title,
.layout_sub_title {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.75;
}

.layout_text > *:not(:last-child) {
  margin-bottom: 1.25em;
}

.layout_text > *:last-child {
  margin-bottom: 0 !important;
}

.layout_right.text_center {
  align-items: center;
}

/* ------ layout01 ------ */
.layout01 {
  position: relative;
  z-index: 1;

  /* タイトル */
  /* サブタイトル */
}

.layout01 .layout_box {
  display: flex;
  gap: 20px;
  padding: 15px;
  background: var(--bg-color);
}

.layout01 .layout_box:not(:last-of-type) {
  margin-bottom: 20px;
}

.layout01 .layout_img {
  display: flex;
  flex-flow: column;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 370px;
  padding: 10px;
  background: #ffffff;
}

.layout01 .layout_img .imgtxt {
  display: block;
  margin-top: 10px;
  padding: 0;
  border: none;
  font-weight: bold;
  font-size: 110%;
}

.layout01 .layout_text {
  width: 100%;
}

.layout01 .layout_title {
  display: block;
  padding: 10px 20px;
  background: var(--main-color);
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 110%;
}

.layout01 .layout_title::before, .layout01 .layout_title::after {
  display: none;
}

.layout01 .layout_title span {
  display: inline-block;
  margin-right: 10px;
}

.layout01 .layout_sub_title {
  display: block;
  width: fit-content;
  padding: 5px 15px;
  background: #555555;
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 110%;
}

.layout01 .layout_sub_title::before, .layout01 .layout_sub_title::after {
  display: none;
}

/* ------ layout02 ------ */
.layout02 {
  border-top: 1px solid var(--line-color);
  position: relative;
  z-index: 1;

  /* タイトル */
  /* サブタイトル */
}

.layout02 .layout_box {
  display: flex;
  flex-flow: wrap;
  border-bottom: 1px solid var(--line-color);
}

/* .layout02 .layout_box:not(:last-of-type) {
  margin-bottom: 20px;
} */

.layout02 .layout_left {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 35%;
  padding: 40px 20px;
  background: var(--bg-color);
}

.layout02 .layout_left > *:not(:last-child) {
  margin-bottom: 1em;
}

.layout02 .layout_title {
  display: block;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  color: var(--main-color);
  font-size: 110%;
}

.layout02 .layout_title::before, .layout02 .layout_title::after {
  display: none;
}

.layout02 .layout_title span {
  display: inline-block;
  margin-right: 10px;
}

.layout02 .layout_right {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 65%;
  padding: 20px;
}

.layout02 .layout_sub_title {
  display: block;
  width: fit-content;
  padding: 5px 15px;
  background: #555555;
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 110%;
}

.layout02 .layout_sub_title::before, .layout02 .layout_sub_title::after {
  display: none;
}

/* ------ layout03 ------ */
.layout03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;

  /* タイトル */
}

.layout03 .layout_box {
  display: flex;
  flex-flow: column;
}

.layout03 .layout_inner {
  height: auto;
  height: 100%;
  padding: 20px;
  background: var(--bg-color);
}

.layout03 .layout_title {
  display: block;
  margin: 0;
  padding: 10px 20px;
  background: var(--main-color);
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 110%;
}

.layout03 .layout_title::before, .layout03 .layout_title::after {
  display: none;
}

.layout03 .layout_title_subcolor {
  background: var(--sub-color);
}

/* ------  flow ------  */
.flow {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: var(--bg-color);
}

.flow_box {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

.flow_box:first-of-type {
  padding-top: 0;
}

.flow_box:last-child {
  padding-bottom: 0;
}

.flow_number {
  position: relative;
}

.flow_number::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  z-index: -1;
  width: auto;
  height: 100%;
  border-right: var(--line-color) dashed 3px;
  transform: translateX(-50%);
}

.flow_number * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 0 0 3px 2px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 120%;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
}

.flow_box:last-of-type .flow_number::before {
  display: none;
}

.flow_inner {
  width: calc(100% - 80px);
}

.flow_inner > *:not(:last-child) {
  margin-bottom: 1em;
}

.flow_title,
.flow_sub_title {
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  line-height: 1.75;
}

.flow_title {
  display: block;
  margin-bottom: 15px;
  padding: 7px 20px;
  background: #ffffff;
  border: none;
  border-radius: 0;
  color: var(--text-color);
  font-size: 120%;
}

.flow_sub_title {
  width: fit-content;
  margin-bottom: 15px;
  padding: 5px 20px;
  background: var(--main-color);
  border: none;
  border-radius: 0;
  color: #ffffff;
  font-size: 100%;
}

/* ------ flexbox01（改行せずに等間隔で配置） ------ */
.flexbox01 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.flexbox01 > * {
  flex: 1;
}

/* ------ flexbox02 ------ */
.flexbox02 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.flexbox02 > * {
  width: calc(50% - 5px);
}

/* ------ flexbox03 ------ */
.flexbox03 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.flexbox03 > * {
  width: calc(33.3333333333% - 6.6666666667px);
}

/* ------ flexbox04 ------ */
.flexbox04 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.flexbox04 > * {
  width: calc(25% - 7.5px);
}

/* ------ 枠 ------ */
:is(.frame01, .frame02, .frame03) > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

:is(.frame01, .frame02, .frame03) > *:last-child {
  margin-bottom: 0;
}

.frame01 {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  background: var(--bg-color);
}

.frame01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}

.frame01 p {
  font-size: 120%;
  text-align: center;
}

.frame02 {
  padding: 20px 25px;
  background: var(--bg-color);
}

.frame03 {
  padding: 20px 25px;
  border: 1px solid var(--line-color);
}

.img_center {
  text-align: center;
}

.img_fl, .img_fr {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 20px;
}

.img_fl {
  float: left;
  margin-right: 30px;
  text-align: center;
}

.img_fr {
  float: right;
  margin-left: 30px;
  text-align: center;
}

.img_fl img, .img_fr img {
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 400px;
}

.imgtxt {
  margin-top: 10px;
  text-align: center;
}

.float_clear {
  float: none !important;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  /* ------ layout01 ------ */
  .layout01 .layout_box {
    flex-flow: wrap;
    gap: 15px;
  }

  .layout01 .layout_img {
    width: 100%;
  }

  .layout01 .layout_text {
    width: 100%;
  }

  /* ------ layout02 ------ */
  .layout02 .layout_left {
    width: 100%;
    padding: 20px;
  }

  .layout02 .layout_right {
    width: 100%;
  }

  /* ------ layout03 ------ */
  .layout03 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  /* ------ flow ------ */
  .flow {
    padding: 20px;
  }

  .flow_box {
    gap: 20px;
    padding: 20px 0;
  }

  .flow_number::before {
    top: 40px;
  }

  .flow_number span {
    width: 40px;
    height: 40px;
    padding-top: 2px;
  }

  .flow_inner {
    width: calc(100% - 60px);
  }

  .flow_title {
    padding: 4px 15px;
  }

  /* ------ flexbox01（改行せずに等間隔で配置） ------ */
  .flexbox01 > * {
    flex: none;
    width: 100%;
  }

  /* ------  flexbox02 ------ */
  .flexbox02 > * {
    width: 100%;
  }

  /* ------  flexbox03 ------ */
  .flexbox03 > * {
    width: 100%;
  }

  /* ------  flexbox04 ------ */
  .flexbox04 > * {
    width: 100%;
  }

  .img_fl, .img_fr {
    float: none;
    margin: 0 auto 2.25em;
    text-align: center;
  }

  .img_fl img, .img_fr img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
  }
}

/* ==================================================================================================================================

  *アコーディオン

================================================================================================================================== */
.accordion dl:not(:last-child) {
  margin-bottom: 15px;
}

.accordion dl dt {
  position: relative;
  z-index: 1;
  background-color: var(--bg-color);
  font-weight: normal;
  transition: background 0.3s, color 0.2s;
}

.accordion dl dt:hover {
  background: #eaeaea;
}

.accordion dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 2;
  width: 15px;
  height: 2px;
  background: var(--main-color);
  transform: rotate(90deg);
  transition: transform 0.3s, opacity 0.3s;
}

.accordion dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 2;
  width: 15px;
  height: 2px;
  background: var(--main-color);
  transition: transform 0.3s, background 0.3s;
}

.accordion dl dt.open {
  background: var(--sub-color);
  color: #ffffff;
}

.accordion dl dt.open::before {
  opacity: 0;
  transform: rotate(180deg);
}

.accordion dl dt.open::after {
  background: #ffffff;
}

.accordion dl dt > div {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 15px 60px 15px 25px;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion dl dd {
  display: none;
}

.accordion dl dd > div {
  position: relative;
  z-index: 1;
  padding: 15px 25px;
}

.accordion dl dd > div > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

.accordion dl dd > div > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 0;
}

/* ----- FAQアコーディオン ----- */
.accordion.faq dl dt > div {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 15px 50px 15px 60px;
  cursor: pointer;
  transition: background 0.2s;
}

.accordion.faq dl dt > div::before,
.accordion.faq dl dd > div:before {
  font-family: var(--font-en);
  font-weight: var(--font-en-weight);
}

.accordion.faq dl dt > div::before {
  content: "Q.";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 140%;
  line-height: 1;
}

.accordion.faq dl dd > div {
  position: relative;
  z-index: 1;
  padding: 15px 25px 15px 60px;
}

.accordion.faq dl dd > div:before {
  content: "A.";
  position: absolute;
  top: 20px;
  left: 20px;
  color: #c52b2b;
  font-size: 140%;
  line-height: 1;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .accordion dl dt::before {
    right: 20px;
    width: 12px;
  }

  .accordion dl dt::after {
    right: 20px;
    width: 12px;
  }

  .accordion dl dt > div {
    padding: 15px 40px 15px 15px;
  }

  .accordion dl dd > div {
    padding: 15px;
  }

  /* ----- FAQアコーディオン ----- */
  .accordion.faq dl dt > div {
    padding: 15px 40px 15px 50px;
  }

  .accordion.faq dl dt > div::before {
    top: 18px;
  }

  .accordion.faq dl dd > div {
    padding: 15px 15px 15px 50px;
  }
}

/* ==================================================================================================================================

  *タブ

================================================================================================================================== */
.tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: #a9a9a9;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}

.tab_list li.active {
  background: var(--main-color);
}

.panel_wrap > *:not(:last-child) {
  margin-bottom: 2em;
}

.panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color);
}

.panel > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .tab_list {
    flex-flow: column;
  }

  .tab_list li {
    width: 100%;
  }

  .tab_list .panel {
    margin-top: 20px;
    padding: 15px;
  }
}

/* ==================================================================================================================================

  *テーブル

================================================================================================================================== */
/* ------ 基本設定 ------ */
table th, table td {
  width: auto;
  padding: 10px;
  border: 1px solid var(--line-color);
  text-align: center;
  vertical-align: middle;
}

table th {
  background: var(--bg-color);
}

/* tdを左揃え */
.td_left td {
  text-align: start !important;
}

/* ------ ScrollHint ------ */
.scrolltable {
  overflow: visible !important;
}

/* ----- 最初の行のthがメインカラー、２列目以降のthに背景色がつく ----- */
.table01 tr th {
  background: var(--bg-color);
  font-size: 105%;
}

.table01 tr:first-child th {
  background: var(--sub-color);
  color: #ffffff;
}

/* ----- 一番左側がthになるテーブル（SP時は縦に1列表示） ----- */
.table02 th, .table02 td {
  position: relative;
  z-index: 1;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  /* ------ ScrollHint ------ */
  .scrolltable {
    overflow: auto !important;
  }

  .scrolltable table {
    min-width: 800px;
    min-height: 170px;
    background: none !important;
  }

  .scroll-hint-icon {
    top: 50% !important;
    left: 50% !important;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 135px !important;
    height: 100px !important;
    transform: translate(-50%, -50%) !important;
  }

  /* ----- 一番左側がthになるテーブル（SP時は縦に1列表示） ----- */
  .table02 tr th, .table02 tr td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .table02 tr:last-child td:last-child {
    border-bottom: 1px solid var(--line-color);
  }
}

/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
.mainvisual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 40px;
}

.mainvisual .mainvisual_bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
}

.mainvisual .mainvisual_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mainvisual .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 240px;
  padding: 50px 0;
}

/* ----- 下層ページの見出し ----- */
.main_headline {
  color: #fff;
  font-size: 28px;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  letter-spacing: 0.2em;
  line-height: 1.6;
  text-align: center;
  text-shadow: 0 0 5px #000;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .mainvisual {
    margin-bottom: 0;
  }
  .mainvisual .inner {
    min-height: 180px;
    padding: 30px 5%;
  }

  /* ----- 下層ページの見出し ----- */
  .main_headline {
    font-size: 22px;
  }
}

/* ==================================================================================================================================

  *お知らせ

================================================================================================================================== */
.news_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 15px;
  font-size: 94%;
  line-height: 1.3;
  margin-bottom: 30px;
}

.news_info > * {
  margin: 0!important;
  display: block;
  flex-shrink: 0;
}

.news_info .cate {
  min-width: 100px;
  padding: 5px 10px;
  font-style: normal;
  text-align: center;
  color: #fff;
  background: var(--sub-color);
}

/* ==================================================================================================================================

  *問い合わせフォーム

================================================================================================================================== */
.wpcf7 {
  max-width: 800px;
  width: 100%;
  margin-inline: auto;
  line-height: 1.75;
}
.contact_form_text {
  margin-bottom: 20px;
}
.wpcf7-form > dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.wpcf7-form > dl > * {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-color);
}
.wpcf7-form > dl > dt {
  width: 30%;
  padding-right: 40px;
  font-weight: bold;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.wpcf7-form > dl > dt label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wpcf7-form > dl > dd {
  width: 70%;
}
.contact_form_required {
  color: #fff;
  font-size: 12px;
  border-radius: 20px;
  background: #bb404a;
  padding: 1px 5px;
  vertical-align: text-bottom;
}
.wpcf7-form input,
.wpcf7-form textarea {
  font-weight: 500;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=email],
.wpcf7-form textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ccc;
  background: #f6f6f6;
  padding: 15px 10px;
  font-size: 16px;
}
.wpcf7-form input[type=text]:focus-visible,
.wpcf7-form input[type=tel]:focus-visible,
.wpcf7-form input[type=email]:focus-visible,
.wpcf7-form textarea:focus-visible {
  border-color: var(--main-color);
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=email] {
  font-size: 16px;
}
.wpcf7-form input[type=checkbox] {
  position: relative;
  top: -1px;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  appearance: auto;
}
.wpcf7-form textarea {
  max-width: 100%;
  margin-top: 20px;
}
.wpcf7-form input[type=submit] {
  display: block;
  cursor: pointer;
  outline: none;
  border: none;
  color: #fff;
  font-family: var(--font-jp);
  font-weight: var(--font-jp-weight);
  letter-spacing: .2em;
  text-align: center;
  background: var(--sub-color);
  padding: 15px 20px;
  width: 200px;
  margin: 40px auto 0;
  transition: background-color 0.3s ease-out;
}
.wpcf7-form input[type=submit]:hover {
  background: var(--main-color);
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .wpcf7-form > dl {
    display: block;
  }
  .wpcf7-form > dl > dt,
  .wpcf7-form > dl > dd {
    width: 100%;
  }
  .wpcf7-form > dl > dt,
  .wpcf7-form > dl > dt label {
    display: block;
  }
  .wpcf7-form > dl > dt {
    padding: 0;
    border: none;
    margin-bottom: 10px;
  }
  .contact_form_required {
    margin-left: 10px;
  }
  .wpcf7-form > dl > dd:not(:last-child) {
    margin-bottom: 20px;
  }
  .wpcf7-form > dl > dd p {
    margin-bottom: 10px;
  }
}

/* ==================================================================================================================================

  *パスワード保護ページ

================================================================================================================================== */
.page_pass_input {
  display: block;
  width: 100%;
  padding: 15px;
  border: 1px solid var(--line-color);
}

.page_pass_submit {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 20px auto;
  padding: 10px 0;
  background: var(--sub-color);
  border: solid 1px var(--sub-color);
  color: #ffffff;
  font-size: 110%;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.page_pass_submit:hover {
  background: #ffffff;
  color: var(--sub-color);
}

/* ==================================================================================================================================

  *ブログ

================================================================================================================================== */
/* ----- 共通 ----- */
.blog_wrap {
  max-width: 1100px;
  display: flex;
  gap: 50px;
  margin: 0 auto;
  padding: 0!important;
  border: none!important;
}

.blog_wrap .inner {
  width: 75%;
  margin: 0;
  padding: 0;
}

.blog_wrap .contents {
  display: flex;
  flex-flow: wrap;
  gap: 30px 20px;
  width: 100%;
  margin: 0 !important;
}

/* 日付 */
.blog_date {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 1.5;
}

.blog_date::before {
  content: "\f073";
  display: inline-block;
  margin-right: 7px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--text-color);
}

/* カテゴリー */
.blog_categorys {
  display: flex;
  flex-flow: wrap;
  gap: 0 5px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5;
}

.blog_categorys::before {
  content: "\f02b";
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
}

.blog_categorys a {
  display: inline-block;
}

/* ----- サイドバ（サムネイル付き） ----- */
.blog_list_thum {
  display: flex;
  flex-flow: column;
}

.blog_list_thum li {
  padding: 10px 0;
}

.blog_list_thum li:first-child {
  padding-top: 0;
}

.blog_list_thum li:last-child {
  padding-bottom: 0;
}

.blog_list_thum li:not(:last-child) {
  border-bottom: 1px solid var(--line-color);
}

.blog_list_thum li a {
  /* display: flex;
  gap: 10px; */
  display: block;
  color: var(--text-color);
  font-size: 95%;
  line-height: 1.75;
}

.blog_list_thum li a:hover {
  color: var(--main-color);
}

/* サムネイル */
.blog_item_thum {
  float: none;
  display: block;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.blog_item_thum img {
  float: none;
  display: block;
  width: auto;
  min-height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 0.2s;
}

.blog_item a:hover img {
  transform: scale(1.1);
}

/* タイトル */
/* .blog_item_title {
  padding: 5px 0;
} */

/* カテゴリー */
.side_blog_category a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 0 0 15px;
  color: var(--text-color);
  font-size: 95%;
  line-height: 1.75;
}

.side_blog_category a :hover {
  color: var(--main-color);
}

.side_blog_category a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
}

/* ----- アーカイブページ ----- */
.blog_box {
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 13.3333333333px);
  height: auto;
  background-color: #ffffff;
  border: solid 1px var(--line-color);
}

/* サムネイル */
.blog_box .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-bottom: solid 1px var(--line-color);
  text-align: center;
}

.blog_box .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 13/9;
}

.blog_inner {
  display: flex;
  flex-flow: column;
  height: 100%;
  padding: 15px 15px 20px;
  border-top: none;
}

/* 見出し */
.blog_box h2.blog_title {
  margin: 0 0 15px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 110%;
  text-align: left;
}

.blog_box h2.blog_title:before, .blog_box h2.blog_title:after {
  display: none;
}

.blog_box .btn01 {
  margin-top: auto;
  text-align: center;
}

.blog_box .btn01 > * {
  min-width: auto;
}

/* ----- 記事ページ ----- */
.blog_single_box {
  width: 100%;
}

/* サムネイル */
.blog_single_box .thumbnail {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 30px;
  text-align: center;
}

#index {
  margin: 0 0 30px;
  padding: 20px;
  background: var(--bg-color);
}

#index .index_title {
  margin: 0 0 0;
  font-weight: bold;
  font-size: 110%;
}

#index a {
  color: var(--text-color);
}

#index a:hover {
  color: var(--main-color);
}

#index .index_h2 {
  position: relative;
  z-index: 1;
  padding: 5px 0 5px 20px;
  font-weight: bold;
  color: var(--text-color);
  font-size: 110%;
}

#index .index_h2::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  background: var(--main-color);
}

#index .index_h3 {
  position: relative;
  z-index: 1;
  padding: 5px 0 5px 25px;
}

#index .index_h3::before {
  content: "-";
  position: absolute;
  top: 5px;
  left: 10px;
}

.blog_single_box .blog_text > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}

.blog_single_box .blog_text > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 2em;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  /* ----- 共通 ----- */
  .blog_wrap {
    flex-flow: column;
    gap: 70px;
    width: 100%;
  }

  .blog_wrap .inner {
    width: 100%;
    padding: 0 5%;
  }

  /* ----- アーカイブページ ----- */
  .blog_box {
    width: 100%;
  }

  /* サムネイル */
  .blog_box .thumbnail {
    height: auto;
    min-height: auto;
  }

  .blog_box .thumbnail img {
    width: 100%;
    height: auto;
  }
}

/* ==================================================================================================================================

  *404

================================================================================================================================== */
.error404 main > .inner {
  padding: 20px 0 80px;
}

.error404 main p {
  text-align: center;
}

/* ==============================================
  *SP
============================================== */
@media screen and (max-width: 640px) {
  .error404 main > .inner {
    padding: 0px 20px 60px;
  }
}

/* ==================================================================================================================================

  *医院案内

================================================================================================================================== */
/* .clinic_desc {
  width: 100%;
}

.clinic_desc dl {
  display: flex;
}

.clinic_desc dt {
  width: 20%;
  padding: 15px;
  border-bottom: 1px dotted var(--line-color);
  font-weight: bold;
}

.clinic_desc li:first-child dt {
  padding-top: 0;
}

.clinic_desc dd {
  width: 80%;
  padding: 15px;
  border-bottom: 1px dotted var(--line-color);
}

.clinic_desc dd .zipcode {
  margin-right: 10px;
}

.clinic_desc li:first-child dd {
  padding-top: 0;
}

.facilities_list {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.facilities_item {
  width: calc(33.3333333333% - 13.3333333333px);
  background: var(--bg-color);
}

.facilities_item dd {
  padding: 15px 20px;
}

.facilities_item dd p {
  padding-top: 5px;
}

.facilities_item h3 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 125%;
}

.facilities_item h3::before, .facilities_item h3::after {
  display: none;
}

.facilities_item.noimg {
  padding: 15px 20px;
}

.facilities_item.noimg p {
  margin-top: 5px;
} */

/* ==============================================
  *SP
============================================== */
/* @media screen and (max-width: 640px) {
  .clinic_desc dl {
    display: block;
  }

  .clinic_desc dt {
    width: 100%;
    padding: 15px 0 5px;
    border-bottom: none;
  }

  .clinic_desc li:first-child dt {
    padding-top: 0;
  }

  .clinic_desc dd {
    width: 100%;
    padding: 0 0 15px;
  }

  .facilities_item {
    width: 100%;
  }
} */

/* ==================================================================================================================================

  *アクセス

================================================================================================================================== */
/* .access .googlemap iframe {
  width: 100%;
  height: 400px;
}

.access .illustmap {
  width: 100%;
  height: fit-content;
  text-align: center;
}

.mapflex {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 30px;
}

.mapflex > * {
  display: flex;
  flex-grow: 1;
  align-items: stretch;
  width: calc(50% - 10px) !important;
}

.mapflex > .googlemap {
  position: relative;
  z-index: 1;
  flex-shrink: 1;
  width: calc(50% - 20px);
  height: auto;
}

.mapflex > .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access .location {
  position: relative;
  z-index: 1;
  padding: 0 0 0 40px;
  font-weight: bold;
}

.access .location::before {
  content: "\f3c5";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0 0 0 2px;
  background: var(--main-color);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #ffffff;
  font-size: 13px;
}

.access span {
  display: inline-block;
  margin-right: 10px;
}

.access .btn01 {
  text-align: center;
}

.route_list {
  display: flex;
  flex-flow: wrap;
  gap: 50px 30px;
}

.route_item {
  width: calc(50% - 15px);
}

.route_item > *:not(:last-child) {
  margin-bottom: 1em;
}

.route_title {
  position: relative;
  z-index: 1;
  min-height: 30px;
  padding: 0 0 0 40px;
  font-size: 110%;
}

.route_title .number {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: var(--main-color);
  color: #ffffff;
  line-height: 1;
} */

/* ==============================================
  *SP
============================================== */
/* @media screen and (max-width: 640px) {
  .mapflex > * {
    width: 100% !important;
  }

  .route_list {
    gap: 30px;
  }

  .route_item {
    width: 100%;
  }
} */