@charset "UTF-8";
/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*色変数*/
/*フォント変数*/
* {
  font-feature-settings: "palt";
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.header-container,
.main,
.sidebar,
.footer {
  background-color: initial;
}

a {
  color: #505050;
}
a:hover {
  color: #baa2c6;
}

a.text_link {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: #ddd;
  transition: 0.5s;
}
a.text_link:hover {
  text-decoration-color: #baa2c6;
}

a.white_arrow::after {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 0.5rem;
  height: 0.8rem;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 2px 10px;
  transition: 0.5s;
}

a.black_arrow::after {
  content: "";
  background-color: #505050;
  display: inline-block;
  width: 0.5rem;
  height: 0.8rem;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 0.15em 0.8em;
  transition: 0.5s;
}

a.black_arrow_before::before {
  content: "";
  background-color: #333;
  display: inline-block;
  width: 0.4rem;
  height: 0.6rem;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 6px 2px 0;
  transition: 0.5s;
}

a.white_new_window::after {
  content: "";
  background-color: #fff;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(/wp-content/uploads/icon/new_window.svg);
  mask: url(/wp-content/uploads/icon/new_window.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 2px 10px;
  transition: 0.5s;
}

a.black_new_window::after {
  content: "";
  background-color: #505050;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-mask: url(/wp-content/uploads/icon/new_window.svg);
  mask: url(/wp-content/uploads/icon/new_window.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 4px 8px;
  transition: 0.5s;
}

a.black_tel::after {
  content: "";
  background-color: #505050;
  display: inline-block;
  width: 1rem;
  height: 1.1rem;
  -webkit-mask: url(/wp-content/uploads/icon/tel.svg);
  mask: url(/wp-content/uploads/icon/tel.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 2px 22px;
  transition: 0.5s;
  left: 0 !important;
  top: 16px;
  position: absolute;
  padding: 0 0px 0 0;
}

a.white_file::after {
  content: "\f1c1";
  font-family: "Font Awesome 5 free";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin: 0 0 0 10px;
  transition: 0.5s;
}

ul {
  list-style-type: none;
}

p {
  text-align: justify;
}

h3 {
  line-height: 4em;
  padding-left: 16px;
  position: relative;
  font-weight: normal;
  margin: 0 !important;
  border: 0 !important;
}
h3::before {
  width: 4px;
  height: 60%;
  position: absolute;
  top: 20%;
  left: 0;
  content: "";
  background: #baa2c6;
}

h4 {
  font-weight: normal !important;
  margin-bottom: 10px !important;
}

.button a {
  position: relative;
  top: 0;
  color: #505050;
  display: inline-block;
  text-align: center;
  background: #fff;
  border: solid 2px #baa2c6;
  border-radius: 30px;
  padding: 10px 20px;
  margin: 10px 0 0;
  font-size: 16px;
  font-weight: bold;
  transition: 0.5s;
  text-decoration: none;
  line-height: 1.4em;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}
.button a:hover {
  top: -5px;
  background: #fbeefb;
}

figure {
  border-radius: 0;
}

.box_gray {
  background: #fafafa;
  border-radius: 10px;
  padding: 30px;
  display: block;
}
.box_gray h3 {
  padding: 0 0 10px 0;
}
.box_gray h3::before {
  content: none;
}
.box_gray li::before {
  background: #a29b90 !important;
}
.box_gray li:last-child {
  border-bottom: none;
}

.box_blue {
  background: #a0d0eb;
  border-radius: 10px;
  padding: 20px;
  display: block;
}
.box_blue h3 {
  color: #475e9a;
  padding: 0 0 10px 0;
}
.box_blue h3::before {
  content: none;
}
.box_blue li::before {
  background: #475e9a !important;
}
.box_blue li:last-child {
  border-bottom: none;
}

.box_purple {
  background: #fcf5ff;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  border: solid 4px #baa2c6;
}

.box_red {
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  border: solid 4px #b81c25;
  background: #fff;
}
.box_red h3 {
  color: #b81c25;
  padding: 0 0 10px 0;
}
.box_red h3::before {
  content: none;
}
.box_red a {
  font-size: 24px;
}

.box_beige {
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  background: #fafafa;
}
.box_beige h3 {
  color: #71498d;
  padding: 0 0 10px 0;
}
.box_beige h3::before {
  content: none;
}
.box_beige th {
  width: 60% !important;
}
.box_beige td {
  width: 40% !important;
  padding: 10px !important;
  background-color: #fafafa !important;
}

@media screen and (min-width: 768px) {
  .box_beige th {
    width: 70% !important;
    padding: 20px 10px !important;
  }
  .box_beige td {
    width: 30% !important;
    padding: 20px 10px !important;
  }
}
.strong_text {
  background: linear-gradient(transparent 90%, #f79174 0%);
  display: inline;
  text-decoration-line: none;
}

.page_lead {
  font-weight: bold;
  font-size: 18px;
}

.notice {
  text-indent: -1em;
  padding: 0 0 0 1em;
  line-height: 1.4em;
  font-size: 0.8rem;
}

.font_bold {
  font-weight: bold !important;
}

.small_text {
  font-size: 0.8em;
  letter-spacing: -0.02em;
}

.display_flex_center {
  display: flex;
  justify-content: center;
}

.mt10 {
  margin-top: 10px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.width300 {
  width: 300px;
}

.width100per {
  width: 100% !important;
}

.su-animate {
  margin: 0;
}

.display_none {
  display: none;
}

.sp_display {
  display: block;
}

.pc_display {
  display: none;
}

@media screen and (min-width: 768px) {
  .page_lead {
    text-align: center;
    font-size: 24px;
  }
  .notice {
    margin: 0 0 5px 0;
    font-size: 14px;
  }
  .pc_display {
    display: block;
  }
  .sp_display {
    display: none;
  }
}
/*リスト*/
.list {
  padding-left: 0 !important;
}
.list li {
  position: relative;
  border-bottom: solid 1px #555;
  padding: 10px 0 10px 30px;
}
.list li::before {
  width: 10px;
  height: 10px;
  background: #603c2c;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  left: 10px;
  content: "";
}
.list li h4 {
  border: 0;
}

.list_noline {
  padding-left: 0 !important;
}
.list_noline li {
  position: relative;
  padding: 0 0 0 30px;
}
.list_noline li::before {
  width: 10px;
  height: 10px;
  background: #a29b90;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
}
.list_noline li h4 {
  border: 0;
  margin: 0 0 0 0;
  padding: 0;
  line-height: 1.6em;
  font-size: 20px;
}

.list_checked {
  padding-left: 0 !important;
}
.list_checked li {
  position: relative;
  padding: 0 0 0 30px;
}
.list_checked li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: #cdc1ad;
  font-weight: bold;
  position: absolute;
  top: 2px;
  left: 8px;
  font-size: 14px;
}
.list_checked li h4 {
  border: 0;
  margin: 0 0 0 0;
  padding: 0;
  line-height: 1.6em;
  font-size: 20px;
}

.list_number {
  counter-reset: number;
  background: #fff;
  border: 1px solid #a29b90;
  padding: 20px 10px 20px 20px;
}
.list_number li {
  position: relative;
  padding: 0 0 20px 30px !important;
  line-height: 1.6em;
}
.list_number li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #cdc1ad;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  left: -1em;
  width: 40px;
  height: 40px;
  line-height: 1.8em;
  text-align: center;
}

.list_check_content {
  width: 100vw;
  margin: 0px calc(50% - 50vw) 60px;
  padding: 20px 20px 40px;
}
.list_check_content h3 {
  color: #505050;
}
.list_check_content h3::before {
  content: none;
}
.list_check_content ul.list_check {
  background: #a0d0eb;
  padding: 20px;
  border-radius: 10px;
}
.list_check_content ul.list_check li {
  padding-left: 1em !important;
  text-indent: -1em;
}
.list_check_content ul.list_check li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  padding-right: 5px;
  color: #f89174; /*アイコンの色*/
  background: none !important;
}

@media screen and (min-width: 768px) {
  .list_checked li::before {
    top: 4px;
    left: 8px;
    font-size: 16px;
  }
  .list_number > div {
    margin: 0 0 0 0;
  }
  .list_number > div h3 {
    padding: 10px 0 !important;
    font-size: 18px;
    line-height: 1.4em;
    text-align: justify;
  }
  .list_number > div p {
    line-height: 1.6em;
  }
  .list_check_content {
    margin: 0px auto;
    padding: 20px 0;
    width: 800px;
  }
  .list_check_content h3 {
    text-align: center;
    margin: 0 !important;
  }
  .list_check_content ul.list_check {
    padding: 40px;
    width: 800px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
  }
  .list_check_content ul.list_check li {
    margin: 0 40px 0 0;
    line-height: 3em;
  }
}
/*テーブル*/
/*診療時間テーブル*/
table.info_hours {
  text-align: center;
  margin: 0 0 10px 0;
}
table.info_hours tr {
  border-bottom: solid 1px #f1eee9;
}
table.info_hours tr.info_hours_02 th:first-child {
  text-align: left;
  font-size: 14px;
}
table.info_hours tr th {
  border: 0;
  background-color: #fff;
  padding: 5px 0;
}
table.info_hours tr th span {
  font-size: 0.8em;
  display: block;
}
table.info_hours tr td {
  border: 0;
  background-color: #fff;
  color: #baa2c6;
}

.price_table table {
  width: 100% !important;
  table-layout: auto;
}
.price_table table tr th {
  padding: 10px;
  background: #71498d;
  text-align: center;
  color: #fff;
  font-weight: normal;
}
.price_table table tr td {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  text-align: center;
}
.price_table table tr td:first-child {
  width: 40%;
}
.price_table table .subcolor {
  background-color: #8863a2;
}

table.table1 {
  border-collapse: separate;
}
table.table1 tr:first-child th {
  border-top: solid 1px #333;
}
table.table1 tr:first-child td {
  border-top: solid 1px #333;
}
table.table1 tr th {
  background-color: #f0ede7;
  border: 0;
  padding: 10px;
  width: 30%;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid 1px #333;
  font-weight: bold;
}
table.table1 tr td {
  border: 0;
  background-color: #fff;
  padding: 20px;
  text-align: justify;
  border-bottom: solid 1px #333;
}
table.table1 .button a {
  padding: 10px 14px;
  font-size: 14px;
}
table.table1 .button a::after {
  margin: 0 0 2px 10px;
}

@media screen and (min-width: 768px) {
  table.table1 tr th {
    padding: 40px;
  }
  table.table1 tr td {
    padding: 40px;
  }
}
table.table2 {
  border-collapse: separate;
}
table.table2 tr:first-child th {
  border-top: solid 1px #333;
}
table.table2 tr:first-child td {
  border-top: solid 1px #333;
  background: #ffeef6;
}
table.table2 tr th {
  background-color: #ffeef6;
  border: 0;
  padding: 10px;
  width: auto;
  text-align: center;
  vertical-align: middle;
  border-bottom: solid 1px #333;
  font-weight: initial;
  font-size: 1em;
}
table.table2 tr td {
  border: 0;
  background-color: #fff;
  padding: 20px;
  text-align: justify;
  border-bottom: solid 1px #333;
  border-left: solid 1px #333;
  font-size: 1em;
}
table.table2 .button a {
  padding: 10px;
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  table.table2 tr th {
    padding: 40px;
  }
  table.table2 tr td {
    padding: 40px;
  }
}
table.table3 {
  border-collapse: separate;
}
table.table3 tr:first-child th {
  border-top: solid 1px #333;
}
table.table3 tr:first-child td {
  border-top: solid 1px #333;
}
table.table3 tr th {
  background-color: #f0ede7;
  border: 0;
  padding: 10px;
  width: 70%;
  text-align: left;
  vertical-align: middle;
  border-bottom: solid 1px #333;
  font-weight: bold;
}
table.table3 tr td {
  border: 0;
  background-color: #fff;
  padding: 20px;
  text-align: justify;
  border-bottom: solid 1px #333;
}

@media screen and (min-width: 768px) {
  table.table3 tr th {
    padding: 40px;
    width: 80%;
  }
  table.table3 tr td {
    padding: 40px;
  }
}
/*テーブル　チェックリスト*/
.check_list_form table.customTable td,
.check_list_form table.customTable th {
  padding: 10px;
}
.check_list_form .thclass1 {
  width: 85vw;
}
.check_list_form .thclass2 {
  width: 15vw;
}
.check_list_form .tdclass {
  text-align: center;
}
.check_list_form .total {
  text-align: center;
}
.check_list_form .box01,
.check_list_form .form1-box01,
.check_list_form .form2-box01 {
  padding: 0.5em 1em;
  font-weight: bold;
  color: #2562a2;
  border: solid 3px #2562a2;
  border-radius: 10px;
}
.check_list_form input[type=checkbox] {
  width: 25px;
  height: 25px;
  margin: 10px 0 0 0;
}

/*流れコンテンツ*/
.flow_content {
  padding: 20px;
  position: relative;
  margin: 0 0 50px 0 !important;
  background: #fafafa;
}
.flow_content.last::after {
  content: none;
}
.flow_content::after {
  content: "";
  background-color: #a29b90;
  width: 20px;
  height: 32px;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  bottom: -40px;
  left: calc(50% - 10px);
  transform: rotate(90deg);
}
.flow_content h4 {
  border: 0;
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 20px;
  font-weight: bold !important;
  padding-left: 1.4em !important;
  text-indent: -1.4em;
  text-align: justify;
  line-height: 1.6em;
}
.flow_content h4::first-letter {
  font-size: 36px;
  color: #a29b90;
}
.flow_content h5 {
  text-align: center;
  margin: 0 0 10px 0;
  border-bottom: solid 2px #96bd83;
}

@media screen and (min-width: 768px) {
  .flow_content {
    padding: 40px;
  }
}
/*流れコンテンツ矢印 flow_arrow*/
.flow_image {
  display: flex;
}
.flow_image figcaption {
  font-size: 16px;
}
.flow_image img {
  width: 90%;
  margin: 0 auto;
}
.flow_image .flow_image_item {
  position: relative;
}
.flow_image .flow_image_item::after {
  content: "";
  background-color: #f9b049;
  height: 20px;
  width: 20px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  right: calc(50% - 10px);
  bottom: -30px;
}

@media screen and (min-width: 768px) {
  .flow_image .flow_image_item::after {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
            clip-path: polygon(0 0, 0 100%, 100% 50%);
    right: -30px;
    top: calc(50% - 10px);
  }
}
/*コンセプト*/
.concept {
  background-image: url(/wp-content/uploads/2021/12/about1.jpg);
  background-size: 120% auto;
  padding: 10px;
  background-position: center 0px;
  background-repeat: no-repeat;
}
.concept .concept_frame {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin: 200px 10px 10px 10px;
}
.concept .concept_frame h2 {
  text-align: center;
  border: 0 !important;
  margin: 0 0 10px 0 !important;
  font-size: 24px;
}
.concept .concept_frame .concept_main {
  font-weight: bold;
  font-size: 5vw;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .concept {
    background-position: center 0;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    height: 1100px;
    position: relative;
  }
  .concept .concept_frame {
    position: absolute;
    width: 700px;
    height: 900px;
    top: 0px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    padding: 50px;
  }
  .concept .concept_frame h2 {
    text-align: center;
  }
  .concept .concept_frame .concept_main {
    font-size: 24px;
    text-align: center;
  }
  .concept .concept_frame .notice {
    margin: 0 0 20px 0 !important;
  }
}
/*バナーpc spサイズ違い*/
.sp_display_banner {
  display: flex;
  justify-content: center;
}

.pc_display_banner {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_display_banner {
    display: none;
  }
  .pc_display_banner {
    display: flex;
    justify-content: center;
  }
}
/*header*/
.header-container-in.hlt-top-menu {
  height: 117px;
}
.header-container-in.hlt-top-menu #header-in .logo {
  position: relative;
}
.header-container-in.hlt-top-menu #header-in .logo::after {
  content: "「オンコロジー」とは、がんの診断、治療、研究などがんに関わるすべての分野を意味します。";
  position: absolute;
  bottom: -30px;
  left: 10px;
  text-align: left;
  font-size: 10px;
  width: 95%;
}
.header-container-in.hlt-top-menu #header-in .logo .site-name {
  padding: 15px 15px 15px 5px;
}
.header-container-in.hlt-top-menu #header-in .header_info {
  display: none;
}

@media screen and (min-width: 768px) {
  .fixed-header .header {
    display: none;
  }
  .header-container-in.hlt-top-menu {
    display: block;
    width: initial;
    height: initial;
  }
  .header-container-in.hlt-top-menu #header-in {
    flex-direction: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 130px;
  }
  .header-container-in.hlt-top-menu #header-in .tagline {
    flex-basis: 100%;
  }
  .header-container-in.hlt-top-menu #header-in .logo {
    position: relative;
    padding: 10px 0 0 30px;
  }
  .header-container-in.hlt-top-menu #header-in .logo::after {
    bottom: -65px;
    left: 30px;
    width: 100%;
    letter-spacing: 0.1em;
  }
  .header-container-in.hlt-top-menu #header-in .logo img {
    max-height: 110px;
    width: 400px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info {
    display: flex;
    justify-content: end;
    padding: 20px 0;
    margin: 0 20px 0 auto;
    align-items: center;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li {
    font-size: 16px;
    padding: 0 40px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li:last-child {
    padding: 0;
    line-height: 1.8rem;
    font-weight: bold;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li a {
    text-decoration: none;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button {
    padding: 0 20px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button a {
    transition: 0.5s;
    display: block;
    color: #fff;
    background: #8863a2;
    font-size: 18px;
    font-weight: bold;
    padding: 6px 5px 14px 5px;
    border-radius: 10px;
    border: 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button a:hover {
    opacity: 0.8;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button a span.reserve_header_button_title {
    text-align: center;
    display: block;
    padding: 0 0 5px 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button a span.reserve_header_button_content {
    text-align: center;
    background: #fff;
    color: #555;
    padding: 5px;
    margin: 0 5px;
    border-radius: 10px;
    font-size: 14px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.home_medical_care_header_button a {
    display: block;
    background-color: #f5e0ff;
    border: solid 2px #fff599;
    padding: 28px 10px;
    border-radius: 10px;
    font-weight: bold;
    margin: 0 20px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.tel_header_button a {
    text-align: left;
    font-size: 34px;
    position: relative;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.tel_header_button a::before {
    content: "";
    background: url(/wp-content/uploads/icon/header_tel_icon.svg);
    width: 46px;
    height: 46px;
    position: absolute;
    top: -12px;
    left: -50px;
  }
}
@media screen and (max-width: 767px) {
  #header .site-name-text {
    padding: 0 80px 0 0;
    width: 100%;
  }
  #header .site-name-text .site-logo-image {
    max-height: 90px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header-container-in.hlt-top-menu #header-in {
    height: 260px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info {
    padding: 0 20px;
    margin: 0 20px 0 auto;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li {
    font-size: 14px;
    padding: 0 20px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button {
    padding: 0 20px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.reserve_header_button a {
    font-size: 16px;
    padding: 14px 10px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.tel_header_button {
    letter-spacing: 0.1em;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.tel_header_button a {
    font-size: 32px;
    padding: 0 0 0 30px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.tel_header_button a::before {
    width: 26px;
    height: 26px;
    top: 10px;
    left: 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.line_header_button a {
    padding: 16px 16px;
  }
}
/*breadcrumb*/
.breadcrumb {
  margin: 0;
  padding: 0 10px;
}

/*ウィジェット　コンテンツ下部*/
.footer_info {
  padding: 0 20px 20px;
}
.footer_info ul {
  padding-left: 0;
}
.footer_info .footer_info_left {
  margin: 0 0 0 0;
}
.footer_info .footer_info_left .footer_info_logo {
  display: block;
  padding: 20px 0;
}
.footer_info .footer_info_left .medical_subjects {
  display: flex;
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: bold;
}
.footer_info .footer_info_left .medical_subjects li {
  border: solid 2px #f9b049;
  border-radius: 10px;
  padding: 2px 6px;
  margin: 0 5px 0 0;
  background: #fff;
  font-size: 14px;
}
.footer_info .footer_info_left .feature span {
  background-color: #603c2c;
  color: #fff;
  padding: 0.4em 0.6em;
  margin: 0 10px 20px 0;
  border-radius: 10px;
}
.footer_info .footer_info_left .footer_info_tel {
  margin: 20px 0;
  border-top: solid 1px #505050;
  border-bottom: solid 1px #505050;
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.footer_info .footer_info_left .footer_info_tel li:first-child {
  font-weight: bold;
  font-size: 20px;
}
.footer_info .footer_info_left .footer_info_tel li:last-child {
  white-space: nowrap;
  line-height: 1;
}
.footer_info .footer_info_left .footer_info_tel li:last-child img {
  width: 20px;
  margin: 0 4px 0 0;
}
.footer_info .footer_info_left .footer_info_tel li:last-child a {
  text-decoration: none;
  font-size: 32px;
  font-weight: bold;
  white-space: nowrap;
}
.footer_info .footer_info_left .web_reserve {
  margin: 0 0 30px 0;
}
.footer_info .footer_info_left .web_reserve a {
  display: block;
  color: #fff;
  background: #a29b90;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  border: 0;
}
.footer_info .footer_info_left .web_reserve a::before {
  background: #505050 !important;
}
.footer_info .footer_info_left .web_reserve a:hover {
  background: #505050;
}
.footer_info .footer_info_right {
  font-size: 20px;
}
.footer_info .footer_info_right .pay {
  font-size: 16px;
}
.footer_info .footer_map {
  margin: 20px 0 0 0;
}
.footer_info .footer_map iframe {
  margin: 10px 0;
  border: none;
  width: 100%;
  height: 400px;
}
.footer_info .footer_access > li {
  margin: 0 0 30px 0;
}
.footer_info .footer_access > li h3 {
  margin: 0 0 10px 0px !important;
  border-bottom: solid 2px #a29b90 !important;
  padding: 0 0 0 30px;
  line-height: 2em;
  font-weight: bold;
}
.footer_info .footer_access > li h3::before {
  background: none;
}
.footer_info .footer_access > li h3.top_access_train {
  position: relative;
}
.footer_info .footer_access > li h3.top_access_train::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 32px;
  background-image: url(/wp-content/uploads/icon/access_train_icon.svg);
  position: absolute;
  left: 0px;
  top: 2px;
}
.footer_info .footer_access > li h3.top_access_bus {
  position: relative;
}
.footer_info .footer_access > li h3.top_access_bus::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 31px;
  background-image: url(/wp-content/uploads/icon/access_bus_icon.svg);
  position: absolute;
  left: 0px;
  top: 3px;
}
.footer_info .footer_access > li h3.top_access_car {
  position: relative;
}
.footer_info .footer_access > li h3.top_access_car::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 20px;
  background-image: url(/wp-content/uploads/icon/access_car_icon.svg);
  position: absolute;
  left: 0px;
  top: 11px;
}

@media screen and (min-width: 768px) {
  .footer_info {
    padding: 0 0 40px 0;
  }
  .footer_info ul {
    display: flex;
    justify-content: center;
    margin: 0 0 60px 0;
  }
  .footer_info .footer_info_left {
    margin: 0 40px 0 0;
    width: 500px;
  }
  .footer_info .footer_info_left .footer_info_tel {
    padding: 10px 0;
  }
  .footer_info .footer_info_left .footer_info_tel li:first-child {
    font-size: 24px;
    text-align: center;
    padding: 0 0 0 0;
  }
  .footer_info .footer_info_left .footer_info_tel li:last-child {
    padding: 0 0 0 0;
  }
  .footer_info .footer_info_left .footer_info_tel li:last-child a {
    font-size: 60px;
  }
  .footer_info .footer_info_left .footer_info_tel li:last-child img {
    width: 40px;
  }
  .footer_info .footer_info_left p {
    margin: 0 0 10px 0;
  }
  .footer_info .footer_info_left .medical_subjects {
    justify-content: flex-start;
  }
  .footer_info .footer_info_right {
    margin: 20px 0 0 0;
    width: 500px;
  }
  .footer_info .footer_info_right table.info_hours {
    margin: 10px auto;
    text-align: center;
    font-size: 20px;
  }
  .footer_info .footer_info_right table.info_hours tr th:first-child {
    font-size: 18px;
  }
  .footer_info .footer_map {
    width: 95%;
    margin: 0 auto 30px;
    border-radius: 10px;
  }
  .footer_info .footer_map p {
    text-align: center;
  }
  .footer_info .footer_map ul {
    justify-content: space-around;
  }
  .footer_info .footer_map ul .gmap {
    width: 100%;
  }
  .footer_info .footer_map ul .gmap iframe {
    width: 100%;
    height: 460px;
    border-radius: 0 !important;
  }
  .footer_info .footer_map ul .illustmap {
    width: 30%;
    height: 460px;
    margin: 10px 0 0 0;
  }
  .footer_info .footer_map ul .illustmap img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 460px;
    -o-object-position: 30%;
       object-position: 30%;
  }
  .footer_info .footer_map .button {
    text-align: center;
  }
  .footer_info .footer_access > li {
    margin: 0 20px;
  }
  .footer_info .footer_access > li ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
  }
  .footer_info .button {
    display: flex;
    justify-content: center;
    margin: 50px 0 0;
    padding: 0 0 50px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer_info ul {
    flex-wrap: wrap;
  }
  .footer_info .footer_info_left {
    margin: 0 40px 40px 0;
    width: 500px;
  }
  .footer_info .footer_info_right {
    margin: 0 0 0 0;
    width: 500px;
  }
  .footer_info .footer_info_tel li:first-child {
    font-size: 20px;
    text-align: center;
    padding: 10px 20px 10px 0;
  }
}
/*footer*/
#footer {
  margin: 0 0 120px 0;
  padding: 0;
}
#footer .footer-bottom {
  padding: 0 20px 50px 20px;
}
#footer .footer-bottom li {
  position: relative;
  padding: 0 0 0 12px;
  border-left: 0;
  border-right: 0;
}
#footer .footer-bottom li ::before {
  width: 5px;
  height: 5px;
  background: #a29b90;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 0px;
  content: "";
}

@media screen and (min-width: 768px) {
  #footer .footer-bottom {
    padding: 20px 0 90px 0;
  }
  #footer .footer-bottom ul {
    margin: 0 0 40px 0;
  }
  #footer .footer-bottom ul li ::before {
    left: 12px;
  }
}
/*フッターメニュー*/
.navi-footer-in a:hover {
  background: 0 !important;
  color: #a29b90;
}

@media screen and (max-width: 480px) {
  .navi-footer-in > .menu-footer li.menu-item {
    width: 100%;
    text-align: left;
  }
  .navi-footer-in > .menu-footer li.menu-item a {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
/*PC　下部固定メニュー*/
.footer__menu_fix {
  position: fixed;
  bottom: 60px;
  left: 10px;
  z-index: 0;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
}
.footer__menu_fix .footer__menu_fix_inner {
  display: flex;
  border-radius: 10px;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a {
  display: block;
  font-size: 16px;
  color: #fff;
  background: #8863a2;
  text-decoration: none;
  padding: 5px 0px;
  transition: 0.3s ease-in;
  width: calc(100% - 150px);
  height: auto;
  margin: 0;
  border-radius: 10px;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a:hover {
  background: #71498d;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a span.reserve_header_button_title {
  text-align: center;
  padding: 0;
  display: block;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a span.reserve_header_button_content {
  background: #fff;
  color: #555;
  padding: 5px 7px 5px;
  margin: 0px 5px 5px 5px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .footer__menu_fix {
    bottom: 30px;
    right: 110px;
  }
  .footer__menu_fix .footer__menu_fix_inner {
    justify-content: end;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web a {
    display: inline-block;
    font-size: 18px;
    color: #fff;
    background: #8863a2;
    text-decoration: none;
    padding: 14px 20px;
    transition: 0.3s ease-in;
    width: auto;
    height: 60px;
    margin: 0 10px 0 0;
    border-radius: 30px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web a:hover {
    background: #71498d;
    margin-top: -5px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web a span.reserve_header_button_title {
    display: inline;
    text-align: center;
    padding: 0 0 5px 0;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web a span.reserve_header_button_content {
    display: inline;
    text-align: center;
    background: #fff;
    color: #555;
    padding: 5px;
    margin: 0 5px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_home_medical_care a {
    text-decoration: none;
    display: block;
    background-color: #f5e0ff;
    border: solid 2px #fff599;
    padding: 16px;
    border-radius: 50px;
    font-weight: bold;
    margin: 0 10px 0 0;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_inner {
    display: block;
    position: relative;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_inner a {
    display: flex;
    font-size: 24px;
    line-height: 1.6em;
    color: #fff;
    transition: 0.3s ease-in;
    height: 60px;
    background: #8863a2;
    padding: 10px 20px 10px 40px;
    text-decoration: none;
    border-radius: 30px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_inner a:hover {
    background-color: #71498d;
    margin-top: -5px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_inner a::before {
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
    content: "\f879";
    position: absolute;
    top: 12px;
    left: 14px;
  }
}
.footer__menu_fix.view {
  opacity: 1;
}

/*モバイルヘッダーメニュー*/
.mblt-header-and-footer-mobile-buttons {
  margin: 0;
}

.mobile-header-menu-buttons {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 0px;
  padding: 10px 0px 0px 0px;
  margin: 0px 0 0 auto;
  position: fixed;
  right: 15px;
  top: 15px;
  box-shadow: none;
}
.mobile-header-menu-buttons .logo-menu-button {
  display: none;
}
.mobile-header-menu-buttons .search-menu-button {
  display: none;
}
.mobile-header-menu-buttons .navi-menu-button {
  border-right: 0 !important;
}

/*モバイルスライドインメニュー*/
#navi-menu-content .menu-close-button {
  text-align: right;
  color: #fff;
  background: #cdc1ad;
}
#navi-menu-content .menu-close-button span {
  margin: 0 10px 0 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}
#navi-menu-content .menu-close-button span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
#navi-menu-content .menu-drawer > .menu-item {
  border-bottom: dotted 1px #a29b90;
  padding: 5px 0;
}
#navi-menu-content .menu-drawer > .menu-item .sub-menu li {
  position: relative;
  border-bottom: 0;
}
#navi-menu-content .menu-drawer > .menu-item .sub-menu li:before {
  width: 8px;
  height: 8px;
  background: #baa2c6;
  border-radius: 10px;
  position: absolute;
  top: 0.8em;
  left: 10px;
  content: "";
}
#navi-menu-content .menu-drawer > .menu-item .sub-menu li:last-child {
  border-bottom: 0;
}
#navi-menu-content .menu-drawer > .menu-item a {
  font-weight: bold;
  position: relative;
  padding: 6px 6px 6px 28px;
}
#navi-menu-content .menu-drawer > .menu-item a span {
  font-size: 12px;
  display: block;
}
#navi-menu-content .mobile_slide_info {
  padding: 5px 10px;
  color: #505050;
}
#navi-menu-content .mobile_slide_info .info_hours {
  font-size: 18px;
  padding: 5px 5px 0 5px;
  border-collapse: initial;
  color: #555;
  margin: 10px 0;
}
#navi-menu-content .mobile_slide_info .info_hours tr {
  background: none;
}
#navi-menu-content .mobile_slide_info .info_hours th,
#navi-menu-content .mobile_slide_info .info_hours td {
  border: 0;
  padding: 10px 5px;
  background: none;
  border-bottom: 1px solid #888 !important;
  letter-spacing: 0.1em;
}
#navi-menu-content .mobile_slide_info .note {
  color: #555;
  font-weight: bold;
}
#navi-menu-content .mobile_slide_info .footer_info_tel {
  margin: 0 0 20px 0;
  padding: 0;
  border-top: solid 2px #505050;
  border-bottom: solid 2px #505050;
  font-weight: bold;
  color: #555;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:first-child {
  text-align: center;
  padding: 10px 0 0;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:last-child {
  text-align: center;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:last-child img {
  width: 24px;
  margin: 0 4px 0 0;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:last-child a {
  text-decoration: none;
  font-size: 8vw;
}
#navi-menu-content .mobile_slide_info .button.web_reserve {
  margin: 0 0 50px 0;
}
#navi-menu-content .mobile_slide_info .button.web_reserve a {
  display: block;
  color: #fff;
  background: #a29b90;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  border: 0;
}
#navi-menu-content .mobile_slide_info .button.web_reserve a::before {
  background: #a29b90 !important;
}
#navi-menu-content .mobile_slide_info .button.web_reserve a:hover {
  background: #505050;
}
#navi-menu-content .mobile_slide_info .button a {
  margin: 10px 0;
}

.mobile-menu-buttons {
  background: #cdc1ad;
}
.mobile-menu-buttons .menu-button {
  border-right: solid 2px #fff;
  color: #fff;
  padding: 0;
}
.mobile-menu-buttons .menu-button:last-child {
  border: none;
}
.mobile-menu-buttons .menu-button > a {
  color: #fff;
}
.mobile-menu-buttons .menu-caption {
  font-size: 12px;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: -0.05em;
}

.has-logo-button .menu-button {
  width: 60px;
}

@media screen and (min-width: 1024px) {
  .mobile-header-menu-buttons.mobile-menu-buttons {
    display: none;
  }
}
/*TOPへ戻るボタン*/
.go-to-top {
  right: 20px;
  bottom: 60px;
  z-index: 1;
}
.go-to-top .go-to-top-button {
  position: relative;
  height: 48px;
  width: 48px;
  display: block !important;
  border: 2px solid #baa2c6;
  background: #fff;
  border-radius: 50%;
}
.go-to-top .go-to-top-button::after {
  position: absolute;
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 0.1em solid #baa2c6;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  top: calc(50% - 0.2em);
  left: calc(50% - 0.2em);
}
.go-to-top .go-to-top-button span {
  display: none;
}

@media screen and (min-width: 768px) {
  .go-to-top {
    right: 30px;
    bottom: 30px;
    transition: 0.3s;
  }
  .go-to-top .go-to-top-button {
    height: 60px;
    width: 60px;
  }
  .go-to-top:hover {
    bottom: 35px;
  }
}
/*navi*/
@media screen and (min-width: 768px) {
  .hlt-tm-right #navi .navi-in > ul {
    justify-content: end;
    padding: 0 20px 0;
    font-size: 18px;
    font-weight: bold;
  }
  .hlt-tm-right #navi .navi-in > ul li a {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hlt-tm-right #navi .navi-in > ul li a:hover {
    color: #baa2c6;
    background: 0 !important;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2597 {
    position: relative;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2597:hover > .sub-menu {
    display: flex;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2597:hover > .sub-menu li {
    width: 100% !important;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-783 {
    position: relative;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-783:hover > .sub-menu {
    display: flex;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-4542 {
    position: relative;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-4542:hover > .sub-menu {
    display: flex;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu {
    background-color: #ffffff;
    border: solid 2px #baa2c6;
    border-radius: 10px;
    top: 55px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px 20px 0 20px;
    min-width: 0;
    width: auto;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu:hover {
    display: flex;
    width: auto;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li {
    width: auto !important;
    height: 40px;
    line-height: 1em;
    position: relative;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li::before {
    content: "●";
    position: absolute;
    top: 0;
    left: 2px;
    font-size: 12px;
    color: #baa2c6;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li span {
    display: block;
    font-size: 0.7em;
    line-height: 1;
  }
}
@keyframes icon_fuwa {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/************************************
** TOPページ
************************************/
.page-id-9 .a-wrap:hover {
  background: none !important;
}
.page-id-9 article {
  margin-bottom: 0 !important;
}
.page-id-9 .article-header {
  display: none;
}
.page-id-9 .content {
  margin-top: 0;
}
.page-id-9 .content .content-in {
  width: initial;
}
.page-id-9 main {
  padding: 0;
  overflow: initial !important;
}
.page-id-9 main #post-9 .entry-content {
  width: 100% !important;
}
.page-id-9 main #post-9 .entry-content h2 {
  background: none;
  margin: 0 0 40px 0;
  padding: 0;
  text-align: left;
  position: relative;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 0;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

@media screen and (min-width: 768px) {
  .page-id-9 main #post-9 .entry-content h2 {
    margin: 0 0 60px 0;
    font-size: 36px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .page-id-9 main #post-9 .entry-content h2 {
    font-size: 24px;
  }
}
/*hero*/
.page-id-9 .hero {
  position: relative;
  margin: 0;
}
.page-id-9 .hero .hero_open_date {
  color: #baa2c6;
  display: inline-block;
  font-size: 4vw;
  background: #fff;
  padding: 10px;
  line-height: 1.4em;
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: 1;
  font-weight: bold;
}
.page-id-9 .hero .hero_open_date a {
  text-decoration: none;
}
.page-id-9 .hero .hero_open_date2 {
  top: 80px;
}
.page-id-9 .hero .hero_latest_info {
  width: 100%;
  margin: 0px auto;
  padding: 60px 20px 40px 20px;
}
.page-id-9 .hero .hero_latest_info h2 {
  position: relative;
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #46433e;
  font-weight: 500;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.page-id-9 .hero .hero_latest_info h2::before {
  content: "NEWS";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  font-weight: normal;
  color: #cdc1ad;
  letter-spacing: 0.2rem;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards {
  margin: 30px 0 0;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a {
  border-bottom: solid 1px #f1eee9;
  padding-bottom: 15px;
  position: relative;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a::before {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(50%, -50%);
  border: 1px solid #baa2c6;
  background: #baa2c6;
  border-radius: 50px;
  transition: all 0.3s;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.8rem;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  background: #baa2c6;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a:hover::before {
  content: "";
  height: 37px;
  width: 37px;
  border: 2px solid #baa2c6;
  background: none;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-title {
  opacity: 0.6;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  opacity: 0.6;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  position: relative;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-title {
  text-align: left;
  order: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6em;
  transition: 0.5s;
  margin: 0 40px 0 0;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date {
  display: block;
  order: 0;
  width: 100%;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  padding: 5px 0;
  color: #a29b90;
  transition: 0.5s;
  font-size: 16px;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-update-date {
  display: none;
}
.page-id-9 .hero .hero_latest_info .button {
  text-align: right;
  position: relative;
}
.page-id-9 .hero .hero_latest_info .button a {
  border: 0;
  background: none;
  font-weight: normal;
  margin: 10px 0px 0 0;
  padding: 0px 40px 0 0px;
  border-radius: 0;
  letter-spacing: 0.1em;
  font-size: 16px;
}
.page-id-9 .hero .hero_latest_info .button a::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(/wp-content/uploads/icon/list.svg);
  mask: url(/wp-content/uploads/icon/list.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  background: #f0ede7;
  position: absolute;
  top: 3px;
  right: 10px;
  transition: all 0.4s;
}
.page-id-9 .hero .hero_blog_info {
  width: 100%;
  margin: 0px auto;
  padding: 60px 20px 40px 20px;
}
.page-id-9 .hero .hero_blog_info h2 {
  position: relative;
  text-align: left;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #46433e;
  font-weight: 500;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.page-id-9 .hero .hero_blog_info h2::before {
  content: "BLOG";
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  font-weight: normal;
  color: #cdc1ad;
  letter-spacing: 0.2rem;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards {
  margin: 30px 0 0;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a {
  border-bottom: solid 1px #f1eee9;
  padding-bottom: 15px;
  position: relative;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a::before {
  content: "";
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(50%, -50%);
  border: 1px solid #baa2c6;
  background: #baa2c6;
  border-radius: 50px;
  transition: all 0.3s;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a::after {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.8rem;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  background: #baa2c6;
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a:hover::before {
  content: "";
  height: 37px;
  width: 37px;
  border: 2px solid #baa2c6;
  background: none;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-title {
  opacity: 0.6;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  opacity: 0.6;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-thumb {
  display: block;
  width: 80px;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-thumb img {
  aspect-ratio: 3/4;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-content {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  position: relative;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-content .new-entry-card-title {
  text-align: left;
  order: 1;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6em;
  transition: 0.5s;
  margin: 0 40px 0 0;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-content .new-entry-card-date {
  display: block;
  order: 0;
  width: 100%;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  padding: 5px 0;
  color: #a29b90;
  transition: 0.5s;
  font-size: 16px;
}
.page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-update-date {
  display: none;
}
.page-id-9 .hero .hero_blog_info .button {
  text-align: right;
  position: relative;
}
.page-id-9 .hero .hero_blog_info .button a {
  border: 0;
  background: none;
  font-weight: normal;
  margin: 10px 0px 0 0;
  padding: 0px 40px 0 0px;
  border-radius: 0;
  letter-spacing: 0.1em;
  font-size: 16px;
}
.page-id-9 .hero .hero_blog_info .button a::after {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  -webkit-mask: url(/wp-content/uploads/icon/list.svg);
  mask: url(/wp-content/uploads/icon/list.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  background: #f0ede7;
  position: absolute;
  top: 3px;
  right: 10px;
  transition: all 0.4s;
}
.page-id-9 .hero .hero_info_hours {
  width: 100%;
  position: relative;
}
.page-id-9 .hero .hero_info_hours .white_bg {
  width: 95%;
  margin: 20px auto 20px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  font-size: 20px;
}
.page-id-9 .hero .hero_info_hours .white_bg h2 {
  text-align: center;
  font-size: 18px;
  color: #46433e;
  margin: 5px 0;
}

@media screen and (min-width: 768px) {
  .page-id-9 h2 {
    font-size: 36px;
  }
  .page-id-9 .hero .hero_open_date {
    display: block;
    font-size: 36px;
    left: 40px;
    top: 40px;
  }
  .page-id-9 .hero .hero_open_date2 {
    top: 110px;
  }
  .page-id-9 .hero .hero_post {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-id-9 .hero .hero_latest_info {
    width: auto;
    margin: 0 30px;
    padding: 120px 0;
  }
  .page-id-9 .hero .hero_latest_info h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
  }
  .page-id-9 .hero .hero_latest_info h2::before {
    font-size: 24px;
    top: -30px;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards {
    width: 450px;
    margin: 0 0 0 auto;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-title {
    font-size: 20px;
  }
  .page-id-9 .hero .hero_latest_info .button a {
    padding: 0 40px 0 0 !important;
  }
  .page-id-9 .hero .hero_blog_info {
    width: auto;
    margin: 0 30px;
    padding: 120px 0;
  }
  .page-id-9 .hero .hero_blog_info h2 {
    font-size: 36px;
    margin: 0 0 20px 0;
  }
  .page-id-9 .hero .hero_blog_info h2::before {
    font-size: 24px;
    top: -30px;
  }
  .page-id-9 .hero .hero_blog_info .new-entry-cards {
    width: 450px;
    margin: 0 0 0 auto;
  }
  .page-id-9 .hero .hero_blog_info .new-entry-cards .new-entry-card-content .new-entry-card-title {
    font-size: 20px;
  }
  .page-id-9 .hero .hero_blog_info .button a {
    padding: 0 40px 0 0 !important;
  }
  .page-id-9 .hero .hero_info_hours .white_bg {
    width: 420px;
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 1;
  }
  .page-id-9 .hero .hero_info_hours .white_bg .info_hours td {
    padding: 0.2em 0.3em;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .page-id-9 .hero .hero_open_date {
    font-size: 26px;
    left: 40px;
  }
  .page-id-9 .hero .hero_latest_info {
    width: 100%;
    padding: 120px 20px;
  }
  .page-id-9 .hero .hero_latest_info h2 {
    font-size: 24px;
  }
  .page-id-9 .hero .hero_latest_info h2::before {
    font-size: 16px;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards {
    width: 500px;
  }
  .page-id-9 .hero .hero_blog_info {
    width: 100%;
    padding: 120px 20px;
  }
  .page-id-9 .hero .hero_blog_info h2 {
    font-size: 24px;
  }
  .page-id-9 .hero .hero_blog_info h2::before {
    font-size: 16px;
  }
  .page-id-9 .hero .hero_blog_info .new-entry-cards {
    width: 500px;
  }
}
/*TOP スライド　swiper*/
[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}
.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 40px;
  display: flex;
}
.mv01 .swiper-pagination-bullet {
  display: block;
  width: 40px;
  height: 4px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 10px 0 0;
}
.mv01 .swiper-pagination-bullet-active {
  background-color: #8863a2;
}
.mv01 .slide-media {
  height: 600px;
}
.mv01 .slide-media img {
  transition: 7s 1s ease-out;
}
.mv01 .slide-title {
  font-size: 3.5vw;
  font-weight: 500;
  line-height: 1.6;
  position: absolute;
  left: 40px;
  top: 180px;
  text-align: left;
  color: #fff;
  width: 90%;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.mv01 .slide-title span {
  font-size: 2.5vw;
  padding: 10px 0 0 0;
  display: block;
}
.mv01 .swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.15);
}
.mv01 .swiper-slide[class*=-active] .slide-title {
  animation: mv01-fadeIn 2s 0.5s cubic-bezier(0.2, 1, 0.2, 1) both;
}

@media only screen and (max-width: 1024px) {
  .mv01 .slide-media {
    height: max(70vh, 70vw);
  }
}
@media only screen and (max-width: 767px) {
  .mv01 .slide-title {
    font-size: 8vw;
    left: 20px;
    top: 140px;
  }
  .mv01 .slide-title span {
    font-size: 5.5vw;
    padding: 20px 0 0 0;
  }
  .mv01 .swiper-pagination {
    bottom: 20px;
    left: 20px;
  }
}
@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
/*TOPバナー*/
.top_link_section {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.top_link_section .top_link_list {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .top_link_section {
    width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .top_link_section .top_link_list {
    display: flex;
    justify-content: center;
  }
}
/*TOP症状から探す*/
.top_symptoms_section {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  background-color: #fafafa;
}
.top_symptoms_section h2::before {
  content: "SYMPTOMS";
  color: #cdc1ad;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
.top_symptoms_section .top_symptoms_list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.top_symptoms_section .top_symptoms_list .top_symptoms_item a {
  background: #fff;
  border: solid 2px #baa2c6;
  border-radius: 50px;
  padding: 10px 24px;
  display: block;
  text-decoration: none;
  font-weight: bold;
}
.top_symptoms_section .top_symptoms_list .top_symptoms_item a.gray_out {
  background: #ddd;
  color: #aaa;
}

@media screen and (min-width: 768px) {
  .top_symptoms_section .top_symptoms {
    width: 1000px;
    margin: 0 auto;
  }
}
/*TOP後藤オンコロジークリニック8つの特徴*/
.top_feature_section {
  position: relative;
  width: 100%;
  padding: 80px 20px 60px;
  margin: 0 !important;
  background-image: linear-gradient(143deg, #ffffff 20%, #faecff 61%, #f6eef9 89%);
  overflow: hidden;
}
.top_feature_section .top_feature h2::before {
  content: "FEATURE";
  color: #cdc1ad;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
.top_feature_section .top_feature .top_feature_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.top_feature_section .top_feature .top_feature_list img {
  margin: 0 auto 20px;
}
.top_feature_section .top_feature .closing-text {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .top_feature_section {
    padding: 140px 0 80px;
  }
  .top_feature_section .top_feature {
    width: 1000px;
    margin: 0 auto;
  }
  .top_feature_section .top_feature h2 {
    margin: 0 0 60px 50px !important;
  }
  .top_feature_section .top_feature h2::before {
    font-size: 24px;
    top: -30px;
  }
  .top_feature_section .top_feature .top_feature_list {
    justify-content: space-between;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item {
    width: 900px;
    margin: 0 auto;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item .list_number {
    padding: 40px 40px 40px 60px;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item .list_number li {
    font-size: 24px;
    padding: 0 0 30px 30px !important;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item .list_number li::before {
    font-size: 26px;
    top: -6px;
    left: -1.2em;
    width: 50px;
    height: 50px;
  }
  .top_feature_section .top_feature .closing-text {
    font-size: 24px;
    text-align: center;
    line-height: 2em;
  }
  .top_feature_section .top_feature .button {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_feature_section {
    padding: 140px 20px 80px;
  }
  .top_feature_section .top_feature {
    width: 1000px;
    margin: 0 auto;
  }
  .top_feature_section .top_feature h2 {
    font-size: 24px !important;
    margin: 0 0 20px 0 !important;
  }
  .top_feature_section .top_feature h2::before {
    font-size: 16px;
  }
  .top_feature_section .top_feature .top_feature_list {
    justify-content: space-between;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item {
    width: 70%;
    margin: 0 auto 40px;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item:last-child {
    margin: 0 auto 40px;
  }
  .top_feature_section .top_feature .closing-text {
    font-size: 20px;
  }
}
/*カードパターン*/
.top_feature2_section {
  width: 100%;
  position: relative;
  padding: 80px 20px 60px;
  margin: 0 !important;
  background-image: linear-gradient(143deg, #ffffff 20%, #faecff 61%, #f6eef9 89%);
  overflow: hidden;
}
.top_feature2_section .top_feature2 h2::before {
  content: "FEATURE";
  color: #cdc1ad;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
.top_feature2_section .top_feature2 .top_feature2_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.top_feature2_section .top_feature2 .top_feature2_list .top_feature2_item {
  position: relative;
  border: solid 1px #f8ecfc;
  padding: 20px 20px 20px 50px;
  margin: 0;
  background-color: #fff;
  width: 100%;
}
.top_feature2_section .top_feature2 .top_feature2_list .top_feature2_item span {
  position: absolute;
  font-size: 42px;
  color: #cdc1ad;
  font-family: serif;
  font-style: italic;
  top: 0;
  left: 10px;
}
.top_feature2_section .top_feature2 .closing-text {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .top_feature2_section {
    padding: 140px 0 140px;
  }
  .top_feature2_section .top_feature2 {
    width: 1000px;
    margin: 0 auto;
  }
  .top_feature2_section .top_feature2 h2 {
    margin: 0 0 60px 50px !important;
  }
  .top_feature2_section .top_feature2 h2::before {
    top: -20px;
    left: 0;
    font-size: 16px;
    letter-spacing: 0.2rem;
  }
  .top_feature2_section .top_feature2 .top_feature2_list .top_feature2_item {
    padding: 70px 20px 20px 20px;
    width: 250px;
    text-align: justify;
  }
  .top_feature2_section .top_feature2 .top_feature2_list .top_feature2_item span {
    font-size: 52px;
    top: 0;
    left: calc(50% - 0.3em);
  }
}
/*TOP診療案内*/
.top_medical_information_section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  margin: 0 !important;
  overflow: hidden;
}
.top_medical_information_section .top_medical_information {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.top_medical_information_section .top_medical_information h2::before {
  content: "MENU";
  position: absolute;
  color: #cdc1ad;
  top: -20px;
  left: 0;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.2rem;
}
.top_medical_information_section .top_medical_information .top_medical_information_content {
  padding: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li {
  margin: 0 auto 20px auto;
  width: 90%;
  position: relative;
  border: solid 1px #46433e;
}
.top_medical_information_section .top_medical_information .top_medical_information_content h3 {
  text-align: center;
  font-size: 20px;
  padding: 10px 0 0 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content h3::before {
  content: none;
}
.top_medical_information_section .top_medical_information .top_medical_information_content .top_medical_guide_content {
  padding: 0 0 40px 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content p {
  padding: 20px 20px 0 20px;
  margin: 0;
  font-size: 14px;
}
.top_medical_information_section .button {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .top_medical_information_section {
    padding: 140px 0 80px;
  }
  .top_medical_information_section .top_medical_information {
    width: 900px;
    margin: 0 auto;
  }
  .top_medical_information_section .top_medical_information h2 {
    margin: 0 0 40px 0 !important;
  }
  .top_medical_information_section .top_medical_information h2::before {
    font-size: 24px;
    top: -30px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_lead {
    font-size: 20px;
    line-height: 1.6em;
  }
  .top_medical_information_section .top_medical_information .notice {
    font-size: 14px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li {
    width: 280px;
    margin: 0 0 30px 0;
    border: solid 1px #46433e;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li h3 {
    text-align: center;
    font-size: 20px;
    padding: 10px 0 0 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li p {
    padding: 10px;
    margin: 0;
  }
  .top_medical_information_section .top_medical_information .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/*診療案内別パターン*/
.top_medical_information2_section {
  position: relative;
  width: 100%;
  padding: 80px 0;
  margin: 0 !important;
  overflow: hidden;
}
.top_medical_information2_section .top_medical_information2 {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.top_medical_information2_section .top_medical_information2 h2 {
  padding: 0 20px !important;
}
.top_medical_information2_section .top_medical_information2 h2::before {
  content: "MENU";
  position: absolute;
  color: #cdc1ad;
  top: -20px;
  left: 20px;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.2rem;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_lead {
  padding: 0 20px;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content {
  padding: 40px 0 0 0;
  margin: 180px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li {
  margin: 0 0 260px 0;
  width: 100%;
  position: relative;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li:nth-child(even) img {
  left: 0;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li:nth-child(even) .top_medical_guide_content {
  margin: 0 0 0 auto;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li:last-child {
  margin: 0;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li img {
  position: absolute;
  top: -180px;
  width: 90%;
  right: 0;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content {
  position: relative;
  padding: 20px 20px 40px 20px;
  background: #fafafa;
  width: 80%;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content h3 {
  text-align: center;
  font-size: 20px;
  padding: 10px 0 0 0;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content h3::before {
  content: none;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content p {
  padding: 20px 0;
  margin: 0;
  font-size: 14px;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content .button a {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .top_medical_information2_section {
    padding: 140px 0;
  }
  .top_medical_information2_section .top_medical_information2 {
    width: 1100px;
    margin: 0 auto;
  }
  .top_medical_information2_section .top_medical_information2 h2 {
    margin: 0 0 40px 100px !important;
  }
  .top_medical_information2_section .top_medical_information2 h2::before {
    font-size: 24px;
    top: -30px;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_lead {
    font-size: 20px;
    line-height: 1.6em;
    margin: 0 0 0 100px;
    padding: 0 0 0 20px;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content {
    margin: 160px 0 0 0;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li {
    width: 100%;
    margin: 0 0 240px 0;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li:nth-child(even) img {
    margin-left: calc(50% - 50vw);
    margin-right: -100px;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li:nth-child(even) .top_medical_guide_content {
    margin: 0 0 0 auto;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li img {
    position: absolute;
    top: -120px;
    width: 100%;
    margin-right: calc(50% - 50vw);
    height: 450px;
    margin-left: -100px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content {
    padding: 30px 30px 60px 30px;
    width: 500px;
    box-shadow: 0 0 120px rgba(30, 30, 30, 0.1);
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content h3 {
    font-size: 28px;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content p {
    font-size: 18px;
  }
  .top_medical_information2_section .top_medical_information2 .top_medical_information2_content li .top_medical_guide_content .button a {
    font-size: 18px;
  }
}
/*バナー*/
.top_banner_section {
  margin: 0 !important;
}
.top_banner_section .top_banner .top_banner_content {
  margin: 0;
  padding: 0;
}
.top_banner_section .top_banner .top_banner_content li {
  margin: 0;
  padding: 0;
}
.top_banner_section .top_banner .top_banner_content li a {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 190px;
}
.top_banner_section .top_banner .top_banner_content li a:hover img {
  opacity: 0.9;
}
.top_banner_section .top_banner .top_banner_content li a:hover::before {
  right: 20px;
}
.top_banner_section .top_banner .top_banner_content li a:hover::after {
  right: 37px;
}
.top_banner_section .top_banner .top_banner_content li a::before {
  content: "";
  position: absolute;
  top: calc(50% - 24px);
  right: 50px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: solid 2px #fff;
  transition: 0.3s;
  z-index: 1;
}
.top_banner_section .top_banner .top_banner_content li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 67px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}
.top_banner_section .top_banner .top_banner_content li a p {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  top: calc(50% - 1.8em);
  left: 20px;
  z-index: 1;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.top_banner_section .top_banner .top_banner_content li a img {
  transition: 0.3s;
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .top_banner_section .top_banner .top_banner_content {
    display: flex;
  }
  .top_banner_section .top_banner .top_banner_content li {
    width: 50%;
  }
  .top_banner_section .top_banner .top_banner_content li a {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 190px;
  }
  .top_banner_section .top_banner .top_banner_content li a:hover img {
    opacity: 0.9;
  }
  .top_banner_section .top_banner .top_banner_content li a:hover::before {
    right: 20px;
  }
  .top_banner_section .top_banner .top_banner_content li a:hover::after {
    right: 37px;
  }
  .top_banner_section .top_banner .top_banner_content li a::before {
    content: "";
    position: absolute;
    top: calc(50% - 24px);
    right: 50px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: solid 2px #fff;
    transition: 0.3s;
    z-index: 1;
  }
  .top_banner_section .top_banner .top_banner_content li a::after {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    right: 67px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: 0.3s;
  }
  .top_banner_section .top_banner .top_banner_content li a p {
    font-size: 28px;
    left: 60px;
  }
}
/*TOPごあいさつ*/
.top_greeting_section {
  position: relative;
  width: 100%;
  padding: 100px 20px 50px;
  margin: 0 !important;
  background: #fafafa;
}
.top_greeting_section .top_greeting {
  margin: 0 auto;
  width: 100%;
}
.top_greeting_section .top_greeting h2::before {
  content: "GREETING";
  color: #cdc1ad;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
.top_greeting_section .top_greeting .top_greeting_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.top_greeting_section .top_greeting .top_greeting_content li {
  background-image: linear-gradient(180deg, #f1eee9 1px, transparent 1px); /* 罫線の色と太さ */
  background-size: 100% 2.5em; /* 行の高さ */
  line-height: 2.5em; /* 文字の高さ */
  padding-bottom: 1px; /* 最終行の下にも罫線を引く */
}
.top_greeting_section .top_greeting .top_greeting_content li p span {
  text-align: right;
  font-size: 20px;
  display: block;
  margin: 40px 0 0;
}
.top_greeting_section .top_greeting .top_greeting_content li img {
  margin: 20px auto 0;
  display: block;
  width: 80%;
  border-radius: 10px;
}
.top_greeting_section .top_greeting .button a {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .top_greeting_section {
    margin: 0 auto;
    padding: 140px 0px 100px;
  }
  .top_greeting_section .top_greeting {
    margin: 0 auto;
    width: 900px;
  }
  .top_greeting_section .top_greeting h2::before {
    font-size: 24px;
    top: -30px;
  }
  .top_greeting_section .top_greeting .top_greeting_content li {
    background-size: 100% 3em; /* 行の高さ */
    line-height: 3em; /* 文字の高さ */
  }
  .top_greeting_section .top_greeting .top_greeting_content li p {
    font-size: 20px;
  }
  .top_greeting_section .top_greeting .top_greeting_content li p span {
    margin: 56px 0 0;
  }
  .top_greeting_section .top_greeting .button {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/*TOP ブログ*/
.top_blog_section {
  position: relative;
  width: 100%;
  padding: 100px 20px 50px;
  background-image: url(/wp-content/uploads/img/top_blog_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 !important;
}
.top_blog_section .top_blog {
  margin: 0 auto;
  width: 100%;
}
.top_blog_section .top_blog h2 {
  margin: 0 0 20px 0 !important;
}
.top_blog_section .top_blog h2::before {
  content: "BLOG";
  color: #cdc1ad;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link {
  position: relative;
  top: 0px;
  display: block;
  text-decoration: none;
  padding: 0;
  margin: 0 auto;
  background: #fff !important;
  width: 90%;
  box-shadow: 0px 0 50px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 30px 0;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card .new-entry-card-thumb {
  display: block;
  width: 100%;
  margin: 0;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card .new-entry-card-thumb img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card .new-entry-card-content {
  padding: 18px;
  margin: 0;
  background: #fff;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card .new-entry-card-content .new-entry-card-snippet {
  font-size: 16px;
  line-height: 1.6em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 5;
  -webkit-line-clamp: 5;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card .new-entry-card-content .new-entry-card-date {
  display: block;
  text-align: right;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card .new-entry-card-content .new-entry-card-date .post-update {
  display: none;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link:hover {
  top: -10px;
  transition: 0.5s;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link:hover .new-entry-card-thumb {
  opacity: 0.8;
}
.top_blog_section .top_blog .new-entry-cards .new-entry-card-link:hover .new-entry-card-content {
  background: #fff;
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .top_blog_section {
    margin: 0 auto;
    padding: 140px 0px 100px;
  }
  .top_blog_section .top_blog {
    margin: 0 auto;
    width: 900px;
  }
  .top_blog_section .top_blog h2::before {
    font-size: 24px;
    top: -30px;
  }
  .top_blog_section .top_blog p {
    font-size: 20px;
    line-height: 1.6em;
  }
  .top_blog_section .top_blog .new-entry-cards {
    display: flex;
    justify-content: space-between;
  }
  .top_blog_section .top_blog .new-entry-cards .new-entry-card-link {
    width: 30%;
  }
  .top_blog_section .top_blog .new-entry-cards .new-entry-card-link .new-entry-card {
    margin: 0;
  }
}
/*TOP 一緒に働きませんか*/
.top_recruit_section {
  padding: 100px 20px 50px;
}
.top_recruit_section .top_recruit h2 {
  margin: 0 0 20px 0 !important;
}
.top_recruit_section .top_recruit h2::before {
  content: "RECRUIT";
  color: #cdc1ad;
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 16px;
  letter-spacing: 0.2rem;
}

@media screen and (min-width: 768px) {
  .top_recruit_section .top_recruit h2::before {
    top: -30px;
    font-size: 24px;
  }
}
/************************************
** 下層ページ
************************************/
.page .content {
  margin-top: 0;
}
.page .content .wrap {
  margin: 0;
  width: initial;
}
.page .content .wrap .main {
  padding: 0;
}
.page .content .wrap .main .entry-header .entry-title {
  text-align: center;
  background: #fbeefb;
  padding: 30px 10px;
  margin: 0 0 30px 0;
  font-weight: bold;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.page .content .wrap .main .entry-header .entry-title span {
  display: block;
  font-size: 0.8em;
}
.page .content .wrap .main .entry-header .date-tags {
  display: none;
}
.page .content .wrap .main .entry-content {
  width: 90%;
  margin: 0 auto;
}
.page .content .wrap .main .entry-content h2 {
  background: 0;
  color: #46433e;
  margin: 0 0 20px 0;
  padding: 20px 20px 10px 0;
  border-bottom: solid 4px #f0ede7;
}
.page .content .wrap .main .entry-content .case_list {
  background: #fff;
  border-radius: 10px;
  border: solid 1px #f9b049;
  padding: 0 20px 20px;
  margin: 0 0 60px 0;
}
.page .content .wrap .main .entry-content .case_list h2 {
  margin: 20px 0;
  padding: 0;
  text-align: center;
  line-height: 1.6em;
  color: #333;
}

@media screen and (min-width: 768px) {
  .page .content {
    margin-top: 0;
  }
  .page .content .wrap {
    margin: 0;
    width: initial;
  }
  .page .content .wrap .main {
    padding: 0;
    overflow: hidden;
  }
  .page .content .wrap .main .entry-header .entry-title {
    padding: 60px 0;
  }
  .page .content .wrap .main .entry-content h2 {
    font-size: 32px;
    padding: 20px 20px 20px 0;
  }
  .page .content .wrap .main .entry-content .case_list {
    background: #fff;
    border-radius: 10px;
    border: solid 1px #f9b049;
    padding: 20px 20px 60px 20px;
    margin: 0 0 60px 0;
  }
  .page .content .wrap .main .entry-content .case_list h2 {
    margin: 20px 0;
    padding: 0;
    text-align: center;
    line-height: 1.6em;
    color: #333;
  }
  .page .content .wrap .main .entry-content .case_list .button_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page .content .wrap .main .entry-content .case_list .button_list .button {
    width: 300px;
    margin: 0 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .page .content .wrap .main .entry-content {
    width: 800px;
  }
}
/*下層　診療案内共通　ページ下部症状リスト*/
.bottom_medical_information_section {
  position: relative;
  width: 100%;
  padding: 0;
  background: #f9f6f1;
  display: block;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content {
  padding: 0;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li {
  margin: 0 0 20px 0;
  width: 100%;
  position: relative;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul {
  display: flex;
  flex-wrap: wrap;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list .bottom_medical_guide_content_list_lead {
  color: #505050;
  font-weight: bold;
  position: relative;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list .bottom_medical_guide_content_list_lead::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background-color: #505050;
  top: 66%;
  left: auto;
  margin: 0 0 0 10px;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list ul {
  margin: 10px 0 0 0;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list ul li {
  background: #fff;
  display: inline-block;
  border: solid 2px #a29b90;
  padding: 5px 10px;
  border-radius: 50px;
  font-weight: bold;
  width: auto;
  margin: 0 5px 10px 0;
  line-height: 1.6rem;
  transition: 0.3s;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list ul li:hover {
  background: #f1eee9;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list ul li a {
  color: #505050;
  text-decoration: none;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li .bottom_medical_guide_content {
  padding: 40px 20px;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li p {
  padding: 20px 0 0 0;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li ul {
  padding: 0;
}
.bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li ul li {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content {
    padding: 0;
    width: 800px;
    margin: 0 auto;
  }
  .bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li {
    margin: 0 0 20px 0;
    width: 100%;
    position: relative;
  }
  .bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul {
    display: flex;
    flex-wrap: wrap;
  }
  .bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li.general ul .bottom_medical_guide_content_list ul {
    margin: 10px 0 0 0;
  }
  .bottom_medical_information_section .bottom_medical_information .bottom_medical_information_content li p {
    font-size: 24px;
  }
}
/*はじめての方へ*/
.page-id-750 .footer_info_tel {
  margin: 0;
  padding: 0;
  border-top: solid 2px #505050;
  border-bottom: solid 2px #505050;
  font-weight: bold;
  color: #555;
}
.page-id-750 .footer_info_tel li:first-child {
  text-align: center;
  padding: 10px 0 0;
}
.page-id-750 .footer_info_tel li:last-child {
  text-align: center;
}
.page-id-750 .footer_info_tel li:last-child img {
  width: 24px;
  margin: 0 4px 0 0;
}
.page-id-750 .footer_info_tel li:last-child a {
  text-decoration: none;
  font-size: 8vw;
}

@media screen and (min-width: 767px) {
  .page-id-750 .footer_info_tel li:last-child {
    text-align: center;
    line-height: 1em;
    padding: 10px 0 15px;
  }
  .page-id-750 .footer_info_tel li:last-child a {
    font-size: 42px;
  }
}
/*消化器内科*/
.page-id-3697 .disease {
  background-color: #f9f6f1;
  padding: 20px;
  border-radius: 10px;
}
.page-id-3697 .disease h4 {
  border-top: solid 1px #baa2c6;
  border-bottom: solid 1px #baa2c6;
}

/*各種検査*/
.page-id-3714 .disease {
  background-color: #f9f6f1;
  padding: 20px;
  border-radius: 10px;
}
.page-id-3714 .disease h4 {
  border-top: solid 1px #baa2c6;
  border-bottom: solid 1px #baa2c6;
}
.page-id-3714 .exam {
  padding: 20px;
  border-radius: 10px;
  border: solid 2px #baa2c6;
}
.page-id-3714 .exam h4 {
  border-top: solid 1px #baa2c6;
  border-bottom: solid 1px #baa2c6;
}

/*よくある質問*/
.page-id-764 .entry-header {
  margin: 0 0 60px 0;
}
.page-id-764 .entry-content {
  margin: 60px auto !important;
}
.page-id-764 .qa_anchor {
  padding-left: 0 !important;
}
.page-id-764 .questions h3 {
  padding: 0 0 10px 45px;
  line-height: 1.6em;
}
.page-id-764 .questions h3:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 40px;
  background: #cdc1ad;
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
}
.page-id-764 .questions .answer {
  position: relative;
  padding: 10px 20px 10px 45px;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-top: 10px;
}
.page-id-764 .questions .answer:before {
  content: "A.";
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 20px;
  font-weight: bold;
  color: #f9988f;
}

@media screen and (min-width: 767px) {
  .questions .answer {
    padding: 20px 20px 20px 40px;
  }
  .questions .answer:before {
    top: 16px;
    left: 14px;
  }
  .questions .answer:last-child {
    margin-bottom: 70px;
  }
}
/*covid-19*/
.page-id-752 .covid-19_image {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}
.page-id-752 .five_measures ul {
  padding-left: 0;
}
.page-id-752 .five_measures ul li {
  margin: 0 0 40px 0;
}
.page-id-752 .five_measures ul h3 {
  margin: 0 0 10px 0 !important;
  padding: 10px 0;
  border-top: solid 2px #a29b90 !important;
  border-bottom: solid 2px #a29b90 !important;
  text-align: center;
}
.page-id-752 .five_measures ul h3::before {
  content: none;
}
.page-id-752 .five_measures ul h3 span {
  color: #a29b90;
  display: block;
  text-align: center;
  margin: 0 0 10px 0;
}
.page-id-752 .information-box {
  background: #f1eee9;
  border: 0;
}
.page-id-752 .information-box::before {
  color: #a29b90;
  border-right: 1px solid #a29b90;
}

@media screen and (min-width: 768px) {
  .page-id-752 .five_measures ul li {
    margin: 0 0 80px 0;
  }
}
@media screen and (min-width: 1500px) {
  .page-id-752 .covid-19_image img {
    display: block;
    margin: 0 auto;
  }
}
/*診療時間・アクセス*/
.page-id-122 .entry-header {
  margin: 0 0 60px 0;
}
.page-id-122 .top_hours_section table.info_hours {
  font-size: 5.5vw;
}
.page-id-122 .top_hours_section table.info_hours tr td {
  width: 35px;
}
.page-id-122 .top_hours_section table.info_hours tr td span {
  display: block;
  text-align: right;
  line-height: 0.6em;
  margin: -10px 0 0 0;
}
.page-id-122 .top_hours_section table.info_hours.info_doctor tr td {
  color: #505050;
  text-align: center;
  letter-spacing: 0.3em;
  padding: 5px 0 3px 0;
}
.page-id-122 .top_access_section {
  padding: 0 0 50px;
}
.page-id-122 .top_access_section iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.page-id-122 .top_access_section h4 {
  text-align: center;
  font-weight: bold !important;
}
.page-id-122 .top_access_section h3 {
  margin: 0 0 20px 0px !important;
  border-bottom: solid 2px #a29b90 !important;
  padding: 10px 0 10px 30px;
}
.page-id-122 .top_access_section h3::before {
  background: none;
}
.page-id-122 .top_access_section h3.top_access_train {
  position: relative;
}
.page-id-122 .top_access_section h3.top_access_train::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 32px;
  background-image: url(/wp-content/uploads/icon/access_train_icon.svg);
  position: absolute;
  left: 0px;
  top: 2px;
}
.page-id-122 .top_access_section h3.top_access_bus {
  position: relative;
}
.page-id-122 .top_access_section h3.top_access_bus::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 31px;
  background-image: url(/wp-content/uploads/icon/access_bus_icon.svg);
  position: absolute;
  left: 0px;
  top: 3px;
}
.page-id-122 .top_access_section h3.top_access_car {
  position: relative;
}
.page-id-122 .top_access_section h3.top_access_car::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 20px;
  background-image: url(/wp-content/uploads/icon/access_car_icon.svg);
  position: absolute;
  left: 0px;
  top: 11px;
}
.page-id-122 .top_access_section img {
  display: block;
  margin: 0 auto 30px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .page-id-122 .entry-header {
    margin: 0 0 60px 0;
  }
  .page-id-122 .top_hours_section table.info_hours {
    font-size: 2.5vw;
  }
  .page-id-122 .top_hours_section table.info_hours tr th {
    font-size: 24px;
  }
  .page-id-122 .top_hours_section table.info_hours tr td {
    width: 10%;
    font-size: 20px;
  }
  .page-id-122 .top_hours_section table.info_hours tr td span {
    display: none;
  }
  .page-id-122 .top_hours_section table.info_hours.info_doctor tr td {
    writing-mode: initial;
  }
  .page-id-122 .top_access_section {
    padding: 100px 0 100px;
  }
  .page-id-122 .top_access_section iframe {
    width: 100%;
    height: 400px;
  }
  .page-id-122 .top_access_section h3 {
    margin: 0 0 20px 0px !important;
    border-bottom: solid 2px #a29b90 !important;
    padding: 10px 0 10px 45px;
  }
  .page-id-122 .top_access_section h3.top_access_train::before {
    width: 34px;
    height: 46px;
    top: -10px;
  }
  .page-id-122 .top_access_section h3.top_access_bus::before {
    width: 34px;
    height: 44px;
    top: -8px;
  }
  .page-id-122 .top_access_section h3.top_access_car::before {
    width: 34px;
    height: 28px;
    top: 4px;
  }
}
.l-inner {
  position: relative;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background-color: #cdc1ad;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: solid #f1eee9;
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

/*galley01*/
.gallery01 {
  overflow: hidden;
}

.gallery01 .l-inner {
  padding: 2rem 0;
}

.gallery01 .swiper {
  max-width: 720px;
  margin: auto;
}

.gallery01 .swiper-main {
  overflow: visible;
}

.gallery01 .swiper-thumb {
  padding-top: 8px;
}

.gallery01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.gallery01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.gallery01 .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}

.gallery01 .swiper-button-prev,
.gallery01 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: initial;
  bottom: 0;
  margin: auto;
  width: 3.4rem;
  height: 3.4rem;
}

.gallery01 .swiper-button-prev {
  right: calc(100% + 3.2rem);
}

.gallery01 .swiper-button-next {
  left: calc(100% + 3.2rem);
}

.gallery01 .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}

.gallery01 .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
  background-color: #eee;
}

.gallery01 .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: #cdc1ad;
  background-clip: content-box;
}

.gallery01 .swiper-scrollbar-drag:active {
  background-color: #cdc1ad;
}

.gallery01 .slide {
  display: block;
  overflow: hidden;
}
.gallery01 .slide .slide-media {
  padding-top: 62.5%;
  overflow: initial;
}
.gallery01 .slide .slide-media img {
  -o-object-fit: contain;
  object-fit: contain;
}
.gallery01 .slide figcaption {
  margin: 0 0 10px 0;
  text-align: left;
}
.gallery01 .slide figcaption .slide-name {
  font-weight: bold;
  padding: 10px 0 0 0;
  display: block;
  text-align: center;
  font-size: 20px;
  color: #505050;
}
.gallery01 .slide figcaption .slide-title {
  padding: 0;
  margin: 0 0 0px 0;
  color: #505050;
}

.gallery01 .thumb-media {
  padding-top: 100%;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  border-radius: 4px;
}

.gallery01 .thumb-media img {
  height: calc(100% + 8px);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transform: translateY(-8px);
}

.gallery01 .swiper-slide-thumb-active {
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  opacity: 0.3;
}

.gallery01 .swiper-slide-thumb-active .thumb-media {
  transform: translateY(-8px);
}

.gallery01 .swiper-slide-thumb-active .thumb-media img {
  transform: translateY(0);
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .gallery01 .swiper-button-prev::before,
  .gallery01 .swiper-button-next::before {
    background-color: #cdc1ad;
  }
  .gallery01 .swiper-button-prev::after,
  .gallery01 .swiper-button-next::after {
    border-color: #fff;
  }
  .gallery01 .swiper-button-prev {
    right: calc(100% - 4.2rem);
  }
  .gallery01 .swiper-button-next {
    left: calc(100% - 4.2rem);
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    transform: scale(1.2);
  }
  .gallery01 .swiper-scrollbar-drag:hover {
    background-color: #cdc1ad;
  }
  .gallery01 .thumb-media:hover {
    transform: translateY(-8px);
  }
  .gallery01 .thumb-media:hover img {
    transform: translateY(0);
  }
  .gallery01 .slide {
    display: block;
    overflow: hidden;
  }
  .gallery01 .slide .slide-media {
    padding-top: 50%;
    width: 400px;
    display: block;
    margin: 0 auto;
  }
  .gallery01 .slide figcaption {
    text-align: center;
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/*flow1*/
.flow01 {
  overflow: hidden;
}

.flow01 .l-inner {
  padding: 2rem 0;
}

.flow01 .swiper-main {
  overflow: visible;
}

.flow01 .swiper-main,
.flow01 .swiper-pagination-main {
  max-width: 600px;
  margin: auto;
}

.flow01 .swiper-pagination-main {
  display: flex;
  margin-bottom: 2rem;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  flex: 1;
  padding-bottom: 1.2rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  text-align: center;
  color: #a29b90;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #cdc1ad;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::before {
  z-index: 1;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  margin: auto;
  border-radius: 100px;
  box-shadow: 0 0 0 5px #f8f8f8;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet::after {
  right: 50%;
  bottom: -2px;
  width: 100%;
  height: 2px;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet:first-child::after {
  display: none;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet .step {
  font-size: 1.6rem;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active {
  color: #cdc1ad;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active::before {
  box-shadow: 0 0 0 4px #f8f8f8, 0 0 0 7px #cdc1ad;
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::after {
  background-color: #f1eee9;
}

.flow01 .swiper-pagination-sub {
  font-size: 0;
  text-align: center;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  vertical-align: top;
  background-color: #f1eee9;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet:not(:first-child) {
  margin-left: 8px;
}

.flow01 .swiper-pagination-sub .swiper-pagination-bullet-active {
  background-color: #cdc1ad;
}

.flow01 .swiper-button-prev,
.flow01 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.flow01 .swiper-button-prev::before,
.flow01 .swiper-button-next::before {
  display: none;
}

.flow01 .swiper-button-prev::after,
.flow01 .swiper-button-next::after {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  content: "";
  border: solid #cdc1ad;
  border-width: 3px 3px 0 0;
}

.flow01 .swiper-button-prev {
  right: calc(100% - 1rem);
}

.flow01 .swiper-button-next {
  left: calc(100% - 1rem);
}

.flow01 .swiper-slide {
  height: auto;
}

.flow01 .mainslide {
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  border-radius: 4px;
}

.flow01 .subslide {
  padding: 0;
}

.flow01 .subslide-media {
  margin-bottom: 0rem;
}

.flow01 .subslide-text {
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .flow01 .l-inner {
    padding: 2rem 0;
  }
  .flow01 .swiper-button-prev::after,
  .flow01 .swiper-button-next::after {
    width: 2.2rem;
    height: 2.2rem;
  }
  .flow01 .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
  .flow01 .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
  .flow01 .swiper-main,
  .flow01 .swiper-pagination-main {
    max-width: calc(100% - 3.2rem);
  }
  .flow01 .swiper-pagination-main .swiper-pagination-bullet::before {
    bottom: -5px;
  }
  .flow01 .swiper-pagination-main .swiper-pagination-bullet .step {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5em;
    text-indent: 0.5em;
  }
}
@media only screen and (min-width: 1025px) {
  .flow01 .swiper-button-prev::after,
  .flow01 .swiper-button-next::after {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .flow01 .swiper-button-prev:hover::after {
    transform: translateX(-0.8rem) rotate(-135deg);
  }
  .flow01 .swiper-button-next:hover::after {
    transform: translateX(0.8rem) rotate(45deg);
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) {
  .flow01 .swiper-main,
  .flow01 .swiper-pagination-main {
    max-width: calc(100% - 6.4rem);
  }
}
/*flow02*/
.flow02 {
  overflow: hidden;
}

.flow02 .l-inner {
  padding: 2rem 0;
}

.flow02 .swiper-main {
  overflow: visible;
}

.flow02 .swiper-main,
.flow02 .swiper-pagination-main {
  max-width: 600px;
  margin: auto;
}

.flow02 .swiper-pagination-main {
  display: flex;
  margin-bottom: 2rem;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  flex: 1;
  padding-bottom: 1.2rem;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  text-align: center;
  color: #a29b90;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet::before,
.flow02 .swiper-pagination-main .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: #cdc1ad;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet::before {
  z-index: 1;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  margin: auto;
  border-radius: 100px;
  box-shadow: 0 0 0 5px #f8f8f8;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet::after {
  right: 50%;
  bottom: -2px;
  width: 100%;
  height: 2px;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet:first-child::after {
  display: none;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet .step {
  font-size: 1.6rem;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet-active {
  color: #cdc1ad;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet-active::before {
  box-shadow: 0 0 0 4px #f8f8f8, 0 0 0 7px #cdc1ad;
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::before,
.flow02 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::after {
  background-color: #f1eee9;
}

.flow02 .swiper-pagination-sub {
  font-size: 0;
  text-align: center;
}

.flow02 .swiper-pagination-sub .swiper-pagination-bullet {
  display: inline-block;
  width: 8px;
  height: 8px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  vertical-align: top;
  background-color: #f1eee9;
}

.flow02 .swiper-pagination-sub .swiper-pagination-bullet:not(:first-child) {
  margin-left: 8px;
}

.flow02 .swiper-pagination-sub .swiper-pagination-bullet-active {
  background-color: #cdc1ad;
}

.flow02 .swiper-button-prev,
.flow02 .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.flow02 .swiper-button-prev::before,
.flow02 .swiper-button-next::before {
  display: none;
}

.flow02 .swiper-button-prev::after,
.flow02 .swiper-button-next::after {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  content: "";
  border: solid #cdc1ad;
  border-width: 3px 3px 0 0;
}

.flow02 .swiper-button-prev {
  right: calc(100% - 1rem);
}

.flow02 .swiper-button-next {
  left: calc(100% - 1rem);
}

.flow02 .swiper-slide {
  height: auto;
}

.flow02 .mainslide {
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  border-radius: 4px;
}

.flow02 .subslide {
  padding: 0;
}

.flow02 .subslide-media {
  margin-bottom: 0rem;
}

.flow02 .subslide-text {
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .flow02 .l-inner {
    padding: 2rem 0;
  }
  .flow02 .swiper-button-prev::after,
  .flow02 .swiper-button-next::after {
    width: 2.2rem;
    height: 2.2rem;
  }
  .flow02 .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
  .flow02 .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
  .flow02 .swiper-main,
  .flow02 .swiper-pagination-main {
    max-width: calc(100% - 3.2rem);
  }
  .flow02 .swiper-pagination-main .swiper-pagination-bullet::before {
    bottom: -5px;
  }
  .flow02 .swiper-pagination-main .swiper-pagination-bullet .step {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 0.5em;
    text-indent: 0.5em;
  }
}
@media only screen and (min-width: 1025px) {
  .flow02 .swiper-button-prev::after,
  .flow02 .swiper-button-next::after {
    transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  }
  .flow02 .swiper-button-prev:hover::after {
    transform: translateX(-0.8rem) rotate(-135deg);
  }
  .flow02 .swiper-button-next:hover::after {
    transform: translateX(0.8rem) rotate(45deg);
  }
}
@media only screen and (max-width: 1024px) and (min-width: 600px) {
  .flow02 .swiper-main,
  .flow02 .swiper-pagination-main {
    max-width: calc(100% - 6.4rem);
  }
}
/*クリニックについて*/
.page-id-754 .entry-header {
  margin: 0 0 60px 0;
}
.page-id-754 .entry-content {
  margin: 60px auto !important;
}
.page-id-754 .top_feature_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.page-id-754 .top_feature_list .list_number {
  border: 0;
  padding: 0 0 0 20px;
}
.page-id-754 .top_feature_list .list_number li {
  font-size: 20px;
  font-weight: bold;
}
.page-id-754 .top_feature_list .list_number li span {
  display: block;
  border-top: solid 1px;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 0 0 0;
  margin: 10px 0 0 0;
}

@media screen and (min-width: 768px) {
  .page-id-754 .top_feature_list {
    justify-content: space-between;
  }
  .page-id-754 .top_feature_list .top_feature_item {
    width: 900px;
    margin: 0 auto;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li {
    font-size: 24px;
    padding: 0 0 30px 30px !important;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li::before {
    font-size: 26px;
    top: -6px;
    left: -1.2em;
    width: 50px;
    height: 50px;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li span {
    font-size: 18px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .page-id-754 .top_feature_list {
    justify-content: space-between;
  }
  .page-id-754 .top_feature_list .top_feature_item {
    width: 70%;
    margin: 0 auto 40px;
  }
  .page-id-754 .top_feature_list .top_feature_item:last-child {
    margin: 0 auto 40px;
  }
}
/*論文業績*/
.page-id-4013 .wp-block-group {
  border-bottom: solid 1px #baa2c6;
  padding: 20px 0 50px;
}

/*胃カメラ検査*/
.page-id-3881 .gastroscopy_feature .gastroscopy_feature_columns .gastroscopy_feature_column {
  background-color: #fafafa;
  padding: 20px;
}
.page-id-3881 .gastroscopy_feature .gastroscopy_feature_columns .gastroscopy_feature_column h3 {
  text-align: center;
  border-bottom: solid 2px #f0ede7 !important;
  padding: 0 0 20px 0;
  color: #8863a2;
}
.page-id-3881 .gastroscopy_feature .gastroscopy_feature_columns .gastroscopy_feature_column h3:before {
  content: none;
}
.page-id-3881 .gastroscopy_feature .gastroscopy_feature_columns .gastroscopy_feature_column p {
  margin: 20px 0 0 0;
  font-size: 16px;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column {
  background-color: #fafafa;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column:first-child {
  background-color: #f9f6f1;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column:last-child {
  opacity: 0.8;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column figure img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column h3 {
  text-align: center;
  border-bottom: solid 2px #f0ede7 !important;
  padding: 0 0 20px 0;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column h3:before {
  content: none;
}
.page-id-3881 .gastroscopy_type .gastroscopy_type_columns .gastroscopy_type_column p {
  margin: 20px 0 0 0;
  font-size: 16px;
}
.page-id-3881 .gastroscopy_end {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .page-id-3881 .gastroscopy_end {
    font-size: 24px;
    font-weight: bold;
  }
}
/*大腸カメラ検査*/
.page-id-3890 .colonoscopy_feature .colonoscopy_feature_columns .colonoscopy_feature_column {
  background-color: #fafafa;
  padding: 20px;
}
.page-id-3890 .colonoscopy_feature .colonoscopy_feature_columns .colonoscopy_feature_column h3 {
  text-align: center;
  border-bottom: solid 2px #f0ede7 !important;
  padding: 0 0 20px 0;
  color: #8863a2;
}
.page-id-3890 .colonoscopy_feature .colonoscopy_feature_columns .colonoscopy_feature_column h3:before {
  content: none;
}
.page-id-3890 .colonoscopy_feature .colonoscopy_feature_columns .colonoscopy_feature_column p {
  margin: 20px 0 0 0;
  font-size: 16px;
}
.page-id-3890 .colonoscopy_end {
  font-size: 20px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .page-id-3890 .colonoscopy_end {
    font-size: 24px;
    font-weight: bold;
  }
}
/*腫瘍内科*/
.page-id-3634 .step_flow {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.page-id-3634 .step_flow .step {
  width: 100%;
  position: relative;
  margin: 0 0 40px 0;
}
.page-id-3634 .step_flow .step p {
  border: solid 2px #ac8f69;
  border-radius: 10px;
  padding: 5px;
  display: block;
  text-align: center;
}
.page-id-3634 .step_flow .step .sub_step_flow {
  padding: 0;
  display: flex;
}
.page-id-3634 .step_flow .step .sub_step_flow .sub_step {
  width: 50%;
}
.page-id-3634 .step_flow .step1::after {
  content: "";
  background-color: #a29b90;
  width: 49px;
  height: 32px;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_line.svg);
  mask: url(/wp-content/uploads/icon/arrow_line.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 25px);
  transform: rotate(90deg);
}
.page-id-3634 .step_flow .step2 {
  margin: 0 0 100px 0;
}
.page-id-3634 .step_flow .step2::after {
  content: "";
  background-color: #a29b90;
  width: 232px;
  height: 100px;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_line2.svg);
  mask: url(/wp-content/uploads/icon/arrow_line2.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  bottom: -80px;
  left: calc(50% - 115px);
}
.page-id-3634 .step_flow .step3::after {
  content: "";
  background-color: #a29b90;
  width: 232px;
  height: 54px;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_line3.svg);
  mask: url(/wp-content/uploads/icon/arrow_line3.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 116px);
}
.page-id-3634 .step_flow .step3 .sub_step:first-child p {
  background-color: #ffdcdc;
}
.page-id-3634 .step_flow .step4 {
  margin: 0 0 10px 0;
}
.page-id-3634 .step_flow .step4 .sub_step {
  margin: 0.2em 0.2em 50px;
}
.page-id-3634 .step_flow .step4 .sub_step p {
  text-align: left;
}
.page-id-3634 .step_flow .step4 .sub_step p span {
  display: block;
  font-size: 12px;
}
.page-id-3634 .step_flow .step4 .sub_step:first-child p {
  background-color: #ffdcdc;
}
.page-id-3634 .step_flow .step4 .sub_step:last-child {
  position: relative;
  margin: 0.2em 0.2em 80px 0.2em;
}
.page-id-3634 .step_flow .step4 .sub_step:last-child::after {
  content: "";
  background-color: #a29b90;
  width: 126px;
  height: 100px;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_line4.svg);
  mask: url(/wp-content/uploads/icon/arrow_line4.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  position: absolute;
  bottom: -80px;
  left: calc(50% - 63px);
}
.page-id-3634 .step_flow .step5 {
  margin: 0;
}
.page-id-3634 .step_flow .step5 .sub_step {
  margin: 0;
}
.page-id-3634 .step_flow .step5 .sub_step ul {
  display: flex;
  padding: 0;
}
.page-id-3634 .step_flow .step5 .sub_step ul li {
  margin: 0;
}
.page-id-3634 .step_flow .step5 .sub_step ul li p {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .page-id-3634 .step_flow .step p {
    padding: 10px;
  }
  .page-id-3634 .step_flow .step4 {
    margin: 0 0 10px 0;
  }
  .page-id-3634 .step_flow .step4 .sub_step:last-child::after {
    bottom: -80px;
  }
  .page-id-3634 .step_flow .step4 .sub_step p span {
    font-size: 14px;
  }
  .page-id-3634 .step_flow .step5 .sub_step ul li {
    width: 100%;
  }
  .page-id-3634 .step_flow .step5 .sub_step ul li p {
    font-size: 16px;
  }
}
/*予防接種*/
.page-id-3971 .vaccination_list {
  gap: 0.5rem;
  margin: 0 0 10px 0;
}
.page-id-3971 .vaccination_list div .button a {
  display: block;
}

@media screen and (min-width: 768px) {
  .page-id-3971 .vaccination_list {
    gap: 1.5rem;
    margin: 0 0 30px 0;
  }
}
/*健康診断で引っかかった方へ*/
.page-id-4771 .three_buttons {
  gap: 0;
}

/*院内紹介*/
.page-id-756 figure {
  margin: 0 0 20px 0 !important;
}
.page-id-756 figure figcaption {
  font-size: 16px;
}
.page-id-756 figure figcaption strong {
  text-align: center;
  display: block;
  font-size: 20px;
}

/*医師紹介*/
.page-id-758 .entry-header {
  margin: 0 0 60px 0;
}
.page-id-758 .entry-content {
  margin: 60px auto !important;
}
.page-id-758 h2 span {
  font-size: 0.8em;
  font-weight: normal;
}
.page-id-758 .name {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  line-height: 3.6em;
}
.page-id-758 .name .name_title {
  font-size: 0.8em;
  padding: 0 10px 0 0;
}
.page-id-758 figure {
  width: 90%;
  margin: -10px auto 0 !important;
  display: block;
}
.page-id-758 figure img {
  border-radius: 10px;
}
.page-id-758 .list_noline li {
  font-size: 3vw;
  padding: 0 0 0 16px;
}
.page-id-758 .list_noline li::before {
  width: 8px;
  height: 8px;
  border-radius: 10px;
  top: 1.6vw;
  left: 0;
}
.page-id-758 .list_noline li span {
  display: block;
  color: #a29b90;
  font-weight: bold;
}
.page-id-758 .list_noline_keireki {
  padding-left: 0;
}
.page-id-758 .list_noline_keireki li {
  margin: 0 0 10px 0;
  font-size: 3vw;
}
.page-id-758 .list_noline_keireki li:nth-child(odd):nth-last-child(2) {
  margin-bottom: 10px;
}
.page-id-758 .list_noline_keireki li span {
  padding: 0 10px 0 0;
  color: #a29b90;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .page-id-758 figure {
    margin: 14px auto !important;
  }
  .page-id-758 .list_noline li {
    font-size: 13px;
    padding: 0 0 0 16px;
  }
  .page-id-758 .list_noline li::before {
    width: 8px;
    height: 8px;
    border-radius: 10px;
    top: 8px;
    left: 0;
  }
  .page-id-758 .list_noline_keireki {
    padding-left: 0;
  }
  .page-id-758 .list_noline_keireki li {
    margin: 0 0 10px 0;
    font-size: 13px;
  }
}
/*問い合わせ*/
.page-id-4325 .multiform_frame,
.page-id-4327 .multiform_frame,
.page-id-4329 .multiform_frame {
  background: #f0f0f0;
  border-radius: 10px;
  padding: 10px;
}
.page-id-4325 input[type=submit],
.page-id-4327 input[type=submit],
.page-id-4329 input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 10px;
  background-color: #8863a2;
  color: #faf9f8;
  font-size: 20px;
  font-family: inherit;
  font-weight: bold;
}
.page-id-4325 input[type=submit]:disabled,
.page-id-4327 input[type=submit]:disabled,
.page-id-4329 input[type=submit]:disabled {
  opacity: 0.7;
}
.page-id-4325 input[type=submit]:hover,
.page-id-4327 input[type=submit]:hover,
.page-id-4329 input[type=submit]:hover {
  color: #cdc1ad;
}
.page-id-4325 .wpcf7-previous,
.page-id-4327 .wpcf7-previous,
.page-id-4329 .wpcf7-previous {
  padding: 5px 10px;
  font-size: 16px;
  font-family: inherit;
  font-weight: bold;
  color: #777;
  border-radius: 10px;
  border: solid 2px #999;
}
.page-id-4325 .wpcf7-previous:hover,
.page-id-4327 .wpcf7-previous:hover,
.page-id-4329 .wpcf7-previous:hover {
  cursor: pointer;
  opacity: 0.8;
}
.page-id-4325 span.wpcf7-spinner,
.page-id-4327 span.wpcf7-spinner,
.page-id-4329 span.wpcf7-spinner {
  display: none;
}
.page-id-4325 .grecaptcha-badge,
.page-id-4327 .grecaptcha-badge,
.page-id-4329 .grecaptcha-badge {
  left: 6px !important;
  width: 70px !important;
}
.page-id-4325 .grecaptcha-badge:hover,
.page-id-4327 .grecaptcha-badge:hover,
.page-id-4329 .grecaptcha-badge:hover {
  left: 6px !important;
  width: 256px !important;
}

/*サイトマップ*/
#sitemap_list {
  padding-left: 0 !important;
}
#sitemap_list li {
  position: relative;
  padding: 0 0 0 30px;
}
#sitemap_list li::before {
  width: 10px;
  height: 10px;
  background: #a29b90;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  content: "";
}
#sitemap_list li h4 {
  border: 0;
  margin: 0 0 0 0;
  padding: 0;
  line-height: 1.6em;
  font-size: 20px;
}
#sitemap_list li a {
  text-decoration: none !important;
}
#sitemap_list li .children {
  padding-left: 0;
}

/************************************
** 投稿
************************************/
.archive .a-wrap:hover,
.single .a-wrap:hover {
  background-color: #fbeefb;
}

.widget_recent_entries ul li a:hover {
  background-color: #fbeefb;
}

.widget_archive ul li a:hover {
  background-color: #fbeefb;
}

/*お知らせ一覧ページ*/
.archive .a-wrap {
  border-bottom: 1px solid #333;
}
.archive .a-wrap figure {
  display: none;
}
.archive .a-wrap .entry-card-content {
  margin-left: 0;
}
.archive .a-wrap .entry-card-snippet {
  display: block;
}
.archive h3 {
  background: none;
  padding: 0 0 0 20px;
}

/*お知らせ　詳細ページ*/
.single .entry-content {
  padding: 20px 0;
}
.single .under-entry-content figure {
  display: none;
}
.single h3 {
  background: none;
  padding: 0 0 0 20px;
}

/*ブログ一覧ページ*/
.archive.category-22 .a-wrap {
  border-bottom: 1px solid #333;
}
.archive.category-22 .a-wrap figure {
  display: block;
  width: 100px;
}
.archive.category-22 .a-wrap figure img {
  aspect-ratio: 3/4;
}
.archive.category-22 .a-wrap figure .cat-label {
  display: none;
}
.archive.category-22 .a-wrap .entry-card-content {
  margin-left: 0;
}
.archive.category-22 .a-wrap .entry-card-snippet {
  display: block;
}
.archive.category-22 h3 {
  background: none;
  padding: 0 0 0 20px;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}
/*834px以下*/
@media screen and (max-width: 834px) {
  /*必要ならばここにコードを書く*/
}
/*480px以下*/
@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
}/*# sourceMappingURL=style.css.map */