@charset "UTF-8";
/* CSS Document */
/* ---------------------
  項目をコピーしてページ内検索することで目的のセクションに移動できます。
  スマホの各項目には「（スマホ）」で移動できます。
  - 基礎
  - *基本情報
  - *ヘッダー
  - *ナビゲーション
  - *メインビジュアル
  - *フッター
  - *共通要素（wrapper,box,section等）
  - *フリーエリア（上・下）
  - *医師紹介
  - *診療案内
  - *病名から探す
  - *症状から探す
  - *症例
  - *医院案内
  - *料金表
  - *FAQ
  - *求人案内
  - *アクセス
  - *お知らせ
  - *ブログ
  - *MPクラウド
  - *RIBON
  - *お問い合わせ
  - *common
  - *ホーム
  - *スマホ設定
--------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* メイン色 */
  --main-color: #6aafb3;
  /* サブ色 */
  --sub-color: #9ec5dc;
  /* サイドメニュー・レイアウト類の背景色 */
  --bg-color: #f9f9f9;
  /* 境界線色 */
  --border-color: #e8e8e8;
  /* タイトル色 */
  --ttl-color: #727171;
  /* テキスト色 */
  --text-color: #666;
}

body {
  position: relative;
  background: #fff;
  color: var(--text-color);
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.15em;
  word-wrap: break-word;
  text-align: justify;
  /*background: url("/wp-content/uploads/design.png") no-repeat center top;
  opacity: 0.8;*/
}

.body_inner {
  position: relative;
  overflow: hidden;
}

a {
  color: var(--main-color);
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  color: var(--sub-color);
}

::-moz-selection {
  background: var(--sub-color);
}

::selection {
  background: var(--sub-color);
}

strong {
  font-weight: bold;
}

body,
.nav_wrap.fixed,
#mainvisual,
header,
footer {
  min-width: 1240px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
p,
dt,
dd,
form,
select,
option,
address,
pre {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  max-width: 100%;
  vertical-align: top;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a img {
  border: none;
}

@media print {
  html {
    -webkit-print-color-adjust: exact;
  }

  body {
    zoom: 80%;
  }

  .fixed {
    position: inherit !important;
  }

  .fixed_web_yoyaku_btn {
    display: none !important;
  }
}

/*TELリンクのカーソルはデフォルトにする*/
[href^="tel"]:hover {
  color: var(--main-color);
  cursor: default;
}

a[href="tel:準備中"] {
  pointer-events: none;
}

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

  *基本情報

==================================================================================================================================*/
/* ロゴ */
.info_logo {
  position: relative;
  width: 100%;
  max-width: 349px;
  margin: 0 auto 29px;
  text-align: center;
}

.info_logo a {
  display: block;
}

.info_logo a:hover {
  opacity: 0.8;
}

/* 住所 */
.info_add {
  margin-bottom: 24px;
  color: #727171;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

.info_add span {
  margin-right: 5px;
}

/* 電話番号 */
.info_tel {
  margin-bottom: 34px;
  text-align: center;
}

.info_tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #6faacc;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.info_tel a::before {
  display: block;
  position: relative;
  width: 21px;
  height: 34px;
  margin-right: 15px;
  background: url("/wp-content/uploads/tel.svg") no-repeat center / contain;
  content: "";
}

/* アクセス詳細 */
@media print, screen and (min-width: 641px) {
  .access_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}

.access_detail ul li {
  display: flex;
  align-items: center;
  position: relative;
  color: #727171;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.access_detail ul li:not(:last-child) {
  margin-bottom: 10px;
}

.access_detail ul li::before {
  display: block;
  position: relative;
  top: -1px;
  min-width: 14px;
  min-height: 17px;
  margin-right: 10px;
  background: url("/wp-content/uploads/building.svg") no-repeat center / contain;
  content: "";
}

.access_detail ul li:nth-of-type(2)::before {
  top: -2px;
  min-width: 16px;
  min-height: 24px;
  background: url("/wp-content/uploads/walking.svg") no-repeat center / contain;
}

.access_btn {
  margin-top: -8px;
  text-align: right;
}

.access_btn a {
  padding: 16px 12px 12px 25px !important;
  background: -webkit-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  ) !important;
  background: -moz-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  ) !important;
  background: linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  ) !important;
}

.access_btn a::after {
  margin-left: 8px !important;
}

.access_btn a:hover {
  background: -webkit-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  ) !important;
  background: -moz-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  ) !important;
  background: linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  ) !important;
}

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

  *ヘッダー

==================================================================================================================================*/
header {
  width: 100%;
  height: 190px;
  background: #fff;
}

header .inner {
  position: relative;
  width: 1200px;
  height: auto;
  margin: auto;
}

/*---------- ロゴ ----------*/
.head_logo {
  position: absolute;
  top: 48px;
  z-index: 9;
}

.head_logo a {
  display: block;
  max-width: 340px;
  height: auto;
}

.head_logo img {
  width: auto;
  height: auto;
}

.head_logo a:hover {
  opacity: 0.8;
}

/*---------- 住所・電話番号 ----------*/
.head_info_wrap {
  display: flex;
  justify-content: flex-end;
  width: 765px;
  margin: 0 0 0 auto;
}

.head_info_wrap::after {
  display: block;
  clear: both;
  content: "";
}

.head_info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 47px;
  text-align: right;
}

.head_info_add {
  color: #727171;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.head_info_add span {
  margin-right: 5px;
}

.head_info_tel {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: 32px;
  color: #98c0d8;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.head_info_tel::before {
  display: block;
  position: relative;
  width: 20px;
  height: 32px;
  margin-right: 15px;
  background: url("/wp-content/uploads/tel.svg") no-repeat center / contain;
  content: "";
}

/*---------- 予約・問診ボタン ----------*/
.fixed_web_yoyaku_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 11;
  width: 120px;
  height: 100%;
}

.fixed_web_yoyaku_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 15px 0 0 15px;
  background: url("/wp-content/uploads/watercolor_green_translucent_small.png")
    no-repeat center / cover;
  color: #fff;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  /*-webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;*/
  text-shadow: none;
}

.fixed_web_yoyaku_btn a:nth-child(even) {
  background: url("/wp-content/uploads/watercolor_blue_translucent_small.png")
    no-repeat center / cover;
}

.fixed_web_yoyaku_btn a.web_btn {
  display: block;
  padding: 16px 10px 19px;
  border-radius: 20px 0 0 20px;
  font-size: 16px;
  line-height: 1.2;
}

.fixed_web_yoyaku_btn a.web_btn::before {
  display: block;
  width: 55px;
  height: 55px;
  margin: 0 auto 13px;
  border-radius: 50%;
  background: #8dc1c4 url("/wp-content/uploads/smartphone.svg") no-repeat center /
    43%;
  content: "";
}

.fixed_web_yoyaku_btn .web_btn::after {
  display: block;
  width: 53px;
  height: 20px;
  margin: 6px auto 0;
  background: url("/wp-content/uploads/btn_deco02.png") no-repeat center /
    contain;
  content: "";
}

.fixed_web_yoyaku_btn .web_btn span {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fixed_web_yoyaku_btn a.web_consultation::before {
  background: #81b1ce url("/wp-content/uploads/smartphone.svg") no-repeat center /
    43%;
}

.fixed_web_yoyaku_btn a:last-child {
  margin-bottom: 0;
}

.fixed_web_yoyaku_btn a:hover {
  opacity: 0.8;
}

.fixed_web_yoyaku_btn a.sns_btn_line,
.menu_list_wrap .sp_btn_area li a.sns_btn_line {
  background: #06c755;
}

.head_mv {
  position: relative;
  /* z-index: 10; */
}

.head_btn_area {
  display: none;
}

/*.head_btn_area {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 10px;
  padding-top: 35px;
}

.head_btn_area li {
  width: 140px;
  margin-right: 5px;
}

.head_btn_area li:last-child {
  margin-right: 0;
}

.head_btn_area li a {
  display: block;
  padding: 15px 0;
  background: var(--main-color);
  color: #fff;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  transition: 0.2s ease-in-out;
}

.head_btn_area li a:hover {
  background: var(--sub-color);
}

.head_btn_area li a i {
  margin-right: 8px;
}*/

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

  *ナビゲーション

==================================================================================================================================*/
@media print, screen and (min-width: 641px) {
  .nav_wrap :is(.btn_menu, .nav_btn, .sp_btn_area) {
    display: none;
  }

  .nav_wrap {
    width: 100%;
    position: absolute;
    top: 123px;
    z-index: 10;
  }

  .menu_list_wrap {
    width: 1200px;
    margin: 0 auto;
  }

  /*---------- ナビメニュー ----------*/
  .nav_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav_menu > li {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .nav_menu > li::after {
    position: absolute;
    top: 50%;
    right: -55px;
    transform: translateY(-50%);
    width: 2px;
    height: 63%;
    background: #eee;
    content: "";
  }

  .nav_menu > li:nth-of-type(7)::after {
    display: none;
  }

  .nav_menu_tit {
    display: block;
    position: relative;
    z-index: 2;
    color: #727171;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.15em;
    text-align: center;
    transition: 0.2s ease-in-out;
  }

  .parent_menu:not(.nav_menu_tit) {
    display: none;
  }

  .nav_menu_en {
    display: block;
    margin-top: 5px;
    color: var(--main-color);
    font-family: "korolev-rounded", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.25em;
  }

  /* ホバー */
  .nav_menu a.nav_menu_tit::before {
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    z-index: 1;
    transform: scaleX(0);
    width: 16px;
    height: 16px;
    margin: auto;
    background: url("/wp-content/uploads/logo_icon.svg") no-repeat center /
      contain;
    content: "";
    transition: 0.2s ease-out;
  }

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

  .nav_menu a.nav_menu_tit:hover::before {
    transform: scaleX(1);
  }

  /*---------- ナビ固定時 ----------*/
  .nav_wrap.fixed {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
  }

  .nav_wrap.fixed .nav_menu {
    width: 1200px;
  }

  .nav_wrap.fixed .nav_menu a.nav_menu_tit::before {
    display: none;
  }

  /*---------- ドロップダウンメニュー ----------*/
  .child_menu {
    display: none;
    flex-wrap: wrap;
    position: absolute;
    top: 100%;
    left: 0%;
    z-index: 9999;
    width: 580px; /* 1列にしたい場合はwidthを300px前後にしてください */
    background: rgba(255, 255, 255, 0.9);
  }

  .child_menu::before,
  .child_menu::after {
    display: block;
    position: absolute;
    z-index: 1;
    background: var(--border-color);
    content: "";
  }

  .child_menu::before {
    top: 0;
    left: 0;
    right: 0;
    width: 1px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .child_menu::after {
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
  }

  .nav_slidebtm:hover .child_menu,
  .nav_slidebtm:focus-within > .child_menu {
    display: flex;
  }

  .child_menu a {
    display: flex;
    align-items: center;
    position: relative;
    width: 50%; /* 1列にする場合はwidth不要 */
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
    color: #727171;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 98%;
    line-height: 1.5;
    letter-spacing: 0.15em;
    text-align: center;
  }

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

  /* ------- メガメニュー ------- */
  .nav_menu > li.is_mega {
    position: static;
  }

  .nav_menu > li.is_mega .child_menu {
    width: 100%;
  }

  .sp_under_nav {
    display: none;
  }
}

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

  *メインビジュアル

==================================================================================================================================*/
.content_mv {
  display: block;
  position: relative;
  height: 370px;
  overflow: hidden;
}

.content_mv::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 172px;
  margin: auto;
  background: url("/wp-content/uploads/wave_blend.png") no-repeat center top /
    cover;
  content: "";
}

.content_mv .header_img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  position: absolute;
  z-index: -1;
  overflow: hidden;
  min-height: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}

.content_mv .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0 auto;
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*---------- ページタイトル ----------*/
.main_headline {
  text-align: center;
  text-shadow: 1px 1px 1px #fff, -1px 1px 1px #fff, 1px -1px 1px #fff,
    -1px -1px 1px #fff, 1px 0px 1px #fff, 0px 1px 1px #fff, -1px 0px 1px #fff,
    0px -1px 1px #fff;
  /*text-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 9px #fff, 0 0 12px #fff;*/
}

.main_headline .midashi {
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 180%;
  letter-spacing: 0.15em;
  line-height: 1.5;
}

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

  *フッター

==================================================================================================================================*/
/*-------------------- footer --------------------*/
footer {
  position: relative;
  width: 100%;
}
.footer_bnr {
  text-align: center;
}
@media print, screen and (min-width: 641px) {
  .footer_inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/*-------------------- footer_info --------------------*/
.footer_info {
  padding: 70px 0 65px;
}

@media print, screen and (min-width: 641px) {
  .footer_info {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/*-------------------- footer_info 左側 --------------------*/
.footer_info_left {
  width: 50%;
}

@media print, screen and (min-width: 641px) {
  .footer_info_left {
    padding: 11px 20px 0 40px;
  }
}

/*-------------------- footer_info 右側 --------------------*/
.footer_info_right {
  width: 50%;
}

@media print, screen and (min-width: 641px) {
  .footer_info_right {
    padding: 0 40px 0 20px;
  }
}

/*-------------------- GoogleMAP --------------------*/
.footer_googlemap {
  width: 100%;
}

.googlemap {
  position: relative;
  margin-bottom: 22px;
  height: 325px;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
}

.googlemap iframe {
  width: 100%;
  height: 100%;
}

.googlemap img {
  height: auto;
}

/*-------------------- 連携病院 --------------------*/
.sec_footer_affiliations {
  background: url("/wp-content/uploads/watercolor_beige_medium.jpg") no-repeat
    center / cover;
}

.sec_footer_affiliations .footer_inner {
  justify-content: space-between;
  padding: 50px 0 !important;
}

.sec_footer_affiliations h2 {
  margin: 36px 0 0 !important;
  padding: 0 !important;
  color: var(--ttl-color) !important;
  font-size: 18px !important;
  letter-spacing: 0.1em !important;
  text-align: left !important;
}

.sec_footer_affiliations h2::before {
  width: auto !important;
  height: auto !important;
  margin-bottom: 12px !important;
  background: -webkit-linear-gradient(
    45deg,
    rgb(106, 175, 179) 0%,
    rgb(152, 192, 216) 100%
  ) !important;
  background: -moz-linear-gradient(
    45deg,
    rgb(106, 175, 179) 0%,
    rgb(152, 192, 216) 100%
  ) !important;
  background: linear-gradient(
    45deg,
    rgb(106, 175, 179) 0%,
    rgb(152, 192, 216) 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: #75bdc1;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 40px !important;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: left !important;
  content: "PARTNER" !important;
}

.sec_footer_affiliations h2::after {
  display: none !important;
}

.footer_affiliations_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  width: 920px;
}

.footer_affiliations_list li {
  width: 300px;
}

.footer_affiliations_list li:nth-child(4n) {
  margin-right: 0 !important;
}

.footer_affiliations_list li a {
  display: block;
  pointer-events: all;
  transition: 0.2s ease-in-out;
}

.footer_affiliations_list li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 33px 33px 27px;
  border-radius: 10px;
  border: 1px solid #c4c4c4;
  background: #fff;
  color: #727171;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
  transition: 0.2s ease-in-out;
}

.footer_affiliations_list li a span::after {
  display: block;
  position: relative;
  top: -3px;
  width: 12px;
  height: 12px;
  margin-left: 10px;
  background: url("/wp-content/uploads/link_icon.svg") no-repeat center /
    contain;
  content: "";
}

.footer_affiliations_list li a img {
  pointer-events: none;
  transition: 0.2s ease-in-out;
}

.footer_affiliations_list li a:hover {
  color: var(--text-color);
}

.footer_affiliations_list li a:hover span {
  background: var(--bg-color);
}

.footer_affiliations_list li a:hover img {
  opacity: 0.8;
}

/*-------------------- フッターのサイドバナー --------------------*/
.sec_footer_banner {
  padding: 50px 0 0;
}

.sec_footer_banner ul {
  display: flex;
  flex-wrap: wrap;
}

.sec_footer_banner ul li {
  width: 23%;
  margin: 0 2.6666666667% 30px 0;
}

.sec_footer_banner ul li:nth-child(4n) {
  margin-right: 0 !important;
}

.footer_bg {
  background: url("/wp-content/uploads/watercolor_blend.jpg") no-repeat center /
    cover;
}

/*---------- フッターのナビ ----------*/
.footer_nav a {
  color: var(--text-color);
}

@media (hover: hover) {
  .footer_nav a {
    transition: color 0.15s ease-out;
  }
}

.footer_nav a:hover {
  color: #fff;
}

.footer_nav_fixed a:hover::before,
.footer_nav_sub a:hover::before {
  background: #fff;
}

.footer_nav .footer_inner {
  padding: 70px 0;
}

.footer_nav_fixed > li {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer_nav_fixed > li:not(:last-child) {
  margin-bottom: 28px;
}

.footer_nav_fixed > li::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 15px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

@media print, screen and (min-width: 641px) {
  .footer_nav .footer_inner {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer_nav_fixed {
    width: 20%;
  }

  .footer_nav_sub {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
  }
}

.footer_nav_fixed a,
.footer_nav_sub a {
  color: #fff;
}

@media (hover: hover) {
  .footer_nav_fixed a,
  .footer_nav_sub a {
    display: inline-block;
    position: relative;
    vertical-align: top;
  }

  .footer_nav_fixed a::before,
  .footer_nav_sub a::before {
    z-index: 1;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--main-color);
    content: "";
    transition: transform 0.15s ease-out;
    transform: scaleX(0);
  }

  .footer_nav_fixed a:hover::before,
  .footer_nav_sub a:hover::before {
    transform: scaleX(1);
  }
}

/* 投稿タイプ */
.footer_nav_sub_tit {
  display: flex;
  align-items: center;
  position: relative;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
}

.footer_nav_sub_tit:not(:last-child) {
  margin-bottom: 17px;
}

.footer_nav_sub_tit::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-right: 15px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.footer_nav_sub_item {
  width: 50%;
  padding-left: 20px;
}

.footer_nav_sub_item:not(:last-child) {
  margin-bottom: 25px;
}

.footer_nav_sub_list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 20px;
  padding-left: 15px;
}

.footer_nav_sub_list > li {
  display: flex;
  align-items: baseline;
  width: calc((100% - 40px) / 2);
  font-size: 90%;
}

.footer_nav_sub_list > li::before {
  margin-right: 5px;
  color: #fff;
  content: "-";
}

.footer_nav_sub_list > li {
  font-weight: 500;
}

/* カテゴリごと */
.footer_nav_sub_cate {
  padding-left: 15px;
}

.footer_nav_sub_cate:not(:last-child) {
  margin-bottom: 15px;
}

.footer_nav_sub_cate .footer_nav_sub_list {
  padding-left: 0;
}

.footer_nav_sub_cate_tit {
  margin-bottom: 10px;
  color: var(--main-color);
  font-weight: bold;
}

/*-------------------- フッターのSNS --------------------*/
.footer_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  line-height: 1;
  text-align: center;
}

.footer_sns li a {
  color: #fff;
}

@media (hover: hover) {
  .footer_sns li a:hover {
    color: var(--sub-color);
  }
}

.footer_sns i {
  font-size: 28px;
  letter-spacing: 0;
}

/*---------- ページトップ ----------*/
.pagetop {
  position: fixed;
  bottom: 98px;
  right: 130px;
  z-index: 12;
  width: 110px;
  height: 110px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}

.pagetop i {
  margin-top: 12px;
}

.pagetop:hover {
  -webkit-transform: translate(0, -10px);
  transform: translate(0, -10px);
}

/*---------- コピーライト ----------*/
.copy {
  padding: 29px 0 42px;
  text-align: center;
}

.copy small {
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1;
}

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

  *共通要素（wrapper,box,section等）

==================================================================================================================================*/
.contents_bg {
  position: relative;
}

/*:is(.blog,.single-post,.archive,.category):not(.tax-cate_menu,.tax-cate_disease,.tax-cate_symptom,.tax-cate_case) .contents_bg:before{
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 1200px) / 2);
  height: 100%;
  background: var(--bg-color);
  content: "";
}*/

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  width: 1200px;
  margin: auto;
  background: #fff;
}

.wrapper main {
  width: 100%;
  padding: 30px 0;
}

:is(.blog, .single-post, .archive, .category):not(
    .tax-cate_menu,
    .tax-cate_disease,
    .tax-cate_symptom,
    .tax-cate_case
  )
  .wrapper
  main {
  width: 68%;
}

/*-------------------- text --------------------*/
.text {
  position: relative;
  margin: 0 0 80px;
}

.text p {
  margin-bottom: 1em;
}

.text p:last-child {
  margin-bottom: 0;
}

.textarea p {
  margin-bottom: 22px;
  font-size: 16px;
}

.textarea p:last-child {
  margin-bottom: 0;
}

/*-------------------- 下層ページのレイアウト --------------------*/
.body_single,
.sec_doctor,
.sec_clinic,
.price_wrap,
.faq_wrap,
.sec_access,
.access_route,
.sec_recruit,
.sec_freearea_up,
.sec_freearea_under,
.medical_list li,
.clinic_facilities {
  position: relative;
  margin: 0 0 80px;
}

.body_single p {
  margin-bottom: 1em;
}

.body_single p:last-child {
  margin-bottom: 0;
}

.sec_medical .text {
  margin-bottom: 0;
}

/*-------------------- サイドバー --------------------*/
.side_area {
  z-index: 3;
  width: 28%;
  padding: 50px 1%;
}

.side_box {
  position: relative;
  padding: 20px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.1);
}

.side_box::before {
  position: absolute;
  top: 10px;
  right: -10px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_green.jpg") no-repeat center /
    cover;
  content: "";
}

.side_box:nth-child(even)::before {
  background: url("/wp-content/uploads/watercolor_blue.jpg") no-repeat center /
    cover;
}

.side_box:not(:last-child),
.side_bannar {
  margin-bottom: 40px;
}

.side_area .btn01 a {
  width: 100%;
  color: #fff !important;
}

.side_bannar ul li {
  margin-bottom: 10px;
  text-align: center;
}

.side_bannar ul li a:hover {
  opacity: 0.8;
}

.side_area .side_title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: solid 2px var(--main-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 110%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: left;
}

.side_area .side_title i {
  margin-right: 10px;
  color: var(--main-color);
  font-size: 115%;
  vertical-align: middle;
}

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

.side_area ul.children li.cat-item a {
  padding-left: 1em;
}

.side_area ul.children li.cat-item a::before {
  content: "－";
}

.side_area li a:hover {
  color: var(--main-color) !important;
}

.op_sidefreearea p a {
  display: block;
}

/*---------- SNSボタン ----------*/
.side_sns {
  display: flex;
  justify-content: center;
  margin: 0 0 20px;
}

.side_sns li {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin-right: 5px;
}

.side_sns li:last-child {
  margin-right: 0;
}

.side_sns li a {
  display: block;
  padding-top: 7px;
  border-radius: 5px;
  background: #fff;
  color: var(--main-color);
  font-size: 12px;
  text-align: center;
}

.side_sns li a i {
  display: block;
  font-size: 18px;
}

/*---------- 診療案内メニュー ----------*/
.medical_menu li {
  position: relative;
  border-bottom: 1px dotted var(--border-color);
  line-height: 1.6;
}

.medical_menu li:last-of-type {
  border-bottom: none;
}

.medical_menu li:before {
  position: absolute;
  top: 10px;
  left: 10px;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
}

.medical_menu li a {
  display: block;
  padding: 10px 0 10px 25px;
  transition: 0.5s;
}

.medical_menu li a:hover {
  background: rgba(0, 0, 0, 0.05);
}

/*-------------------- ボタン --------------------*/
.btn01 a {
  display: inline-block;
  position: relative;
  margin: 10px 0;
  padding: 16px 13px 12px 34px;
  border-radius: 25px;
  background: -webkit-linear-gradient(
    80deg,
    rgb(106, 175, 179) 0%,
    rgb(130, 207, 211) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(106, 175, 179) 0%,
    rgb(130, 207, 211) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(106, 175, 179) 0%,
    rgb(130, 207, 211) 100%
  );
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  transition: 0.2s ease-in-out;
}

.btn01 a::after {
  display: inline-block;
  position: relative;
  width: 33px;
  height: 20px;
  margin-left: 12px;
  background: url("/wp-content/uploads/btn_deco01.png") no-repeat center /
    contain;
  vertical-align: middle;
  content: "";
  transition: 0.2s ease-in-out;
}

.btn01 a:hover {
  background: -webkit-linear-gradient(
    80deg,
    rgb(130, 207, 211) 0%,
    rgb(106, 175, 179) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(130, 207, 211) 0%,
    rgb(106, 175, 179) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(130, 207, 211) 0%,
    rgb(106, 175, 179) 100%
  );
}

.btn01 a:hover::before {
  margin-left: 8px;
}

/*.btn01 a {
  display: inline-block;
  padding: 8px 30px 8px 15px;
  margin: 10px 0;
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
  transition: 0.2s ease-in-out;
  position: relative;
}

.btn01 a::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  font-weight: 900;
  color: #fff;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  height: 30px;
  transition: 0.2s ease-in-out;
}

.btn01 a:hover {
  background-color: #fff;
  color: var(--main-color);
  opacity: 0.8;
}

.btn01 a:hover::before {
  color: var(--main-color);
}*/

/*-------------------- パンくず --------------------*/
#breadcrumb {
  width: 100%;
  margin: 0 0 50px 0;
}

#breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  counter-reset: unset;
}

#breadcrumb ol li {
  position: relative;
  margin: 0;
  padding-right: 20px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

#breadcrumb ol li::before {
  position: absolute;
  top: 50%;
  left: unset;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 16px;
  margin: 0;
  padding: 0;
  border-radius: none;
  border: none;
  background: none;
  color: inherit;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  content: "›";
}

#breadcrumb ol li:last-child {
  margin-right: 0;
  padding-right: 0;
}

#breadcrumb ol li:last-child::before {
  content: normal;
}

#breadcrumb ol li a {
  display: inline-block;
  position: relative;
  width: auto;
}

#breadcrumb ol li:last-child {
  display: inline-block;
  position: relative;
  width: auto;
}

/*-------------------- タイトル --------------------*/
h1 {
  position: absolute;
  top: 14px;
  left: 0;
  color: #9d9d9d;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

h2 {
  position: relative;
  margin-bottom: 20px;
  padding: 10px 0;
  color: var(--ttl-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 160%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

h2::before {
  display: block;
  width: 100%;
  height: 60px;
  margin-bottom: 20px;
  background: url("/wp-content/uploads/logo_icon.svg") no-repeat center /
    contain;
  text-align: center;
  content: "";
}

h2::after {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 20px;
  background: url("/wp-content/uploads/ttl_deco01.png") no-repeat center /
    contain;
  text-align: center;
  content: "";
}

/*h2 {
  position: relative;
  margin: 0 0 20px;
	padding: 0 0 8px;
  font-weight: bold;
  border-bottom: 2px solid var(--border-color);
	font-size: 160%;
	line-height: 1.5;
}

h2::after {
  display: block;
	position: absolute;
  bottom: -2px;
  width: 20%;
	border-bottom: 2px solid var(--main-color);
	content: "";
}*/

h3 {
  position: relative;
  margin-bottom: 20px;
  color: var(--ttl-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 130%;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

h3::before {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 96%;
  height: 2px;
  background: var(--border-color);
  content: "";
}

h3::after {
  display: block;
  width: 34px;
  height: 8px;
  margin-top: 5px;
  background: url("/wp-content/uploads/ttl_deco02.png") no-repeat left / contain;
  content: "";
}

h4 {
  display: table;
  position: relative;
  clear: both;
  margin: 0 0 10px;
  padding: 0 0 3px;
  border-bottom: 4px double var(--border-color);
  color: var(--ttl-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 125%;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

h5 {
  position: relative;
  clear: both;
  margin: 0 0 15px;
  color: var(--main-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 115%;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

/*-------------------- 下層の見出しの上に余白を付ける --------------------*/
.body_single h2:nth-child(n + 2),
.cmn_editor h2:nth-child(n + 2) {
  margin-top: 2em;
}

.body_single h3:nth-child(n + 2),
.body_single h4:nth-child(n + 2),
.body_single h5:nth-child(n + 2),
.body_single h6:nth-child(n + 2),
.cmn_editor h3:nth-child(n + 2),
.cmn_editor h4:nth-child(n + 2),
.cmn_editor h5:nth-child(n + 2),
.cmn_editor h6:nth-child(n + 2) {
  margin-top: 1.5em;
}

/*-------------------- TinyMCEエディタ用 --------------------*/
.cmn_editor p {
  margin-bottom: 1em;
}

.cmn_editor p:last-child {
  margin-bottom: 0;
}

/*---------- 見出し ----------*/
/* 太字 */
.title_style01 {
  display: table;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  background: none;
  color: var(--main-color);
  font-weight: bold;
  text-align: left;
}

/* 下線 */
.title_style02 {
  display: table;
  margin-right: 0;
  margin-left: 0;
  padding: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--main-color);
  background: none;
  color: var(--main-color);
  font-weight: bold;
  text-align: left;
}

/* 背景色付き・白抜き */
.title_style03 {
  margin-right: 0;
  margin-left: 0;
  padding: 5px 10px;
  border-radius: 0;
  border: none;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  text-align: left;
}

h2.title_style01:before,
h2.title_style01:after,
h3.title_style01:before,
h3.title_style01:after,
h4.title_style01:before,
h4.title_style01:after,
h5.title_style01:before,
h5.title_style01:after,
h2.title_style02:before,
h2.title_style02:after,
h3.title_style02:before,
h3.title_style02:after,
h4.title_style02:before,
h4.title_style02:after,
h5.title_style02:before,
h5.title_style02:after,
h2.title_style03:before,
h2.title_style03:after,
h3.title_style03:before,
h3.title_style03:after,
h4.title_style03:before,
h4.title_style03:after,
h5.title_style03:before,
h5.title_style03:after {
  display: none;
}

/*---------- 枠 ----------*/
.box_style01 {
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.box_style02 {
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.box_style03 {
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  border: 1px dashed var(--border-color);
}

.box_style04 {
  position: relative;
  margin: 0 auto 50px;
  padding: 60px 30px;
  /*box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 40px;*/
  border-radius: 10px;
  border: 1px solid var(--border-color);
  /*background: url("/wp-content/uploads/box_img.jpg") no-repeat center / cover;*/
  text-align: center;
}

.box_style04::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: auto;
  background: rgba(255, 255, 255, 0.7);
  content: "";
}

.box_style04 .inner {
  display: inline-block;
  text-align: left;
}

.box_style04 p {
  width: fit-content;
}

/*.box_bg::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-image: -webkit-linear-gradient(270deg, transparent 0 75%, #fff 100%);
  background-image: -moz-linear-gradient(270deg, transparent 0 75%, #fff 100%);
  background-image: linear-gradient(270deg, transparent 0 75%, #fff 100%);
  content: "";
}*/

.box_bg ul {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: auto;
  text-align: left;
}

.box_style01 p:last-of-type,
.box_style02 p:last-of-type,
.box_style03 p:last-of-type,
.box_style04 p:last-of-type {
  margin-bottom: 0;
}

/*---------- テーブル ----------*/
.cmn_editor table,
.freearea_up table,
.freearea_under table,
.body_single table,
.table_style2_30,
.table_style2_50,
.table_style2_70,
.table_style3 {
  width: 100%;
  border-spacing: 1px;
  border-collapse: separate;
  background: var(--bg-color);
}

.cmn_editor th,
.cmn_editor td,
.freearea_under th,
.freearea_under td,
.freearea_up td,
.freearea_up th,
.body_single th,
.body_single td,
.table_style2_30 th,
.table_style2_30 td,
.table_style2_50 th,
.table_style2_50 td,
.table_style2_70 th,
.table_style2_70 td,
.table_style3 th,
.table_style3 td {
  padding: 10px;
}

.cmn_editor th,
.freearea_up th,
.freearea_under th,
.body_single th,
.table_style2_30 th,
.table_style2_50 th,
.table_style2_70 th,
.table_style3 th {
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.cmn_editor td,
.freearea_up td,
.freearea_under td,
.body_single td,
.table_style2_30 td,
.table_style2_50 td,
.table_style2_70 td,
.table_style3 td {
  border: 1px solid var(--border-color);
  background: #fff;
}

.table_style2_30 span,
.table_style2_50 span,
.table_style2_70 span,
.table_style3 span {
  font-size: 80%;
}

.table_style2_30 tr:first-of-type th,
.table_style2_30 tr:first-of-type td {
  width: 30%;
}

.table_style2_30 tr:first-of-type td:nth-child(2) {
  width: 70%;
}

.table_style2_50 tr:first-of-type th,
.table_style2_50 tr:first-of-type td {
  width: 50%;
}

.table_style2_70 tr:first-of-type th,
.table_style2_70 tr:first-of-type td {
  width: 70%;
}

.table_style3 th,
.table_style3 td {
  width: 33.3333333333% !important;
}

/*---------- ラインマーカー ----------*/
.marker {
  background: linear-gradient(transparent 60%, #ffff93 60%);
}

/*-------------------- 診療内容などのコンテンツ部分 --------------------*/
.body_list li {
  margin-bottom: 60px;
}

.body_list li .text {
  margin-bottom: 15px;
}

.body_wrap_float::after {
  display: block;
  clear: both;
  content: "";
}

/*ページ内リンク設定*/
.ank_single {
  position: relative;
  margin: 0 0 80px;
}

.anklink {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.anklink li {
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
  position: relative;
  width: 49%;
  margin: 0 0 10px;
}

.anklink li a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 14px 14px 10px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--text-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  vertical-align: middle;
  transition: 0.2s ease-in-out;
}

.anklink li a::before {
  opacity: 0.3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("/wp-content/uploads/watercolor_green.jpg") no-repeat center /
    cover;
  content: "";
}

.anklink li:nth-child(even) a::before {
  background: url("/wp-content/uploads/watercolor_blue.jpg") no-repeat center /
    cover;
}

.anklink li a:hover {
  color: #777;
}

.anklink li a:hover::before {
  opacity: 0.22;
}

.anklink li i {
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  margin: auto;
}

/* 扉ページのリンク */
.contentlink {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.contentlink li {
  width: 100%;
  max-width: 390px;
}

.contentlink li a {
  display: block;
  padding: 10px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-weight: bold;
  text-align: center;
}

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

/*-------------------- 共通 --------------------*/
/*---------- 無装飾 ----------*/
.list01 {
  margin: 0 0 15px;
  padding: 0;
  border-width: 0 1px 1px;
}

.list01 li {
  list-style-type: none;
  margin-bottom: 12px;
}

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

/*---------- 下線 ----------*/
.list02 {
  margin: 10px 0;
  border-width: 0 1px 1px;
}

.list02 li {
  list-style-type: none;
  margin: 0;
  border-bottom: 1px dotted var(--border-color);
}

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

/*---------- 点 ----------*/
.list03 {
  list-style: none !important;
  margin: 0 0 15px;
}

.list03 li {
  display: block;
  list-style: none !important;
  list-style-image: none;
  position: relative;
  padding-left: 15px;
}

.list03 li::before {
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  content: "";
}

.list03 li i {
  margin-right: 8px;
}

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

/*---------- 三角 ----------*/
.list04 {
  margin: 0 0 15px;
}

.list04 li {
  list-style-type: none;
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
}

.list04 li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 5px solid var(--main-color);
  content: "";
}

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

/*---------- 矢印 ----------*/
.list05 {
  margin: 0 0 15px;
}

.list05 li {
  list-style-type: none;
  position: relative;
  margin-bottom: 8px;
  padding-left: 15px;
}

.list05 li::before {
  position: absolute;
  top: 11px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  background: transparent;
  content: "";
}

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

/*---------- 点と背景色 ----------*/
.list06 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.list06::after {
  display: block;
  clear: both;
  content: "";
}

.list06 li {
  list-style-type: none;
  position: relative;
  float: left;
  margin-bottom: 8px;
  padding-left: 0.9em;
  padding-right: 5%;
}

.list06 li::before {
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  content: "";
}

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

/*---------- 点と枠 ----------*/
.list07 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid var(--bg-color);
}

.list07::after {
  display: block;
  clear: both;
  content: "";
}

.list07 li {
  list-style-type: none;
  position: relative;
  margin: 0 2em 0.5em 0;
  padding-left: 1em;
}

.list07 li:last-child {
  margin-bottom: 0;
}

.list07 li::before {
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  content: "";
}

.list07 li i {
  margin-right: 8px;
}

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

/*---------- チェックと背景色（一行ずつ表示）----------*/
.list08_w100 {
  margin: 0 0 15px;
  padding: 20px 30px 10px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.list08_w100::after {
  display: block;
  clear: both;
  content: "";
}

.list08_w100 li {
  display: table;
  list-style-type: none;
  position: relative;
  float: none;
  margin: 0 30px 10px;
  border-bottom: 1px dotted var(--border-color);
}

.list08_w100 li::before {
  display: block;
  position: absolute;
  left: -28px;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}

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

/*---------- チェックと背景色（文章幅に合わせる）----------*/
.list08 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.list08::after {
  display: block;
  clear: both;
  content: "";
}

.list08 li {
  display: inline-block;
  list-style-type: none;
  position: relative;
  margin: 0 10px 10px 40px;
  border-bottom: 1px dotted var(--border-color);
}

.list08 li::before {
  display: block;
  position: absolute;
  left: -23px;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}

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

/*---------- チェックなし ----------*/
.list08_nocheck {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.list08_nocheck::after {
  display: block;
  clear: both;
  content: "";
}

.list08_nocheck li {
  display: inline-block;
  list-style-type: none;
  position: relative;
  margin: 0 10px 10px 10px;
  border-bottom: 1px dotted var(--border-color);
}

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

/*---------- チェックボックス（文章幅に合わせる）----------*/
.list09 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
  padding: 20px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.list09::after {
  display: block;
  clear: both;
  content: "";
}

.list09 li {
  display: inline-block;
  list-style-type: none;
  position: relative;
  margin: 0 10px 10px 40px;
  border-bottom: 1px dotted var(--border-color);
}

.list09 li::before {
  display: block;
  position: absolute;
  left: -23px;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
}

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

/*---------- チェックなし ----------*/
.list_kakomi {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 15px;
}

.list_kakomi:after {
  display: block;
  clear: both;
  content: "";
}

.list_kakomi li {
  display: inline-block;
  list-style-type: none;
  position: relative;
  margin: 0 5px 10px 0;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
}

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

/*---------- 注釈リスト ----------*/
.list12 li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 1em;
  color: #777;
  font-size: 95%;
  text-indent: -1em;
}

.list12 li::before {
  content: "※";
  display: inline;
}

/*---------- 番号付き ----------*/
ol {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: number;
}

ol li {
  display: flex;
  list-style-type: none;
  position: relative;
  margin: 0 0 10px 0;
}

ol li:last-of-type {
  margin: 0;
}

ol li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -1px;
  width: 32px;
  height: 32px;
  margin-right: 5px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.14em;
  counter-increment: number;
  content: counter(number) ".";
}

/*---------- 番号（四角の背景色付き）----------*/
ol.square {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: number;
}

ol.square li {
  list-style-type: none;
  margin-bottom: 12px;
}

ol.square li::before {
  top: -2px;
  min-width: 32px;
  min-height: 32px;
  margin-right: 8px;
  background: var(--sub-color);
  color: #fff;
  font-size: 15px;
  counter-increment: number;
  content: counter(number);
}

/*---------- 番号（四角の背景色付き）----------*/
ol.circle {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: number;
}

ol.circle li {
  list-style-type: none;
  margin-bottom: 12px;
}

ol.circle li::before {
  top: -2px;
  min-width: 32px;
  min-height: 32px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--sub-color);
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  counter-increment: number;
  content: counter(number);
}

/*---------- 何かの装飾 ----------*/
.top_flex_box {
  display: flex;
  justify-content: space-between;
}

.top_flex_box > div {
  flex: 1;
  padding: 0 35px;
}

/*---------- 引用 ----------*/
blockquote {
  padding: 20px;
  background: #f0f0f0;
  color: #555;
  font-style: italic;
  font-size: 85%;
}

blockquote p:last-of-type {
  margin-bottom: 0;
}

/*-------------------- アンカーリンンク --------------------*/
/*4個並び*/
.ank01 {
  margin: 0 auto 100px;
}

.ank01 li {
  display: table;
  position: relative;
  float: left;
  width: 24%;
  height: 66px;
  margin-bottom: 1.5%;
  margin-left: 1.33%;
  line-height: 1.4;
}

.ank01 li:nth-child(1),
.ank01 li:nth-child(5),
.ank01 li:nth-child(9) {
  margin-left: 0;
}

.ank01 li a {
  display: table-cell;
  padding: 12px 5px 15px;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
  transition: 0.2s ease-in-out;
}

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

.ank01 li i {
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  margin: auto;
}

/*------------------- layout --------------------*/
/* -------------- layout共通タイトル -------------- */
.layout_tit {
  color: var(--main-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.layout_tit em {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 35px;
  letter-spacing: 0.14em;
  vertical-align: -2px;
}

.layout_tit span {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
}

/* layout小タイトル */
.layout_tit_02 {
  color: var(--main-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
}

/* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
.layout01 {
  position: relative;
  margin: 0 0 15px;
}

.layout01::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout01 .layout01_box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 5px 0;
}

.layout01 .layout01_box::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout01 .layout01_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  width: 30%;
  color: var(--text-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 120%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

.layout01 .layout01_title::before {
  opacity: 0.2;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url("/wp-content/uploads/watercolor_green.jpg") no-repeat center /
    cover;
  content: "";
}

.layout01 .layout01_box:nth-child(even) .layout01_title::before {
  background: url("/wp-content/uploads/watercolor_blue.jpg") no-repeat center /
    cover;
}

.layout01 .layout01_title em {
  display: block;
  width: 100%;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 150%;
  line-height: 1;
  letter-spacing: 0.14em;
}

.layout01 .layout01_title span {
  font-size: 75%;
}

.layout01 .layout01_text {
  width: 70%;
  padding: 3%;
}

.layout01 .layout01_text ul {
  background: none;
  margin: 0;
  padding: 0;
}

/* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
.layout02 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 15px;
}

.layout02::after {
  display: block;
  clear: both;
  content: "";
}

.layout02 .layout02_box {
  width: 49%;
  margin: 0 2% 0 0;
  margin-bottom: 25px;
  padding: 4%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout02 .layout02_box:nth-child(even) {
  margin-right: 0;
}

.layout02 .layout02_box .layout02_text {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.5;
  text-align: center;
}

.layout02 .layout02_text img {
  width: 100%;
  height: auto;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
.layout03 {
  margin: 0 0 15px;
}

.layout03 .layout03_box {
  display: flex;
  margin-bottom: 20px;
  padding: 2%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout03 .layout03_title {
  display: flex;
  align-items: center;
  width: 27%;
  padding: 1%;
  border-radius: 10px;
  background: #fff;
  line-height: 1.5;
  text-align: center;
}

.layout03 .layout03_title p {
  margin-bottom: 0;
}

.layout03 .layout03_title img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.layout03 .layout03_text {
  width: 73%;
  padding: 1% 3%;
}

/* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
.layout04 {
  margin: 0 0 15px;
}

.layout04 .layout04_box {
  display: flex;
  margin-bottom: 20px;
  padding: 2%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout04 .layout04_title {
  display: flex;
  align-items: center;
  width: 27%;
  padding-right: 2%;
}

.layout04 .layout04_title p {
  margin-bottom: 0;
}

.layout04 .layout04_title img {
  width: 100%;
  border-radius: 10px;
}

.layout04 .layout04_text {
  width: 73%;
  padding: 3%;
  border-radius: 10px;
  background: #fff;
}

/* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout05 {
  margin: 0 0 15px;
}

.layout05 .layout05_box {
  display: flex;
  margin-bottom: 20px;
  padding: 2%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout05 .layout05_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 2%;
  width: 25%;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.layout05 .layout05_title p {
  margin-bottom: 0;
}

.layout05 .layout05_title img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.layout05 .layout05_text1 {
  padding: 1% 3%;
  vertical-align: top;
}

.layout05 .layout05_text1:nth-child(2) {
  width: 40%;
}

.layout05 .layout05_text1:nth-child(3) {
  width: 40%;
  border-left: 1px solid var(--border-color);
}

.layout05 .layout05_title h4 {
  font-size: 18px;
}

.layout05 .layout05_text1 h5 {
  margin: 0 0 5px;
}

.layout05 .layout05_text1 h4 em,
.layout05 .layout05_text1 h5 em {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
}

.layout05_text1 ul {
  margin-bottom: 15px;
}

.layout05 ul.list03 li {
  margin: 0;
}

/* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
.layout06 {
  margin: 0 0 15px;
}

.layout06 .layout06_box {
  display: flex;
  position: relative;
  padding-bottom: 5px;
}

.layout06 .layout06_box::before {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout06 .layout06_box:last-child::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  border-top: 1px solid var(--border-color);
  content: "";
}

.layout06 .layout06_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 30%;
  padding: 0 3%;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
  color: var(--main-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 120%;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.layout06 .layout06_title h4 {
  color: var(--main-color);
  text-align: center;
}

.layout06 .layout06_box:last-of-type {
  padding: 0;
}

/* 数字 */
.layout06 .layout06_title em {
  display: block;
  width: 100%;
  margin: 0 8px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 170%;
  letter-spacing: 0.14em;
  line-height: 1;
}

.layout06 .layout06_text1 {
  padding: 2% 3%;
  vertical-align: top;
}

.layout06 .layout06_text1:nth-child(2) {
  width: 35%;
}

.layout06 .layout06_text1:nth-child(3) {
  width: 35%;
  border-left: 1px solid #e2e2e2;
}

.layout06 .layout06_text1 h5 {
  margin: 0 0 5px;
  font-size: 18px;
}

/* 3つ並びのレイアウト。 */
.layout07 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 0 15px;
}

.layout07::after {
  display: block;
  clear: both;
  content: "";
}

.layout07 .layout07_box {
  width: 32%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 3%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout07 .layout07_box:nth-child(3n) {
  margin-right: 0;
}

.layout07 .layout07_box .layout07_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  text-align: center;
}

.layout07 .layout07_box .layout07_title em {
  margin-right: 8px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
  letter-spacing: 0.14em;
}

.layout07 .layout07_box .layout07_text {
  line-height: 1.5;
}

/* 3つ並びのレイアウト。矢印付き */
.layout08 {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 0 15px;
}

.layout08 .layout08_box {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  padding: 3%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout08 .layout08_box:last-child {
  margin-right: 0;
}

.layout08 .layout08_box::before {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0px;
  width: 7px;
  height: 7px;
  transform: rotate(135deg);
  margin: auto;
  background-color: transparent;
  border-top: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  content: "";
}

.layout08 .layout08_box:last-child::before {
  display: none;
}

.layout08 .layout08_box .layout08_title {
  margin-bottom: 7px;
  padding-bottom: 7px;
  border-bottom: 1px dashed #ddd;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  text-align: center;
}

.layout08 .layout08_box .layout08_title em {
  margin-right: 8px;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.14em;
}

.layout08 .layout08_box .layout08_text {
  line-height: 1.5;
}

/* 1つ並びで2列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
.layout09 {
  margin: 0 0 15px;
}

.layout09 .layout09_box {
  display: flex;
  margin-bottom: 20px;
  padding: 2%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.layout09 .layout09_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 2%;
  width: 27%;
  border-radius: 10px;
  background: #fff;
  text-align: center;
}

.layout09 .layout09_title p {
  margin-bottom: 0;
}

.layout09 .layout09_title img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

.layout09 .layout09_text1 {
  width: 73%;
  padding: 1% 3%;
  vertical-align: top;
}

.layout09 .layout09_title h4 {
  font-size: 18px;
}

.layout09 .layout09_text1 h5 {
  margin: 0 0 5px;
}

.layout09 .layout09_text1 h4 em,
.layout09 .layout09_text1 h5 em {
  margin-right: 10px;
  color: var(--sub-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 30px;
}

.layout09_text1 ul {
  margin-bottom: 15px;
}

.layout09 ul.list03 li {
  margin: 0;
}

/* layout10 */
.layout10 {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.layout10 .flow_box {
  position: relative;
  display: flex;
  padding: 32px;
  background: #fff;
}

.layout10 .flow_box::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 60px;
  width: 4px;
  height: calc(100% - 4px);
  margin: auto;
  border-right: var(--sub-color) dotted 4px;
  content: "";
}

.layout10 .flow_box:first-child::before {
  top: 32px;
  bottom: auto;
  height: calc(100% - 34px);
}

.layout10 .flow_box:last-child::before {
  top: 2px;
  bottom: auto;
  height: 86px;
}

.layout10 .flow_box:nth-child(odd) {
  background: var(--bg-color);
}

.layout10 .flow_box:nth-child(even) {
  background: #f1f8fd;
}

.layout10 .flow_box .number {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  margin-right: 4%;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.14em;
  line-height: 1;
}

.layout10 .flow_box .layout10_box {
  width: 90%;
}

.layout10 .flow_box .layout10_text .title {
  margin-top: 24px;
  padding: 12px 18px;
  border-radius: 5px;
  background: var(--main-color);
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.layout10 .flow_box .layout10_text .title span {
  position: relative;
}

.layout10 .flow_box .layout10_text .title span::after {
  display: inline-block;
  margin: 0 12px;
  content: "|";
}

.layout10 .flow_box .layout10_text .title2 {
  margin-bottom: 10px;
  padding-bottom: 2px;
  padding-top: 16px;
  border-bottom: 1px dashed rgba(35, 24, 21, 0.4);
  font-size: 18px;
}

.layout10 .flow_box .layout10_text .list03 {
  margin-top: 8px;
}

.layout10 .flow_box .layout10_text .list03 li {
  margin-bottom: 0;
}

.layout10 .flow_box .layout10_text .list03 li::before {
  border: 1px solid var(--main-color);
  background: var(--main-color);
}

.layout10 .flow_box .layout10_text .list_column {
  display: flex;
  flex-wrap: wrap;
}

.layout10 .flow_box .layout10_text .list_column li {
  margin-right: 5%;
}

/* layout11 */
.layout11 {
  position: relative;
}

.layout11_box {
  padding: 8px;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

[class^="layout11_image"] p {
  margin-bottom: 0;
}

[class^="layout11_image"] img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

[class^="layout11_text"] {
  margin-top: 8px;
}

[class^="layout11_text"] dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

[class^="layout11_text"] dl dt {
  width: 20%;
  margin-bottom: 2px;
  padding: 12px;
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

[class^="layout11_text"] dl dd {
  width: 80%;
  margin-bottom: 2px;
  padding: 12px;
  border: 1px solid var(--main-color);
  background: #fff;
}

[class^="layout11_text"] .desc {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--main-color);
}

[class^="layout11_text"] .desc p {
  margin-bottom: 0;
}

/* layout11 ver.1 */
.layout11_text01 dl dt {
  margin-left: 0;
}

/* layout11 ver.2 */
.layout11_image02 {
  display: flex;
  justify-content: space-between;
}

.layout11_image02 span {
  display: block;
  position: relative;
  width: 47%;
}

.layout11_image02 span:last-child::before {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -42px;
  margin: auto;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  content: "\f054";
}

.layout11_text02 dl {
  width: 100%;
}

.layout11_text02 dl dt {
  width: 15%;
  margin-left: 2px;
  margin-bottom: 2px;
}

.layout11_text02 dl dt:nth-of-type(odd) {
  margin-left: 0;
}

.layout11_text02 dl dd {
  width: calc(35% - 1px);
}

.layout11_text02 .desc {
  width: 100%;
}

/* 注意書き */
.caution {
  display: block;
  position: relative;
  padding: 25px;
  border-radius: 15px;
  background: var(--bg-color);
}

.caution .pop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -15px;
  left: -5px;
  z-index: 2;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--sub-color);
  color: #fff;
  font-size: 25px;
  font-weight: 600;
}

.caution .pop::before {
  position: absolute;
  right: -3px;
  z-index: 1;
  width: 15px;
  height: 20px;
  bottom: -3px;
  margin: auto;
  background-color: var(--sub-color);
  -webkit-clip-path: polygon(100% 85%, 40% 0, 0 53%);
  clip-path: polygon(100% 85%, 40% 0, 0 53%);
  content: "";
}

.caution p:nth-of-type(1) {
  margin: 0 0 15px;
  padding: 0 0 0 40px;
  color: var(--main-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  font-size: 18px;
}

/*-------------------- table --------------------*/
td img.aligncenter,
th img.aligncenter {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 !important;
}

table {
  text-align: initial;
}

table th p,
table td p {
  margin: 0 !important;
}

/* テーブル1 */
.tb01 {
  width: 100%;
  margin: 10px 0;
  border-spacing: 0;
  border-collapse: collapse;
}

.tb01 tr {
  display: flex;
  border-bottom: 1px dotted var(--border-color);
  vertical-align: middle;
}

.tb01 th {
  width: 25%;
  font-weight: normal;
  text-align: left;
}

.tb01 td {
  font-weight: normal;
  text-align: left;
}

.tb01 th + td {
  width: 75%;
}

/* 診療時間 */
.tb02_tit {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

.tb02 {
  width: 100%;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
}

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

.tb02 tr:nth-of-type(1) {
  background: var(--main-color);
}

.tb02 th,
.tb02 td {
  padding: 21px 0;
  color: #727171;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

.tb02 th {
  width: 34%;
  padding-left: 30px !important;
  text-align: left;
}

.tb02 td {
  text-align: center;
}

.tb02 td:last-child {
  padding-right: 5px !important;
}

.tb02 tr:nth-of-type(1) th,
.tb02 tr:nth-of-type(1) td {
  padding: 13px 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.15em;
}

.tb02 tr:nth-of-type(3) th,
.tb02 tr:nth-of-type(3) td {
  padding: 0 0 31px;
}

.tb02 tr:nth-of-type(3) td:nth-of-type(6),
.tb02 tr:nth-of-type(3) td:nth-of-type(7) {
  color: var(--main-color);
}

.schedule_note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 28px;
  color: #727171;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.15em;
}

.schedule_note p span {
  color: var(--main-color);
}

.kyushinbi {
  margin-right: 35px;
  color: var(--main-color);
  font-weight: 700;
}

/* 本文中のテーブル */
.tb03 {
  width: 100%;
  background: var(--border-color);
  border-spacing: 1px;
  border-collapse: separate;
}

.tb03 td,
.tb03 th {
  padding: 8px 20px;
}

.tb03 th {
  background: var(--bg-color);
  font-weight: bold;
  text-align: left;
}

.tb03 th span {
  font-size: 13px;
}

.tb03 td {
  background: #fff;
  text-align: center;
}

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

  *フリーエリア（上・下）

==================================================================================================================================*/
.sec_freearea_up .text,
.sec_freearea_under .text {
  margin-bottom: 0;
}

.sec_freearea_up h2,
.sec_freearea_under h2 {
  margin-top: 0;
}

.sec_freearea_up h3,
.sec_freearea_under h3 {
  margin: 0 0 20px;
}

.freearea_up:after,
.freearea_under:after {
  display: block;
  clear: both;
  content: "";
}

.freearea_up_img img,
.freearea_under_img img {
  display: block;
  width: 100%;
  max-width: 408px;
  height: auto;
  margin: 0 auto 10px;
}

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

  *医師紹介

==================================================================================================================================*/
.doctor_greeting_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 20px;
}

.doctor_greeting_center {
  margin-bottom: 20px;
}

.doctor_greeting_center .text {
  margin-bottom: 0;
}

.doctor_greeting_flex .text {
  width: 67%;
  margin: 0;
  color: #727171;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.15em;
}

.doctor_greeting_flex .text_w100 {
  width: 100%;
  margin-bottom: 0;
}

.text_w100 > p:not(:last-child) {
  margin-bottom: 22px;
}

.doctor_img {
  width: 30%;
  margin-bottom: 20px;
}

.doctor_img img {
  border-radius: 15px;
}

@media print, screen and (min-width: 641px) {
  .doctor_greeting_center .doctor_img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
}

/*---------- キャッチコピー ----------*/
.doctor_greeting_flex .text p {
  margin-bottom: 30px;
}

.doctor_catch {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.doctor_catch p {
  position: relative;
  margin-bottom: 33px !important;
}

.doctor_catch p::before {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 92%;
  height: 2px;
  background: var(--border-color);
  content: "";
}

.doctor_catch p::after {
  display: block;
  width: 34px;
  height: 8px;
  margin-top: 15px;
  background: url("/wp-content/uploads/ttl_deco02.png") no-repeat left / contain;
  content: "";
}

/*---------- 署名 ----------*/
.doctor_name {
  color: #727171;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: right;
}

.text .doctor_name p {
  margin-bottom: 0;
}

.doctor_name .carr {
  margin-bottom: 10px !important;
  font-size: 100%;
}

.doctor_name .carr span {
  font-size: 100%;
}

.doctor_name .name {
  font-size: 100%;
}

.doctor_name .name span {
  font-size: 100%;
}

.doctor_name .name span:first-child {
  margin-right: 10px;
}

.doctor_name .name span.furigana {
  font-size: 90%;
}

.doctor_greeting_center .doctor_name {
  text-align: center;
}

/*---------- 経歴・資格 ----------*/
.doctor_carr_box {
  width: 100%;
  margin-bottom: 15px;
  padding: 3%;
  border-radius: 10px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
}

.doctor_carr_box .text p {
  margin-bottom: 0;
}

/*---------- 院長紹介その他 ----------*/
.sec_doctor_etc {
  width: 100%;
}

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

  *診療案内

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

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

  *病名から探す

==================================================================================================================================*/
.disease_flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.disease_flex .text {
  margin: 0 auto;
}

.disease_flex .disease_flex_left {
  width: 30%;
}

.disease_flex .disease_flex_right {
  width: 68%;
}

.disease_w100 .disease_flex_right {
  width: 100%;
}

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

  *症状から探す

==================================================================================================================================*/
.symptom_item {
  margin-bottom: 60px;
}

.symptom_flex .btn01 {
  margin-top: 16px;
  text-align: right;
}

.symptom_flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.symptom_flex .text {
  margin: 0 auto;
}

.symptom_flex .symptom_flex_left {
  width: 30%;
}

.symptom_flex .symptom_flex_right {
  width: 68%;
}

.symptom_w100 .symptom_flex_right {
  width: 100%;
}

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

  *症例

==================================================================================================================================*/
/*------------------- 一覧ページ -------------------*/
.case_item {
  margin-bottom: 60px;
}

.case_flex .btn01 {
  margin-top: 16px;
  text-align: right;
}

.case_flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.case_flex .text {
  margin: 0 auto;
}

.case_flex .case_flex_left {
  width: 30%;
}

.case_flex .case_flex_right {
  width: 68%;
}

.case_w100 .case_flex_right {
  width: 100%;
}

/*------------------- コンテンツページ -------------------*/
.box_case {
  padding: 10px;
  background: var(--bg-color);
}

.box_case .title {
  margin-bottom: 10px;
  background: var(--main-color);
}

.box_case .title h2 {
  margin: 0;
  padding: 8px;
  border: none;
  color: #fff;
  font-size: 140%;
  text-align: center;
}

.box_case .title h2::after {
  display: none;
}

.box_case .images {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.box_case .images > p {
  margin-top: 5px;
  width: 100%;
  line-height: 1.3;
}

.box_case .images .before,
.box_case .images .after {
  position: relative;
  width: calc(50% - 5px);
}

.box_case .images .before h3,
.box_case .images .after h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  padding: 24px 5px 8px;
  border-bottom: none;
  background: rgba(0, 0, 0, 0.6);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  text-align: center;
}

.box_case .images ul {
  position: relative;
  z-index: 0;
}

.box_case .images ul li:not(:first-child) {
  display: none;
}

.box_case .images ul li a {
  display: block;
  overflow: hidden;
}

.box_case .images ul li a img {
  width: 100%;
  height: 250px;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.2s;
}

.box_case .images ul li a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.box_case dl {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
  background: var(--main-color);
}

.box_case dl dt {
  align-self: center;
  width: 20%;
  padding: 10px;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.box_case dl dd {
  width: 80%;
  padding: 10px;
  border: 1px solid var(--main-color);
  background: #fff;
}

.box_case .caption {
  padding: 20px 10px;
  border: 1px solid var(--main-color);
  background: #fff;
}

.box_case .caption p {
  margin-bottom: 0;
}

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

  *医院案内

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

.clinic_desc dl {
  display: flex;
}

.clinic_desc dl dt {
  width: 20%;
  border-bottom: 1px dotted var(--border-color);
  color: #727171;
  padding: 15px;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
}

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

.clinic_facilities_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2%;
}

.facilities_item {
  width: 32%;
  margin-bottom: 15px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
  border-radius: 10px;
  overflow: hidden;
}

.facilities_item_img {
  overflow: hidden;
  background-color: var(--bg-color);
}

.facilities_item_img img {
  max-height: 260px;
  margin: 0 auto;
  display: block;
}

.facilities_item dd {
  padding: 15px;
}

.facilities_item dd h3 {
  display: table;
  font-size: 20px;
}

.facilities_item dd h3::before {
  display: none;
}

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

  *料金表

==================================================================================================================================*/
/*共通仕様*/
.price_wrap > h3:nth-child(n + 2) {
  margin-top: 60px;
}

.price_table th.title,
.price_table_b th.title,
.price_table_c th.title {
  font-size: 120%;
  text-align: left;
}

/*---------------- 診療内容のテーブル ----------------*/
.price_table.price_table_medical tr td:nth-child(1) {
  width: 75%;
  text-align: left;
}

.price_table.price_table_medical tr td:nth-child(2) {
  width: 25%;
  text-align: center;
}

/*TYPE A -----------------------*/
.price_table {
  width: 100%;
  margin-bottom: 15px;
}

.price_table th {
  background: var(--bg-color);
  text-align: center;
}

.price_table tr td:nth-child(1) {
  width: 25%;
  text-align: center;
}

.price_table tr td:nth-child(2) {
  width: 60%;
}

.price_table tr td:nth-child(3) {
  width: 15%;
  white-space: nowrap;
  text-align: center;
}

.price_table th,
.price_table td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

/*TYPE B ----------------------*/
.price_table_b {
  width: 100%;
  margin-bottom: 15px;
}

.price_table_b th {
  background: var(--bg-color);
  text-align: center;
}

.price_table_b tr td:nth-child(1) {
  width: 25%;
  text-align: center;
}

.price_table_b tr td:nth-child(2) {
  width: 60%;
}

.price_table_b tr td:nth-child(3) {
  width: 15%;
  white-space: nowrap;
  text-align: center;
}

.price_table_b th,
.price_table_b td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

/*TYPE C ----------------------*/
.price_table_c {
  width: 100%;
  margin-bottom: 15px;
}

.price_table_c th {
  background: var(--bg-color);
  text-align: center;
}

.price_table_c tr td:nth-child(1) {
  width: 25%;
  text-align: center;
}

.price_table_c tr td:nth-child(2) {
  width: 60%;
}

.price_table_c tr td:nth-child(3) {
  width: 15%;
  white-space: nowrap;
  text-align: center;
}

.price_table_c th,
.price_table_c td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

.price_table_table_c_variableitem th {
  width: 30%;
}

.price_table_table_c_variableitem td {
  width: 70%;
}

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

  *FAQ

==================================================================================================================================*/
.faq_wrap dl {
  margin-bottom: 10px;
}

.faq_wrap dl dt {
  position: relative;
  margin: 0;
  padding: 15px;
  background-color: var(--bg-color);
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}

.faq_wrap dl dt:hover,
.faq_wrap dl dt:active,
.faq_wrap dl dt.open {
  background-color: var(--sub-color);
}

.faq_wrap dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: var(--border-color);
  transition: all 0.3s ease-in-out;
}

.faq_wrap dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: var(--border-color);
  transition: all 0.2s ease-in-out;
}

.faq_wrap dl dt.open::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq_wrap dl dt.open::after {
  opacity: 0;
}

.faq_wrap dl dd {
  padding: 15px;
}

.faq_wrap dl dt .faq_q {
  position: relative;
  padding: 0 35px 0 35px;
}

.faq_wrap dl dt .faq_q:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 7px;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 28px;
  color: var(--main-color);
  content: "Q.";
}

.open .faq_wrap dl dt .faq_q:before {
  color: #fff;
}

.faq_wrap dl dd .faq_a {
  position: relative;
  padding: 0 0 0 35px;
}

.faq_wrap dl dd .faq_a:before {
  position: absolute;
  top: 0;
  left: 0;
  margin-right: 7px;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  font-weight: normal;
  font-size: 28px;
  color: var(--sub-color);
  content: "A.";
}

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

  *求人案内

==================================================================================================================================*/
.recruit_img {
  float: right;
  margin-left: 50px;
  margin-top: 7px;
  margin-bottom: 15px;
}

.recruit_img img {
  width: 100%;
  max-width: 408px;
  height: auto;
}

.recruit_table {
  width: 100%;
  margin-bottom: 30px;
}

.recruit_table th {
  text-align: center;
  background-color: var(--bg-color);
  width: 20%;
}

.recruit_table th,
.recruit_table td {
  padding: 15px;
  border: 1px solid var(--border-color);
  vertical-align: middle;
}

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

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

  *アクセス

==================================================================================================================================*/
.map_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.map_flex_item {
  width: 49%;
}
.access_add {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.access_add dt {
  width: 14%;
}

.access_add dd {
  width: 86%;
}

.access_add dt i {
  color: var(--main-color);
}

.sec_access .googlemap {
  margin-bottom: 20px;
}

.access_desc {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.access_route ul {
  counter-reset: count 0;
}
@media print, screen and (min-width: 641px) {
  .access_route ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .access_route ul li {
    width: 48%;
  }
  .access_route ul li:not(:nth-child(-n + 2)) {
    margin-top: 25px;
  }
}

.access_route ul .access_route_titNone::before,
.access_route ul li .title {
  font-size: 120%;
  font-weight: bold;
}

.access_route ul .access_route_titNone::before,
.access_route ul li .title::before {
  display: block;
  content: counter(count);
  counter-increment: count 1;
  color: #fff;
  line-height: 1;
  padding: 4px 8px;
  background: var(--sub-color);
}

.access_route ul .access_route_titNone::before {
  width: fit-content;
  margin-bottom: calc(
    0.6em - 8px + 15px
  ); /*(title line-height) - (before padding上下) + (title margin-bottom)*/
}

.access_route ul li .title {
  position: relative;
  line-height: 1.6;
  padding-left: 2em;
  margin-bottom: 15px;
}

.access_route ul li .title::before {
  position: absolute;
  left: 0;
  top: 0;
}

.access_route .text:last-child {
  margin: 0;
}

.access_route ul li img {
  width: auto;
  max-height: 250px;
  display: block;
  margin: 0 auto 15px;
}

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

  *お知らせ

==================================================================================================================================*/
.news_list_wrap .news_item {
  border-bottom: 1px solid var(--border-color);
}

.news_info {
  padding: 30px 0;
}

/* 日付とカテゴリ名 */
.news_desc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.news_date {
  margin-right: 1em;
}

.news_cate em {
  display: inline-block;
  padding: 0 10px;
  min-width: 120px;
  border-radius: 15px;
  text-align: center;
}

/* タイトル */
.news_info h2 {
  margin: 20px 0 10px;
  padding: 0 0 8px;
  background: none;
  border-bottom: none;
  font-size: 120%;
  text-align: left;
}

.news_info h2:before,
.news_info h2:after {
  display: none;
}

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

  *ブログ

==================================================================================================================================*/
/*----------ブログ共通パーツ----------*/
/* 日付・カテゴリ */
.blog_category i {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 5px;
  color: var(--main-color);
}

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

@media (hover: hover) {
  .blog_category li a:hover {
    color: var(--main-color);
  }
}

/* ページャー */
.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-left: 10px;
  margin-top: 40px;
}
.page-numbers {
  min-width: 2.5em;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-right: 10px;
  margin-bottom: 10px;
}
.page-numbers.current,
a.page-numbers:hover {
  background: var(--main-color);
  color: #fff;
}
a.page-numbers {
  text-decoration: none;
  transition: all 0.2s linear;
  background: var(--bg-color);
  color: var(--main-color);
}

.pager a:active {
  box-shadow: 1px 1px 3px -1px rgba(0, 0, 0, 0.55);
}

/*----------記事一覧----------*/
@media print, screen and (min-width: 641px) {
  .blog_list {
    display: flex;
    flex-flow: wrap;
    gap: 30px 18px;
  }
}

.blog_list_item {
  border-top: 4px solid var(--main-color); /*記事ボックスの上の色*/
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 20px 15px 25px;
  background-color: #fff;
}
@media print, screen and (min-width: 641px) {
  .blog_list_item {
    display: flex;
    flex-flow: column;
    width: calc((100% - 36px) / 3);
  }
}

/* サムネイル */
.blog_list_item_thum {
  text-align: center;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 641px) {
  .blog_list_item_thum {
    max-height: 150px;
    aspect-ratio: 240 / 150;
  }
}
@media print, screen and (min-width: 641px) {
  .blog_list_item_thum img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* タイトル */
.blog_list_item_tit {
  /* reset css */
  display: block;
  position: static;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  padding: 0;
  line-height: inherit;
  font-weight: inherit;
  border: none;
  background: none;
  opacity: 1;
  width: auto;
  height: auto;
  border-radius: 0;
  text-align: left;
  color: inherit;
  overflow: visible;
  letter-spacing: inherit;
  text-shadow: none;
  box-shadow: none;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 15px;
}

.blog_list_item_tit::before,
.blog_list_item_tit::after {
  display: none;
}

.blog_list_item .blog_category {
  font-size: 87%;
  line-height: 1.5;
  margin-bottom: 40px;
}

.blog_list_item .blog_category li:not(:last-child) {
  margin-bottom: 5px;
}

.blog_list_item_text {
  margin-bottom: 15px;
}

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

.blog_list_item > .btn01 a {
  margin: 0;
}

/*----------記事----------*/
/* サムネイル */
.blog_single_thum {
  margin: 0 auto 30px;
  text-align: center;
}
.blog_single_thum img {
  width: auto;
  max-height: 700px;
}

/* 目次 */
#toc_container {
  margin-bottom: 50px;
  padding: 25px 30px;
  background: var(--bg-color);
}
.toc_title {
  font-size: 120%;
  font-weight: bold;
  line-height: 1.6;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 15px;
}
.toc_list {
  font-size: 93%;
}
.toc_list a {
  color: var(--text-color);
}
@media (hover: hover) {
  .toc_list a:hover {
    color: var(--sub-color);
  }
}
.toc_list > li:not(:last-child) {
  margin-bottom: 10px;
}
.toc_list > li ul {
  padding-left: 10px;
}
.toc_list > li ul li a::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}

/*--------------------ブログ エディター用--------------------*/
.alignleft {
  display: inline;
  float: left;
}

.alignright {
  display: inline;
  float: right;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
  margin: 0.4em 1.6em 1.6em 0;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
  margin: 0.4em 0 1.6em 1.6em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em;
}

.wp-caption.alignleft,
.wp-caption.alignright,
.wp-caption.aligncenter {
  margin-bottom: 1.2em;
}

/*整形済みテキスト*/
.blog_single_text pre {
  font-weight: 400;
  margin-top: 20px;
  padding: 20px;
  background-color: var(--bg-color);
  color: #7f7f7f;
  overflow: auto;
}

/*引用*/
.blog_single_text blockquote {
  position: relative;
  color: #3f3f3f;
  margin-top: 20px;
  padding: 20px 20px 20px 70px;
  background-color: var(--bg-color);
}

.blog_single_text blockquote::before {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: "icomoon";
  content: "\e909";
  font-size: 3rem;
  color: #d9d9d9;
}

.blog_single_text blockquote *:first-child {
  margin-top: 0;
}

/*ライン*/
.blog_single_text hr {
  margin-top: 40px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/*----------サイド----------*/
.side_blog_item:not(:last-child) {
  border-bottom: 1px solid var(--border-color);
}

.side_blog_item a {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.side_blog_item_thum {
  width: 100px;
  height: 100px;
  overflow: hidden;
}

.side_blog_item_thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (hover: hover) {
  .side_blog_item_thum img {
    transition: transform 0.2s;
  }
  .side_blog_item a:hover .side_blog_item_thum img {
    transform: scale(1.1);
  }
}

.side_blog_item_title {
  flex: 1;
  line-height: 1.8;
}
@media print, screen and (min-width: 641px) {
  .side_blog_item_title {
    font-size: 93%;
  }
}

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

  MPクラウド

==================================================================================================================================*/
.sec_mpcloud {
  padding: 0 !important;
}
#mpcloud_schedule {
  width: 220px;
  position: fixed;
  bottom: 15px;
  left: 22px;
  background-color: rgba(255, 255, 255, 1);
  z-index: 999999999;
  border-radius: 15px;
}
#mpcloud_schedule section {
  border-radius: 15px;
  box-shadow: 0 8px 22px 8px rgba(0, 0, 0, 0.1);
}
.shcedule_box {
  box-shadow: 0 8px 22px 8px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  letter-spacing: 0.06em;
  border-radius: 15px;
}
.shcedule_title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  padding: 3px 0 0;
}
.shcedule_title i {
  position: relative;
  top: -2px;
  right: -25px;
  font-style: normal;
  font-size: 12px;
  cursor: pointer;
}
.schedule_time {
  margin: 8px 0 0 0;
}
.schedule_time dt {
  font-weight: bold;
}
.shcedule_box dt {
  background: var(--border-color);
  text-align: center;
}
.shcedule_box dd {
  height: auto;
  vertical-align: top;
  text-align: center;
}
.shcedule_today {
  padding: 10px 16px;
}
.schedule_comment {
  border-top: 1px solid var(--border-color);
  padding: 8px 12px;
  font-size: 14px;
  max-height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
}
/*==================================================================================================================================

  *RIBON

==================================================================================================================================*/
.ribon-link {
  background-color: #fa6565;
  background-image: url(images/ribon_banner.png);
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  height: auto;
  max-width: 300px;
  text-decoration: none;
  transition: 0.3s;
  width: 100%;
}

.ribon-link::before {
  content: "";
  display: block;
  padding-top: 36%;
}

.ribon-link:hover {
  opacity: 0.75;
  transition: 0.3s;
}

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

  *お問い合わせ

==================================================================================================================================*/
.contact {
  width: 700px;
  margin: 0 auto;
}

.contact form {
  margin: 50px 0 0;
}

.contact p {
  margin: 15px 0 0;
}

.contact label {
  margin: 30px 0 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--main-color);
}

.contact input,
.contact textarea {
  width: 100%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  padding: 16px 8px;
}

.contact input[type="submit"] {
  color: var(--main-color);
  border: 1px solid var(--main-color);
  width: 50%;
  margin: 0 auto;
  display: block;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

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

  *common

==================================================================================================================================*/
.sp {
  display: none !important;
}
.pc_inline {
  display: inline !important;
}
.pc_table,
.sp_flex,
.sp_inline,
.sp_inline_ip,
.sp_table {
  display: none !important;
}
.w010par {
  width: 10%;
}
.w020par {
  width: 20%;
}
.w025par {
  width: 25%;
}
.w050par {
  width: 50%;
}
.w075par {
  width: 75%;
}
.w100par {
  width: 100%;
}
.w010 {
  width: 10px !important;
}
.w020 {
  width: 20px !important;
}
.w030 {
  width: 30px !important;
}
.w040 {
  width: 40px !important;
}
.w050 {
  width: 50px !important;
}
.w060 {
  width: 60px !important;
}
.w070 {
  width: 70px !important;
}
.w080 {
  width: 5pc !important;
}
.w090 {
  width: 90px !important;
}
.w100 {
  width: 75pt !important;
}
.w110 {
  width: 110px !important;
}
.w120 {
  width: 90pt !important;
}
.w130 {
  width: 130px !important;
}
.w140 {
  width: 140px !important;
}
.w150 {
  width: 150px !important;
}
.w160 {
  width: 10pc !important;
}
.w170 {
  width: 170px !important;
}
.w180 {
  width: 180px !important;
}
.w190 {
  width: 190px !important;
}
.w200 {
  width: 200px !important;
}
.w210 {
  width: 210px !important;
}
.w220 {
  width: 220px !important;
}
.w230 {
  width: 230px !important;
}
.w240 {
  width: 15pc !important;
}
.w250 {
  width: 250px !important;
}
.w255 {
  width: 255px !important;
}
.w260 {
  width: 260px !important;
}
.w270 {
  width: 270px !important;
}
.w280 {
  width: 280px !important;
}
.w290 {
  width: 290px !important;
}
.w300 {
  width: 300px !important;
}
.w305 {
  width: 305px !important;
}
.w310 {
  width: 310px !important;
}
.w320 {
  width: 20pc !important;
}
.w330 {
  width: 330px !important;
}
.w340 {
  width: 340px !important;
}
.w350 {
  width: 350px !important;
}
.w360 {
  width: 360px !important;
}
.w365 {
  width: 365px !important;
}
.w370 {
  width: 370px !important;
}
.w380 {
  width: 380px !important;
}
.w390 {
  width: 390px !important;
}
.w400,
.w410 {
  width: 25pc !important;
}
.w415 {
  width: 415px !important;
}
.w420 {
  width: 420px !important;
}
.w430 {
  width: 430px !important;
}
.w435 {
  width: 435px !important;
}
.w440 {
  width: 440px !important;
}
.w450 {
  width: 450px !important;
}
.w460 {
  width: 460px !important;
}
.w470 {
  width: 470px !important;
}
.w480 {
  width: 5in !important;
}
.w490 {
  width: 490px !important;
}
.w500 {
  width: 500px !important;
}
.w510 {
  width: 510px !important;
}
.w520 {
  width: 520px !important;
}
.w530 {
  width: 530px !important;
}
.w540 {
  width: 540px !important;
}
.w550 {
  width: 550px !important;
}
.w560 {
  width: 35pc !important;
}
.w570 {
  width: 570px !important;
}
.w580 {
  width: 580px !important;
}
.w590 {
  width: 590px !important;
}
.w600 {
  width: 600px !important;
}
.w610 {
  width: 610px !important;
}
.w620 {
  width: 620px !important;
}
.w630 {
  width: 630px !important;
}
.w640 {
  width: 40pc !important;
}
.w650 {
  width: 650px !important;
}
.w660 {
  width: 660px !important;
}
.w670 {
  width: 670px !important;
}
.w680 {
  width: 680px !important;
}
.w690 {
  width: 690px !important;
}
.w700 {
  width: 700px !important;
}
.w710 {
  width: 710px !important;
}
.w720 {
  width: 45pc !important;
}
.w730 {
  width: 730px !important;
}
.w740 {
  width: 740px !important;
}
.w750 {
  width: 750px !important;
}
.w760 {
  width: 760px !important;
}
.w765 {
  width: 765px !important;
}
.w960 {
  width: 60pc !important;
}
.w980 {
  width: 980px !important;
}
.h030 {
  height: 30px !important;
}
.h180 {
  height: 180px !important;
}
.h190 {
  height: 190px !important;
}
.h200 {
  height: 200px !important;
}
.h240 {
  height: 15pc !important;
}
.h250 {
  height: 250px !important;
}
.h280 {
  height: 280px !important;
}
.h300 {
  height: 300px !important;
}
.h350 {
  height: 350px !important;
}
.mt00 {
  margin-top: 0 !important;
}
.mt01 {
  margin-top: 1px !important;
}
.mt02 {
  margin-top: 2px !important;
}
.mt03 {
  margin-top: 3px !important;
}
.mt04 {
  margin-top: 4px !important;
}
.mt05 {
  margin-top: 5px !important;
}
.mt06 {
  margin-top: 6px !important;
}
.mt07 {
  margin-top: 7px !important;
}
.mt08 {
  margin-top: 8px !important;
}
.mt09 {
  margin-top: 9px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt45 {
  margin-top: 45px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mt60 {
  margin-top: 60px !important;
}
.mt70 {
  margin-top: 70px !important;
}
.mt80 {
  margin-top: 5pc !important;
}
.mt90 {
  margin-top: 90px !important;
}
.mt100 {
  margin-top: 75pt !important;
}
.mt110 {
  margin-top: 110px !important;
}
.mt120 {
  margin-top: 90pt !important;
}
.mr00 {
  margin-right: 0 !important;
}
.mr01 {
  margin-right: 1px !important;
}
.mr02 {
  margin-right: 2px !important;
}
.mr03 {
  margin-right: 3px !important;
}
.mr04 {
  margin-right: 4px !important;
}
.mr05 {
  margin-right: 5px !important;
}
.mr06 {
  margin-right: 6px !important;
}
.mr07 {
  margin-right: 7px !important;
}
.mr08 {
  margin-right: 8px !important;
}
.mr09 {
  margin-right: 9px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.mr60 {
  margin-right: 60px !important;
}
.mr70 {
  margin-right: 70px !important;
}
.mr80 {
  margin-right: 5pc !important;
}
.mr90 {
  margin-right: 90px !important;
}
.mr100 {
  margin-right: 75pt !important;
}
.mb00 {
  margin-bottom: 0 !important;
}
.mb01 {
  margin-bottom: 1px !important;
}
.mb02 {
  margin-bottom: 2px !important;
}
.mb03 {
  margin-bottom: 3px !important;
}
.mb04 {
  margin-bottom: 4px !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb06 {
  margin-bottom: 6px !important;
}
.mb07 {
  margin-bottom: 7px !important;
}
.mb08 {
  margin-bottom: 8px !important;
}
.mb09 {
  margin-bottom: 9px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb45 {
  margin-bottom: 45px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 5pc !important;
}
.mb90 {
  margin-bottom: 90px !important;
}
.mb100 {
  margin-bottom: 75pt !important;
}
.ml00 {
  margin-left: 0 !important;
}
.ml01 {
  margin-left: 1px !important;
}
.ml02 {
  margin-left: 2px !important;
}
.ml03 {
  margin-left: 3px !important;
}
.ml04 {
  margin-left: 4px !important;
}
.ml05 {
  margin-left: 5px !important;
}
.ml06 {
  margin-left: 6px !important;
}
.ml07 {
  margin-left: 7px !important;
}
.ml08 {
  margin-left: 8px !important;
}
.ml09 {
  margin-left: 9px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml12 {
  margin-left: 9pt !important;
}
.ml15 {
  margin-left: 15px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml30 {
  margin-left: 30px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.ml70 {
  margin-left: 70px !important;
}
.ml80 {
  margin-left: 5pc !important;
}
.ml90 {
  margin-left: 90px !important;
}
.ml100 {
  margin-left: 75pt !important;
}
.ml140 {
  margin-left: 140px !important;
}
.ml160 {
  margin-left: 10pc !important;
}
.ma10 {
  margin: 10px !important;
}
.ma15 {
  margin: 15px !important;
}
.ma_auto {
  margin-left: auto;
  margin-right: auto;
}
.pt00 {
  padding-top: 0 !important;
}
.pt01 {
  padding-top: 1px !important;
}
.pt02 {
  padding-top: 2px !important;
}
.pt03 {
  padding-top: 3px !important;
}
.pt04 {
  padding-top: 4px !important;
}
.pt05 {
  padding-top: 5px !important;
}
.pt06 {
  padding-top: 6px !important;
}
.pt07 {
  padding-top: 7px !important;
}
.pt08 {
  padding-top: 8px !important;
}
.pt09 {
  padding-top: 9px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt15 {
  padding-top: 15px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt25 {
  padding-top: 25px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pt35 {
  padding-top: 35px !important;
}
.pt40 {
  padding-top: 40px !important;
}
.pt45 {
  padding-top: 45px !important;
}
.pt50 {
  padding-top: 50px !important;
}
.pt60 {
  padding-top: 60px !important;
}
.pt70 {
  padding-top: 70px !important;
}
.pt80 {
  padding-top: 5pc !important;
}
.pt90 {
  padding-top: 90px !important;
}
.pt100 {
  padding-top: 75pt !important;
}
.pt120 {
  padding-top: 90pt !important;
}
.pr00 {
  padding-right: 0 !important;
}
.pr01 {
  padding-right: 1px !important;
}
.pr02 {
  padding-right: 2px !important;
}
.pr03 {
  padding-right: 3px !important;
}
.pr04 {
  padding-right: 4px !important;
}
.pr05 {
  padding-right: 5px !important;
}
.pr06 {
  padding-right: 6px !important;
}
.pr07 {
  padding-right: 7px !important;
}
.pr08 {
  padding-right: 8px !important;
}
.pr09 {
  padding-right: 9px !important;
}
.pr10 {
  padding-right: 10px !important;
}
.pr15 {
  padding-right: 15px !important;
}
.pr20 {
  padding-right: 20px !important;
}
.pr25 {
  padding-right: 25px !important;
}
.pr30 {
  padding-right: 30px !important;
}
.pr35 {
  padding-right: 35px !important;
}
.pr40 {
  padding-right: 40px !important;
}
.pr45 {
  padding-right: 45px !important;
}
.pr50 {
  padding-right: 50px !important;
}
.pr60 {
  padding-right: 60px !important;
}
.pr70 {
  padding-right: 70px !important;
}
.pr80 {
  padding-right: 5pc !important;
}
.pr90 {
  padding-right: 90px !important;
}
.pr100 {
  padding-right: 75pt !important;
}
.pb00 {
  padding-bottom: 0 !important;
}
.pb01 {
  padding-bottom: 1px !important;
}
.pb02 {
  padding-bottom: 2px !important;
}
.pb03 {
  padding-bottom: 3px !important;
}
.pb04 {
  padding-bottom: 4px !important;
}
.pb05 {
  padding-bottom: 5px !important;
}
.pb06 {
  padding-bottom: 6px !important;
}
.pb07 {
  padding-bottom: 7px !important;
}
.pb08 {
  padding-bottom: 8px !important;
}
.pb09 {
  padding-bottom: 9px !important;
}
.pb10 {
  padding-bottom: 10px !important;
}
.pb15 {
  padding-bottom: 15px !important;
}
.pb20 {
  padding-bottom: 20px !important;
}
.pb25 {
  padding-bottom: 25px !important;
}
.pb30 {
  padding-bottom: 30px !important;
}
.pb35 {
  padding-bottom: 35px !important;
}
.pb40 {
  padding-bottom: 40px !important;
}
.pb45 {
  padding-bottom: 45px !important;
}
.pb50 {
  padding-bottom: 50px !important;
}
.pb60 {
  padding-bottom: 60px !important;
}
.pb70 {
  padding-bottom: 70px !important;
}
.pb80 {
  padding-bottom: 5pc !important;
}
.pb90 {
  padding-bottom: 90px !important;
}
.pb100 {
  padding-bottom: 75pt !important;
}
.pl00 {
  padding-left: 0 !important;
}
.pl01 {
  padding-left: 1px !important;
}
.pl02 {
  padding-left: 2px !important;
}
.pl03 {
  padding-left: 3px !important;
}
.pl04 {
  padding-left: 4px !important;
}
.pl05 {
  padding-left: 5px !important;
}
.pl06 {
  padding-left: 6px !important;
}
.pl07 {
  padding-left: 7px !important;
}
.pl08 {
  padding-left: 8px !important;
}
.pl09 {
  padding-left: 9px !important;
}
.pl10 {
  padding-left: 10px !important;
}
.pl15 {
  padding-left: 15px !important;
}
.pl20 {
  padding-left: 20px !important;
}
.pl25 {
  padding-left: 25px !important;
}
.pl30 {
  padding-left: 30px !important;
}
.pl35 {
  padding-left: 35px !important;
}
.pl40 {
  padding-left: 40px !important;
}
.pl45 {
  padding-left: 45px !important;
}
.pl50 {
  padding-left: 50px !important;
}
.pl60 {
  padding-left: 60px !important;
}
.pl70 {
  padding-left: 70px !important;
}
.pl80 {
  padding-left: 5pc !important;
}
.pl90 {
  padding-left: 90px !important;
}
.pl100 {
  padding-left: 75pt !important;
}
.pa01 {
  padding: 1px !important;
}
.pa02 {
  padding: 2px !important;
}
.pa03 {
  padding: 3px !important;
}
.pa04 {
  padding: 4px !important;
}
.pa05 {
  padding: 5px !important;
}
.pa10 {
  padding: 10px !important;
}
.pa15 {
  padding: 15px !important;
}
.fr {
  float: right !important;
}
.fl {
  float: left !important;
}
.fr10 {
  float: right;
  margin-left: 10px !important;
}
.fr15,
.fr30 {
  float: right;
  margin-left: 15px !important;
}
.fl10 {
  float: left;
  margin-right: 10px !important;
}
.fl15 {
  float: left;
  margin-right: 15px !important;
}
.fl30 {
  float: left;
  margin-right: 30px !important;
}
.txt10 {
  font-size: 10px !important;
}
.txt11 {
  font-size: 11px !important;
}
.txt12 {
  font-size: 9pt !important;
}
.txt13 {
  font-size: 13px !important;
}
.txt14 {
  font-size: 14px !important;
}
.txt15 {
  font-size: 15px !important;
}
.txt16 {
  font-size: 1pc !important;
}
.txt17 {
  font-size: 17px !important;
}
.txt18 {
  font-size: 18px !important;
}
.txt19 {
  font-size: 19px !important;
}
.txt20 {
  font-size: 20px !important;
}
.txt21 {
  font-size: 21px !important;
}
.txt22 {
  font-size: 22px !important;
}
.txt23 {
  font-size: 23px !important;
}
.txt24 {
  font-size: 24px !important;
}
.txt25 {
  font-size: 25px !important;
}
.txt26 {
  font-size: 26px !important;
}
.txt27 {
  font-size: 27px !important;
}
.txt28 {
  font-size: 28px !important;
}
.txt29 {
  font-size: 29px !important;
}
.txt30 {
  font-size: 30px !important;
}
.txt31 {
  font-size: 31px !important;
}
.txt32 {
  font-size: 2pc !important;
}
.txt33 {
  font-size: 33px !important;
}
.txt34 {
  font-size: 34px !important;
}
.txt35 {
  font-size: 35px !important;
}
.txt36 {
  font-size: 36px !important;
}
.txt37 {
  font-size: 37px !important;
}
.txt38 {
  font-size: 38px !important;
}
.txt39 {
  font-size: 39px !important;
}
.txt40 {
  font-size: 40px !important;
}
.bold {
  font-weight: 700 !important;
}
.left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.right {
  text-align: right !important;
}
.clear {
  clear: both !important;
}
.v_top {
  vertical-align: top !important;
}
.v_mid {
  vertical-align: middle !important;
}
.v_btm {
  vertical-align: bottom !important;
}
.color_red {
  color: #f33 !important;
}
.color_pink {
  color: #ed8c96 !important;
}
.color_blue {
  color: #00408f !important;
}
.color_green {
  color: #479f9d !important;
}
.color_ore {
  color: #ff8327 !important;
}
.color_yellow {
  color: #ffeb8b !important;
}
.color_beige {
  color: #dac58b !important;
}
.color_brown {
  color: #9b8052 !important;
}
.color_navy {
  color: #1f2774 !important;
}
.color_black {
  color: #3e3a39 !important;
}
.ls_0 {
  letter-spacing: 0 !important;
}
.ls_1 {
  letter-spacing: 1px !important;
}
.indent {
  margin-left: 1em !important;
  text-indent: -1em !important;
}
.line_h_2 {
  line-height: 2 !important;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
.centering {
  display: table;
  margin: auto;
  text-align: left;
}

.img_fr {
  display: block;
  position: relative;
  float: right;
  margin-left: 30px;
  margin-bottom: 1em;
  text-align: center;
}

.img_fr img {
  border-radius: 3px;
  margin-bottom: 7px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.img_fr dd {
  padding-left: 20px;
  line-height: 1.3;
  font-size: 15px;
  font-weight: bold;
  color: #1f2774;
  text-align: left;
}

.img_fl {
  display: block;
  position: relative;
  float: left;
  margin-bottom: 1em;
  margin-right: 30px;
  text-align: center;
}

.img_fl img {
  border-radius: 3px;
  margin-bottom: 7px;
  max-width: 300px;
  max-height: 300px;
  width: auto;
  height: auto;
}

.img_fr + p:after {
  display: block;
  clear: both;
  content: "";
}

.float_clear {
  float: none !important;
}

br.sp_inline + br,
br.pc_inline + br,
br.sp + br,
br.pc + br {
  display: none;
}

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

  *ホーム

==================================================================================================================================*/
/*-------------------- 共通設定 --------------------*/
/* inner */
.home_inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* h2 */
body.home h2 {
  margin-bottom: 50px;
  padding: 0;
  color: var(--ttl-color);
  font-size: 18px;
}

body.home h2::before {
  width: auto;
  height: auto;
  margin-bottom: 10px;
  background: -webkit-linear-gradient(
    45deg,
    rgb(106, 175, 179) 0%,
    rgb(152, 192, 216) 100%
  );
  background: -moz-linear-gradient(
    45deg,
    rgb(106, 175, 179) 0%,
    rgb(152, 192, 216) 100%
  );
  background: linear-gradient(
    45deg,
    rgb(106, 175, 179) 0%,
    rgb(152, 192, 216) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #75bdc1;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.14em;
}

body.home h2::after {
  height: 8px;
  margin-top: 21px;
}

/* h3 */
body.home h3 {
}

body.home h3::before,
body.home h3::after {
  display: none;
}

/* btn01 */
body.home .btn01 a {
  margin: 0;
}

/*-------------------- メインビジュアル --------------------*/
.home_mv {
  position: relative;
  height: 900px;
  overflow: hidden;
}

.home_mv::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 172px;
  margin: auto;
  background: url("/wp-content/uploads/wave_blend.png") no-repeat center top /
    cover;
  content: "";
}

.home_mv .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  margin: 0 auto;
  width: 1200px;
}

.home_mv .slider-slide + .inner {
  width: 1036px;
}

.slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

/*　スライダー フェード　*/
.slider-fade .slick-slide img {
  width: 100%;
  height: 900px;
  -o-object-fit: cover;
  object-fit: cover;
}

/*　キャッチコピー　*/
.main_catch {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  max-width: 550px;
  height: 350px;
}

.catchcopy_tit {
  display: block;
  margin-bottom: 10px;
}

.catchcopy_tit span {
  display: inline-block;
  color: var(--text-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 9px #fff,
    0 0 12px #fff;
}

.catchcopy_text {
  display: block;
  margin-bottom: 10px;
}

.catchcopy_text span {
  display: inline-block;
  color: var(--text-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 9px #fff,
    0 0 12px #fff;
}

/*　キャッチコピー（スライドごと）　*/
.slide_catch {
  display: inline-block;
  position: absolute;
  top: 200px;
  left: calc((100% - 1200px) / 2);
  z-index: 1;
  color: var(--text-color);
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 34px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-shadow: 0 0 3px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 9px #fff,
    0 0 12px #fff;
}

/*　クリニック情報　*/
.info_bnr_flex {
  display: flex;
  position: absolute;
  bottom: 75px;
  left: 0;
}

.info_bnr {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid rgb(117, 170, 200, 0.45);
  overflow: hidden;
}

.info_bnr .inner {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: static;
  width: 100%;
  height: 100%;
  margin: auto;
  background: url("/wp-content/uploads/watercolor_blue_translucent.png")
    no-repeat center / cover;
}

.info_bnr p {
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
}

.info_bnr01 {
  /*width: 250px;
	height: 250px;*/
  width: 230px;
  height: 230px;
  border: 3px solid rgb(117, 182, 185, 0.45);
}

.info_bnr01 .inner {
  background: url("/wp-content/uploads/watercolor_green_translucent.png")
    no-repeat center / cover;
}

.info_bnr01 .open_tit {
  font-size: 32px !important;
  /*letter-spacing: 0.07em!important;*/
  letter-spacing: 0.1em !important;
  line-height: unset;
}

.open_date {
  margin-bottom: 12px;
}
.info_bnr01 .open_date {
  letter-spacing: 0.08em;
}

.sub_open_tit {
  margin-bottom: 12px;
  padding: 8px 70px 4px 70px;
  border-radius: 12.5px;
  background: #fff;
  color: #75b6b9 !important;
  font-size: 13px !important;
  line-height: 1 !important;
}

.sub_open_date,
.sub_open_txt {
  font-size: 16px !important;
}

.info_bnr02 {
  margin: 143px 0 0 -24px;
}

.info_bnr02 p::before {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin: -10px auto 12px;
  border-radius: 50%;
  background: #fff url("/wp-content/uploads/creditcard.svg") no-repeat center /
    58%;
  content: "";
}

/*　バナー　*/
.mv_bannar {
  position: absolute;
  top: 100px;
  right: 0;
  width: 550px;
  height: 110px;
  text-align: right;
}

.mv_bannar img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.mv_bannar a:hover {
  opacity: 0.8;
}

.mv_bannar .btn01 a {
  font-size: 120%;
}

/*　RIBONバナー　*/
.mv_ribon {
  position: absolute;
  bottom: 150px;
  left: 0;
}

/*-------------------- お知らせ --------------------*/
/* パターンE(pattern05) お知らせ+医院概要+アクセス */
/* お知らせ */
.top_news.pattern05 {
  position: relative;
}

@media print, screen and (min-width: 641px) {
  .top_news.pattern05 .home_inner {
    display: flex;
    justify-content: space-between;
    padding: 84px 0 80px;
  }

  .top_news.pattern05 .top_news_list,
  .top_news.pattern05 .top_news_frame {
    width: 750px;
  }
}

.top_news.pattern05 h2 {
  margin-bottom: 0;
  text-align: left;
}

.top_news.pattern05 h2::before {
  margin-bottom: 16px;
  font-size: 44px;
  text-align: left;
  content: "NEWS" !important;
}

.top_news.pattern05 h2::after {
  display: none;
}

.top_news.pattern05 .btn01 {
  margin-top: 6px;
  text-align: center;
}

.top_news.pattern05 .btn01 a {
  padding: 16px 13px 12px 29px;
  background: -webkit-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
}

.top_news.pattern05 .btn01 a::after {
  margin-left: 12px;
}

.top_news.pattern05 .btn01 a:hover {
  background: -webkit-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
}

.top_news.pattern05 .top_news_list {
  margin-top: 8px;
}

.top_news.pattern05 .top_news_list li {
  padding: 0 18px 18px;
  border-bottom: 1px solid #ebebeb;
  color: #727171;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.15em;
}

.top_news.pattern05 .top_news_list li:not(:last-child) {
  margin-bottom: 20px;
}

@media print, screen and (min-width: 641px) {
  .top_news.pattern05 .top_news_list li {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

.top_news.pattern05 .top_news_list li span {
  margin-right: 22px;
}

.top_news.pattern05 .top_news_list li em {
  display: inline-block;
  min-width: 120px;
  margin-right: 28px;
  padding: 8px;
  border-radius: 15px;
  background: var(--main-color);
  color: #fff;
  font-style: normal;
  text-align: center;
}

.top_news.pattern05 .top_news_list li a {
  color: #727171;
  font-size: 15px;
  transition: 0.2s ease-in-out;
}

.top_news.pattern05 .top_news_list li a:hover {
  color: var(--main-color);
}

/* 本文を表示するお知らせ */
.top_news.pattern05 .top_news_frame {
  max-height: 200px;
  overflow-y: auto;
  padding: 20px;
}

.top_news.pattern05 .top_news_frame .news_desc {
  margin-bottom: 10px;
}

/* スクロールバーの横幅指定 */
.top_news.pattern05 .top_news_frame::-webkit-scrollbar {
  width: 5px;
}

/* スクロールバーの背景色・角丸指定 */
.top_news.pattern05 .top_news_frame::-webkit-scrollbar-track {
  border-radius: 10px;
  background: var(--bg-color);
}

/* スクロールバーの色・角丸指定 */
.top_news.pattern05 .top_news_frame::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--border-color);
}

/* 医院概要&アクセス */
.top_info.pattern05 {
  position: relative;
  padding-bottom: 150px;
  display: none;
}

.top_info.pattern05::before {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  width: calc(100% - (50% - 740px));
  height: 416px;
  border-radius: 40px 0 0 0;
  background: url("/wp-content/uploads/watercolor_blend_medium.jpg") no-repeat
    center / cover;
  content: "";
}

.top_info.pattern05::after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  margin: auto;
  background: url("/wp-content/uploads/wave_beige.png") no-repeat center top /
    cover;
  content: "";
}

@media print, screen and (min-width: 641px) {
  .top_info.pattern05 .home_inner {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 46px;
    border-radius: 0 0 30px 30px;
    background: #fff;
  }

  .top_info.pattern05 .top_info_left,
  .top_info.pattern05 .top_info_right {
    width: 50%;
  }

  .top_info.pattern05 .top_info_left {
    padding: 11px 20px 0 40px;
  }

  .top_info.pattern05 .top_info_right {
    padding: 0 40px 0 20px;
  }
}

.top_info.pattern05 .top_info_free {
  margin-bottom: 20px;
}

.top_info.pattern05 .sche_wrap:not(:last-child) {
  margin-bottom: 30px;
}

/*-------------------- ご挨拶 --------------------*/
.sec_top_doctor {
  position: relative;
  background: url("/wp-content/uploads/watercolor_beige_large.jpg") no-repeat
    center / cover;
}

.doctor_bg {
  position: absolute;
  bottom: -207px;
  left: 0;
  z-index: 1;
  width: calc(100% - (50% - 740px));
  height: 400px;
  border-radius: 0 30px 30px 0;
  /* 	background: url("/wp-content/uploads/clinic_img.jpg") no-repeat center / cover; */
  background: url("/wp-content/uploads/clinic_img02.jpg") no-repeat center /
    cover;
  content: "";
}

.sec_top_doctor .home_inner {
  padding: 62px 0 250px;
}

.sec_top_doctor h2::before {
  content: "MESSAGE" !important;
}

.top_greeting_flex {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top_greeting_flex_img {
  width: 43.4%;
  min-width: 520px;
}

.top_doctor_img_box {
  position: relative;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
}

.top_doctor_img_box::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 199px;
  margin: auto;
  background: url("/wp-content/uploads/img_deco.png") no-repeat center top /
    cover;
  content: "";
}

.top_doctor_name {
  position: absolute;
  bottom: 37px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

.text .top_doctor_name p {
  margin-bottom: 0;
}

.top_doctor_name .carr {
  margin-bottom: 7px;
  font-size: 100%;
}

.top_doctor_name .carr span {
  font-size: 100%;
}

.top_doctor_name .name {
  font-size: 21px;
}

.top_doctor_name .name span {
  font-size: 100%;
}

.top_doctor_name .name span:first-child {
  margin-right: 25px;
}

.doctor_btn {
  margin-top: 6px;
  text-align: center;
}

.doctor_btn a {
  padding: 16px 14px 12px 33px;
  background: -webkit-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
}

.doctor_btn a::after {
  margin-left: 5px;
}

.doctor_btn a:hover {
  background: -webkit-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
}

.top_greeting_flex_text {
  flex: 1;
  padding: 10px 75px 0 0;
}

.top_greeting_flex_text .text {
  margin: 0;
  color: #727171;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.15em;
}

.top_greeting_flex_text .text p {
  margin-bottom: 30px;
}

.top_greeting_catch_box {
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.15em;
}

.top_greeting_catch_box p {
  position: relative;
  margin-bottom: 33px !important;
}

.top_greeting_catch_box p::before {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 92%;
  height: 2px;
  background: #fff;
  content: "";
}

.top_greeting_catch_box p::after {
  display: block;
  width: 34px;
  height: 8px;
  margin-top: 15px;
  background: url("/wp-content/uploads/ttl_deco02.png") no-repeat left / contain;
  content: "";
}

/*-------------------- 当院の特徴 --------------------*/
.sec_top_feature {
  position: relative;
  background: url("/wp-content/uploads/deco01.png") no-repeat right 40px top
      65px,
    url("/wp-content/uploads/deco02.png") no-repeat left bottom 88px;
}

.sec_top_feature .home_inner {
  max-width: none;
  margin: auto;
  padding: 320px 0 186px;
}

.sec_top_feature h2 {
  margin-bottom: 130px !important;
}

.sec_top_feature h2::before {
  content: "FEATURES" !important;
}

.top_feature_item {
  position: relative;
}

/* 当院の特徴パターンB（写真と文章分離、1コンテンツ横幅フル）*/
.sec_top_feature.pattern02 .top_feature_item::before {
  position: absolute;
  z-index: -3;
  width: calc(100% - (50% + 160px));
  height: 350px;
  background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
    cover;
  content: "";
}

.sec_top_feature.pattern02 .top_feature_item::after {
  position: absolute;
  z-index: -2;
  width: calc(100% - (50% + 282px));
  height: 380px;
  content: "";
}

.sec_top_feature.pattern02 .top_feature_item {
  margin-bottom: 140px;
}

.sec_top_feature.pattern02 .top_feature_item:last-child {
  margin-bottom: 0;
}

.sec_top_feature.pattern02 .top_feature_item .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media print, screen and (min-width: 641px) {
  .sec_top_feature.pattern02 .top_feature_item .inner {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.sec_top_feature.pattern02 .top_feature_img {
  position: relative;
  width: 540px;
}

.sec_top_feature.pattern02 .top_feature_img::before {
  position: absolute;
  top: 26px;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  content: "";
}

.sec_top_feature.pattern02 .top_feature_img img {
  border-radius: 15px;
}

.sec_top_feature.pattern02 .top_feature_box {
  flex: 1;
}

.sec_top_feature.pattern02 .ttl_box {
  position: relative;
  margin-bottom: 32px;
}

.sec_top_feature.pattern02 .ttl_box .ttl_flex {
  display: flex;
  align-items: center;
}

.sec_top_feature.pattern02 .ttl_box::before {
  position: absolute;
  bottom: 3px;
  right: 0;
  width: 94.5%;
  height: 2px;
  background: var(--border-color);
  content: "";
}

.sec_top_feature.pattern02 .ttl_box::after {
  display: block;
  width: 22px;
  height: 8px;
  margin-top: 9px;
  background: url("/wp-content/uploads/ttl_deco03.png") no-repeat left / contain;
  content: "";
}

.sec_top_feature.pattern02 .ttl_box .top_feature_num {
  position: relative;
  top: -4px;
  margin-right: 10px;
  color: var(--main-color);
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.14em;
}

.sec_top_feature.pattern02 .ttl_box .top_feature_num p em {
  font-style: normal;
}

.sec_top_feature.pattern02 .ttl_box h3 {
  margin-bottom: 0;
  color: var(--ttl-color);
  font-size: 20px;
  line-height: 1.7;
}

.sec_top_feature.pattern02 .top_feature_text {
  font-weight: 500;
  color: var(--text-color);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.15em;
}

.sec_top_feature.pattern02 .top_feature_text .btn01 {
  margin-top: 30px;
  text-align: right;
}

/* 当院の特徴パターンBの左右互い違い（奇数）*/
.sec_top_feature.pattern02 .top_feature_item:nth-child(odd)::before {
  top: 76px;
  left: 0;
  border-radius: 0 20px 20px 0;
}

.sec_top_feature.pattern02 .top_feature_item:nth-child(odd)::after {
  top: -34px;
  left: 0;
  border-radius: 0 20px 20px 0;
  border: 3px solid rgb(106, 175, 179, 0.22);
  border-left: none;
}

.sec_top_feature.pattern02 .top_feature_item:nth-child(odd) .top_feature_img {
  margin-left: 30px;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-child(odd)
  .top_feature_img::before {
  left: -30px;
  background: url("/wp-content/uploads/watercolor_green.jpg") no-repeat center /
    cover;
}

.sec_top_feature.pattern02 .top_feature_item:nth-child(odd) .top_feature_box {
  padding: 30px 0 0 58px;
}

/* 当院の特徴パターンBの左右互い違い（偶数） */
.top_feature_wrap.reverse .top_feature_item:nth-child(even)::before {
  top: 76px;
  right: 0;
  border-radius: 20px 0 0 20px;
}

.top_feature_wrap.reverse .top_feature_item:nth-child(even)::after {
  top: -34px;
  right: 0;
  border-radius: 20px 0 0 20px;
  border: 3px solid rgb(111, 187, 231, 0.2);
  border-right: none;
}

.top_feature_wrap.reverse .top_feature_item:nth-child(even) .inner {
  flex-direction: row-reverse;
}

.top_feature_wrap.reverse .top_feature_item:nth-child(even) .top_feature_img {
  margin-right: 30px;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-child(even)
  .top_feature_img::before {
  right: -30px;
  background: url("/wp-content/uploads/watercolor_blue.jpg") no-repeat center /
    cover;
}

.sec_top_feature.pattern02 .top_feature_item:nth-child(even) .top_feature_box {
  padding: 30px 58px 0 0;
}

.sec_top_feature.pattern02 .top_feature_item:nth-child(even) .ttl_box::after {
  width: 22px;
  height: 8px;
  background: url("/wp-content/uploads/ttl_deco04.png") no-repeat left / contain;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-child(even)
  .ttl_box
  .top_feature_num {
  color: var(--sub-color);
}

.sec_top_feature.pattern02
  .top_feature_item:nth-child(even)
  .top_feature_text
  .btn01
  a {
  background: -webkit-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
}

.sec_top_feature.pattern02
  .top_feature_item:nth-child(even)
  .top_feature_text
  .btn01
  a::after {
  margin-left: 12px;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-child(even)
  .top_feature_text
  .btn01
  a:hover {
  background: -webkit-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(176, 210, 230) 0%,
    rgb(152, 192, 216) 100%
  );
}

.sec_top_feature.pattern02
  .top_feature_item:nth-of-type(1)
  .ttl_box
  .top_feature_num {
  margin-right: 20px;
}

.sec_top_feature.pattern02 .top_feature_item:nth-of-type(4) {
  margin-bottom: 150px;
}

.sec_top_feature.pattern02 .top_feature_item:nth-of-type(4) .ttl_box::after {
  margin-top: 19px;
}

.sec_top_feature.pattern02 .top_feature_item:nth-of-type(4) .top_feature_box {
  padding: 38px 58px 0 0;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-of-type(4)
  .top_feature_text
  .btn01
  a {
  padding: 16px 13px 12px 59px;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-of-type(4)
  .top_feature_text
  .btn01
  a::after {
  margin-left: 22px;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-of-type(5)
  .top_feature_text
  .btn01
  a {
  padding: 16px 13px 12px 33px;
}

.sec_top_feature.pattern02
  .top_feature_item:nth-of-type(5)
  .top_feature_text
  .btn01
  a::after {
  margin-left: 8px;
}

/*-------------------- 診療案内 --------------------*/
.sec_top_medical {
  position: relative;
  margin-bottom: 19px;
  background: url("/wp-content/uploads/medical_bg.jpg") no-repeat center / cover;
}

.sec_top_medical::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: url("/wp-content/uploads/diagonal_stripes.png") no-repeat left top /
    cover;
  content: "";
}

.sec_top_medical .home_inner {
  padding: 113px 0 70px;
}

.sec_top_medical h2 {
  margin-bottom: 52px !important;
}

.sec_top_medical h2::before {
  content: "MEDICAL";
}

.sec_top_medical .sec_top_medical_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 80px;
}

/* 診療案内パターンA（アイコンを目立たせるタイプ）*/
.sec_top_medical.pattern01 .sec_top_medical_flex .item {
  width: 240px;
  margin-bottom: 50px;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  height: 100%;
  min-height: 419px;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a ul,
.sec_top_medical.pattern01 .sec_top_medical_flex .item a p {
  margin-bottom: 20px;
  font-weight: 500;
  color: var(--text-color);
  line-height: 2;
  letter-spacing: 0.15em;
}

.sec_top_medical.pattern01
  .sec_top_medical_flex
  .item
  a
  p.top_medial_menu_title_symptom {
  margin-bottom: 15px;
  padding: 12px 9px 9px;
  border-radius: 8px;
  background: #fff;
  color: #75bdc1;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a .item_img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: url("/wp-content/uploads/watercolor_green_small.jpg") no-repeat
    center / cover;
  text-align: center;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a .item_img::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 92%;
  height: 92%;
  margin: auto;
  border-radius: 15px;
  border: 2px solid #fff;
  content: "";
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a h3 {
  margin-bottom: 0;
  color: var(--text-color);
  font-size: 20px;
  letter-spacing: 0.1em;
  text-align: center;
}

.sec_top_medical.pattern01
  .sec_top_medical_flex
  .item
  a
  p.top_medical_menu_en_title {
  color: #75bdc1;
  font-family: "korolev-rounded", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-align: center;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a .btn01 {
  margin-top: auto;
  text-align: center;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a .btn01 p {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  padding: 13px 11px 11px 32px;
  border-radius: 25px;
  background: -webkit-linear-gradient(
    0deg,
    rgb(106, 175, 179) 0%,
    rgb(130, 207, 211) 100%
  );
  background: -moz-linear-gradient(
    0deg,
    rgb(106, 175, 179) 0%,
    rgb(130, 207, 211) 100%
  );
  background: linear-gradient(
    0deg,
    rgb(106, 175, 179) 0%,
    rgb(130, 207, 211) 100%
  );
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  transition: 0.2s ease-in-out;
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item a .btn01 p::after {
  display: inline-block;
  position: relative;
  width: 33px;
  height: 20px;
  margin-left: 12px;
  background: url("/wp-content/uploads/btn_deco01.png") no-repeat center /
    contain;
  vertical-align: middle;
  content: "";
  transition: 0.2s ease-in-out;
}

/* 診療案内パターンA（偶数）*/
.sec_top_medical.pattern01
  .sec_top_medical_flex
  .item:nth-child(even)
  a
  p.top_medial_menu_title_symptom {
  color: #88b3cc;
}

.sec_top_medical.pattern01
  .sec_top_medical_flex
  .item:nth-child(even)
  a
  .item_img {
  background: url("/wp-content/uploads/watercolor_blue_small.jpg") no-repeat
    center / cover;
}

.sec_top_medical.pattern01
  .sec_top_medical_flex
  .item:nth-child(even)
  .btn01
  p {
  background: -webkit-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: -moz-linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
  background: linear-gradient(
    80deg,
    rgb(152, 192, 216) 0%,
    rgb(176, 210, 230) 100%
  );
}

.sec_top_medical.pattern01 .sec_top_medical_flex .item:nth-child(n + 5) a {
  min-height: 450px;
}

/* .sec_top_medical.pattern01 .sec_top_medical_flex .item:nth-of-type(6) a .item_img {
  margin-bottom: 37px;
} */

.sec_top_medical.pattern01 .sec_top_medical_flex .item a:hover {
  opacity: 0.8;
}

/*-------------------- 医療コラム --------------------*/
.sec_top_column {
  display: none;
}

/*.sec_top_column {
  position: relative;
}

.sec_top_column .home_inner {
  padding: 80px 0;
}

.sec_top_column h2::before {
  content: "BLOG"!important;
}

.column_list_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 32px;
}

.column_list_flex dl {
  width: 276px;
  margin-bottom: 20px;
}

.column_list_flex dt {
  padding: 12px 12px 8px;
  border-radius: 10px;
	background: -webkit-linear-gradient(0deg, rgb(106, 175, 179) 0%, rgb(130, 207, 211) 100%);
	background: -moz-linear-gradient(0deg, rgb(106, 175, 179) 0%, rgb(130, 207, 211) 100%);
  background: linear-gradient(0deg, rgb(106, 175, 179) 0%, rgb(130, 207, 211) 100%);
  color: #fff;
  font-family: "heisei-maru-gothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 120%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-align: center;
}

.column_list_flex dd {
  padding: 10px;
}

.column_list_flex dd ul li {
  display: flex;
  align-items: baseline;
  position: relative;
  line-height: 2;
}

.column_list_flex dd ul li::before {
  margin-right: 5px;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 90%;
  content: "\f054";
}

.column_list_flex dd ul li a {
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (hover: hover) {
  .column_list_flex dd ul li a:hover {
    color: var(--sub-color);
  }
}*/

/*-------------------- ループスライダー --------------------*/
.clinic_slider {
  overflow: hidden;
}

.clinic_slider .slick-slide {
  width: 350px;
  height: auto;
  margin-right: 20px;
}

.clinic_slider .slick-slide img {
  border-radius: 10px;
}

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

  *スマホ設定

==================================================================================================================================*/
/*-------------------- *基礎 --------------------*/
@media screen and (max-width: 640px) {
  html,
  body {
    min-height: 500px;
  }

  html {
    margin-top: 0 !important;
  }

  body {
    font-size: 16px;
  }

  body,
  #mainvisual,
  header,
  footer,
  nav,
  .slider {
    min-width: 100%;
  }

  body.page #mainvisual .inner,
  body.archive #mainvisual .inner,
  body.single #mainvisual .inner,
  body.home #mainvisual .inner,
  body.error404 #mainvisual .inner {
    max-width: 100%;
  }

  html #wpadminbar {
    display: none;
  }

  body,
  #mainvisual,
  .nav_wrap.fixed,
  header,
  footer {
    width: 100%;
    min-width: 100%;
  }

  .nav-open {
    overflow: hidden;
  }

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

    *基本情報（スマホ）

  ==================================================================================================================================*/
  /* ロゴ */
  .info_logo {
    width: 92%;
    max-width: none;
    margin: 0 auto 30px;
  }

  /* 住所 */
  .info_add {
    margin-bottom: 25px;
    font-size: 16px;
  }

  .info_add span {
    display: block;
    margin-right: 0;
  }

  /* 電話番号 */
  .info_tel {
    margin-bottom: 35px;
  }

  .info_tel a {
    font-size: 34px;
  }

  .info_tel a::before {
    margin-right: 10px;
  }

  /* アクセス詳細 */
  .access_detail ul li {
    font-size: 15px;
  }

  .access_detail ul li:not(:last-child) {
    margin-bottom: 10px;
  }

  .access_detail ul li::before {
    top: -2px;
    margin-right: 8px;
  }

  .access_btn {
    margin-top: 30px;
    text-align: center;
  }

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

    *ヘッダー（スマホ）

  ==================================================================================================================================*/
  header {
    display: none;
  }

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

    *ナビゲーション（スマホ）

  ==================================================================================================================================*/
  .nav_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    background: #fff;
  }

  .nav_wrap .sp_logo {
    position: relative;
    width: calc(100% - 55px);
    z-index: 4;
  }

  .nav_wrap .sp_logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 55px;
    padding: 5px;
  }

  .nav_wrap .sp_logo img {
    width: auto;
    max-height: 80%;
  }

  /* ------- ハンバーガーボタン ------- */
  .btn_menu {
    position: relative;
    right: 0;
    width: 55px;
    margin: 0;
    padding: 0;
    z-index: 3;
    border-radius: 0 0 0 10px;
    border: none;
    background: url("/wp-content/uploads/watercolor_green_translucent_small.png")
      no-repeat center / cover;
    color: #fff;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .btn_menu i {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    margin: auto;
    font-family: "korolev-rounded", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .btn_menu span {
    display: block;
    opacity: 1;
    position: absolute;
    left: 0;
    right: 0;
    width: 35px;
    height: 2px;
    margin: auto;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .btn_menu span:nth-of-type(1) {
    top: 10px;
  }

  .btn_menu span:nth-of-type(2) {
    top: 20px;
  }

  .btn_menu span:nth-of-type(3) {
    top: 30px;
  }

  /* MENUボタン押下時 */
  /*.btn_menu.active {
    right: 80%;
  }*/ /* widthを80%にした場合はコメントアウトを解除 */

  .btn_menu.active {
    background: none;
  }

  .btn_menu.active span {
    background: #727171;
  }

  .btn_menu.active i {
    color: #727171;
  }

  .btn_menu.active span:nth-of-type(1) {
    top: 20px;
    transform: rotate(225deg);
  }

  .btn_menu.active span:nth-of-type(2) {
    opacity: 0;
  }

  .btn_menu.active span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-225deg);
  }

  /* ------- スライドメニュー ------- */
  .menu_list_wrap {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 65px 15px 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    /*right: -80%;
    width: 80%;*/ /* widthを80%にした場合はコメントアウトを解除 */
  }

  /* 展開時 */
  body.nav-open .menu_list_wrap {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
  }

  .menu_list_wrap,
  .menu_list_wrap a {
    color: #fff;
  }

  .menu_list_wrap a {
    display: block;
  }

  .nav_menu > li {
    border-bottom: 1px solid var(--main-color);
  }

  /*.nav_menu > li:first-child {
    border-top: 1px solid var(--main-color);
  }*/

  .nav_menu .nav_menu_tit,
  .nav_menu .parent_menu {
    padding: 14px 14px 10px;
    color: #727171;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.15em;
  }

  .nav_menu .nav_menu_en {
    margin-left: 10px;
    color: var(--main-color);
    font-family: "korolev-rounded", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.25em;
  }

  /* ------- 下層のあるメニュー ------- */
  .nav_menu .child_menu {
    padding-left: 15px;
    padding-bottom: 10px;
  }

  .nav_menu .child_menu a {
    padding: 5px 10px 5px 1.2em;
    color: #727171;
    font-size: 15px;
    text-indent: -1.2em;
  }

  .nav_menu .child_menu a::before {
    margin-right: 5px;
    content: "-";
  }

  /* アコーディオンやメガでない時に、展開中に含まれる扉ページのリンクを非表示 */
  .nav_menu
    .nav_slidebtm:not(.is_accord, .is_mega)
    .child_menu
    a.sp:first-of-type {
    display: none !important;
  }

  /* ------- アコーディオン&メガメニュー ------- */
  .nav_slidebtm.is_accord,
  .nav_slidebtm.is_mega {
    cursor: pointer;
  }

  .nav_slidebtm.is_accord .parent_menu,
  .nav_slidebtm.is_mega .parent_menu {
    position: relative;
  }

  .nav_slidebtm:not(.is_accord, .is_mega) .parent_menu:not(.nav_menu_tit) {
    display: none;
  }

  .nav_slidebtm.is_accord .parent_menu::before,
  .nav_slidebtm.is_mega .parent_menu::before {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: auto;
    height: auto;
    margin: auto;
    border: none;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
  }

  .nav_slidebtm.is_accord > a.nav_menu_tit,
  .nav_slidebtm.is_mega > a.nav_menu_tit {
    display: none;
  }

  .nav_slidebtm.is_accord .child_menu,
  .nav_slidebtm.is_mega .child_menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  }

  /* アコーディオン&メガメニュー展開時 */
  .nav_slidebtm.is_accord.active .parent_menu::before,
  .nav_slidebtm.is_mega.active .parent_menu::before {
    content: "\f068";
  }

  .nav_slidebtm.is_accord.active .child_menu,
  .nav_slidebtm.is_mega.active .child_menu {
    opacity: 1;
    visibility: visible;
  }

  /*WEB予約、問診、問い合わせ*/
  .nav_btn > li {
    margin-top: 5px;
  }

  .nav_btn > li a {
    padding: 13px 15px 10px;
    border-radius: 5px;
    background: var(--main-color);
    color: #fff;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }

  .nav_btn > li a i {
    margin-right: 5px;
    letter-spacing: 0;
  }

  /* SNSボタン */
  .menu_list_wrap .sp_btn_area {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .menu_list_wrap .sp_btn_area li {
    width: calc((100% - 10px) / 3);
  }

  .menu_list_wrap .sp_btn_area li a {
    padding-top: 7px;
    padding-bottom: 3px;
    border-radius: 5px;
    background: var(--sub-color);
    color: #fff;
    font-size: 12px;
    text-align: center;
  }

  .menu_list_wrap .sp_btn_area li a i {
    display: block;
    margin-bottom: 3px;
    font-size: 18px;
    letter-spacing: 0;
  }

  /* 下部固定メニュー */
  .sp_under_nav {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 9;
    width: 100%;
    height: 52px;
    background: #fff;
  }

  .sp_under_nav ul {
    display: flex;
    justify-content: center;
    height: 100%;
    background: #fff;
  }

  .sp_under_nav li {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    text-align: center;
  }

  .sp_under_nav li a {
    background: url("/wp-content/uploads/watercolor_green_translucent_small.png")
      no-repeat center / cover;
  }

  .sp_under_nav li:nth-child(even) a {
    background: url("/wp-content/uploads/watercolor_blue_translucent_small.png")
      no-repeat center / cover;
  }

  .sp_under_nav li a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    color: #fff;
    font-family: "heisei-maru-gothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.1em;
  }

  .sp_under_nav li a::before {
    display: block;
    position: relative;
    top: -2px;
    margin-right: 5px;
    color: #fff;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 17px;
    content: "\f2a0";
  }

  .sp_under_nav li:nth-of-type(2) a::before {
    content: "\f3cd";
  }

  .sp_under_nav li:nth-of-type(3) a::before {
    content: "\f5a0";
  }

  .sp_under_nav li a:hover {
  }

  .sp_under_nav li a i {
    margin-right: 5px;
  }

  .sp_under_nav li a[href="tel:準備中"] {
    padding: 2px 2% 18px;
    background: #aaa;
    pointer-events: none;
  }

  .sp_under_nav li a[href="tel:準備中"]::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 90%;
    text-align: center;
    content: "（準備中）";
  }

  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }

  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }

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

    *メインビジュアル（スマホ）

  ==================================================================================================================================*/
  /*-------------------- ホーム/下層（共通） --------------------*/
  #mainvisual {
    margin-top: 55px;
  }

  /*-------------------- 下層 --------------------*/
  .content_mv {
    height: 160px;
  }

  .content_mv::after {
    height: 38px;
    background: url("/wp-content/uploads/wave_blend_sp.png") no-repeat center
      top / cover;
  }

  .content_mv .inner {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main_headline .midashi {
    font-size: 120%;
  }

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

    *フッター（スマホ）

  ==================================================================================================================================*/
  .line_btn_sp {
    position: fixed;
    bottom: 110px;
    right: 10px;
    z-index: 12;
    width: 50px;
    height: 50px;
    text-align: center;
    background: #06c755;
    border-radius: 50%;
  }
  .line_btn_sp a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  .line_btn_sp i {
    font-size: 26px;
    color: #fff;
    margin-left: 2px;
  }
  .pagetop {
    bottom: 60px;
    left: auto;
    right: 10px;
    width: 45px;
    height: 45px;
    margin: auto;
  }

  .pagetop i {
    margin-top: 10px;
  }

  .pagetop:hover {
    -webkit-transform: unset;
    transform: unset;
  }

  .footer_inner {
    padding: 0 5% 40px;
  }

  .footer_info {
    padding: 50px 5%;
  }

  .footer_info_wrap {
    display: block;
  }

  .footer_info_left {
    width: 100%;
    margin-bottom: 30px;
    padding: 0;
  }

  .footer_info_right {
    width: 100%;
  }

  .copy {
    margin-top: 0;
    padding: 8px 0 65px;
  }

  /*-------------------- GoogleMAP --------------------*/
  .googlemap {
    margin-bottom: 20px;
    height: 300px;
  }

  /*-------------------- 連携病院 --------------------*/
  .sec_footer_affiliations .footer_inner {
    padding: 50px 5% !important;
  }

  .sec_footer_affiliations h2 {
    margin: 0 0 40px !important;
    text-align: center !important;
  }

  .sec_footer_affiliations h2::before {
    text-align: center !important;
  }

  .footer_affiliations_list {
    gap: 0;
    width: 100%;
  }

  .footer_affiliations_list li {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .footer_affiliations_list li a span {
    font-size: 16px;
  }

  .footer_affiliations_list li a span::after {
    width: 13px;
    height: 13px;
  }

  /*-------------------- フッターのサイドバナー --------------------*/
  .sec_footer_banner {
    padding: 50px 0 0;
  }

  .sec_footer_banner ul li {
    width: 100%;
    margin: 0 0 16px;
    text-align: center;
  }

  .sec_footer_banner ul li.btn01 {
    text-align: center;
  }

  /*---------- フッターのナビ ----------*/
  .footer_nav .footer_inner {
    padding: 30px 5%;
  }

  .footer_nav_fixed {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 20px;
    margin-bottom: 30px;
  }

  .footer_nav_fixed > li {
    width: calc((100% - 40px) / 2);
    margin-bottom: 0 !important;
    font-size: 15px;
  }

  .footer_nav_fixed > li::before {
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }

  .footer_nav_sub_item {
    width: 100%;
    padding-left: 0;
  }

  .footer_nav_sub_item:not(:last-child) {
    margin-bottom: 30px;
  }

  .footer_nav_sub_tit:not(:last-child) {
    margin-bottom: 10px;
  }

  .footer_nav_sub_tit::before {
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }

  .footer_nav_sub_list {
    gap: 10px 0;
  }

  .footer_nav_sub_list > li {
    width: 100%;
    /*width: calc((100% - 20px) / 2);*/
  }
  .footer_bnr img {
    width: 90%;
  }

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

    *共通仕様（スマホ）

  ==================================================================================================================================*/
  .textarea p {
    margin-bottom: 1.5em;
    font-size: 14px;
  }

  .wrapper {
    display: block;
    width: 100%;
    padding: 20px 0 0;
  }

  .wrapper main {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 20px 0;
  }

  :is(.blog, .single-post, .archive, .category):not(
      .tax-cate_menu,
      .tax-cate_disease,
      .tax-cate_symptom,
      .tax-cate_case
    )
    .wrapper
    main {
    width: 100%;
  }

  .medical_single {
    padding: 0 !important;
  }

  .body_single p img {
    display: block;
    margin: 0 auto;
  }

  /*---------- リスト ----------*/
  .list08 {
    padding: 6%;
  }

  /*---------- テーブル ----------*/
  .sp_w100 th,
  .sp_w100 td {
    display: block !important;
    width: 100% !important;
    border-top: none;
  }

  .sp_w100 tr:first-child th,
  .sp_w100 tr:first-child td:first-child {
    border-top: 1px solid var(--border-color);
  }

  .tb01 {
    width: 100%;
    table-layout: fixed;
    white-space: inherit;
  }

  .tb01 th {
    width: 30%;
  }

  .tb01 th + td {
    width: 70%;
  }

  .tb03,
  .tb03 th {
    white-space: inherit;
  }

  .tb03.w075par {
    width: 100%;
  }

  .tb04,
  .tb04 th {
    white-space: normal;
  }

  .tb04 th {
    font-size: 13px;
  }

  .tb04 td,
  .tb04 th {
    padding: 2%;
  }

  /*-------------------- 診療時間表 --------------------*/
  .tb02 {
    margin-bottom: 12px;
  }

  .tb02 th,
  .tb02 td {
    padding: 13px 0 !important;
    font-size: 14px !important;
    text-align: center !important;
  }

  .tb02 th {
    padding-left: 0 !important;
  }

  .tb02 td:last-child {
    padding-right: 0 !important;
  }

  .schedule_note {
    margin-left: 0;
    font-size: 15px;
  }

  .schedule_note p {
    width: 100%;
  }

  .schedule_note p:not(:last-child) {
    margin-bottom: 5px;
  }

  .kyushinbi {
    margin-right: 0;
  }

  /*-------------------- サイドバー --------------------*/
  .side_area {
    width: 100%;
    margin: auto;
    padding: 30px 20px 20px;
  }

  /*-------------------- パンくず --------------------*/
  #breadcrumb {
    position: static;
    font-size: 12px;
  }

  /*-------------------- タイトル --------------------*/
  h1 {
    position: unset;
    padding: 15px 5%;
    text-align: center;
  }

  h2 {
    font-size: 140%;
  }

  h2::before {
    height: 45px;
    margin-bottom: 15px;
  }

  h2::after {
    margin-top: 15px;
  }

  h3 {
    font-size: 120%;
  }

  h3::before {
    width: 87%;
  }

  h4 {
    font-size: 115%;
  }

  h5 {
    width: 110%;
  }

  /*-------------------- レイアウト --------------------*/
  .layout_tit {
    font-size: 18px;
  }

  .layout_tit em {
    font-size: 24px;
  }

  /* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
  .layout01 .layout01_box {
    display: block;
  }

  .layout01 .layout01_title {
    width: 100%;
  }

  .layout01 .layout01_text {
    width: 100%;
  }

  .layout01 .layout01_text img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  /* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
  .layout02 {
    display: block;
  }

  .layout02 .layout02_box {
    width: 100%;
  }

  .layout02 .layout02_box img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
  .layout03 {
    margin: 0 0 15px;
  }

  .layout03 .layout03_box {
    display: block;
  }

  .layout03 .layout03_title {
    width: 100%;
  }

  .layout03 .layout03_title img {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 0;
  }

  .layout03 .layout03_text {
    width: 100%;
    padding: 15px 3% 1%;
  }

  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
  .layout04 .layout04_box {
    display: block;
  }

  .layout04 .layout04_title {
    width: 100%;
    padding: 2%;
  }

  .layout04 .layout04_title img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  .layout04 .layout04_text {
    width: 100%;
  }

  /* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
  .layout05 .layout05_box {
    display: block;
  }

  .layout05 .layout05_title {
    display: block;
    width: 100%;
    text-align: center;
  }

  .layout05 .layout05_title img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  .layout05 .layout05_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout05 .layout05_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }
  /* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
  .layout06 {
    margin: 0 0 15px;
  }

  .layout06 .layout06_box {
    display: block;
  }

  .layout06 .layout06_title {
    display: block;
    width: 100%;
    padding: 3%;
    text-align: center;
  }

  .layout06 .layout06_title img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  /* 数字 */
  .layout06 .layout06_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout06 .layout06_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }

  /* 3つ並びのレイアウト。 */
  .layout07 {
    display: block;
  }

  .layout07 .layout07_box {
    display: block;
    width: 100%;
  }

  /* layout9 */
  .layout09 .layout09_box {
    display: block;
  }

  .layout09 .layout09_title {
    display: block;
    width: 100%;
    text-align: center;
  }

  .layout09 .layout09_title img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }

  .layout09 .layout09_text1 {
    width: 100%;
    margin-top: 10px;
  }

  /* layout10 */
  .layout10 .flow_box {
    justify-content: space-between;
    padding: 6%;
  }

  .layout10 .flow_box::before {
    display: none;
  }

  .layout10 .flow_box .number {
    width: 42px;
    height: 42px;
    margin-right: 0;
    font-size: 20px;
  }

  .layout10 .flow_box .layout10_box {
    width: 80%;
  }

  .layout10 .flow_box .layout10_text .title {
    font-size: 14px;
    line-height: 1.4;
  }

  .layout10 .flow_box .layout10_text .title span {
    display: block;
    padding-bottom: 8px;
    font-weight: bold;
  }

  .layout10 .flow_box .layout10_text .title span::after {
    display: none;
  }

  .course_ablation::before {
    display: none;
  }

  /* layout11 */
  [class^="layout11_text"] dl dt,
  [class^="layout11_text"] dl dd {
    width: 100%;
    margin-left: 0;
  }

  [class^="layout11_text"] dl dt {
    margin-bottom: 0;
  }

  [class^="layout11_text"] dl dd {
    margin-bottom: 10px;
  }

  .layout11_image02 {
    flex-wrap: wrap;
  }

  .layout11_image02 span {
    width: 100%;
  }

  .layout11_image02 span:last-child {
    margin-top: 40px;
  }

  .layout11_image02 span:last-child::before {
    justify-content: center;
    top: -32px;
    bottom: auto;
    left: 0;
    right: 0;
    content: "\f078";
  }

  /*-------------------- 診療内容などのコンテンツ --------------------*/
  .anklink li {
    width: 100%;
    margin: 0 0 10px;
  }

  /* コンテンツリンク */
  .contentlink {
    margin-bottom: 80px;
  }

  .contentlink li {
    margin: 0 auto;
  }

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

    *フリーエリア（上・下）（スマホ）

  ==================================================================================================================================*/
  .freearea_up_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .freearea_up_img img {
    width: 100%;
    height: auto;
  }

  .freearea_under_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .freearea_under_img img {
    width: 100%;
    height: auto;
  }

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

    *医師紹介（スマホ）

  ==================================================================================================================================*/
  .doctor_greeting_flex {
    display: block;
  }

  .doctor_greeting_flex .text {
    width: 100%;
    font-size: 16px;
  }

  .doctor_img {
    width: 100%;
    margin: 0 auto 30px;
    text-align: center;
  }

  .doctor_catch {
    font-size: 20px;
  }

  .doctor_catch p {
    margin-bottom: 30px !important;
  }

  .doctor_catch p::before {
    width: 87%;
  }

  .doctor_catch p::after {
    margin-top: 10px;
  }

  .doctor_greeting_flex .text p {
    margin-bottom: 20px;
  }

  .doctor_name {
    font-size: 18px;
  }

  /*---------- 経歴・資格 ----------*/
  .doctor_carr_wrap {
    display: block;
  }

  .doctor_carr_box {
    width: 100%;
    margin-bottom: 20px;
  }

  .doctor_carr_box:last-child {
    margin-bottom: 0;
  }

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

    *診療案内（スマホ）

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

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

    *病名から探す（スマホ）

  ==================================================================================================================================*/
  .disease_flex {
    margin-bottom: 0;
  }

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

  .disease_flex .disease_flex_right {
    width: 100%;
    margin-bottom: 10px;
  }

  .disease_flex .disease_flex_left {
    width: 100%;
  }

  .disease_w100 .disease_flex_left {
    width: 100%;
  }

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

    *症状から探す（スマホ）

  ==================================================================================================================================*/
  .symptom_flex {
    margin-bottom: 0;
  }

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

  .symptom_flex .symptom_flex_right {
    width: 100%;
    margin-bottom: 10px;
  }

  .symptom_flex .symptom_flex_left {
    width: 100%;
  }

  .symptom_w100 .symptom_flex_left {
    width: 100%;
  }

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

    *症例（スマホ）

  ==================================================================================================================================*/
  /*------------------- 一覧ページ -------------------*/
  .case_flex .btn01 {
    text-align: center;
  }

  .case_flex .case_flex_right {
    width: 100%;
    margin-bottom: 10px;
  }

  .case_flex .case_flex_left {
    width: 100%;
  }

  .case_w100 .case_flex_left {
    width: 100%;
  }

  /*------------------- コンテンツページ -------------------*/
  .box_case .images .before {
    margin-bottom: 10px;
  }

  .box_case .images .before,
  .box_case .images .after {
    width: 100%;
  }

  .box_case .images ul {
    width: 100%;
  }

  .box_case .images ul li a img {
    height: 150px;
  }

  .box_case dl {
    flex-wrap: wrap;
  }

  .box_case dl dt,
  .box_case dl dd {
    width: 100%;
  }

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

    *医院案内（スマホ）

  ==================================================================================================================================*/
  .clinic_desc dl {
    display: block;
  }

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

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

  .clinic_sche .tb02 th,
  .clinic_sche .tb02 td {
    font-size: 12px;
  }

  .clinic_facilities_wrap {
    display: block;
  }

  .facilities_item {
    width: 100%;
    margin-bottom: 20px;
  }

  .facilities_item_img img {
    max-height: 390px;
  }

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

    *料金表（スマホ）

  ==================================================================================================================================*/
  /*TYPE A -----------------------*/
  .price_table_a tr:first-child {
    display: none;
  }

  .price_table_a tr td:nth-child(1) {
    background: var(--bg-color);
    font-weight: bold;
  }

  .price_table_a {
    border-bottom: 1px solid var(--border-color);
  }

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

  .price_table_a th {
    border-bottom: none;
  }

  .price_table_a td {
    display: block;
    border-bottom: none;
  }

  .price_table_a tr td:nth-child(1) {
    width: 100%;
  }

  .price_table_a tr td:nth-child(2) {
    width: 100%;
  }

  .price_table_a tr td:nth-child(3) {
    width: 100%;
    white-space: normal;
  }

  /*TYPE B ----------------------*/
  .price_table_b {
    border-bottom: 1px solid var(--border-color);
  }

  .price_table_b tr td {
    display: block;
  }

  .price_table_b tr th {
    border-bottom: none;
  }

  .price_table_b tr td {
    border-bottom: none;
  }

  .price_table_b tr td:nth-child(1) {
    width: 100%;
    text-align: center;
  }

  .price_table_b tr td:nth-child(2) {
    width: 100%;
  }

  .price_table_b tr td:nth-child(3) {
    width: 100%;
  }

  /*TYPE C ----------------------*/
  .price_table_c {
    border-bottom: 1px solid var(--border-color);
  }

  .price_table_c th {
    display: block;
    border-bottom: none;
  }

  .price_table_c td {
    display: block;
    border-bottom: none;
  }

  .price_table_c tr td:nth-child(1) {
    width: 100%;
    text-align: center;
  }

  .price_table_c tr td:nth-child(2) {
    width: 100%;
  }

  .price_table_c tr td:nth-child(3) {
    width: 100%;
  }

  .price_table_c tr.price_table_table_c_variableitem th {
    width: 100%;
  }

  .price_table_c tr.price_table_table_c_variableitem td {
    width: 100%;
  }

  /*---------------- 診療内容のテーブル ----------------*/
  .price_table.price_table_medical tr td {
    display: block;
  }

  .price_table.price_table_medical tr:first-child {
    display: none;
  }

  .price_table.price_table_medical tr td:nth-child(1) {
    width: 100%;
    border-top: none;
    background: var(--bg-color);
    font-weight: bold;
    text-align: center;
  }

  .price_table.price_table_medical tr:nth-child(2) td:nth-child(1) {
    border-top: 1px solid var(--border-color);
  }

  .price_table.price_table_medical tr td:nth-child(2) {
    width: 100%;
    border-top: none;
    text-align: center;
  }

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

    *求人案内（スマホ）

  ==================================================================================================================================*/
  .recruit_img {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }

  .recruit_img img {
    width: 100%;
    height: auto;
  }

  .recruit_table {
    border-bottom: 1px solid var(--border-color);
  }

  .recruit_table th,
  .recruit_table td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .recruit_table th {
    border-bottom: none;
  }

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

    *アクセス（スマホ）

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

  .map_flex_item:first-child {
    margin-bottom: 20px;
  }

  .access_add {
    display: block;
  }

  .access_add dt {
    width: 100%;
  }

  .access_add dd {
    width: 100%;
  }

  .access_route ul li:not(:last-child) {
    margin-bottom: 25px;
  }

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

    *お知らせ（スマホ）

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

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

    *ブログ（スマホ）

  ==================================================================================================================================*/
  /*---------- 記事一覧 ----------*/
  .blog_list_item:not(:last-child) {
    margin-bottom: 30px;
  }

  /*---------- 記事 ----------*/
  .blog_single_thum img {
    max-height: 320px;
  }

  /* 目次 */
  #toc_container {
    padding: 20px;
  }

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

    *MPクラウド（スマホ）

  ==================================================================================================================================*/
  #mpcloud_schedule {
    bottom: 60px;
  }

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

    *お問い合わせ（スマホ）

  ==================================================================================================================================*/
  .contact {
    margin: 0 auto;
    width: auto;
  }

  /*-------------------- common --------------------*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc_inline {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_table {
    display: table !important;
  }
  .sp_table {
    display: table !important;
  }
  .sp_flex {
    display: flex !important;
  }
  .sp_mb00 {
    margin-bottom: 0 !important;
  }
  .sp_mr00 {
    margin-right: 0 !important;
  }
  .sp_ml00 {
    margin-left: 0 !important;
  }
  .sp_mt00 {
    margin-top: 0 !important;
  }
  .sp_pb00 {
    padding-bottom: 0 !important;
  }
  .sp_pr00 {
    padding-right: 0 !important;
  }
  .sp_pl00 {
    padding-left: 0 !important;
  }
  .sp_pt00 {
    padding-top: 0 !important;
  }
  .sp_center {
    text-align: center !important;
  }

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

  .img_fl img,
  .img_fr img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 300px;
    margin-bottom: 15px;
  }

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

    *ホーム（スマホ）

  ==================================================================================================================================*/
  /*-------------------- 共通設定 --------------------*/
  body.home,
  body.home header,
  body.home footer {
    overflow-x: visible;
  }

  /* inner */
  .home_inner {
    padding-left: 5.3%;
    padding-right: 5.3%;
  }

  /* h2 */
  body.home h2 {
    margin-bottom: 40px;
  }

  body.home h2::before {
    margin-bottom: 10px;
    font-size: 44px;
  }

  /*-------------------- メインビジュアル --------------------*/
  .home_mv {
    height: 350px;
  }

  .home_mv::after {
    bottom: -1px;
    height: 38px;
    background: url("/wp-content/uploads/wave_blend_sp.png") no-repeat center
      top / cover;
  }

  .home_mv .inner {
    width: 100%;
  }

  /* キャッチフレーズ */
  .main_catch {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    height: 350px;
    margin: auto;
    padding: 10px;
  }

  .catchcopy_tit span {
    font-size: 5vw;
  }

  .catchcopy_text span {
    font-size: 3vw;
  }

  .slide_catch {
    top: 140px;
    left: 0;
    right: 0;
    width: auto;
    max-width: calc(100% - 20px);
    margin: auto;
    padding: 10px;
    font-size: 5vw;
  }

  /* スライダー フェード */
  .slider-fade .slick-slide img {
    width: 100%;
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .slick-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
  }

  /*-------------------- スマホのみのエリア --------------------*/
  .top_sp_only {
    background: url("/wp-content/uploads/watercolor_beige.jpg") no-repeat center /
      cover;
  }

  .top_sp_only .home_inner {
    padding: 50px 5%;
  }

  /*　クリニック情報　*/
  .info_bnr_flex {
    display: block;
    position: static;
  }

  .info_bnr01 {
    margin: 0 auto 0 0;
  }

  .info_bnr02 {
    margin: 0 0 0 auto;
  }

  .top_sp_only .mv_bannar {
    position: static;
    width: auto;
    height: auto;
    text-align: center;
  }

  /*-------------------- お知らせ --------------------*/
  /* パターンE(pattern05) お知らせ+医院概要+アクセス */
  .top_news.pattern05 .home_inner {
    padding: 50px 5%;
  }

  .top_news.pattern05 h2 {
    margin-bottom: 40px;
    text-align: center;
  }

  .top_news.pattern05 h2::before {
    margin-bottom: 10px;
    text-align: center;
  }

  .top_news.pattern05 .btn01 {
    margin-top: 40px;
    text-align: center;
  }

  .top_news.pattern05 .top_news_list {
    margin-top: 0;
  }

  .top_news.pattern05 .top_news_list li {
    padding: 0 0 18px;
    font-size: 15px;
  }

  .top_news.pattern05 .top_news_list li span {
    margin-right: 10px;
  }

  .top_news.pattern05 .top_news_list li em {
    margin-right: 0;
  }

  .top_news.pattern05 .top_news_list li a {
    display: block;
    margin-top: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .top_info.pattern05 {
    padding: 0 2% 80px;
  }

  .top_info.pattern05::before {
    left: 0;
    width: 100%;
    height: 60%;
    margin: auto;
    border-radius: 0;
  }

  .top_info.pattern05::after {
    height: 16px;
    background: url("/wp-content/uploads/wave_beige_sp.png") no-repeat center
      top / cover;
  }

  .top_info.pattern05 .home_inner {
    padding: 30px 3% 40px;
    border-radius: 0 0 30px 30px;
    background: #fff;
  }

  .top_info.pattern05 .top_info_left {
    margin-bottom: 30px;
  }

  /*-------------------- ご挨拶 --------------------*/
  .sec_top_doctor::before {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    margin: auto;
    background: #fff;
    content: "";
  }

  .doctor_bg {
    position: relative;
    bottom: auto;
    left: auto;
    z-index: 1;
    width: calc(100% - (50% - 160px));
    height: 200px;
    border-radius: 0 30px 30px 0;
  }

  .sec_top_doctor .home_inner {
    padding: 50px 5% 50px;
  }

  .top_greeting_flex {
    display: block;
  }

  .top_greeting_flex_img {
    width: 100%;
    min-width: auto;
  }

  .top_doctor_img_box {
    margin-bottom: 30px;
  }

  .top_doctor_img_box::before {
    height: 140px;
  }

  .top_doctor_img {
    text-align: center;
  }

  .top_doctor_name {
    bottom: 15px;
    font-size: 18px;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }

  .top_doctor_name .name {
    font-size: 19px;
  }

  .top_doctor_name .name span:first-child {
    margin-right: 10px;
  }

  .top_doctor_name .name span.furigana {
    font-size: 70%;
  }

  .top_greeting_flex_text {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }

  .top_greeting_flex_text .text {
    margin-bottom: 50px;
    font-size: 16px;
  }

  .top_greeting_flex_text .text p {
    margin-bottom: 20px;
  }

  .top_greeting_flex_text .text p:last-child {
    margin-bottom: 0;
  }

  .top_greeting_catch_box {
    font-size: 20px;
  }

  .top_greeting_catch_box p {
    margin-bottom: 30px !important;
  }

  .top_greeting_catch_box p::before {
    width: 87%;
  }

  .top_greeting_catch_box p::after {
    margin-top: 10px;
  }

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

  /*-------------------- 当院の特徴 --------------------*/
  .sec_top_feature {
    background: url("/wp-content/uploads/deco02.png") no-repeat left bottom 30px /
      35%;
  }

  .sec_top_feature::before {
    position: absolute;
    top: -70px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: url("/wp-content/uploads/deco01.png") no-repeat center / contain;
    content: "";
  }

  .sec_top_feature .home_inner {
    padding: 50px 0 80px;
  }

  .sec_top_feature h2 {
    margin-bottom: 60px !important;
  }

  /* 当院の特徴パターンB(写真と文章分離、1コンテンツ横幅フル) */
  .sec_top_feature.pattern02 .top_feature_item {
    margin-bottom: 80px !important;
  }

  .sec_top_feature.pattern02 .top_feature_item::before {
    width: calc(100% - (50% - 140px));
    height: 218px;
  }

  .sec_top_feature.pattern02 .top_feature_item::after {
    width: calc(100% - (50% - 80px));
    height: 218px;
  }

  .sec_top_feature.pattern02 .top_feature_item .inner {
    padding: 0 5% 0;
  }

  .sec_top_feature.pattern02 .top_feature_img {
    width: 97%;
  }

  .sec_top_feature.pattern02 .top_feature_img::before {
    top: 10px;
  }

  .sec_top_feature.pattern02 .top_feature_box {
    width: 100%;
  }

  .sec_top_feature.pattern02 .ttl_box {
    margin-bottom: 30px;
  }

  .sec_top_feature.pattern02 .ttl_box::before {
    width: 91%;
  }

  .sec_top_feature.pattern02 .ttl_box h3 {
    font-size: 18px;
  }

  .sec_top_feature.pattern02 .top_feature_text {
    font-size: 16px;
  }

  .sec_top_feature.pattern02 .top_feature_text .btn01 {
    text-align: center;
  }

  .sec_top_feature.pattern02
    .top_feature_item:nth-of-type(1)
    .ttl_box
    .top_feature_num {
    margin-right: 10px;
  }

  /* 当院の特徴パターンBの左右互い違い（奇数）*/
  .sec_top_feature.pattern02 .top_feature_item:nth-child(odd)::before {
    top: 30px;
  }

  .sec_top_feature.pattern02 .top_feature_item:nth-child(odd)::after {
    top: -15px;
  }

  .sec_top_feature.pattern02 .top_feature_item:nth-child(odd) .top_feature_img {
    margin: 0 0 30px auto;
  }

  .sec_top_feature.pattern02
    .top_feature_item:nth-child(odd)
    .top_feature_img::before {
    left: -10px;
  }

  .sec_top_feature.pattern02 .top_feature_item:nth-child(odd) .top_feature_box {
    padding: 30px 0 0;
  }

  .sec_top_feature.pattern02 .top_feature_item:nth-of-type(6) {
    margin-bottom: 0 !important;
  }

  /*------当院の特徴パターンBの左右互い違いパターン------*/
  .top_feature_wrap.reverse .top_feature_item:nth-child(even)::before {
    top: 30px;
  }

  .top_feature_wrap.reverse .top_feature_item:nth-child(even)::after {
    top: -15px;
  }

  .top_feature_wrap.reverse .top_feature_item:nth-child(even) .top_feature_img {
    margin: 0 auto 30px 0;
  }

  .sec_top_feature.pattern02
    .top_feature_item:nth-child(even)
    .top_feature_img::before {
    right: -10px;
  }

  .sec_top_feature.pattern02
    .top_feature_item:nth-child(even)
    .top_feature_box {
    padding: 30px 0 0;
  }

  /*-------------------- 診療案内 --------------------*/
  .sec_top_medical {
    margin-bottom: 10px;
  }

  .sec_top_medical .home_inner {
    padding: 50px 5% 80px;
  }

  .sec_top_medical h2 {
    margin-bottom: 40px !important;
  }

  .sec_top_medical .sec_top_medical_flex {
    justify-content: center;
    gap: 0 5px;
  }

  /* 診療案内パターンA（アイコンを目立たせるタイプ）*/
  .sec_top_medical.pattern01 .sec_top_medical_flex .item {
    width: 49%;
    margin-bottom: 30px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item a {
    min-height: 310px;
  }

  .sec_top_medical.pattern01
    .sec_top_medical_flex
    .item
    a
    p.top_medial_menu_title_symptom {
    margin-bottom: 12px;
    padding: 12px 6px 9px;
    font-size: 13px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item a .item_img {
    height: 165px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item a .item_img img {
    width: auto;
    height: 60px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item a h3 {
    font-size: 15px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item a .btn01 p {
    padding: 8px 8px 6px 16px;
    font-size: 13px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item a .btn01 p::after {
    top: -2px;
    width: 23px;
    height: 23px;
    margin-left: 3px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item:nth-child(n + 7) {
    margin-bottom: 0;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item:nth-child(n + 5) a {
    min-height: 330px;
  }

  .sec_top_medical.pattern01 .sec_top_medical_flex .item:last-child a {
    min-height: 310px;
  }

  .sec_top_medical.pattern01
    .sec_top_medical_flex
    .item:nth-of-type(5)
    a
    .item_img
    img {
    height: 33px;
  }

  /*-------------------- 医療コラム --------------------*/
  .column_list_flex {
    /* gap: 20px 2%; */
    /* 一列にする場合はこちら */
    gap: 0;
  }

  .column_list_flex dl {
    /* width: 48%; */
    /* 一列にする場合はこちら */
    width: 100%;
  }

  /*-------------------- ループスライダー --------------------*/
  .clinic_slider .slick-slide {
    width: 200px;
    margin-right: 10px;
  }

  /*#loop_slider li img {
    width: 200px;
  }*/
}

@media screen and (max-width: 320px) {
  /*--------------------common--------------------*/
  .sp_inline_iP {
    display: inline !important;
  }
}
.category_class {
  background: #6faacc;
  color: #fff;
}
