@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 Serif JP", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

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

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

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

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: #007b43;
  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 6px 10px;
  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: linear-gradient(125deg, rgba(255, 165, 0, 0.8), rgba(255, 32, 32, 0.8), rgba(255, 202, 0, 0.8));
}

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

.button a {
  color: #505050;
  display: inline-block;
  text-align: center;
  background: #fff;
  border: solid 2px #007b43;
  border-radius: 30px;
  padding: 10px 20px;
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: bold;
  transition: 0.5s;
  text-decoration: none;
  line-height: 1.4em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}
.button a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #f3ffea;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.button a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

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: #a0d0eb;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  border: solid 4px #e82784;
}

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

.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: #603c2c;
  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: #603c2c;
  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 {
  margin: 50px 0 0 0;
}
.list_number > div {
  position: relative;
  background: #a0d0eb;
  border-radius: 10px;
  padding: 20px;
  margin: 0 0 50px 0;
}
.list_number > div .number {
  position: absolute;
  top: -60px;
  left: calc(50% - 24px);
  font-size: 64px;
  font-weight: bold;
  font-style: italic;
  color: #f9b049;
}
.list_number > div h3 {
  color: #f9b049;
  padding: 10px 0 !important;
}
.list_number > div h3::before {
  content: none;
}
.list_number > div p {
  line-height: 1.6em;
}

.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 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: #603c2c;
}

.price_table {
  border: solid 1px #f9b049;
  border-radius: 10px;
}
.price_table table {
  width: 100% !important;
}
.price_table table tr:last-child th {
  border-bottom: 0;
}
.price_table table tr:last-child td {
  border-bottom: 0;
}
.price_table table tr th {
  border-bottom: 1px solid #f9b049;
  border-right: 1px solid #f9b049;
  padding: 10px;
  background: #a0d0eb;
  font-size: 1em;
}
.price_table table tr td {
  border-bottom: 1px solid #f9b049;
  padding: 10px;
  background: #fff;
  font-size: 1em;
  text-align: center;
}

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: #fffaf2;
  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;
  }
}
/*テーブル　チェックリスト*/
.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: #ff9500;
}
.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 #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;
  }
  .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 {
    padding: 10px 0 0 30px;
  }
  .header-container-in.hlt-top-menu #header-in .logo img {
    max-height: 110px;
    width: 500px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info {
    display: flex;
    padding: 20px;
    margin: 0 20px 0 auto;
    align-items: center;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li {
    font-size: 16px;
    padding: 0 70px 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 70px 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: linear-gradient(300deg, rgba(255, 165, 0, 0.8), rgba(255, 32, 32, 0.8), rgba(255, 202, 0, 0.8));
    font-size: 20px;
    font-weight: bold;
    padding: 14px 20px;
    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.tel_header_button a {
    text-align: left;
    font-size: 36px;
    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;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.line_header_button a {
    color: #fff;
    background: #06c755;
    padding: 15px 30px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  #header .site-name-text {
    padding: 0 70px 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: 220px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info {
    padding: 0 20px;
    margin: 0;
  }
  .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;
  }
}
@media (max-width: 1400px) and (min-width: 1025px) {
  .header-container-in.hlt-top-menu #header-in {
    height: 260px;
  }
}
/*breadcrumb*/
.breadcrumb {
  margin: 0;
  padding: 0 10px;
}

/*footer*/
#content-bottom {
  background: #fffaf2;
}

#footer {
  margin: 0 0 30px 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: "";
}
#footer .footer_announcement {
  position: fixed;
  bottom: 60px;
  left: 5px;
  z-index: 2;
}
#footer .footer_announcement p {
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  border: solid 4px #ff9500;
  border-radius: 10px;
  color: #603c2c;
  line-height: 1;
  padding: 10px 5px;
  display: block;
}
#footer .footer_line {
  position: fixed;
  bottom: 53px;
  right: 80px;
  z-index: 2;
}
#footer .footer_line a {
  display: block;
}
#footer .footer_line a img {
  height: 50px;
}

.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: linear-gradient(300deg, rgba(255, 165, 0, 0.8), rgba(255, 32, 32, 0.8), rgba(255, 202, 0, 0.8));
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  border: 0;
}
.footer_info .footer_info_left .web_reserve a::before {
  background: linear-gradient(300deg, rgba(77, 194, 250, 0.8), rgba(149, 131, 188, 0.8), rgba(244, 119, 94, 0.8)) !important;
}
.footer_info .footer_info_left .web_reserve a:hover {
  background: linear-gradient(300deg, rgba(77, 194, 250, 0.8), rgba(149, 131, 188, 0.8), rgba(244, 119, 94, 0.8));
}
.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;
}
.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 .footer-bottom {
    padding: 20px 0 90px 0;
  }
  #footer .footer-bottom ul {
    margin: 0 0 40px 0;
  }
  #footer .footer-bottom ul li ::before {
    left: 12px;
  }
  #footer .footer_announcement {
    bottom: 30px;
    left: 30px;
  }
  #footer .footer_announcement p {
    font-size: 30px;
    padding: 10px 20px;
  }
  #footer .footer_line {
    bottom: 22px;
    right: unset;
    left: 420px;
  }
  #footer .footer_line img {
    height: 60px;
  }
  .footer_info {
    padding: 0 0 40px 0;
  }
  .footer_info ul {
    display: flex;
    justify-content: center;
  }
  .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 dl dt {
    font-size: 22px;
    padding: 5px;
  }
  .footer_info .footer_info_right table.info_hours dl dd {
    font-size: 32px;
  }
  .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: 70%;
  }
  .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_right iframe {
    height: 450px;
  }
  .footer_info .footer_info_tel li:first-child {
    font-size: 20px;
    text-align: center;
    padding: 10px 20px 10px 0;
  }
}
@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;
  }
}
/*フッターメニュー*/
.navi-footer-in a:hover {
  background: 0 !important;
  color: #ff9500;
}

/*PC　下部固定メニュー*/
.footer__menu_fix {
  position: fixed;
  bottom: 30px;
  right: 110px;
  z-index: 9999;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
}
.footer__menu_fix .footer__menu_fix_inner {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a {
  display: block;
  font-size: 20px;
  color: #fff;
  background: #a29b90;
  text-decoration: none;
  padding: 14px 40px;
  transition: 0.3s;
  height: 60px;
  margin: 0 20px 0 0;
  border-radius: 30px;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a:hover {
  background: #a29b90;
}
.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;
  height: 60px;
  background: #ff9500;
  padding: 10px 30px 10px 60px;
  text-decoration: none;
  border-radius: 30px;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_inner a:hover {
  background-color: #f9b049;
}
.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: 10;
  left: 22px;
}

.footer__menu_fix.view {
  opacity: 1;
}

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

.mobile-header-menu-buttons {
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  padding: 10px 0px 0px 0px;
  margin: 0px 0 0 auto;
  position: fixed;
  right: 10px;
  top: 10px;
  background: linear-gradient(300deg, #ffd48b, #ff5e09, #f99534) !important;
}
.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: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
}
#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: #6f7e8d;
  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: linear-gradient(300deg, rgba(255, 165, 0, 0.8), rgba(255, 32, 32, 0.8), rgba(255, 202, 0, 0.8));
  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: linear-gradient(300deg, rgba(77, 194, 250, 0.8), rgba(149, 131, 188, 0.8), rgba(244, 119, 94, 0.8)) !important;
}
#navi-menu-content .mobile_slide_info .button.web_reserve a:hover {
  background: linear-gradient(300deg, rgba(77, 194, 250, 0.8), rgba(149, 131, 188, 0.8), rgba(244, 119, 94, 0.8));
}
#navi-menu-content .mobile_slide_info .button a {
  margin: 10px 0;
}

.mobile-menu-buttons {
  background: #007b43;
}
.mobile-menu-buttons > li:nth-child(2) {
  display: none;
}
.mobile-menu-buttons .menu-button {
  border-right: solid 2px #fff;
  color: #fff;
  padding: 4px;
}
.mobile-menu-buttons .menu-button:last-child {
  border: none;
}
.mobile-menu-buttons .menu-button > a {
  color: #fff;
}
.mobile-menu-buttons .menu-caption {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: -0.05em;
}

@media screen and (min-width: 1024px) {
  .mobile-header-menu-buttons.mobile-menu-buttons {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mobile-footer-menu-buttons.mobile-menu-buttons {
    display: none;
  }
}
/*TOPへ戻るボタン*/
.go-to-top {
  right: 10px;
  bottom: 60px;
  z-index: 1;
}
.go-to-top .go-to-top-button {
  background: url(/wp-content/uploads/img/gototop.png) no-repeat;
  background-size: cover;
  height: 48px;
  width: 48px;
  display: block !important;
}
.go-to-top .go-to-top-button span {
  display: none;
}

@media screen and (min-width: 768px) {
  .go-to-top {
    right: 30px;
    bottom: 30px;
  }
  .go-to-top .go-to-top-button {
    height: 60px;
    width: 60px;
  }
}
/*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: #ff9500;
    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-2597 .sub-menu {
    width: 280px;
  }
  .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 .sub-menu {
    background-color: #ffffff;
    border: solid 2px #ff9500;
    border-radius: 10px;
    top: 55px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px 20px 0 20px;
    min-width: 0;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu:hover {
    display: flex;
  }
  .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: #603c2c;
  }
  .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ページ
************************************/
.c-modal {
  background-color: #eeeeee;
  border-radius: 4px;
}

.c-modal__text {
  padding: 20px;
  font-size: 14px;
}

.c-modal__btn {
  background-color: #cfcfcf;
  border-radius: 0 0 4px 4px;
  padding: 12px 40px;
}

.c-btn {
  background-color: #e45f2a;
  border: none;
  border-radius: 4px;
  color: #ffffff;
  display: block;
  margin: auto;
  padding: 12px 40px;
  cursor: pointer;
}

.l-modal {
  left: 50%;
  margin: auto;
  position: fixed;
  bottom: 10px;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90vw;
}

@media screen and (min-width: 768px) {
  .l-modal {
    width: calc(100vw - 80px);
    bottom: 20px;
  }
  .c-modal__text {
    font-size: 18px;
  }
}
.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 .entry-content {
  width: 100% !important;
}

#post-9 h2 {
  background: none;
  margin: 0 0 40px 0;
  padding: 0;
  text-align: left;
  position: relative;
  font-size: 24px;
  letter-spacing: 0.1em;
  border: 0;
}

@media screen and (min-width: 768px) {
  #post-9 h2 {
    margin: 0 0 60px 0;
    font-size: 36px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  #post-9 h2 {
    font-size: 24px;
  }
}
/*hero*/
.bg {
  position: absolute;
  top: 30px;
  left: 2.5%;
}
.bg.is-show .bg-wrap::before {
  animation: bg 3.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  background: linear-gradient(to right, #ffba20 0%, #ff9646 50%, #ff8910 100%);
  border-radius: 10px;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
}
.bg.is-show .bg-wrap .inn {
  opacity: 1;
}
.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.bg .bg-wrap .inn {
  color: #fff;
  opacity: 0;
  font-size: 24px;
  padding: 5px 10px;
  position: relative;
  z-index: 1;
  transition: 1s;
}

@media screen and (min-width: 768px) {
  .bg .bg-wrap {
    margin-top: 10px;
  }
  .bg .bg-wrap .inn {
    font-size: 38px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .bg {
    left: 40px;
  }
  .bg .bg-wrap {
    margin-top: 10px;
  }
  .bg .bg-wrap .inn {
    font-size: 38px;
  }
}
@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page-id-9 h2 {
  text-align: center;
  position: relative;
}
.page-id-9 .hero {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.page-id-9 .hero .sp_mv {
  width: 100%;
  height: 500px;
  background: linear-gradient(300deg, rgba(249, 255, 134, 0.1), rgba(255, 208, 182, 0.2), rgba(255, 42, 0, 0.1));
}
.page-id-9 .hero .sp_mv .metaslider {
  overflow: hidden;
  border-radius: 30px;
}
.page-id-9 .hero .sp_mv .metaslider img {
  -o-object-fit: cover;
     object-fit: cover;
}
.page-id-9 .hero .title {
  font-size: 5vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin: 10px 0 0 5px;
  line-height: 2.2rem;
  color: #603c2c;
}
.page-id-9 .hero .hero_open_date {
  color: #002515;
  display: inline-block;
  font-size: 22px;
  font-weight: bold;
  background: #fff;
  padding: 10px;
  line-height: 1em;
  position: absolute;
  top: 40px;
  left: calc(50% - 6.5em);
  border-radius: 10px;
}
.page-id-9 .hero .hero_covid_19 a {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 90%;
}
.page-id-9 .hero .hero_covid_19 a:hover img {
  opacity: 0.9;
}
.page-id-9 .hero .hero_covid_19 a:hover::before {
  right: 20px;
}
.page-id-9 .hero .hero_covid_19 a:hover::after {
  right: 37px;
}
.page-id-9 .hero .hero_covid_19 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;
}
.page-id-9 .hero .hero_covid_19 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;
}
.page-id-9 .hero .hero_covid_19 a p {
  position: absolute;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  top: calc(50% - 2em);
  left: 20px;
  z-index: 1;
}
.page-id-9 .hero .hero_covid_19 a img {
  transition: 0.3s;
}
.page-id-9 .hero .hero_feature {
  position: absolute;
  top: 300px;
  width: 100%;
}
.page-id-9 .hero .hero_feature ul {
  display: flex;
  justify-content: space-around;
  padding: 0;
}
.page-id-9 .hero .hero_feature ul li {
  background: #fff;
  border-radius: 100px;
  width: 23vw;
  height: 23vw;
  text-align: center;
  font-weight: bold;
  font-size: 3.4vw;
  color: #002515;
  display: grid;
  align-items: center;
  letter-spacing: -0.01em;
  line-height: 1.3em;
}
.page-id-9 .hero .hero_feature ul li img {
  width: 8vw;
  margin: 0 0 -20px 0;
}
.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: #603c2c;
}
.page-id-9 .hero .hero_latest_info h2::before {
  content: "NEWS";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 20px;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2rem;
  font-family: "Secular One", sans-serif;
}
.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 #007b43;
  background: #007b43;
  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: #007b43;
  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 #007b43;
  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;
  font-family: "Secular One", sans-serif;
}
.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: #007b43;
  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: -60px 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;
}

.movetext {
  opacity: 0;
}

.movetext span {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .page-id-9 h2 {
    font-size: 36px;
  }
  .page-id-9 .hero {
    position: relative;
  }
  .page-id-9 .hero .pc_mv {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: linear-gradient(300deg, rgba(249, 255, 134, 0.1), rgba(255, 208, 182, 0.2), rgba(255, 42, 0, 0.1));
  }
  .page-id-9 .hero .pc_mv .metaslider img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 580px;
    visibility: hidden;
  }
  .page-id-9 .hero .title {
    font-size: 40px;
    line-height: 1.6em;
    letter-spacing: 0.05em;
  }
  .page-id-9 .hero .hero_open_date {
    display: block;
    font-size: 36px;
    left: 40px;
  }
  .page-id-9 .hero .hero_covid_19 {
    position: absolute;
    top: 220px;
    right: 50px;
  }
  .page-id-9 .hero .hero_covid_19 a {
    width: 335px;
  }
  .page-id-9 .hero .hero_feature {
    top: 340px;
    width: 600px;
  }
  .page-id-9 .hero .hero_feature ul li {
    width: 150px;
    height: 150px;
    font-size: 20px;
  }
  .page-id-9 .hero .hero_feature ul li img {
    width: 60px;
    margin: -10px 0 -35px 0;
  }
  .page-id-9 .hero .hero_latest_info {
    width: 900px;
    margin: 0 auto;
    padding: 120px 0;
  }
  .page-id-9 .hero .hero_latest_info h2 {
    font-size: 36px;
  }
  .page-id-9 .hero .hero_latest_info h2::before {
    font-size: 24px;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards {
    width: 600px;
    margin: -80px 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_info_hours {
    position: initial;
  }
  .page-id-9 .hero .hero_info_hours .white_bg {
    width: 470px;
    position: absolute;
    top: 400px;
    right: 40px;
  }
  .page-id-9 .hero .hero_info_hours .white_bg .info_hours dl dd {
    font-size: 24px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .page-id-9 .hero .pc_mv {
    width: 100%;
    height: auto;
  }
  .page-id-9 .hero .pc_mv .metaslider img {
    height: 580px;
  }
  .page-id-9 .hero .title {
    font-size: 32px;
  }
  .page-id-9 .hero .hero_open_date {
    font-size: 26px;
    left: 40px;
  }
  .page-id-9 .hero .hero_feature {
    top: 380px;
  }
  .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_info_hours .white_bg {
    width: 360px;
    top: 280px;
    font-size: 16px;
  }
}
/*TOPごあいさつ*/
.top_greeting_section {
  position: relative;
  width: 100%;
  padding: 100px 20px 50px;
}
.top_greeting_section .top_greeting {
  margin: 0 auto;
  width: 100%;
}
.top_greeting_section .top_greeting h2 {
  color: #603c2c !important;
}
.top_greeting_section .top_greeting h2::before {
  content: "GREETING";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 20px;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2rem;
  font-family: "Secular One", sans-serif;
}
.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;
}

@media screen and (min-width: 768px) {
  .top_greeting_section {
    width: 900px;
    margin: 0 auto;
    padding: 140px 0px 20px;
  }
  .top_greeting_section .top_greeting {
    margin: 0 auto;
    width: 100%;
  }
  .top_greeting_section .top_greeting h2::before {
    font-size: 24px;
  }
  .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;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_greeting_section {
    width: 100%;
    padding: 140px 20px 20px;
  }
  .top_greeting_section .top_greeting h2 {
    font-size: 24px !important;
  }
  .top_greeting_section .top_greeting h2::before {
    font-size: 16px;
  }
}
/*TOP次のような症状で悩んでいませんか？*/
.top_symptoms_section {
  position: relative;
  width: 100%;
  padding: 80px 20px 60px;
  margin: 0 !important;
  background: #fffcf8;
  overflow: hidden;
}
.top_symptoms_section::before {
  content: "";
  background-image: url(/wp-content/uploads/img/orange_circle_bg.png);
  position: absolute;
  background-repeat: no-repeat;
  width: 140vh;
  height: 140vh;
  opacity: 0.4;
  background-size: 100%;
  bottom: -140vw;
  right: -140vw;
}
.top_symptoms_section .top_symptoms h2 {
  color: #603c2c !important;
}
.top_symptoms_section .top_symptoms h2::before {
  content: "SYMPTOMS";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 20px;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2rem;
  font-family: "Secular One", sans-serif;
}
.top_symptoms_section .top_symptoms .top_symptoms_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.top_symptoms_section .top_symptoms .top_symptoms_list img {
  margin: 0 auto 20px;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item {
  background: #fff;
  border-radius: 10px;
  border: solid 1px #ffd0a3;
  padding: 20px 20px 20px 10px;
  margin: 0 0 30px 0;
  width: 100%;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item h3 {
  font-size: 24px;
  text-align: center;
  color: #603c2c;
  letter-spacing: 0.15em;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item h3:before {
  background: 0;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item img {
  display: block;
  width: 200px;
  margin: 0 auto 20px;
  padding: 0;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:last-child {
  margin: 0;
}
.top_symptoms_section .top_symptoms .closing-text {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .top_symptoms_section {
    padding: 140px 0 80px;
  }
  .top_symptoms_section::before {
    width: 2000px;
    height: 2000px;
    bottom: -1000px;
    right: -1000px;
  }
  .top_symptoms_section .top_symptoms {
    width: 1000px;
    margin: 0 auto;
  }
  .top_symptoms_section .top_symptoms h2 {
    margin: 0 0 60px 50px !important;
  }
  .top_symptoms_section .top_symptoms h2::before {
    font-size: 24px;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list {
    justify-content: space-between;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item {
    width: 320px;
    margin: 0;
  }
  .top_symptoms_section .top_symptoms .closing-text {
    font-size: 24px;
    text-align: center;
    line-height: 2em;
  }
  .top_symptoms_section .top_symptoms .button {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_symptoms_section {
    padding: 140px 20px 80px;
  }
  .top_symptoms_section .top_symptoms {
    width: 100%;
    margin: 0 auto;
  }
  .top_symptoms_section .top_symptoms h2 {
    font-size: 24px !important;
    margin: 0 0 20px 0 !important;
  }
  .top_symptoms_section .top_symptoms h2::before {
    font-size: 16px;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list {
    justify-content: space-between;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item {
    width: 70%;
    margin: 0 auto 40px;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:last-child {
    margin: 0 auto 40px;
  }
  .top_symptoms_section .top_symptoms .closing-text {
    font-size: 20px;
  }
}
/*TOPはじめての方へ*/
.top_first_section {
  position: relative;
  width: 100%;
  padding: 80px 20px 60px;
  margin: 0 !important;
}
.top_first_section .top_first h2 {
  color: #603c2c !important;
}
.top_first_section .top_first h2::before {
  content: "FIRST";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 20px;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2rem;
  font-family: "Secular One", sans-serif;
}
.top_first_section .top_first .top_first_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.top_first_section .top_first .top_first_list .top_first_item {
  padding: 10px 20px 40px 10px;
  margin: 0 0 30px 0;
  width: 100%;
  position: relative;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
     border-image: linear-gradient(to right, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  border-image-slice: 1;
}
.top_first_section .top_first .top_first_list .top_first_item::before {
  content: "";
  position: absolute;
  color: #333;
  width: 2px;
  height: 50px;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  left: 50%;
  bottom: -25px;
}
.top_first_section .top_first .top_first_list .top_first_item::after {
  content: "";
  position: absolute;
  width: 1em;
  height: 1em;
  border: 0.1em solid;
  -o-border-image: linear-gradient(to right, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
     border-image: linear-gradient(to right, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  border-image-slice: 1;
  border-left: 0;
  border-bottom: 0;
  transform: translateY(-25%) rotate(135deg);
  bottom: -30px;
  left: calc(50% - 0.5em);
}
.top_first_section .top_first .top_first_list .top_first_item:first-child h3::before {
  width: 36px;
  height: 38px;
  background: url(/wp-content/uploads/img/top_first1.png);
  position: absolute;
  top: 0;
  left: -5px;
  background-size: cover;
}
.top_first_section .top_first .top_first_list .top_first_item:nth-child(2) h3::before {
  width: 32px;
  height: 32px;
  background: url(/wp-content/uploads/img/top_first2.png);
  position: absolute;
  top: 2px;
  left: -3px;
  background-size: cover;
}
.top_first_section .top_first .top_first_list .top_first_item:nth-child(3) h3::before {
  width: 36px;
  height: 38px;
  background: url(/wp-content/uploads/img/top_first3.png);
  position: absolute;
  top: 0;
  left: -5px;
  background-size: cover;
}
.top_first_section .top_first .top_first_list .top_first_item:last-child h3::before {
  width: 36px;
  height: 36px;
  background: url(/wp-content/uploads/img/top_first4.png);
  position: absolute;
  top: 0;
  left: -6px;
  background-size: cover;
}
.top_first_section .top_first .top_first_list .top_first_item:last-child::before {
  content: none;
}
.top_first_section .top_first .top_first_list .top_first_item:last-child::after {
  content: none;
}
.top_first_section .top_first .top_first_list .top_first_item h3 {
  font-size: 20px;
  text-align: left;
  padding: 0;
  position: relative;
  padding: 0 0 0 35px;
  margin: 0 0 10px 0 !important;
}
.top_first_section .top_first .top_first_list .top_first_item h3 span {
  display: block;
  font-size: 12px;
  color: #007b43;
  padding: 0 0 0 2px;
}
.top_first_section .top_first .top_first_list .top_first_item img {
  display: block;
  width: 200px;
  margin: 0 auto 20px;
  padding: 0;
}
.top_first_section .top_first .top_first_list .top_first_item:last-child {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .top_first_section {
    width: 900px;
    padding: 140px 0px 80px;
    margin: 0 auto !important;
  }
  .top_first_section .top_first h2::before {
    font-size: 24px;
  }
  .top_first_section .top_first .top_first_list {
    margin: -140px 0 0 auto;
    width: 550px;
  }
  .top_first_section .top_first > .button {
    margin: 60px 125px 30px auto;
    display: flex;
  }
  .top_first_section .top_first > .button a {
    margin: 0 0 0 auto;
    display: inline-block;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_first_section {
    width: 100%;
    padding: 140px 20px 80px;
  }
  .top_first_section .top_first h2::before {
    font-size: 16px;
  }
  .top_first_section .top_first .top_first_list {
    width: 500px;
  }
  .top_first_section .top_first > .button {
    margin: 60px 125px 30px auto;
    display: flex;
  }
  .top_first_section .top_first > .button a {
    margin: 0 0 0 auto;
    display: inline-block;
  }
}
/*TOP診療案内*/
.top_medical_information_section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  margin: 0 !important;
  background: #fffcf8;
  overflow: hidden;
}
.top_medical_information_section::before {
  content: "";
  background-image: url(/wp-content/uploads/img/orange_circle_bg.png);
  position: absolute;
  background-repeat: no-repeat;
  width: 140vh;
  height: 140vh;
  opacity: 0.4;
  background-size: 100%;
  bottom: -140vw;
  right: -140vw;
  width: 3000px;
  height: 3000px;
  background-size: 100%;
  top: -40vw;
  right: -50vw;
  opacity: 0.3;
}
.top_medical_information_section .top_medical_information {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.top_medical_information_section .top_medical_information h2 {
  color: #603c2c !important;
}
.top_medical_information_section .top_medical_information h2::before {
  content: "menu";
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 20px;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.2rem;
  font-family: "Secular One", sans-serif;
}
.top_medical_information_section .top_medical_information .top_medical_information_lead {
  font-weight: bold;
}
.top_medical_information_section .top_medical_information .top_medical_information_content {
  padding: 0 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 0 20px 0;
  width: 100%;
  position: relative;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li:last-child {
  margin: 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  width: 100%;
  height: 340px;
  background-size: cover;
  background-position-x: center;
  z-index: -1;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general h3 {
  position: relative;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general h3::before {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/img/general.svg) no-repeat;
  height: 100px;
  width: 180px;
  top: -70px;
  left: calc(50% - 90px);
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul {
  display: flex;
  flex-wrap: wrap;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_title {
  order: 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_button {
  order: 2;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list {
  order: 1;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead {
  padding: 0;
  margin: 20px 0px 0;
  font-weight: bold;
  position: relative;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  top: 46%;
  left: 7em;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead_woman {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding: 0;
  margin: 20px 0 0 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead_woman::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  top: 46%;
  left: 10.5em;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead_old {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding: 0;
  margin: 20px 0 0 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead_old::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  top: 46%;
  left: 11.5em;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead_child {
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding: 0;
  margin: 20px 0 0 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list .top_medical_guide_content_list_lead_child::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  top: 46%;
  left: 13.5em;
  background: linear-gradient(300deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.name {
  margin: 10px 0 0 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.name li {
  width: auto;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.name li a {
  color: #505050;
  text-decoration: none;
  padding: 0 15px;
  display: inline-block;
  border: solid 2px #a29b90;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  width: auto;
  margin: 0 5px 10px 0;
  line-height: 2rem;
  transition: 0.3s;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.name li a:hover {
  background: #f1eee9;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.symptoms {
  margin: 10px 0 40px 0;
  padding: 10px 10px 10px 10px !important;
  background: #ffecd0;
  border-radius: 10px;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.symptoms li {
  font-weight: bold;
  margin: 0 5px 5px 0;
  transition: 0.3s;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li h3 {
  text-align: center;
  font-size: 24px;
  padding: 30px 0 0 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li h3 span {
  font-size: 12px;
  display: block;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li .top_medical_guide_content {
  background: #fff;
  border-radius: 10px;
  padding: 120px 20px 0px;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li p {
  padding: 20px 0 0 0;
  margin: 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li ul {
  padding: 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li ul li {
  margin: 0;
}
.top_medical_information_section .top_medical_information .button {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .top_medical_information_section {
    padding: 220px 0 80px 300px;
  }
  .top_medical_information_section::before {
    width: 3000px;
    height: 3000px;
    background-size: 100%;
    top: -40vw;
    right: -50vw;
    opacity: 0.3;
  }
  .top_medical_information_section .top_medical_information {
    width: 600px;
    margin: -90px auto 0;
  }
  .top_medical_information_section .top_medical_information h2 {
    margin: 0 auto 0 -300px !important;
    display: inline;
  }
  .top_medical_information_section .top_medical_information h2::before {
    font-size: 24px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_lead {
    margin: -80px 0 0 0;
    font-size: 24px;
    line-height: 2em;
  }
  .top_medical_information_section .top_medical_information .notice {
    font-size: 14px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li.general ul .top_medical_guide_content_list ul.name li a {
    padding: 5px 15px;
    font-size: 20px;
    margin: 0 10px 15px 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li h3 {
    text-align: center;
    font-size: 24px;
    padding: 30px 0 0 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li h3 span {
    font-size: 12px;
    display: block;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li .top_medical_guide_content {
    background: #fff;
    border-radius: 10px;
    padding: 120px 20px 0px;
    margin: 20px 0 0 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li p {
    padding: 20px 0 0 0;
    margin: 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li ul {
    padding: 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li ul li {
    margin: 0;
  }
  .top_medical_information_section .top_medical_information .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_medical_information_section {
    padding: 220px 0 80px 210px;
  }
  .top_medical_information_section .top_medical_information {
    width: 500px;
  }
  .top_medical_information_section .top_medical_information h2 {
    margin: 0 auto 0 -220px !important;
  }
  .top_medical_information_section .top_medical_information h2::before {
    font-size: 24px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_lead {
    font-size: 20px;
  }
}
/*バナー*/
.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;
}
.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_recruit_section {
  padding: 50px 0 50px 0;
}
.top_recruit_section .top_recruit h2 {
  position: relative;
}
.top_recruit_section .top_recruit h2::after {
  content: "recruit";
  position: absolute;
  top: 2.6rem;
  left: calc(50% - 2rem);
  font-size: 16px;
  font-weight: normal;
  color: #a29b90;
  letter-spacing: 0.2rem;
}

/************************************
** 下層ページ
************************************/
.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: #fffaf2;
  padding: 30px 10px;
  margin: 0 0 30px 0;
  font-weight: initial;
  color: #603c2c;
  font-weight: bold;
}
.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: #603c2c;
  margin: 0 0 20px 0;
  padding: 20px 20px 10px 0;
  border-bottom: solid 4px;
  -o-border-image: linear-gradient(5deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
     border-image: linear-gradient(5deg, rgba(255, 165, 0, 0.4), rgba(255, 32, 32, 0.4), rgba(255, 202, 0, 0.4));
  border-image-slice: 1;
}
.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: 100vw;
  padding: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #fffaf2;
  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-2863 .anchor {
  padding-left: 0 !important;
  display: flex;
  justify-content: space-evenly;
}
.page-id-2863 .shindan .table1 th {
  width: 60%;
}

/*よくある質問*/
.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: #007b43;
  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: #ff9500;
}

@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 table.info_hours {
  font-size: 5.5vw;
}
.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 table.info_hours {
    font-size: 1.75vw;
  }
  .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: #b81c25;
}

.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: #b81c25;
  background-clip: content-box;
}

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

.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: #b81c25;
  }
  .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: #b81c25;
  }
  .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: #b81c25;
}

.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: #b81c25;
}

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

.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: #b81c25;
}

.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 #b81c25;
  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: #b81c25;
}

.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: #b81c25;
}

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

.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: #b81c25;
}

.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 #b81c25;
  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-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 .name {
  font-weight: bold;
  font-size: 20px;
  text-align: right;
  line-height: 3.6em;
}
.page-id-758 .name .name_title {
  font-size: 0.8em;
  padding: 0 10px 0 0;
}
.page-id-758 .doctor_intro {
  background-image: linear-gradient(180deg, #f1eee9 1px, transparent 1px);
  background-size: 100% 2.5em;
  line-height: 2.5em;
  padding-bottom: 1px;
}
.page-id-758 .doctor_intro div:first-child {
  order: 2;
}
.page-id-758 .doctor_intro div:last-child {
  order: 1;
}
.page-id-758 figure {
  width: 80%;
  margin: 0 auto !important;
  display: block;
}
.page-id-758 figure img {
  border-radius: 10px;
}
.page-id-758 .list_noline span {
  display: block;
  color: #a29b90;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .page-id-758 .doctor_intro div:first-child {
    order: 1;
  }
  .page-id-758 .doctor_intro div:last-child {
    order: 2;
  }
}
/*サイトマップ*/
#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: #ffecd0;
}

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

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

/*お知らせ一覧ページ*/
.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 {
  border: solid 1px #555;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.single .under-entry-content figure {
  display: none;
}
.single 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 */