@charset "UTF-8";
/*!
Theme Name: clinic web site
Description: クリニック専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: shibata
Template:   cocoon-master
Version:    1.0.0
*/
/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
/*色変数*/
:root {
  --text-color: #333;
  --base-color: #aaaaaa; /* ベースカラーの定義 */
  --base-color100: var(--base-color);
  --base-color75: color-mix(in srgb, var(--base-color) 75%, white);
  --base-color50: color-mix(in srgb, var(--base-color) 50%, white);
  --base-color25: color-mix(in srgb, var(--base-color) 25%, white);
  --main-color: #0f795e; /* メインカラーの定義 */
  --main-color100: var(--main-color);
  --main-color75: color-mix(in srgb, var(--main-color) 75%, white);
  --main-color50: color-mix(in srgb, var(--main-color) 50%, white);
  --main-color25: color-mix(in srgb, var(--main-color) 25%, white);
  --main-color10: color-mix(in srgb, var(--main-color) 10%, white);
  --accent-color: #fa7731; /* アクセントカラーの定義 */
  --accent-color100: var(--accent-color);
  --accent-color75: color-mix(in srgb, var(--accent-color) 75%, white);
  --accent-color50: color-mix(in srgb, var(--accent-color) 50%, white);
  --accent-color25: color-mix(in srgb, var(--accent-color) 25%, white);
}

/*フォント変数*/
* {
  font-feature-settings: "palt";
  box-sizing: border-box;
}

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

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

a {
  color: var(--text-color);
}
a:hover {
  color: var(--main-color100);
}

a.text_link {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: var(--main-color25);
  transition: 0.5s;
}
a.text_link:hover {
  text-decoration-color: var(--main-color100);
}

a.white_arrow::after {
  content: "";
  background-color: var(--base-color);
  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: var(--text-color);
  display: inline-block;
  width: 0.5rem;
  height: 0.8rem;
  -webkit-mask: url(/wp-content/uploads/icon/arrow_right.svg);
  mask: url(/wp-content/uploads/icon/arrow_right.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 0.15em 0.8em;
  transition: 0.5s;
}

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

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

a.black_new_window::after {
  content: "";
  background-color: var(--text-color);
  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 {
  color: var(--main-color100);
}

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

.button_wrapper {
  display: block;
}
.button_wrapper button {
  position: relative;
  display: block;
  cursor: pointer;
  outline: none;
  border: 0;
  text-decoration: none;
  background: #eee;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
.button_wrapper button.learn-more {
  width: 100%;
  height: auto;
  margin: 20px 0;
}
.button_wrapper button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--main-color100);
}
.button_wrapper button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 50%;
  margin: auto;
  background: #fff;
}
.button_wrapper button.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.button_wrapper button.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.3em;
  right: 0;
  width: 0.625em;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.button_wrapper button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px;
  margin: 0 0 0 1.85rem;
  color: #282936;
  line-height: 1.2em;
  align-items: center;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  display: flex;
  white-space: nowrap;
}
.button_wrapper button.learn-more:hover .circle {
  width: 100%;
}
.button_wrapper button.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.button_wrapper button.learn-more:hover .button-text {
  color: #fff;
}

.tel_button_wrapper {
  display: block;
}
.tel_button_wrapper button {
  position: relative;
  display: block;
  cursor: pointer;
  outline: none;
  border: 0;
  text-decoration: none;
  background: #eee;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}
.tel_button_wrapper button.learn-more {
  width: 100%;
  height: auto;
  margin: 20px 0;
}
.tel_button_wrapper button.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: var(--main-color100);
}
.tel_button_wrapper button.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 50%;
  margin: auto;
  background: #fff;
}
.tel_button_wrapper button.learn-more .circle .icon.arrow {
  top: 1rem;
  left: 1rem;
}
.tel_button_wrapper button.learn-more .circle .icon.arrow::before {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: 900;
  content: "\f879";
  position: absolute;
  color: #fff;
}
.tel_button_wrapper button.learn-more .button-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 30px;
  margin: 0 0 0 1.85rem;
  color: #282936;
  line-height: 1.2em;
  align-items: center;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  display: flex;
}
.tel_button_wrapper button.learn-more:hover .circle {
  width: 100%;
}
.tel_button_wrapper button.learn-more:hover .circle .icon.arrow::before {
  transform: translate(1rem, 0);
}
.tel_button_wrapper button.learn-more:hover .button-text {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .button_wrapper button.learn-more {
    width: auto;
    min-width: 320px;
  }
  .button_wrapper button.learn-more .circle {
    width: 4rem;
    height: 4rem;
  }
  .button_wrapper button.learn-more .circle .icon.arrow {
    left: 1.125em;
  }
  .button_wrapper button.learn-more .button-text {
    padding: 0 30px 0 50px;
  }
  .tel_button_wrapper button.learn-more {
    width: auto;
    min-width: 320px;
  }
  .tel_button_wrapper button.learn-more .circle {
    width: 4rem;
    height: 4rem;
  }
  .tel_button_wrapper button.learn-more .circle .icon.arrow {
    top: 1.5rem;
    left: 1.5rem;
  }
  .tel_button_wrapper button.learn-more .button-text {
    padding: 0 30px 0 50px;
  }
}
figure {
  border-radius: 0;
}

.box_gray {
  background: var(--base-color25);
  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: var(--base-color50) !important;
}
.box_gray li:last-child {
  border-bottom: none;
}

.box_blue {
  background: var(--main-color25);
  border-radius: 10px;
  padding: 20px;
  display: block;
}
.box_blue h3 {
  color: var(--main-color100);
  padding: 0 0 10px 0;
}
.box_blue h3::before {
  content: none;
}
.box_blue li::before {
  background: var(--main-color100) !important;
}
.box_blue li:last-child {
  border-bottom: none;
}

.box_purple {
  background: var(--main-color25);
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  border: solid 4px var(--main-color100);
}

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

.box_beige {
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
  background: var(--base-color25);
}
.box_beige h3 {
  color: var(--main-color100);
  padding: 0 0 10px 0;
}
.box_beige h3::before {
  content: none;
}
.box_beige th {
  width: 60% !important;
}
.box_beige td {
  width: 40% !important;
  padding: 10px !important;
  background-color: var(--base-color25) !important;
}

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

.strong_text2 {
  font-size: 1.25em;
  color: var(--main-color100);
  font-weight: bold;
}

.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;
  margin: 0;
  margin-bottom: 10px !important;
}

.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;
}

.mt30 {
  margin-top: 30px !important;
}

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

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

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

.mb60 {
  margin-bottom: 60px !important;
}

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

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

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

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

.width300 {
  width: 300px;
}

.width360 {
  width: 360px;
}

.width400 {
  width: 400px;
}

.width440 {
  width: 440px;
}

.width480 {
  width: 480px;
}

.width520 {
  width: 520px;
}

.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: brown;
  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 8px 0 14px;
}
.list_noline li::before {
  width: 10px;
  height: 10px;
  background: var(--main-color25);
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 0;
  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: var(--base-color75);
  font-weight: bold;
  position: absolute;
  top: 2px;
  left: 8px;
  font-size: 14px;
}
.list_checked li h4 {
  border: 0;
  margin: 0 0 0 0;
  padding: 0;
  line-height: 1.6em;
  font-size: 20px;
}

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

.list_check_content {
  width: 100vw;
  margin: 0px calc(50% - 50vw) 60px;
  padding: 20px 20px 40px;
}
.list_check_content h3 {
  color: var(--text-color);
}
.list_check_content h3::before {
  content: none;
}
.list_check_content ul.list_check {
  background: var(--main-color25);
  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 var(--base-color50);
}
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: var(--main-color100);
  font-size: 0.8em;
}

.info_notice {
  font-size: 0.8em;
}

.price_table {
  border: solid 1px var(--accent-color);
  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 var(--accent-color);
  border-right: 1px solid var(--accent-color);
  padding: 10px;
  background: var(--main-color25);
  font-size: 1em;
}
.price_table table tr td {
  border-bottom: 1px solid var(--accent-color);
  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;
  width: 40%;
}
table.table1 tr:first-child td {
  border-top: solid 1px #333;
}
table.table1 tr th {
  background-color: var(--main-color25);
  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: var(--main-color100);
}
table.table2 tr th {
  background-color: var(--main-color100);
  border: 0;
  padding: 10px;
  width: auto;
  text-align: center;
  vertical-align: middle;
  border-bottom: solid 1px #333;
  font-weight: initial;
  font-size: 1em;
}
table.table2 tr td {
  border: 0;
  background-color: #fff;
  padding: 20px;
  text-align: justify;
  border-bottom: solid 1px #333;
  border-left: solid 1px #333;
  font-size: 1em;
}
table.table2 .button a {
  padding: 10px;
  font-size: 16px;
}

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

@media screen and (min-width: 768px) {
  table.table3 tr th {
    padding: 40px;
    width: 80%;
  }
  table.table3 tr td {
    padding: 40px;
  }
}
/*テーブル　チェックリスト*/
.check_list_form table.customTable td,
.check_list_form table.customTable th {
  padding: 10px;
}
.check_list_form .thclass1 {
  width: 85vw;
}
.check_list_form .thclass2 {
  width: 15vw;
}
.check_list_form .tdclass {
  text-align: center;
}
.check_list_form .total {
  text-align: center;
}
.check_list_form .box01,
.check_list_form .form1-box01,
.check_list_form .form2-box01 {
  padding: 0.5em 1em;
  font-weight: bold;
  color: var(--main-color100);
  border: solid 3px var(--main-color100);
  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: var(--base-color25);
}
.flow_content.last::after {
  content: none;
}
.flow_content::after {
  content: "";
  background-color: var(--base-color50);
  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: var(--main-color100);
}
.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: var(--accent-color);
  height: 20px;
  width: 20px;
  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 {
    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: 0;
}
.header-container-in.hlt-top-menu #header-in .header_info {
  display: block;
  padding: 0 10px;
}
.header-container-in.hlt-top-menu #header-in .header_info .address {
  display: block;
  font-size: 10px;
}
.header-container-in.hlt-top-menu #header-in .header_info .news_header_button {
  display: none;
}
.header-container-in.hlt-top-menu #header-in .header_info .reserve_header_button {
  display: none;
}
.header-container-in.hlt-top-menu #header-in .header_info .tel_header_button {
  display: block;
  text-align: center;
  font-size: 14px;
}
.header-container-in.hlt-top-menu #header-in .header_info .tel_header_button a {
  font-size: 20px;
  position: relative;
}
.header-container-in.hlt-top-menu #header-in .header_info .tel_header_button a::before {
  content: "";
  background: url(/wp-content/uploads/icon/header_tel_icon.svg);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0px;
  left: -30px;
}
.header-container-in.hlt-top-menu #header-in .header_info .tel_header_button a img {
  width: 20px;
  position: absolute;
  width: 20px;
  left: calc(50% - 4em);
  top: 0;
}

@media screen and (min-width: 768px) {
  .header-container-in.hlt-top-menu {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header-container-in.hlt-top-menu #header-in {
    flex-direction: initial;
    justify-content: space-between;
    flex-wrap: wrap;
    height: 130px;
    margin: 0 10px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .tagline {
    flex-basis: 100%;
  }
  .header-container-in.hlt-top-menu #header-in .logo {
    position: relative;
    padding: 10px 0 0 20px;
  }
  .header-container-in.hlt-top-menu #header-in .logo::after {
    bottom: -85px;
    left: 30px;
    width: 100%;
  }
  .header-container-in.hlt-top-menu #header-in .logo img {
    max-height: 110px;
    width: 400px;
    max-height: 98px;
    width: 500px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info {
    display: flex;
    padding: 40px 20px 10px 20px;
    margin: 0 20px 0 auto;
    align-items: center;
    position: relative;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li {
    font-size: 16px;
    padding: 0 20px 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 {
    display: block;
    padding: 0 30px 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: var(--main-color100);
    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;
    padding-left: 40px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.tel_header_button a::before {
    width: 36px;
    height: 36px;
    left: 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.news_header_button {
    display: block;
  }
  .header-container-in.hlt-top-menu #header-in .header_info .address {
    position: absolute;
    top: 20px;
    font-size: 16px;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #header .site-name-text {
    padding: 0 80px 0 0;
    width: 100%;
  }
  #header .site-name-text .site-logo-image {
    max-height: 90px;
    width: 100%;
    padding: 5px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header-container-in.hlt-top-menu #header-in .header_info {
    display: none;
    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;
  }
}
/*breadcrumb*/
.breadcrumb {
  margin: 0;
  padding: 0 10px;
}

/*ウィジェット　コンテンツ下部*/
.footer_info {
  padding: 0 20px 20px;
}
.footer_info ul {
  padding-left: 0;
}
.footer_info .footer_info_left {
  margin: 0 0 0 0;
}
.footer_info .footer_info_left .footer_info_logo {
  display: block;
  padding: 20px 0;
}
.footer_info .footer_info_left .medical_subjects {
  display: flex;
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: bold;
}
.footer_info .footer_info_left .medical_subjects li {
  border: solid 2px var(--accent-color);
  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: var(--main-color100);
  color: #fff;
  padding: 0.4em 0.6em;
  margin: 0 10px 10px 0;
  border-radius: 10px;
  display: inline-block;
}
.footer_info .footer_info_left .footer_info_tel {
  margin: 20px 0;
  border-top: solid 1px var(--text-color);
  border-bottom: solid 1px var(--text-color);
  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: 5vw;
}
.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: var(--base-color50);
  font-size: 20px;
  font-weight: bold;
  padding: 14px 20px;
  border-radius: 10px;
  border: 0;
}
.footer_info .footer_info_left .web_reserve a::before {
  background: var(--text-color) !important;
}
.footer_info .footer_info_left .web_reserve a:hover {
  background: var(--text-color);
}
.footer_info .footer_info_right {
  font-size: 20px;
}
.footer_info .footer_info_right .pay {
  font-size: 16px;
}
.footer_info .footer_map {
  margin: 20px 0 0 0;
}
.footer_info .footer_map iframe {
  margin: 10px 0;
  border: none;
  width: 100%;
  height: 400px;
}
.footer_info .footer_access > li {
  margin: 0 0 30px 0;
}
.footer_info .footer_access > li h3 {
  margin: 0 0 10px 0px;
  border: 0;
  border-bottom: solid 2px var(--main-color100);
  background: 0;
  padding: 0 0 0 30px;
  line-height: 2em;
  font-weight: normal;
}
.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;
}
.footer_info .footer_banner {
  margin: 20px 0 0;
}
.footer_info .footer_banner img {
  width: 100%;
}

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

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

@media screen and (max-width: 480px) {
  .navi-footer-in > .menu-footer li.menu-item {
    width: 100%;
    text-align: left;
  }
  .navi-footer-in > .menu-footer li.menu-item a {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
/*固定メニュー   PC下部 SP右部 */
.footer__menu_fix {
  position: fixed;
  bottom: 48px;
  left: 0px;
  z-index: 1;
  transition: 0.3s;
  text-align: center;
}
.footer__menu_fix .footer__menu_fix_inner {
  display: flex;
  border-radius: 10px;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web::before {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 900;
  content: "\f073";
  position: absolute;
  top: 10px;
  left: 18px;
  color: #fff;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_web a {
  display: block;
  font-size: 4vw;
  color: #fff;
  background: var(--main-color100);
  text-decoration: none;
  padding: 4vw 20px 10px 45px;
  transition: 0.3s ease-in;
  height: 50px;
  margin: 0;
  width: 50vw;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_tel {
  display: block;
  position: relative;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_tel::before {
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 900;
  content: "\f879";
  position: absolute;
  top: 10px;
  left: 18px;
  color: #fff;
}
.footer__menu_fix .footer__menu_fix_inner .fix_menu_tel a {
  display: block;
  font-size: 4vw;
  color: #fff;
  background: var(--main-color75);
  text-decoration: none;
  padding: 4vw 25px 10px 45px;
  transition: 0.3s ease-in;
  height: 50px;
  margin: 0;
  width: 50vw;
}

@media screen and (min-width: 768px) {
  .footer__menu_fix {
    bottom: initial;
    left: initial;
    top: 120px;
    right: 0;
    z-index: 3;
  }
  .footer__menu_fix .footer__menu_fix_inner {
    display: block;
    position: relative;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web {
    display: flex;
    background: var(--main-color100);
    border-radius: 10px 0 0 10px;
    height: 80px;
    width: 350px;
    margin-right: 0;
    position: absolute;
    right: -230px;
    left: initial;
    top: 120px;
    transition: 0.5s;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web::before {
    font-size: 20px;
    left: 52px;
    top: 10px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web:hover {
    right: 0;
    margin-top: 0;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: 0;
    height: 80px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web .fix_menu_web_title {
    border-right: solid 1px #fff;
    width: 100px;
    height: 60px;
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 20px;
    padding: 30px 10px 0 0;
    margin: -30px 0 0 0;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-align: center;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_web .fix_menu_web_content {
    position: absolute;
    top: 28px;
    left: 140px;
    font-size: 16px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel {
    display: flex;
    border-radius: 10px 0 0 10px;
    height: 80px;
    width: 350px;
    margin-right: 0;
    position: absolute;
    top: 240px;
    right: -230px;
    left: initial;
    transition: 0.5s;
    background: var(--main-color75);
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel::before {
    font-size: 20px;
    left: 52px;
    top: 10px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel:hover {
    right: 0;
    margin-top: 0;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: 0;
    height: 80px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_tel_title {
    border-right: solid 1px #fff;
    width: 100px;
    height: 60px;
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 20px;
    padding: 30px 0 0 14px;
    margin: -30px 0 0px 0;
    font-size: 16px;
    letter-spacing: 0.2em;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_tel .fix_menu_tel_content {
    position: absolute;
    top: 22px;
    left: 150px;
    font-size: 24px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours {
    display: flex;
    border-radius: 10px 0 0 10px;
    height: 80px;
    width: 560px;
    margin-right: 0;
    position: absolute;
    top: 355px;
    right: -440px;
    left: initial;
    transition: 0.5s;
    background: #eeeeee;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours::before {
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
    content: "\f017";
    position: absolute;
    font-size: 20px;
    left: 52px;
    top: 10px;
    color: var(--main-color100);
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours:hover {
    right: 0;
    margin-top: 0;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 1;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: 0;
    height: 80px;
    text-decoration: none;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours .fix_menu_hours_title {
    border-right: solid 1px var(--main-color100);
    width: 100px;
    height: 60px;
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 24px;
    padding: 30px 0 0 0;
    margin: -30px 0 0px 0;
    color: var(--main-color100);
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours .fix_menu_hours_content {
    margin: 0 0 0 120px;
    background: #eee;
    padding: 20px;
    border-radius: 0 0 0 10px;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours .fix_menu_hours_content .info_hours tr {
    border-bottom: solid 1px var(--main-color100);
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours .fix_menu_hours_content .info_hours tr th {
    background-color: #eee;
  }
  .footer__menu_fix .footer__menu_fix_inner .fix_menu_hours .fix_menu_hours_content .info_hours tr td {
    background-color: #eee;
  }
}
.footer__menu_fix.view {
  opacity: 1;
}

/*クリニック名　エンドレス*/
.clinic_name_section {
  overflow: hidden;
  margin: -260px 0 0 0;
  position: relative;
  z-index: -1;
}
.clinic_name_section .horizontal_text_wrap {
  display: flex;
  width: 100vw;
  line-height: 360px;
}
.clinic_name_section .horizontal_text_wrap .horizontal_text {
  font-size: 360px;
  flex-shrink: 0;
  display: inline-block;
  background: #f8f7f7;
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientEffect 5s infinite;
  overflow: hidden;
  padding: 0 90px 0 0;
}
.clinic_name_section .horizontal_text_wrap .horizontal_text:nth-child(odd) {
  animation: MoveLeft 192s -96s infinite linear;
}
.clinic_name_section .horizontal_text_wrap .horizontal_text:nth-child(even) {
  animation: MoveLeft2 192s infinite linear;
}

@media screen and (min-width: 768px) {
  .clinic_name_section {
    margin: -260px 0 0 0;
  }
  .clinic_name_section .horizontal_text_wrap {
    line-height: 260px;
  }
}
@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes gradientEffect {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
/*モバイルヘッダーメニュー*/
.mblt-header-and-footer-mobile-buttons {
  margin: 0;
}

.mobile-header-menu-buttons {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 0px;
  padding: 10px 0px 0px 0px;
  margin: 20px 0 0 auto;
  position: fixed;
  right: 5px;
  top: -5px;
  box-shadow: none;
  background: var(--main-color10) !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;
}
.mobile-header-menu-buttons.menuBorder {
  border: solid 1px var(--main-color100);
  top: 5px;
}

@media screen and (min-width: 768px) {
  .mobile-header-menu-buttons {
    right: 35px;
    top: 5px;
    padding: 10px 0px 0px 10px;
    margin: 10px -10px 0px auto;
    width: 80px;
    height: 90px;
  }
  .mobile-header-menu-buttons .menu-icon {
    font-size: 36px;
  }
  .mobile-header-menu-buttons .menu-caption {
    font-size: 14px !important;
  }
  .mobile-header-menu-buttons.menuBorder {
    border: 0;
    top: 0;
  }
}
/*モバイルスライドインメニュー*/
#navi-menu-input:checked ~ #navi-menu-content {
  transform: translateX(0%);
  overflow: scroll;
  background-color: #ededed;
  pointer-events: all;
  transition: 1s;
}

.navi-menu-content {
  max-width: 100%;
  transform: translateX(0%);
  opacity: 0;
  transition: 1s ease;
  pointer-events: none;
}
.navi-menu-content .menu-close-button {
  text-align: right;
  color: #fff;
  height: 100px;
  overflow: hidden;
}
.navi-menu-content .menu-close-button span {
  margin: 20px 20px 0 0;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: var(--main-color100);
  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-close-button span::after {
  content: "閉じる";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 4em;
  height: 3em;
  transform: rotate(-45deg) !important;
  font-size: 12px;
  color: #555;
}
.navi-menu-content .menu-drawer > .menu-item {
  border-bottom: dotted 1px var(--base-color50);
  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: var(--main-color100);
  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 6px;
}
.navi-menu-content .menu-drawer > .menu-item a span {
  font-size: 12px;
  display: block;
}
.navi-menu-content .menu-drawer > .menu-item a:hover {
  background-color: #ffffff;
  margin: 0 30px 0 0;
}
.navi-menu-content .mobile_slide_info {
  padding: 5px 10px 100px;
  color: var(--text-color);
}
.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 var(--text-color);
  border-bottom: solid 2px var(--text-color);
  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;
  display: inline;
}
.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: var(--base-color50);
  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: var(--base-color50) !important;
}
.navi-menu-content .mobile_slide_info .button.web_reserve a:hover {
  background: var(--text-color);
}
.navi-menu-content .mobile_slide_info .button a {
  margin: 10px 0;
}

.mobile-menu-buttons {
  background: #fff;
}
.mobile-menu-buttons > li:nth-child(2) {
  position: relative;
}
.mobile-menu-buttons > li:nth-child(2) .menu-icon {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/icon/first_menu_icon.svg);
  background-repeat: no-repeat;
  display: block;
  margin: 0.2em auto;
}
.mobile-menu-buttons .menu-button {
  border-right: solid 2px #fff;
  padding: 0;
}
.mobile-menu-buttons .menu-button:last-child {
  border: none;
}
.mobile-menu-buttons .menu-button > a {
  color: #fff;
}
.mobile-menu-buttons .menu-button .menu-icon {
  color: var(--main-color100);
}
.mobile-menu-buttons .menu-button .menu-caption {
  font-size: 12px;
  line-height: 1.2em;
  font-weight: bold;
  letter-spacing: -0.05em;
  color: var(--text-color);
}

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

@media screen and (min-width: 768px) {
  .navi-menu-content .menu-close-button span {
    margin: 40px 50px 0 0;
    width: 1.6em;
  }
  .navi-menu-content .menu-close-button span::after {
    top: 25px;
    left: 20px;
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  .navi-menu-content {
    overflow: hidden !important;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .navi-menu-content .navi-menu-close-button {
    width: 100%;
  }
  .navi-menu-content .menu-drawer {
    width: 53%;
    padding: 0 60px;
  }
  .navi-menu-content .menu-drawer .sub-menu {
    display: flex;
    flex-wrap: wrap;
  }
  .navi-menu-content .menu-drawer .sub-menu li {
    width: 50%;
  }
  .navi-menu-content .mobile_slide_info {
    width: 400px;
    margin: 0 60px 0 0;
  }
  .navi-menu-content .mobile_slide_info .footer_info_tel a {
    font-size: 42px !important;
  }
}
/*TOPへ戻るボタン*/
.go-to-top {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  background-image: conic-gradient(var(--main-color100) 0% 0%, #d9d9d9 0% 100%);
  border-radius: 50%;
  margin: 0 auto;
  right: 10px;
  bottom: 110px;
  z-index: 2;
}
.go-to-top .innerCircle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 90%;
  background: #fff;
  border-radius: 50%;
}
.go-to-top .innerCircle::after {
  position: absolute;
  content: "";
  width: 0.4em;
  height: 0.4em;
  border: 0.1em solid var(--main-color100);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  top: calc(50% - 0.2em);
  left: calc(50% - 0.2em);
}

@media screen and (min-width: 768px) {
  .go-to-top {
    right: 30px;
    bottom: 30px;
    width: 80px;
    height: 80px;
    transition: 0.3s;
    cursor: pointer;
  }
  .go-to-top .innerCircle::after {
    width: 0.6em;
    height: 0.6em;
    top: calc(50% - 0.3em);
    left: calc(50% - 0.3em);
  }
  .go-to-top:hover {
    bottom: 35px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .go-to-top {
    bottom: 100px;
  }
}
/*navi*/
@media screen and (min-width: 768px) {
  .hlt-tm-right #navi .navi-in > ul {
    justify-content: end;
    padding: 0 10px 0;
    font-size: 18px;
  }
  .hlt-tm-right #navi .navi-in > ul li a {
    padding-left: 10px;
    padding-right: 20px;
  }
  .hlt-tm-right #navi .navi-in > ul li a:hover {
    color: var(--main-color100);
    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-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 var(--main-color100);
    border-radius: 10px;
    top: 55px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 20px 20px 0 20px;
    min-width: 0;
    width: auto;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu:hover {
    display: flex;
  }
  .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: -8px;
    font-size: 12px;
    color: var(--main-color100);
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li span {
    display: block;
    font-size: 0.7em;
    line-height: 1;
  }
}
/************************************
** TOPページ
************************************/
.page-id-9 .a-wrap:hover {
  background: none !important;
}
.page-id-9 article {
  margin-bottom: 0 !important;
}
.page-id-9 .article-header {
  display: none;
}
.page-id-9 .content {
  margin-top: 0;
}
.page-id-9 .content .content-in {
  width: initial;
}
.page-id-9 main {
  padding: 0;
  overflow: initial !important;
}
.page-id-9 main #post-9 .entry-content {
  width: 100% !important;
}
.page-id-9 main #post-9 .entry-content h2 {
  background: none;
  margin: 0 0 40px 0;
  padding: 0;
  text-align: left;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 0;
  line-height: 1.4em;
  color: var(--main-color100);
  font-size: 32px;
  z-index: 1;
}
.page-id-9 main #post-9 .entry-content h2::before {
  position: absolute;
  top: -26px;
  left: 0;
  font-size: 54px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: normal;
  color: #fff;
  opacity: 0.7;
  letter-spacing: 0.2rem;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .page-id-9 main #post-9 .entry-content h2 {
    margin: 0 0 60px 0;
    font-size: 36px;
  }
  .page-id-9 main #post-9 .entry-content h2::before {
    top: -46px !important;
    font-size: 94px !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .page-id-9 main #post-9 .entry-content h2 {
    font-size: 24px;
  }
}
/*hero*/
.page-id-9 .hero {
  position: relative;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.hero_open_date {
  color: #fff;
  display: inline-block;
  font-size: 4.5vw;
  background: var(--main-color100);
  padding: 10px;
  line-height: 1em;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
}

.hero_banner {
  position: absolute;
  top: 270px;
  text-align: center;
  margin: 10px 0;
}
.hero_banner img {
  width: 95%;
}

.hero_latest_info {
  width: 100%;
  margin: 0px auto;
  padding: 60px 15px 40px;
  position: relative;
}
.hero_latest_info h2 {
  position: relative;
  text-align: left;
  font-size: 24px !important;
  letter-spacing: 0.1em;
  color: var(--main-color100);
  font-weight: 500;
}
.hero_latest_info h2::before {
  content: "NEWS";
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 64px;
  font-weight: normal;
  color: var(--base-color25);
  opacity: 0.7;
  letter-spacing: 0.2rem;
  z-index: -1;
  font-family: "Zen Maru Gothic", serif;
}
.hero_latest_info .new-entry-cards {
  margin: 30px 0 0;
}
.hero_latest_info .new-entry-cards a {
  border-bottom: solid 1px var(--base-color25) 2;
  padding: 15px 0;
  position: relative;
}
.hero_latest_info .new-entry-cards a:first-child {
  border-top: solid 1px var(--base-color25) 2;
}
.hero_latest_info .new-entry-cards a:last-child {
  border-bottom: 0;
}
.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 var(--main-color100);
  background: var(--main-color100);
  border-radius: 50px;
  transition: all 0.3s;
}
.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: var(--main-color100);
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s;
}
.hero_latest_info .new-entry-cards a:hover::before {
  content: "";
  height: 37px;
  width: 37px;
  border: 2px solid var(--main-color100);
  background: none;
}
.hero_latest_info .new-entry-cards a:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.hero_latest_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-title {
  opacity: 0.6;
}
.hero_latest_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  opacity: 0.6;
}
.hero_latest_info .new-entry-cards .new-entry-card-content {
  display: flex;
  margin: 0;
  flex-wrap: wrap;
  position: relative;
}
.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;
}
.hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date {
  display: block;
  order: 0;
  width: 100%;
}
.hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  padding: 5px 0;
  color: var(--base-color50);
  transition: 0.5s;
  font-size: 16px;
}
.hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-update-date {
  display: none;
}
.hero_latest_info .button {
  position: absolute;
  top: 100px;
  right: 10px;
}
.hero_latest_info .button a {
  padding: 0 40px 0 0px;
  display: block;
  text-decoration: none;
}
.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: var(--main-color25);
  position: absolute;
  top: 3px;
  right: 10px;
  transition: all 0.4s;
}
.hero_latest_info .button a:hover {
  opacity: 0.6;
  top: 0;
}

.hero_info_hours {
  width: 100%;
  position: relative;
}
.hero_info_hours .white_bg {
  width: 95%;
  margin: 20px auto 20px;
  background: #fff;
  border-radius: 10px;
  padding: 0;
  font-size: 20px;
}
.hero_info_hours .white_bg h2 {
  text-align: center;
  font-size: 18px;
  color: var(--text-color);
  margin: 5px 0;
}

.parallaxArea {
  position: relative;
}
.parallaxArea .parallaxItem {
  position: absolute;
}
.parallaxArea .parallaxItem.parallaxItem1 {
  width: 100%;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
}

@media screen and (min-width: 768px) {
  .page-id-9 h2 {
    font-size: 36px;
  }
  .page-id-9 .hero {
    width: 100%;
    height: 700px;
  }
  .page-id-9 .hero .hero_open_date {
    display: block;
    font-size: 36px;
    left: 40px;
    top: 40px;
  }
  .page-id-9 .hero .hero_banner {
    top: 40px;
    right: 140px;
    margin: 0;
  }
  .page-id-9 .hero .hero_banner img {
    width: 400px;
  }
  .page-id-9 .hero .hero_latest_info {
    width: 700px;
    margin: 0;
    padding: 20px;
    position: absolute;
    top: 360px;
    left: 40px;
    z-index: 1;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 64px rgba(4, 9, 21, 0.13);
  }
  .page-id-9 .hero .hero_latest_info h2 {
    margin: 0 0 20px 0;
  }
  .page-id-9 .hero .hero_latest_info h2::before {
    font-size: 14px;
    top: 12px;
    left: 116px;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards {
    margin: 0;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content {
    flex-wrap: nowrap;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-title {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date {
    display: inline;
    order: 0;
    width: 120px;
  }
  .page-id-9 .hero .hero_latest_info .button {
    top: 28px;
    font-size: 16px;
  }
  .page-id-9 .hero .hero_info_hours .white_bg {
    width: 420px;
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 1;
  }
  .page-id-9 .hero .hero_info_hours .white_bg .info_hours td {
    padding: 0.2em 0.3em;
  }
  .page-id-9 .parallaxArea {
    position: relative;
  }
  .page-id-9 .parallaxArea .parallaxItem {
    position: absolute;
  }
  .page-id-9 .parallaxArea .parallaxItem.parallaxItem1 {
    transition: transform 1s ease 0.024s;
    width: 100%;
    height: 700px;
    margin: 0 0 0 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .page-id-9 .hero .hero_latest_info {
    width: 400px;
  }
  .page-id-9 .hero .hero_open_date {
    font-size: 26px;
    left: 40px;
  }
}
/*TOP スライド　swiper*/
[class*=swiper]:focus {
  outline: none;
}

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

.mv01 {
  margin: 0 0 0 0;
}
.mv01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}
.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.mv01 .swiper-wrapper {
  margin: 0;
}
.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 20px;
  display: flex;
}
.mv01 .swiper-pagination-bullet {
  display: block;
  width: 20px;
  height: 4px;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 10px 0 0;
}
.mv01 .swiper-pagination-bullet-active {
  background-color: var(--main-color100);
}
.mv01 .slide-media {
  height: 700px;
}
.mv01 .slide-media img {
  transform: scale(1);
}
.mv01 .slide-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.8;
  position: absolute;
  left: 40px;
  top: 120px;
  text-align: left;
  color: var(--main-color100);
  width: 90%;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white;
  font-weight: bold;
}
.mv01 .slide-title span {
  font-size: 2.5vw;
  padding: 10px 0 0 0;
  display: block;
}
.mv01 .swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.15);
}
.mv01 .swiper-slide[class*=-active] .slide-title {
  animation: mv01-fadeIn 2s 0.5s cubic-bezier(0.2, 1, 0.2, 1) both;
}
.mv01 .point1 {
  position: absolute;
  right: 320px;
  top: 450px;
  width: 150px;
  height: 150px;
  z-index: 2;
}
.mv01 .point2 {
  position: absolute;
  right: 140px;
  top: 450px;
  width: 150px;
  height: 150px;
  z-index: 2;
}

@media only screen and (max-width: 1024px) {
  .mv01 .slide-media {
    height: 750px;
  }
}
@media only screen and (max-width: 767px) {
  .mv01 .slide-title {
    font-size: 5.5vw;
    line-height: 2;
    top: 80px;
    left: 20px;
  }
  .mv01 .point1 {
    position: absolute;
    left: 20px;
    top: 460px;
    width: 100px;
    height: 100px;
    z-index: 2;
  }
  .mv01 .point2 {
    position: absolute;
    left: 140px;
    top: 460px;
    width: 100px;
    height: 100px;
    z-index: 2;
  }
}
@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
/*TOP診療案内*/
.top_medical_information_section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  margin: 0 !important;
  overflow: hidden;
  background-color: var(--main-color75);
}
.top_medical_information_section .top_medical_information {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.top_medical_information_section .top_medical_information h2 {
  color: #fff !important;
}
.top_medical_information_section .top_medical_information h2::before {
  content: "MENU";
  position: absolute;
  color: var(--main-color50) !important;
}
.top_medical_information_section .top_medical_information .top_medical_information_lead {
  color: #fff;
}
.top_medical_information_section .top_medical_information .top_medical_information_list {
  padding: 40px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item {
  padding: 20px;
  width: 100%;
  position: relative;
  background: #fff;
  margin: 0 0 30px 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item figure {
  width: 30%;
  margin: 0 auto;
}
.top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item .top_medical_information_uro_list {
  display: flex;
  flex-wrap: wrap;
}
.top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item .top_medical_information_uro_list p {
  padding: 4px 0 0 10px;
}
.top_medical_information_section .top_medical_information .top_medical_information_list h3 {
  text-align: center;
  font-size: 24px;
  padding: 10px 0 10px !important;
  background: 0 !important;
  border: 0 !important;
  margin: 20px 0 20px 0 !important;
  border-top: solid 1px var(--main-color100) !important;
  border-bottom: solid 1px var(--main-color100) !important;
  color: var(--accent-color100);
  font-weight: normal;
}
.top_medical_information_section .top_medical_information .top_medical_information_list h3::before {
  content: none;
}
.top_medical_information_section .top_medical_information .top_medical_information_list .button_wrapper {
  margin-top: auto;
}

@media screen and (min-width: 768px) {
  .top_medical_information_section {
    padding: 140px 0 80px;
  }
  .top_medical_information_section .top_medical_information {
    width: 900px;
    margin: 0 auto;
  }
  .top_medical_information_section .top_medical_information h2 {
    margin: 0 0 40px 0 !important;
  }
  .top_medical_information_section .top_medical_information h2::before {
    font-size: 24px;
    top: -50px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item {
    width: 430px;
    display: flex;
    flex-direction: column;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item h3 {
    font-size: 28px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item p {
    padding: 10px;
    margin: 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item figure img {
    height: 132px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_medical_information_section {
    padding: 140px 50px 80px;
  }
  .top_medical_information_section .top_medical_information {
    width: 100%;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_list {
    justify-content: center;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_list .top_medical_information_item {
    width: 80%;
  }
}
/*TOPよくある症状*/
.top_symptoms_section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  margin: 0 !important;
  overflow: hidden;
  background-color: var(--main-color10);
}
.top_symptoms_section .top_symptoms {
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.top_symptoms_section .top_symptoms h2::before {
  content: "SYMPTOMS";
  color: var(--main-color25);
}
.top_symptoms_section .top_symptoms .top_symptoms_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  padding: 0;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item {
  padding: 0;
  width: 100%;
  position: relative;
  margin: 0 0 30px 0;
  background: #fff;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(1) {
  border: solid 1px #0041b1;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(1) h3 {
  color: #0041b1;
  font-weight: normal;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(1) .list_noline li::before {
  background: #0041b1;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(2) {
  border: solid 1px #de6161;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(2) h3 {
  color: #de6161;
  font-weight: normal;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(2) .list_noline li::before {
  background: #de6161;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(3) {
  border: solid 1px #df7f11;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(3) h3 {
  color: #df7f11;
  font-weight: normal;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item:nth-child(3) .list_noline li::before {
  background: #df7f11;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item figure {
  width: 100%;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item h3 {
  text-align: center;
  font-size: 24px;
  padding: 20px 0 0 !important;
  background: 0 !important;
  border: 0 !important;
  margin: 0 0 20px !important;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item h3::before {
  content: none;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item .top_symptoms_menu_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 10px 20px 10px !important;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item p {
  padding: 4px 0 0 10px;
}
.top_symptoms_section .top_symptoms .top_symptoms_list .button_wrapper {
  margin-top: auto;
}

@media screen and (min-width: 768px) {
  .top_symptoms_section {
    padding: 140px 0 80px;
  }
  .top_symptoms_section .top_symptoms {
    width: 900px;
    margin: 0 auto;
  }
  .top_symptoms_section .top_symptoms h2 {
    margin: 0 0 40px 0 !important;
  }
  .top_symptoms_section .top_symptoms h2::before {
    font-size: 24px;
    top: -50px;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item {
    width: 290px;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_symptoms_section {
    padding: 140px 50px 80px;
  }
  .top_symptoms_section .top_symptoms {
    width: 100%;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list {
    justify-content: center;
  }
  .top_symptoms_section .top_symptoms .top_symptoms_list .top_symptoms_item {
    width: 80%;
  }
}
/*バナー*/
/*TOPごあいさつ*/
.top_greeting_section {
  position: relative;
  width: 100%;
  padding: 100px 20px 60px;
  overflow: hidden;
  margin: 0 !important;
}
.top_greeting_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 130vh;
  background: url(/wp-content/uploads/img/top_contact_bg.jpg);
  filter: blur(5px) brightness(1.1) grayscale(0.5);
  opacity: 0.5;
  z-index: -1;
  right: -20%;
  top: 300px;
}
.top_greeting_section .top_greeting {
  margin: 0 auto;
  width: 100%;
}
.top_greeting_section .top_greeting h2::before {
  content: "GREETING";
  color: var(--main-color10) !important;
}
.top_greeting_section .top_greeting .top_greeting_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_text {
  order: 1;
}
.top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_text .top_greeting_content_text_strong {
  font-size: 20px;
  color: var(--main-color100);
}
.top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_photo {
  order: 0;
  margin: 0 0 40px 0.2em;
  position: relative;
}
.top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_photo img {
  margin: 20px auto 0;
  display: block;
}
.top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_photo .name {
  text-align: center;
  display: block;
  padding: 20px 20px 20px 10px;
  writing-mode: vertical-lr;
  position: absolute;
  right: 20px;
  bottom: 40px;
  background: var(--base-color25);
  color: var(--main-color100);
  border: solid 1px var(--main-color100);
  font-size: 20px;
}
.top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_photo .name .katagaki {
  padding: 0px 15px 0 5px;
  margin: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
  .top_greeting_section {
    padding: 150px 0 100px;
  }
  .top_greeting_section::before {
    top: 230px;
  }
  .top_greeting_section .top_greeting {
    margin: 0 auto;
  }
  .top_greeting_section .top_greeting h2 {
    font-size: 36px;
    max-width: 900px;
    margin: 0 auto 60px !important;
  }
  .top_greeting_section .top_greeting h2::before {
    font-size: 24px;
    top: -50px;
  }
  .top_greeting_section .top_greeting .top_greeting_content {
    flex-wrap: nowrap;
    padding: 60px 0 0;
    justify-content: center;
  }
  .top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_text {
    order: 1;
    width: 50%;
    max-width: 600px;
    margin: 0 160px 0px 60px;
  }
  .top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_text .top_greeting_content_text_strong {
    font-size: 32px;
  }
  .top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_photo {
    order: 0;
    width: 50%;
    max-width: 400px;
    margin: -50px 0 0 0px !important;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_greeting_section {
    padding: 150px 50px 100px;
  }
  .top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_text {
    margin: 0 80px 0px 20px;
  }
  .top_greeting_section .top_greeting .top_greeting_content .top_greeting_content_text .top_greeting_content_text_strong {
    font-size: 24px;
  }
}
/*TOP 特徴*/
.top_feature_section {
  width: 100%;
  position: relative;
  padding: 80px 20px 60px;
  margin: 0 !important;
  overflow: hidden;
  background-color: var(--main-color10);
}
.top_feature_section .top_feature h2::before {
  content: "FEATURE";
}
.top_feature_section .top_feature .top_feature_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-between;
}
.top_feature_section .top_feature .top_feature_list .top_feature_item {
  position: relative;
  padding: 0;
  margin: 0 0 60px 0;
  width: 100%;
}
.top_feature_section .top_feature .top_feature_list .top_feature_item span {
  color: var(--accent-color100);
}
.top_feature_section .top_feature .top_feature_list .top_feature_item .top_feature_number {
  position: absolute;
  font-size: 94px;
  color: var(--main-color100);
  top: -80px;
  left: 20px;
  z-index: 1;
  font-style: italic;
}
.top_feature_section .top_feature .top_feature_list .top_feature_item h3 {
  padding: 0;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.4em;
  margin: 0 0 20px 0;
  border: 0;
  background: 0;
  position: relative;
  letter-spacing: 0;
}
.top_feature_section .top_feature .top_feature_list .top_feature_item h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--main-color100);
  right: 0;
  bottom: -10px;
}

@media screen and (min-width: 768px) {
  .top_feature_section {
    padding: 140px 0 140px;
  }
  .top_feature_section .top_feature {
    width: 1000px;
    margin: 0 auto;
  }
  .top_feature_section .top_feature h2::before {
    font-size: 24px;
    top: -50px;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item {
    padding: 0;
    width: 450px;
    text-align: justify;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item h3 {
    font-size: 22px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .top_feature_section {
    padding: 140px 50px 140px;
  }
  .top_feature_section .top_feature {
    width: 100%;
  }
  .top_feature_section .top_feature .top_feature_list .top_feature_item {
    width: 320px;
  }
}
/*TOP 写真スライドエンドレス*/
.top_slideshow_section {
  margin: -70px 0 0 0;
  overflow: hidden;
}
.top_slideshow_section .slideshow_wrap {
  display: flex;
  overflow: hidden;
  margin: 0;
  width: 100vw;
}
.top_slideshow_section .slideshow_wrap .slideshow {
  display: flex;
  animation: loop-slide 50s infinite linear 1s both;
  padding: 0;
}
.top_slideshow_section .slideshow_wrap .slideshow .slideshow_content {
  width: 200px;
  height: auto;
  border-radius: 10px;
}
.top_slideshow_section .slideshow_wrap .slideshow .slideshow_content img {
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .top_slideshow_section {
    margin: -80px 0 0 0;
  }
  .top_slideshow_section .slideshow_wrap .slideshow .slideshow_content {
    width: 300px;
    height: 200px;
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*TOP ブログ*/
/*TOP 一緒に働きませんか*/
/*TOP お問い合わせ*/
.contact_section {
  padding: 100px 20px 50px;
  background: linear-gradient(45deg, rgba(162, 162, 169, 0.753), rgba(166, 168, 176, 0.76)), url(/wp-content/uploads/img/top_contact_bg.jpg);
}
.contact_section .contact h2 {
  text-align: center !important;
  color: #fff !important;
  position: relative;
  z-index: 1;
  font-weight: normal;
  font-size: 32px;
}
.contact_section .contact h2::before {
  content: "CONTACT";
  position: absolute;
  color: var(--main-color100) !important;
  top: -42px;
  left: calc(50% - 2.5em) !important;
  font-size: 54px;
  font-weight: normal;
  letter-spacing: 0.2rem;
  font-family: "Zen Maru Gothic", serif;
  z-index: -1;
  opacity: 0.7;
}
.contact_section .contact p {
  text-align: center;
  color: #fff;
}
.contact_section .contact .contact_content {
  margin: 0;
  padding: 0;
  justify-content: center;
}
.contact_section .contact .contact_content .tel_contact {
  margin: 0;
}
.contact_section .contact .contact_content .tel_contact a {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  text-decoration: none;
  padding: 10px;
  transition: 1s ease-out;
}
.contact_section .contact .contact_content .tel_contact a p {
  color: var(--text-color);
}
.contact_section .contact .contact_content .tel_contact a p.tel_copy {
  margin: 0;
}
.contact_section .contact .contact_content .tel_contact a p.tel_number {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 10px 10px;
  line-height: 1em;
  position: relative;
}
.contact_section .contact .contact_content .tel_contact a p.tel_number::before {
  font-family: "Font Awesome 5 Free";
  font-size: 24px;
  font-weight: bold;
  content: "\f879";
  position: absolute;
  top: 0.1em;
  left: calc(50% - 6em);
}
.contact_section .contact .contact_content .tel_contact a:hover {
  background: var(--main-color50);
}
.contact_section .contact .contact_content .tel_contact a:hover p {
  color: #fff;
}
.contact_section .contact .contact_content .web_contact {
  margin: 0 0px 20px 0;
}
.contact_section .contact .contact_content .web_contact a {
  display: block;
  width: 100%;
  background: var(--main-color100);
  border-radius: 10px;
  text-decoration: none;
  padding: 20px;
  color: #fff;
  font-size: 20px;
  transition: 1s ease-out;
}
.contact_section .contact .contact_content .web_contact a p {
  font-size: 24px;
  position: relative;
  margin: 0 0 0 30px;
}
.contact_section .contact .contact_content .web_contact a p::before {
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f073";
  position: absolute;
  left: calc(50% - 6.5em);
}
.contact_section .contact .contact_content .web_contact a:hover {
  background: #fff;
}
.contact_section .contact .contact_content .web_contact a:hover p {
  color: var(--main-color100);
}

@media screen and (min-width: 768px) {
  .contact_section {
    padding: 100px 20px 80px;
    width: calc(100vw - 10px);
    margin: 0 calc(50% - 50vw);
  }
  .contact_section .contact {
    margin: 0 0 0 0;
  }
  .contact_section .contact h2 {
    margin: 0 0 20px 0 !important;
    font-size: 36px;
    font-weight: normal;
  }
  .contact_section .contact h2::before {
    font-size: 64px !important;
    top: -50px !important;
    left: calc(50% - 2.5em) !important;
  }
  .contact_section .contact p {
    font-size: 20px;
  }
  .contact_section .contact .contact_content {
    display: flex;
  }
  .contact_section .contact .contact_content .tel_contact {
    margin: 0;
  }
  .contact_section .contact .contact_content .tel_contact a {
    width: 400px;
    height: 100px;
    margin: 0 0 0 0;
  }
  .contact_section .contact .contact_content .web_contact a {
    margin: 0 20px 0 0;
    width: 400px;
    height: 100px;
  }
  .contact_section .contact .contact_content .web_contact a p {
    line-height: 2.4em;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .contact_section {
    width: 100vw;
  }
  .contact_section .contact .contact_content .tel_contact a {
    width: 320px;
  }
  .contact_section .contact .contact_content .web_contact a {
    width: 320px;
  }
}
/************************************
** 下層ページ
************************************/
.page .content {
  margin-top: 0;
}
.page .content .wrap {
  margin: 0;
  width: initial;
}
.page .content .wrap .main {
  padding: 0;
}
.page .content .wrap .main .entry-header {
  position: relative;
  padding: 0 0 60px 0;
}
.page .content .wrap .main .entry-header .entry-title {
  text-align: left;
  padding: 100px 40px 100px 40px;
  margin: 0;
  font-weight: normal;
  border-bottom: solid 1px var(--main-color100);
  border-top: solid 1px var(--main-color100);
  color: var(--main-color100);
  font-size: 28px;
}
.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 .entry-content {
  width: 90%;
  margin: 0 auto;
}
.page .entry-content h2 {
  background: 0;
  margin: 0 0 20px 0;
  padding: 20px 0 10px 0;
  border-bottom: solid 2px var(--main-color100);
  font-weight: normal;
}
.page .entry-content h3 {
  background: var(--main-color25);
  padding: 10px;
  border: solid 1px var(--main-color100);
  margin: 0 0 20px 0;
}

@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: 140px 0 140px 10%;
    font-size: 36px;
  }
  .page .entry-content h2 {
    font-size: 32px;
    padding: 20px 0 20px 0;
  }
  .page .entry-content h3 {
    padding: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .page .entry-content {
    width: 800px;
  }
}
/*下層　ページ遷移バナー*/
.next_page_section {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
  overflow: hidden;
}
.next_page_section .next_page_link {
  display: block;
  height: 300px;
}
.next_page_section .next_page_link .next_page_image {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6);
  transition: 0.6s ease;
}
.next_page_section .next_page_link .next_page_title {
  text-align: center;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 90%;
}
.next_page_section:hover .next_page_image {
  filter: brightness(0.8);
  transform: scale(1.1, 1.1);
}

@media screen and (min-width: 768px) {
  .next_page_section .next_page_link .next_page_title {
    font-size: 28px;
  }
}
/*はじめての方へ*/
/*保険診療*/
.page-id-4587 .entry-content {
  width: 100%;
}
.page-id-4587 .hoken_lead {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .page-id-4587 .entry-content {
    width: 100%;
    margin: 60px 0 0 0;
  }
  .page-id-4587 .hoken_lead {
    width: 960px;
  }
}
/*皮膚腫瘍（良性・悪性）*/
.page-id-4556 .symptoms_section .symptoms .symptoms_list {
  grid-template-rows: repeat(4, 1fr);
}

@media screen and (min-width: 768px) {
  .page-id-4556 .symptoms_section {
    width: 100%;
    padding: 0;
  }
  .page-id-4556 .symptoms_section .symptoms .symptoms_list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
/*自費診療*/
/*各種検査*/
.page-id-3714 .disease {
  background-color: var(--accent-color25) 2;
  padding: 20px;
  border-radius: 10px;
}
.page-id-3714 .disease h4 {
  border-top: solid 1px var(--main-color100);
  border-bottom: solid 1px var(--main-color100);
}
.page-id-3714 .exam {
  padding: 20px;
  border-radius: 10px;
  border: solid 2px var(--main-color100);
}
.page-id-3714 .exam h4 {
  border-top: solid 1px var(--main-color100);
  border-bottom: solid 1px var(--main-color100);
}

/*よくある質問*/
.page-id-764 .qa_anchor {
  padding-left: 0 !important;
}
.page-id-764 .questions h3 {
  padding: 0 0 0 45px;
  margin: 0;
  line-height: 1.6em;
  position: relative;
  border: 0;
  background: 0;
}
.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: var(--main-color100);
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
}
.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: pink;
}

@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 var(--base-color50) !important;
  border-bottom: solid 2px var(--base-color50) !important;
  text-align: center;
}
.page-id-752 .five_measures ul h3::before {
  content: none;
}
.page-id-752 .five_measures ul h3 span {
  color: var(--base-color50);
  display: block;
  text-align: center;
  margin: 0 0 10px 0;
}
.page-id-752 .information-box {
  background: var(--base-color25) 2;
  border: 0;
}
.page-id-752 .information-box::before {
  color: var(--base-color50);
  border-right: 1px solid var(--base-color50);
}

@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 .hours_section table.info_hours {
  font-size: 5.5vw;
}
.page-id-122 .hours_section table.info_hours tr td {
  width: 26px;
}
.page-id-122 .hours_section table.info_hours tr td span {
  display: block;
  text-align: right;
  line-height: 0.6em;
  margin: -10px 0 0 0;
}
.page-id-122 .hours_section table.info_hours.info_doctor tr td {
  color: var(--text-color);
  text-align: center;
  letter-spacing: 0.3em;
  padding: 5px 0 3px 0;
}
.page-id-122 .access_section {
  padding: 0 0 50px;
}
.page-id-122 .access_section iframe {
  width: 100%;
  height: 300px;
  border: 0;
}
.page-id-122 .access_section h4 {
  text-align: center;
  font-weight: bold !important;
}
.page-id-122 .access_section h3 {
  margin: 0 0 20px 0px;
  border: 0;
  border-bottom: solid 2px var(--main-color100);
  padding: 10px 0 10px 30px;
  background: 0;
}
.page-id-122 .access_section h3::before {
  background: none;
}
.page-id-122 .access_section h3.top_access_train {
  position: relative;
}
.page-id-122 .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 .access_section h3.top_access_bus {
  position: relative;
}
.page-id-122 .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 .access_section h3.top_access_car {
  position: relative;
}
.page-id-122 .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 .access_section img {
  display: block;
  margin: 0 auto 30px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .page-id-122 .hours_section table.info_hours {
    font-size: 2.5vw;
  }
  .page-id-122 .hours_section table.info_hours tr th {
    font-size: 24px;
  }
  .page-id-122 .hours_section table.info_hours tr td {
    width: 10%;
    font-size: 20px;
  }
  .page-id-122 .hours_section table.info_hours tr td span {
    display: none;
  }
  .page-id-122 .hours_section table.info_hours.info_doctor tr td {
    writing-mode: initial;
  }
  .page-id-122 .access_section {
    padding: 100px 0 100px;
  }
  .page-id-122 .access_section iframe {
    width: 100%;
    height: 400px;
  }
  .page-id-122 .access_section h3 {
    padding: 10px 0 10px 45px;
  }
  .page-id-122 .access_section h3.top_access_train::before {
    width: 34px;
    height: 46px;
    top: -6px;
  }
  .page-id-122 .access_section h3.top_access_bus::before {
    width: 34px;
    height: 44px;
    top: -2px;
  }
  .page-id-122 .access_section h3.top_access_car::before {
    width: 34px;
    height: 28px;
    top: 10px;
  }
}
.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: var(--base-color75);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 0.8rem;
  height: 0.8rem;
  content: "";
  border: solid var(--base-color25) 2;
  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: var(--base-color75);
  background-clip: content-box;
}

.gallery01 .swiper-scrollbar-drag:active {
  background-color: var(--base-color75);
}

.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: var(--text-color);
}
.gallery01 .slide figcaption .slide-title {
  padding: 0;
  margin: 0 0 0px 0;
  color: var(--text-color);
}

.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: var(--base-color75);
  }
  .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: var(--base-color75);
  }
  .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: var(--base-color50);
}

.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: var(--base-color75);
}

.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: var(--base-color75);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active::before {
  box-shadow: 0 0 0 4px #f8f8f8, 0 0 0 7px var(--base-color75);
}

.flow01 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::before,
.flow01 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::after {
  background-color: var(--base-color25) 2;
}

.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: var(--base-color25) 2;
}

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

.flow01 .swiper-pagination-sub .swiper-pagination-bullet-active {
  background-color: var(--base-color75);
}

.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 var(--base-color75);
  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: var(--base-color50);
}

.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: var(--base-color75);
}

.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: var(--base-color75);
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet-active::before {
  box-shadow: 0 0 0 4px #f8f8f8, 0 0 0 7px var(--base-color75);
}

.flow02 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::before,
.flow02 .swiper-pagination-main .swiper-pagination-bullet-active ~ *::after {
  background-color: var(--base-color25) 2;
}

.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: var(--base-color25) 2;
}

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

.flow02 .swiper-pagination-sub .swiper-pagination-bullet-active {
  background-color: var(--base-color75);
}

.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 var(--base-color75);
  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 .top_feature_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
.page-id-754 .top_feature_list .top_feature_item .list_number {
  border: 0;
  padding: 0 0 0 20px;
}
.page-id-754 .top_feature_list .top_feature_item .list_number li {
  font-size: 20px;
  font-weight: bold;
}
.page-id-754 .top_feature_list .top_feature_item .list_number li h3 {
  border: 0;
  background: 0;
  padding: 0;
}
.page-id-754 .top_feature_list .top_feature_item .list_number li span {
  display: block;
  border-top: solid 1px;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 0 0 0;
  margin: 10px 0 0 0;
}

@media screen and (min-width: 768px) {
  .page-id-754 .top_feature_list {
    justify-content: space-between;
  }
  .page-id-754 .top_feature_list .top_feature_item {
    width: 900px;
    margin: 0 auto;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li {
    font-size: 24px;
    padding: 0 0 30px 30px !important;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li h3 {
    padding: 10px 0;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li::before {
    font-size: 26px;
    top: 0;
    left: -1.2em;
    width: 50px;
    height: 50px;
  }
  .page-id-754 .top_feature_list .top_feature_item .list_number li span {
    font-size: 18px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .page-id-754 .top_feature_list {
    justify-content: space-between;
  }
  .page-id-754 .top_feature_list .top_feature_item {
    width: 70%;
    margin: 0 auto 40px;
  }
  .page-id-754 .top_feature_list .top_feature_item:last-child {
    margin: 0 auto 40px;
  }
}
/*予防接種*/
.page-id-3971 .vaccination_list {
  gap: 0.5rem;
}
.page-id-3971 .vaccination_list div .button a {
  display: block;
}

@media screen and (min-width: 768px) {
  .page-id-3971 .vaccination_list {
    gap: 1.5rem;
  }
}
/*院内紹介*/
.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 h2 span {
  font-size: 0.8em;
  font-weight: normal;
}
.page-id-758 .doctor_intro .doctor_intro_text {
  order: 1;
}
.page-id-758 .doctor_intro .doctor_intro_image {
  order: 0;
  padding: 30px 0 0 0;
}
.page-id-758 figure {
  width: 90%;
  margin: -10px auto 0 !important;
  display: block;
}
.page-id-758 figure img {
  border-radius: 10px;
}
.page-id-758 .list_noline li span {
  display: block;
  color: var(--base-color50);
  font-weight: bold;
}
.page-id-758 .list_noline_keireki {
  padding-left: 0;
}
.page-id-758 .list_noline_keireki li {
  margin: 0 0 10px 0;
  display: flex;
  justify-content: flex-start;
}
.page-id-758 .list_noline_keireki li:nth-child(odd):nth-last-child(2) {
  margin-bottom: 10px;
}
.page-id-758 .list_noline_keireki li .period {
  padding: 0 10px 0 0;
  color: var(--main-color75);
  font-weight: bold;
  min-width: 80px;
}

@media screen and (min-width: 768px) {
  .page-id-758 .doctor_intro .doctor_intro_text {
    order: 0;
  }
  .page-id-758 .doctor_intro .doctor_intro_image {
    order: 1;
  }
}
/*サイトマップ*/
#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: var(--base-color50);
  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: var(--main-color25);
}

.widget_recent_entries ul li a:hover {
  background-color: var(--main-color25);
}

.widget_archive ul li a:hover {
  background-color: var(--main-color25);
}

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

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

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*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 */