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

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

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

a {
  color: #333;
}
a:hover {
  color: #037cca;
}

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

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

a.black_arrow_before::before {
  content: "";
  background-color: #333;
  display: inline-block;
  width: 0.4rem;
  height: 0.6rem;
  -webkit-mask: url(/wp-content/uploads/2021/10/arrow_right.svg);
  mask: url(/wp-content/uploads/2021/10/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/2021/10/new_window.svg);
  mask: url(/wp-content/uploads/2021/10/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: #888;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-mask: url(/wp-content/uploads/2021/10/new_window.svg);
  mask: url(/wp-content/uploads/2021/10/new_window.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  margin: 0 0 2px 0;
  transition: 0.5s;
}

ul {
  list-style-type: none;
}

p {
  text-align: justify;
}

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

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

figure {
  border-radius: 10px;
}

.box_blue {
  background: #f5fafd;
  border-radius: 10px;
  padding: 20px;
  display: inline-block;
}

.strong_text {
  font-weight: bold;
  background: linear-gradient(transparent 80%, #f79174 0%);
  display: inline;
  text-decoration-line: none;
}

.no_border {
  border: 0 !important;
}

.top_border {
  border-top: 1px solid #ccc !important;
}

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

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

.textR {
  text-align: right;
}

.mt0 {
  margin-top: 0px !important;
}

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

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

.width300 {
  width: 300px;
}

.width100per {
  width: 100% !important;
}

.font14px {
  font-size: initial;
}

.border-none {
  border: 0 !important;
  display: none !important;
}

.su-animate {
  margin: 0;
}

.display_none {
  display: none;
}

.sp_display {
  display: block;
}

.pc_display {
  display: none;
}

@media screen and (min-width: 768px) {
  .button a {
    display: inline-block;
    padding: 10px 30px !important;
  }
  .notice {
    margin: 0 0 5px 0 !important;
    font-size: 14px;
  }
  .font14px {
    font-size: 14px;
  }
  .border-none {
    border: 0 !important;
    display: block !important;
  }
  .pc_display {
    display: block;
  }
  .sp_display {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .font14px {
    font-size: 10px;
  }
}
/*リスト*/
.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: #037cca;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  left: 10px;
  content: "";
}
.list li h4 {
  border: 0;
}

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

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

.list_number > div {
  position: relative;
  background: #f5fafd;
  border-radius: 10px;
  padding: 20px;
  margin: 0 0 50px 0;
}
.list_number > div .number {
  position: absolute;
  top: -60px;
  left: calc(50% - 24px);
  font-size: 64px;
  font-weight: bold;
  font-style: italic;
  color: #037cca;
}
.list_number > div h3 {
  color: #037cca;
  padding: 10px 0 !important;
}
.list_number > div h3::before {
  content: none;
}
.list_number > div p {
  line-height: 1.6em;
}

.list_check_content {
  width: 100vw;
  margin: 0px calc(50% - 50vw) 60px;
  padding: 20px 20px 40px;
}
.list_check_content h3 {
  color: #505050;
}
.list_check_content h3::before {
  content: none;
}
.list_check_content ul.list_check {
  background: #f5fafd;
  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; /*アイコンの色*/
}

@media screen and (min-width: 768px) {
  .wp-block-columns.list_number {
    margin: 50px 0 0 0;
    flex-wrap: wrap !important;
    justify-content: flex-start;
  }
  .wp-block-columns.list_number > div {
    margin: 0 0px 30px 0;
    width: 300px !important;
    height: 360px !important;
    flex-grow: initial !important;
    flex-basis: initial !important;
  }
  .wp-block-columns.list_number > div h3 {
    padding: 10px 0 !important;
    font-size: 18px;
    line-height: 1.4em;
    text-align: justify;
  }
  .wp-block-columns.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;
  }
}
/*ボタンリスト*/
.button_link_list .button {
  display: inline-block;
}
.button_link_list .button a {
  border-bottom: solid 2px #037cca;
  color: #333;
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 5px 40px 5px 0;
}
.button_link_list .button a:hover {
  border: 0;
  border-bottom: solid #ccc 2px;
}
.button_link_list .button a:hover::before {
  content: none;
}
.button_link_list .button a:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  border-top: solid 2px #ccc;
  border-right: solid 2px #ccc;
}

@media screen and (min-width: 768px) {
  .button_link_list .button {
    display: inline-block;
  }
  .button_link_list .button a {
    padding: 10px 50px 10px 0 !important;
    margin: 0 10px 0 0;
  }
}
/*テーブル*/
.price_table {
  border: solid 1px #037cca;
  border-radius: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.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: 0;
  border-bottom: 1px solid #037cca;
  border-right: 1px solid #037cca;
  padding: 5px;
  background: #f5fafd;
  font-size: 1em;
  width: 100px;
  min-width: 100px;
}
.price_table table tr th:last-child {
  border-right: 0;
}
.price_table table tr td {
  border: 0;
  border-right: 1px solid #037cca;
  border-bottom: 1px solid #037cca;
  padding: 5px;
  background: #fff;
  font-size: 1em;
  text-align: center;
  min-width: 100px;
}
.price_table table tr td:last-child {
  border-right: 0;
}

@media screen and (min-width: 768px) {
  .price_table table tr th {
    padding: 10px;
    width: auto;
  }
  .price_table table tr td {
    padding: 10px;
  }
}
.vaccine_table {
  border: solid 1px #7f7f7f;
  border-radius: 10px;
}
.vaccine_table table {
  width: 100% !important;
}
.vaccine_table table tr:last-child th {
  border-bottom: 0;
}
.vaccine_table table tr:last-child td {
  border-bottom: 0;
}
.vaccine_table table tr th {
  border: 0;
  border-bottom: 1px solid #7f7f7f;
  border-right: 1px solid #7f7f7f;
  padding: 10px;
  background: #f2f2f2;
  font-size: 1em;
}
.vaccine_table table tr th:last-child {
  border-right: 0;
}
.vaccine_table table tr th.brown {
  background: #6a2c3e;
  color: #fff;
}
.vaccine_table table tr th.orange {
  background: #ff8200;
  color: #fff;
}
.vaccine_table table tr td {
  border: 0;
  border-right: 1px solid #7f7f7f;
  border-bottom: 1px solid #7f7f7f;
  padding: 10px;
  background: #fff;
  font-size: 1em;
  text-align: center;
}
.vaccine_table table tr td:last-child {
  border-right: 0;
}

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

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

@media screen and (min-width: 768px) {
  table.table2 {
    width: 500px;
  }
  table.table2 tr th {
    width: 140px;
    font-size: 22px;
  }
  table.table2 tr td {
    font-size: 20px;
  }
}
/*流れコンテンツ*/
.flow_content {
  border-radius: 10px;
  padding: 20px;
  background: #f5fafd;
  position: relative;
  margin: 0 0 50px 0 !important;
}
.flow_content.last::after {
  content: none;
}
.flow_content::after {
  content: "";
  background-color: #037cca;
  width: 20px;
  height: 32px;
  -webkit-mask: url(/wp-content/uploads/2021/10/arrow_right.svg);
  mask: url(/wp-content/uploads/2021/10/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;
  padding-left: 1.4em !important;
  text-indent: -1.4em;
  text-align: justify;
  line-height: 1.6em;
}
.flow_content h4::first-letter {
  font-size: 32px;
  color: #037cca;
}
.flow_content h5 {
  text-align: center;
  margin: 0 0 10px 0;
  border-bottom: solid 2px #96bd83;
}
.flow_content figure img {
  border-radius: 10px !important;
}

@media screen and (min-width: 768px) {
  .flow_content {
    padding: 40px;
  }
}
/*コンセプト*/
.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サイズ違い*/
.recruit_banner {
  margin: 80px 0;
}

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

.pc_display_banner {
  display: none;
}

@media screen and (min-width: 768px) {
  .recruit_banner {
    margin: 100px 0;
  }
  .sp_display_banner {
    display: none;
  }
  .pc_display_banner {
    display: flex;
    justify-content: center;
  }
}
/*内覧会用*/
/*header*/
.header-container-in.hlt-top-menu #header-in .tagline {
  display: block;
  margin: 0;
  line-height: 1.4em;
  background: #037cca;
  color: #fff;
  padding: 5px;
  text-align: left;
}
.header-container-in.hlt-top-menu #header-in .header_info {
  display: none;
}

@media screen and (min-width: 768px) {
  .fixed-header .header {
    display: none;
  }
  .header-container-in.hlt-top-menu {
    display: block;
    width: initial;
  }
  .header-container-in.hlt-top-menu #header-in {
    flex-direction: initial;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .header-container-in.hlt-top-menu #header-in .tagline {
    flex-basis: 100%;
  }
  .header-container-in.hlt-top-menu #header-in .logo {
    padding: 10px 0 0 30px;
  }
  .header-container-in.hlt-top-menu #header-in .logo img {
    max-height: 80px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info {
    display: flex;
    padding: 20px;
    margin: 0 20px 0 auto;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li {
    font-size: 16px;
    padding: 16px 30px 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li:first-child {
    padding: 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li .insta img {
    width: 25px;
    padding: 14px 0px 0 0px;
    margin: 0 20px 0 0px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li .twitter img {
    width: 25px;
    padding: 2px 0 0 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li:last-child {
    padding: 0;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li a {
    text-decoration: none;
    font-weight: bold;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.line_header_button a {
    color: #fff;
    display: block;
    text-align: center;
    background: #06c755;
    padding: 15px 30px;
    margin: 0;
    border-radius: 40px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
    text-decoration: none;
    line-height: 1.6em;
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 100%;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.line_header_button a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #32b567;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease 0.3s;
    border-radius: 10px;
  }
  .header-container-in.hlt-top-menu #header-in .header_info li.line_header_button a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  #header .site-name-text {
    padding: 5px 0;
    width: 90%;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .header-container-in.hlt-top-menu #header-in .header_info .header_info_tel {
    justify-content: center;
  }
}
/*footer*/
.footer_info {
  padding: 0 20px;
}
.footer_info ul {
  padding-left: 0;
}
.footer_info .footer_info_left {
  margin: 0 0 0 0;
}
.footer_info .footer_info_left a img {
  width: 90%;
}
.footer_info .footer_info_left .medical_subjects {
  display: flex;
  margin: 0 0 20px 0;
}
.footer_info .footer_info_left .medical_subjects li {
  border: solid 2px #aaa;
  border-radius: 10px;
  padding: 0px 10px;
  font-weight: bold;
  margin: 0 5px 0 0;
  background: #fff;
  color: #555;
  line-height: 1.6em;
}
.footer_info .footer_info_left .footer_sns {
  display: flex;
  justify-content: flex-start;
}
.footer_info .footer_info_left .footer_sns li:first-child {
  padding: 0 20px 0 0;
}
.footer_info .footer_info_left .footer_sns li .insta img {
  width: 22px;
  padding: 0;
  margin: 0;
}
.footer_info .footer_info_left .footer_sns li .twitter img {
  width: 25px;
  padding: 0 0 0 0;
}
.footer_info .footer_info_left .footer_info_tel {
  margin: 20px 0 0;
  border-top: solid 2px #037cca;
  border-bottom: solid 2px #037cca;
  font-weight: bold;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
.footer_info .footer_info_left .footer_info_tel li:first-child {
  font-size: 16px;
  line-height: 2.4em;
}
.footer_info .footer_info_left .footer_info_tel li:last-child {
  text-align: center;
}
.footer_info .footer_info_left .footer_info_tel li:last-child img {
  width: 15px;
  margin: 0 4px 0 0;
}
.footer_info .footer_info_left .footer_info_tel li:last-child a {
  text-decoration: none;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
.footer_info .footer_info_right table.info_hours {
  background-color: #f6f3ea;
  border-radius: 10px;
  font-size: 16px;
  padding: 10px 10px 0 10px;
  border-collapse: initial;
}
.footer_info .footer_info_right table.info_hours tr {
  background: none;
}
.footer_info .footer_info_right table.info_hours th,
.footer_info .footer_info_right table.info_hours td {
  border: 0;
  padding: 10px 10px;
  background: none;
  border-bottom: 1px solid #888 !important;
}
.footer_info .footer_info_right table.info_hours .info_hours_03 th,
.footer_info .footer_info_right table.info_hours .info_hours_03 td {
  border-bottom: 0 !important;
}
.footer_info .footer_map {
  margin: 20px 0 0 0;
}

@media screen and (min-width: 768px) {
  .footer_info {
    padding: 0;
  }
  .footer_info ul {
    padding-left: 0;
    display: flex;
    justify-content: center;
  }
  .footer_info .footer_info_left {
    margin: 0 40px 0 0;
  }
  .footer_info .footer_info_left .footer_info_tel {
    padding: 0;
  }
  .footer_info .footer_info_left .footer_info_tel li:last-child {
    padding: 10px 0;
  }
  .footer_info .footer_info_left a img {
    width: 361px;
  }
  .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_left .footer_map_img {
    width: 800px;
    display: block;
    margin: 0 auto;
  }
  .footer_info .footer_info_right {
    margin: 20px 0 0 0;
    width: 500px;
  }
  .footer_info .footer_info_right iframe {
    height: 450px;
  }
  .footer_info .footer_info_tel li:first-child {
    font-size: 20px;
    text-align: center;
    padding: 10px 20px 10px 0;
  }
  .footer_info .footer_map {
    width: 900px;
    margin: 30px auto;
  }
  .footer_info .footer_map img {
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .footer_info ul {
    flex-wrap: wrap;
  }
  .footer_info .footer_info_left {
    margin: 0 40px 40px 0;
    width: 500px;
  }
  .footer_info .footer_info_right {
    margin: 0 0 0 0;
    width: 500px;
  }
  .footer_info .footer_info_right iframe {
    height: 450px;
  }
  .footer_info .footer_info_tel li:first-child {
    font-size: 20px;
    text-align: center;
    padding: 10px 20px 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .navi-footer-in > .menu-footer li.menu-item {
    width: 100%;
    text-align: left;
  }
  .navi-footer-in > .menu-footer li.menu-item a {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}
/*フッターバナー*/
.footer_banner {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding: 0 !important;
  margin: 50px 0;
}

@media screen and (min-width: 768px) {
  .footer_banner {
    justify-content: center;
  }
  .footer_banner li img {
    width: 90%;
  }
}
/*フッターメニュー*/
.navi-footer-in a:hover {
  background-color: none;
  color: #037cca;
}

/*モバイルスライドインメニュー*/
#navi-menu-content {
  background: #fcfcf9;
}
#navi-menu-content .menu-close-button {
  text-align: right;
  color: #4c4537;
  background: #f6f3ea;
}
#navi-menu-content .menu-close-button span {
  padding: 0 10px 0 0;
}
#navi-menu-content .menu-drawer .menu-item-782 a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2021/12/first_menu_icon.svg);
  position: absolute;
  left: 0;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-783 > a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(/wp-content/uploads/2021/12/about_menu_icon.svg);
  position: absolute;
  top: 8px;
  left: 2px;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-784 > a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2021/12/guide_menu_icon.svg);
  position: absolute;
  left: 0;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-792 a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2021/12/doctor_menu_icon.svg);
  position: absolute;
  left: 0;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-130 a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2021/12/access_menu_icon.svg);
  position: absolute;
  left: 0;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-793 a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2021/12/faq_menu_icon.svg);
  position: absolute;
  left: 0;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-2129 > a::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(/wp-content/uploads/2021/12/survey_menu_icon.svg);
  position: absolute;
  top: 8px;
  left: 2px;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer .menu-item-2697 a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/wp-content/uploads/2021/12/recruit_menu_icon.svg);
  position: absolute;
  left: 0;
  background-size: contain;
  transition: 0.5s;
}
#navi-menu-content .menu-drawer li {
  border-bottom: dotted 1px #037cca;
  padding: 5px 0;
}
#navi-menu-content .menu-drawer li .sub-menu li {
  position: relative;
  border-bottom: 0;
}
#navi-menu-content .menu-drawer li .sub-menu li:before {
  width: 8px;
  height: 8px;
  background: #037cca;
  border-radius: 10px;
  position: absolute;
  top: 1em;
  left: 10px;
  content: "";
}
#navi-menu-content .menu-drawer li .sub-menu li:last-child {
  border-bottom: 0;
}
#navi-menu-content .menu-drawer li a {
  font-weight: bold;
  position: relative;
  padding: 6px 6px 6px 28px;
}
#navi-menu-content .menu-drawer li a span {
  font-size: 12px;
  display: block;
}
#navi-menu-content .mobile_slide_info {
  padding: 0 10px;
}
#navi-menu-content .mobile_slide_info .footer_info_tel {
  margin: 0;
  padding: 0;
  border-top: solid 2px #037cca;
  border-bottom: solid 2px #037cca;
  font-weight: bold;
  color: #555;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:first-child {
  font-size: 20px;
  text-align: center;
  padding: 10px 0 0;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:last-child {
  text-align: center;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:last-child img {
  width: 24px;
  margin: 0 4px 0 0;
}
#navi-menu-content .mobile_slide_info .footer_info_tel li:last-child a {
  text-decoration: none;
  font-size: 8vw;
}
#navi-menu-content .mobile_slide_info table.info_hours {
  background-color: #f6f3ea;
  border-radius: 10px;
  font-size: 16px;
  padding: 5px 5px 0 5px;
  border-collapse: initial;
  color: #555;
  margin: 10px 0 0 0;
}
#navi-menu-content .mobile_slide_info table.info_hours tr {
  background: none;
}
#navi-menu-content .mobile_slide_info table.info_hours th,
#navi-menu-content .mobile_slide_info table.info_hours td {
  border: 0;
  padding: 5px;
  background: none;
  border-bottom: 1px solid #888 !important;
  letter-spacing: 0.1em;
}
#navi-menu-content .mobile_slide_info table.info_hours .info_hours_03 th,
#navi-menu-content .mobile_slide_info table.info_hours .info_hours_03 td {
  border-bottom: 0 !important;
}
#navi-menu-content .mobile_slide_info .info_hours_note {
  color: #555;
  font-size: 4vw;
  margin: 5px 0 0;
}
#navi-menu-content .mobile_slide_info .button.line_button a {
  background: #06c755;
}
#navi-menu-content .mobile_slide_info .button a {
  margin: 10px 0;
}

.mobile-menu-buttons {
  background: #4c4537;
  color: #fff;
}
.mobile-menu-buttons .menu-button > a {
  color: #fff;
}

/*TOPへ戻るボタン*/
.go-to-top {
  right: 10px;
  bottom: 60px;
}
.go-to-top .go-to-top-button {
  background: url(/wp-content/uploads/2021/12/gototop.png) no-repeat;
  background-size: cover;
  height: 67px;
  width: 50px;
  display: block !important;
}
.go-to-top .go-to-top-button span {
  display: none;
}

@media screen and (min-width: 768px) {
  .go-to-top {
    right: 10px;
    bottom: 10px;
  }
  .go-to-top .go-to-top-button {
    height: 120px;
    width: 90px;
  }
}
/*navi*/
@media screen and (min-width: 768px) {
  .hlt-tm-right #navi .navi-in > ul {
    justify-content: center;
    padding: 30px 0 0;
  }
  .hlt-tm-right #navi .navi-in > ul li a {
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
  }
  .hlt-tm-right #navi .navi-in > ul li a:hover {
    color: #037cca;
    background: 0 !important;
  }
  .hlt-tm-right #navi .navi-in > ul li a:hover > ::before {
    animation: icon_fuwa 0.75s ease-in-out 0s infinite alternate;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-782 a > ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/first_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-783 > a > .caption-wrap ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/about_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-783 > a:hover > .caption-wrap ::before {
    animation: icon_fuwa 0.75s ease-in-out 0s infinite alternate;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-783:hover .sub-menu {
    display: flex;
    width: 160px;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-784 > a > .caption-wrap ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/guide_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: cover;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-784 > a:hover > .caption-wrap ::before {
    animation: icon_fuwa 0.75s ease-in-out 0s infinite alternate;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-784:hover .sub-menu {
    display: flex;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-792 a > ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/doctor_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-130 a > ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/access_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-793 a > ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/faq_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2129 > a > .caption-wrap ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/survey_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2129 > a:hover > .caption-wrap ::before {
    animation: icon_fuwa 0.75s ease-in-out 0s infinite alternate;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2129:hover .sub-menu {
    display: flex;
    width: 160px;
  }
  .hlt-tm-right #navi .navi-in > ul li#menu-item-2697 a > ::before {
    content: "";
    width: 30px;
    height: 30px;
    background: url(/wp-content/uploads/2021/12/recruit_menu_icon.svg);
    position: absolute;
    top: -14px;
    left: calc(50% - 15px);
    background-size: contain;
    transition: 0.5s;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu {
    background-color: #ffffff;
    border: solid 2px #037cca;
    border-radius: 10px;
    top: 55px;
    flex-wrap: wrap;
    width: 490px;
    min-width: 190px !important;
    justify-content: flex-start;
    padding: 20px 0 0 20px;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu:hover {
    display: flex;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li {
    width: 230px !important;
    height: 55px;
    line-height: 1em;
    position: relative;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li::before {
    content: "●";
    position: absolute;
    top: -3px;
    left: 2px;
    font-size: 24px;
    color: #037cca;
  }
  .hlt-tm-right #navi .navi-in > ul .sub-menu li span {
    display: block;
    font-size: 0.7em;
    line-height: 1.4em;
  }
}
@keyframes icon_fuwa {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-5px);
  }
}
/************************************
** TOPページ
************************************/
/*TOP背景*/
#svg-bg-top-sp {
  position: absolute;
  top: -25px;
  height: 50px;
  left: 0;
  width: 100%;
  display: block;
  transform: rotate(180deg);
  fill: #f5fafd;
}

#svg-bg-top-pc {
  position: absolute;
  top: -36px;
  height: 50px;
  left: 0;
  width: 100%;
  display: none;
  fill: #f5fafd;
  transform: rotate(180deg);
}

#svg-bg-bottom-sp {
  position: absolute;
  bottom: -30px;
  height: 50px;
  left: 0;
  width: 100%;
  display: block;
  fill: #f5fafd;
}

#svg-bg-bottom-pc {
  position: absolute;
  bottom: -30px;
  height: 50px;
  left: 0;
  width: 100%;
  display: none;
  fill: #f5fafd;
}

@media screen and (min-width: 768px) {
  #svg-bg-bottom-sp {
    display: none;
  }
  #svg-bg-bottom-pc {
    display: block;
  }
  #svg-bg-top-sp {
    display: none;
  }
  #svg-bg-top-pc {
    display: block;
  }
  .pc_display {
    display: block;
  }
  .sp_display {
    display: none;
  }
}
.page-id-9 .a-wrap:hover {
  background: none !important;
}
.page-id-9 article {
  margin-bottom: 0 !important;
}
.page-id-9 .article-header {
  display: none;
}
.page-id-9 .content {
  margin-top: 0;
}
.page-id-9 .content .content-in {
  width: initial;
}
.page-id-9 main {
  padding: 0;
  overflow: initial !important;
}
.page-id-9 main .entry-content {
  width: 100% !important;
}

#post-9 h2 {
  background: none;
  color: #505050;
  margin: 0 0 40px 0;
  padding: 0;
  text-align: center;
  position: relative;
  font-size: 28px;
  line-height: 1.6em;
  font-family: "Noto Sans JP";
  letter-spacing: 0.1em;
  border: 0;
}
#post-9 h2:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #037cca;
  bottom: -16px;
  left: calc(50% - 15px);
}

@media screen and (min-width: 768px) {
  #post-9 h2 {
    margin: 0 0 60px 0;
  }
}
/*hero*/
.page-id-9 .hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 50px 0;
}
.page-id-9 .hero .sp_mv {
  width: 100%;
  height: auto;
}
.page-id-9 .hero .sp_mv .metaslider {
  overflow: hidden;
}
.page-id-9 .hero .sp_mv .metaslider img {
  -o-object-fit: cover;
     object-fit: cover;
  animation: zoom 10s linear forwards infinite;
}
.page-id-9 .hero .title {
  position: absolute;
  top: 210px;
  left: 20px;
  font-size: 8vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-shadow: 2px 2px 4px #fff, -2px 2px 2px #fff, 2px 0px 2px #fff;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4em;
}
.page-id-9 .hero .title2 {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6vw;
  background: rgba(255, 255, 255, 0.831372549);
  border: solid 1px #037cca;
  border-radius: 10px;
  color: #037cca;
  padding: 0px 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.page-id-9 .hero .title3 {
  position: absolute;
  top: 70px;
  left: 20px;
  font-size: 6vw;
  background: rgba(255, 255, 255, 0.831372549);
  border: solid 1px #037cca;
  border-radius: 10px;
  color: #037cca;
  padding: 0px 10px;
  font-family: "Noto Sans JP", sans-serif;
}
.page-id-9 .hero .hero_recruit_button a {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  background: #037cca;
  border-radius: 50%;
  color: #fff;
  padding: 20px 0 0 0;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  line-height: 1.4;
  text-decoration: none;
  width: 120px;
  height: 120px;
}
.page-id-9 .hero .hero_recruit_button a span {
  display: block;
  font-size: 12px;
  color: #ffe565;
}
.page-id-9 .hero .hero_recruit_button a span.red {
  display: block;
  font-size: 12px;
  color: #ffc1ce;
}
.page-id-9 .hero .hero_latest_info {
  position: relative;
  width: 100%;
  margin: 60px 0 40px;
}
.page-id-9 .hero .hero_latest_info .news_icon {
  fill: #777;
  width: 60px;
  position: absolute;
  top: -40px;
  left: calc(50% - 20px);
}
.page-id-9 .hero .hero_latest_info h2 {
  position: relative;
  width: 100%;
  text-align: center;
}
.page-id-9 .hero .hero_latest_info h2::before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #333;
  top: 50%;
  left: calc(50% - 150px);
}
.page-id-9 .hero .hero_latest_info h2::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: #333;
  top: 50%;
  right: calc(50% - 150px);
}
.page-id-9 .hero .hero_latest_info .new-entry-cards {
  margin: 0 30px;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-title {
  text-decoration-color: #037cca;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards a:hover .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  background: #f5fafd;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content {
  display: flex;
  margin: 0;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-title {
  text-align: left;
  order: 1;
  font-size: 16px;
  line-height: 1.6em;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: #ddd;
  transition: 0.5s;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date {
  display: block;
  order: 0;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  padding: 5px 10px;
  border-radius: 30px;
  background: #f0f0f0;
  transition: 0.5s;
}
.page-id-9 .hero .hero_latest_info .new-entry-cards .new-entry-card-content .new-entry-card-date .new-entry-card-update-date {
  display: none;
}
.page-id-9 .hero .hero_latest_info .button {
  width: 200px;
  margin: 0 auto;
}
.page-id-9 .hero .hero_info_hours {
  position: initial;
  width: 100%;
}
.page-id-9 .hero .hero_info_hours .white_bg {
  width: 90%;
  margin: 0 auto 10px;
  background: #fff;
  border: 1px solid #037cca;
  border-radius: 10px;
  padding: 10px;
}
.page-id-9 .hero .info_hours {
  width: 100%;
  margin: 0;
  font-size: 18px;
}
.page-id-9 .hero table.info_hours th {
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.page-id-9 .hero table.info_hours td {
  background: none;
  border: 0;
  width: 10%;
  text-align: center;
  color: #037cca;
}
.page-id-9 .hero table.info_hours tr:nth-of-type(2n + 1) {
  background: none;
}
.page-id-9 .hero table.info_hours .info_hours_01 th,
.page-id-9 .hero table.info_hours .info_hours_01 td,
.page-id-9 .hero table.info_hours .info_hours_02 th,
.page-id-9 .hero table.info_hours .info_hours_02 td {
  border-bottom: 1px solid #ccc;
}
.page-id-9 .hero .info_hours_note {
  font-size: 12px;
}

.movetext {
  opacity: 0;
}

.movetext span {
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .page-id-9 .hero {
    position: relative;
    height: 800px;
    overflow: hidden;
  }
  .page-id-9 .hero .pc_mv {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .page-id-9 .hero .pc_mv .metaslider {
    overflow: hidden;
    margin: 40px 0 0 330px;
    border-radius: 100px;
  }
  .page-id-9 .hero .pc_mv .metaslider img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: -300px -120px;
       object-position: -300px -120px;
    height: 600px;
    animation: zoom 10s linear forwards infinite;
  }
  .page-id-9 .hero .title {
    font-size: 60px;
    text-shadow: 3px 3px 2px #fff;
    top: 100px;
    left: 90px;
  }
  .page-id-9 .hero .title2 {
    top: 100px;
    font-size: 3vw;
    left: 90px;
  }
  .page-id-9 .hero .title3 {
    top: 160px;
    font-size: 3vw;
    left: 90px;
  }
  .page-id-9 .hero .hero_recruit_button a {
    top: 70px;
    right: 40px;
    font-size: 28px;
    padding: 30px 0 0 0;
    width: 200px;
    height: 200px;
  }
  .page-id-9 .hero .hero_recruit_button a span {
    font-size: 20px;
  }
  .page-id-9 .hero .hero_recruit_button a span.red {
    font-size: 20px;
  }
  .page-id-9 .hero .hero_latest_info {
    position: absolute;
    top: 340px;
    left: 40px;
    bottom: initial;
    width: 560px;
    height: auto;
    padding: 80px 60px 0;
    background: #fff;
    border-radius: 100px;
  }
  .page-id-9 .hero .hero_latest_info .news_icon {
    top: 30px;
  }
  .page-id-9 .hero .hero_latest_info h2::before {
    width: 110px;
    top: 50%;
    left: calc(50% - 220px);
  }
  .page-id-9 .hero .hero_latest_info h2::after {
    width: 110px;
    top: 50%;
    right: calc(50% - 220px);
  }
  .page-id-9 .hero .hero_latest_info .new-entry-cards {
    margin: 0;
  }
  .page-id-9 .hero .hero_info_hours {
    position: absolute;
    bottom: 0px;
    right: 100px;
    width: initial;
  }
  .page-id-9 .hero .hero_info_hours .white_bg {
    width: 380px;
  }
  .page-id-9 .hero .info_hours {
    width: 100%;
    margin: 0;
    font-size: 18px;
  }
  .page-id-9 .hero table.info_hours th {
    background: none;
    border: 0;
    margin: 0;
    padding: 0;
  }
  .page-id-9 .hero table.info_hours td {
    background: none;
    border: 0;
    width: 10%;
    text-align: center;
    color: #037cca;
  }
  .page-id-9 .hero table.info_hours tr:nth-of-type(2n + 1) {
    background: none;
  }
  .page-id-9 .hero table.info_hours .info_hours_01 th,
  .page-id-9 .hero table.info_hours .info_hours_01 td,
  .page-id-9 .hero table.info_hours .info_hours_02 th,
  .page-id-9 .hero table.info_hours .info_hours_02 td {
    border-bottom: 1px solid #ccc;
  }
  .page-id-9 .hero .info_hours_note {
    font-size: 12px;
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
/*TOPごあいさつ*/
.top_greeting_section {
  position: relative;
  background: #f5fafd;
  width: 100%;
  padding: 150px 20px 50px;
}
.top_greeting_section .top_greeting {
  margin: 0 auto;
  width: 100%;
}
.top_greeting_section .top_greeting h2 {
  position: relative;
}
.top_greeting_section .top_greeting h2::after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/2021/12/top_greeting_h2_before.png) no-repeat;
  background-size: cover;
  height: 170px;
  width: 210px;
  top: -170px;
  left: calc(50% - 98px);
}
.top_greeting_section .top_greeting .top_greeting_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.top_greeting_section .top_greeting .top_greeting_content span {
  font-family: "Noto Sans JP";
  text-align: right;
  font-size: 20px;
  display: block;
  margin: 20px 0 0;
}
.top_greeting_section .top_greeting .top_greeting_content img {
  border-radius: 30px;
  width: 80%;
  margin: 20px auto 0;
  display: block;
}
.top_greeting_section .top_greeting .top_greeting_button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .top_greeting_section {
    padding: 150px 0 100px;
  }
  .top_greeting_section .top_greeting {
    width: 960px;
  }
  .top_greeting_section .top_greeting .top_greeting_content {
    flex-wrap: nowrap;
  }
  .top_greeting_section .top_greeting .top_greeting_content li:first-child {
    width: 70%;
  }
  .top_greeting_section .top_greeting .top_greeting_content li:last-child {
    width: 30%;
  }
  .top_greeting_section .top_greeting .top_greeting_content img {
    margin: 0 auto;
  }
}
/*背景スライドショー*/
.top_slideshow {
  margin: 20px 0 0 0;
}
.top_slideshow .slideshow_wrap {
  display: flex;
  overflow: hidden;
  margin: 0 0 0 -20px;
  width: 100vw;
}
.top_slideshow .slideshow_wrap .slideshow {
  display: flex;
  animation: loop-slide 50s infinite linear 1s both;
  padding: 0;
}
.top_slideshow .slideshow_wrap .slideshow .slideshow_content {
  width: 150px;
  height: 100px;
  border-radius: 10px;
}
.top_slideshow .slideshow_wrap .slideshow .slideshow_content img {
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .top_slideshow {
    margin: 60px 0 0 0;
  }
  .top_slideshow .slideshow_wrap .slideshow .slideshow_content {
    width: 300px;
    height: 200px;
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*LINE*/
.top_line_section {
  position: relative;
  width: 100%;
  padding: 50px 20px;
}
.top_line_section .top_line {
  margin: 0 auto;
  width: 100%;
}
.top_line_section .top_line .top_line_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_line_section .top_line .top_line_content p {
  margin: 0;
}
.top_line_section .top_line .top_line_content ul {
  padding: 0;
  margin: 0;
}
.top_line_section .top_line .top_line_content img {
  border-radius: 30px;
  width: 80%;
  margin: 20px auto 0;
  display: block;
}
.top_line_section .top_line .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.top_line_section .top_line .button a {
  color: #fff;
  display: block;
  text-align: center;
  background: #06c755;
  padding: 10px 20px;
  margin: 10px 0 0;
  border-radius: 60px;
  font-size: 18px;
  font-weight: bold;
  transition: 0.5s;
  text-decoration: none;
  line-height: 1.6em;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}
.top_line_section .top_line .button a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #32b567;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
  border-radius: 10px;
}
.top_line_section .top_line .button a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

@media screen and (min-width: 768px) {
  .top_line_section {
    padding: 100px 0;
  }
  .top_line_section .top_line {
    width: 800px;
  }
  .top_line_section .top_line .top_line_content img {
    margin: 0 auto;
    width: 370px;
  }
}
/*TOP診療案内*/
.top_medical_information_section {
  position: relative;
  background: #f5fafd;
  width: 100%;
  padding: 250px 20px 50px;
}
.top_medical_information_section .top_medical_information {
  margin: 0 auto;
  width: 100%;
}
.top_medical_information_section .top_medical_information h2 {
  position: relative;
}
.top_medical_information_section .top_medical_information h2::after {
  content: "";
  position: absolute;
  background: url(/wp-content/uploads/2021/12/top_medical_information_h2_before.png) no-repeat;
  background-size: cover;
  height: 200px;
  width: 240px;
  top: -220px;
  left: calc(50% - 120px);
}
.top_medical_information_section .top_medical_information .top_medical_information_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li {
  border-radius: 30px;
  background: #fff;
  margin: 0 0 10px 0;
  width: 48%;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li:last-child {
  background: none;
  width: 70%;
  margin: 0 0 0 auto;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li:last-child img {
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li h3 {
  text-align: center;
  font-size: 14px;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li h3::before {
  display: none;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li h3 span {
  font-size: 12px;
  display: block;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li p {
  padding: 0 20px;
  margin: 0 0 10px 0;
}
.top_medical_information_section .top_medical_information .top_medical_information_content li img {
  width: 100%;
  border-radius: 30px 30px 0 0;
}
.top_medical_information_section .top_medical_information .button {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_medical_information_section .top_medical_information .button a {
  margin: auto 0 20px 0 !important;
  padding: 5px 20px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .top_medical_information_section {
    padding: 300px 20px 100px;
  }
  .top_medical_information_section .top_medical_information {
    margin: 0 auto;
    width: 1140px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li {
    width: 340px;
    margin: 0 0 40px 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li:last-child {
    width: 340px;
    background: none;
    margin: 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li:last-child img {
    height: auto;
    display: block;
    margin: 60px auto 0;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li h3 {
    text-align: center;
    font-size: 20px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li h3::before {
    display: none;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li h3 span {
    font-size: 16px;
    display: block;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li p {
    padding: 0 20px;
    font-size: 16px;
  }
  .top_medical_information_section .top_medical_information .top_medical_information_content li img {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
  .top_medical_information_section .top_medical_information .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_medical_information_section .top_medical_information .button a {
    margin: 0 0 20px 0;
    padding: 10px 40px;
  }
}
/*特徴*/
.top_feature_section {
  position: relative;
  width: 100%;
  padding: 50px 20px 50px;
}
.top_feature_section .top_feature {
  margin: 0 auto;
  width: 100%;
}
.top_feature_section .top_feature .top_feature_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 130px 0 0 0;
}
.top_feature_section .top_feature .top_feature_content li {
  width: 43vw;
  height: 43vw;
  border-radius: 80vw;
  background: #f5fafd;
  margin: 0 0 40px 0;
}
.top_feature_section .top_feature .top_feature_content li:last-child {
  background: none;
  width: 100vw;
  margin: 30px 0 100px 0 !important;
}
.top_feature_section .top_feature .top_feature_content li:last-child img {
  width: 100%;
  height: auto;
}
.top_feature_section .top_feature .top_feature_content li:nth-child(odd) {
  margin: -100px 0 0 0;
}
.top_feature_section .top_feature .top_feature_content li .number {
  font-family: "Montserrat";
  font-style: italic;
  font-size: 34px;
  text-align: center;
  margin: -20px 0 10px 0;
  color: #037cca;
  line-height: 1em;
}
.top_feature_section .top_feature .top_feature_content li p {
  margin: 5px 0 0 0;
  text-align: center;
  font-size: 4.5vw;
  line-height: 1.6em;
  letter-spacing: 0.02em;
}
.top_feature_section .top_feature .top_feature_content li img {
  display: block;
  margin: 0 auto;
  height: 40px;
}
.top_feature_section .top_feature .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_feature_section .top_feature .button a {
  margin: -10px 0 0 0;
  padding: 10px 20px;
}

@media screen and (min-width: 768px) {
  .top_feature_section {
    padding: 100px 20px 100px;
  }
  .top_feature_section .top_feature {
    width: 1140px;
  }
  .top_feature_section .top_feature .top_feature_content {
    justify-content: center;
    margin: 0;
  }
  .top_feature_section .top_feature .top_feature_content li {
    width: 260px;
    height: 260px;
    margin: 0 20px 40px 0;
  }
  .top_feature_section .top_feature .top_feature_content li:last-child {
    width: 450px;
    background: none;
    position: relative;
    margin: 0 !important;
  }
  .top_feature_section .top_feature .top_feature_content li:last-child .button {
    position: absolute;
    bottom: -100px;
    right: -60px;
  }
  .top_feature_section .top_feature .top_feature_content li:nth-child(odd) {
    margin: -30px 20px 0 0;
  }
  .top_feature_section .top_feature .top_feature_content li .number {
    font-size: 54px;
  }
  .top_feature_section .top_feature .top_feature_content li h3 {
    text-align: center;
    font-size: 20px;
  }
  .top_feature_section .top_feature .top_feature_content li h3::before {
    display: none;
  }
  .top_feature_section .top_feature .top_feature_content li h3 span {
    font-size: 16px;
    display: block;
  }
  .top_feature_section .top_feature .top_feature_content li p {
    padding: 0 20px;
    font-size: 18px;
    margin: 10px 0 0 0;
  }
  .top_feature_section .top_feature .top_feature_content li img {
    width: 100%;
    height: 80px;
    border-radius: 30px 30px 0 0;
  }
  .top_feature_section .top_feature .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 370px;
  }
  .top_feature_section .top_feature .button a {
    margin: 0 0 20px 0;
    padding: 10px 40px;
  }
}
@keyframes circle {
  0% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(4px);
  }
}
/*小児科・産婦人科オンラインとの連携*/
.top_alignment_section {
  position: relative;
  width: 100%;
  padding: 50px 20px 50px;
}

@media screen and (min-width: 768px) {
  .top_alignment_section {
    padding: 100px 20px 100px;
  }
  .top_alignment_section p {
    width: 800px;
    margin: 0 auto;
  }
}
/*お知らせ*/
.top_info_section {
  position: relative;
  background: #f5fafd;
  width: 100%;
  padding: 150px 20px 50px;
}
.top_info_section .top_info {
  margin: 0 auto;
  width: 100%;
}
.top_info_section .top_info h2 {
  position: relative;
}
.top_info_section .top_info h2 .news_icon {
  fill: #777;
  width: 60px;
  position: absolute;
  top: -40px;
  left: calc(50% - 20px);
}
.top_info_section .top_info .new-entry-cards {
  margin: 0;
}
.top_info_section .top_info .new-entry-cards .a-wrap {
  border-bottom: solid 1px #fff;
  padding: 10px 0;
}
.top_info_section .top_info .new-entry-cards .a-wrap:hover .new-entry-card-content .new-entry-card-title {
  text-decoration-color: #037cca;
}
.top_info_section .top_info .new-entry-cards .a-wrap:hover .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  background: #fff;
}
.top_info_section .top_info .new-entry-cards .a-wrap .new-entry-card-content {
  display: flex;
  margin: 0;
}
.top_info_section .top_info .new-entry-cards .a-wrap .new-entry-card-content .new-entry-card-title {
  text-align: left;
  order: 1;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8em;
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-color: #ddd;
  transition: 0.5s;
}
.top_info_section .top_info .new-entry-cards .a-wrap .new-entry-card-content .new-entry-card-date {
  display: block;
  order: 0;
}
.top_info_section .top_info .new-entry-cards .a-wrap .new-entry-card-content .new-entry-card-date .new-entry-card-post-date {
  padding: 5px 10px;
  border-radius: 30px;
  background: #f0f0f0;
  transition: 0.5s;
}
.top_info_section .top_info .new-entry-cards .a-wrap .new-entry-card-content .new-entry-card-date .new-entry-card-update-date {
  display: none;
}
.top_info_section .top_info .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 0 0;
}

@media screen and (min-width: 768px) {
  .top_info_section {
    padding: 100px 0;
  }
  .top_info_section .top_info {
    width: 600px;
  }
}
/*アクセス*/
.top_access_section {
  position: relative;
  width: 100%;
  padding: 100px 20px 50px;
}
.top_access_section .top_access {
  margin: 0 auto;
  width: 100%;
}
.top_access_section .top_access h2 {
  position: relative;
}
.top_access_section .top_access h2 .access_icon {
  fill: #777;
  width: 60px;
  position: absolute;
  top: -50px;
  left: calc(50% - 30px);
}
.top_access_section .top_access iframe {
  border-radius: 30px;
}
.top_access_section .top_access .top_access_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.top_access_section .top_access .top_access_content > li {
  margin: 0 0 20px 0;
  width: 90%;
}
.top_access_section .top_access .top_access_content > li h3 {
  margin: 0 0 0 10px !important;
}
.top_access_section .top_access .top_access_content > li h3::before {
  background: none;
}
.top_access_section .top_access .top_access_content > li h3.top_access_train {
  position: relative;
}
.top_access_section .top_access .top_access_content > li h3.top_access_train::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 32px;
  background-image: url(/wp-content/uploads/2021/12/access_train_icon.svg);
  position: absolute;
  left: -20px;
  top: 4px;
}
.top_access_section .top_access .top_access_content > li h3.top_access_car {
  position: relative;
}
.top_access_section .top_access .top_access_content > li h3.top_access_car::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 20px;
  background-image: url(/wp-content/uploads/2021/12/access_car_icon.svg);
  position: absolute;
  left: -20px;
  top: 10px;
}
.top_access_section .top_access .top_access_content > li h3.top_access_bike {
  position: relative;
}
.top_access_section .top_access .top_access_content > li h3.top_access_bike::before {
  content: "";
  background-size: cover;
  width: 32px;
  height: 16px;
  background-image: url(/wp-content/uploads/2021/12/access_bike_icon.svg);
  position: absolute;
  left: -23px;
  top: 11px;
}
.top_access_section .top_access .top_access_content > li ul li {
  margin: 0 0 10px 0;
  width: 100%;
  list-style-type: disc;
}
.top_access_section .top_access .top_access_content p {
  margin: 0 0 40px 20px;
  line-height: 1em;
}
.top_access_section .top_access .top_access_content img {
  display: block;
  margin: 0 auto;
  height: 80px;
}
.top_access_section .top_access .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .top_access_section {
    padding: 100px 20px 100px;
  }
  .top_access_section .top_access {
    width: 90%;
  }
  .top_access_section .top_access iframe {
    width: 100%;
  }
  .top_access_section .top_access > p {
    text-align: center;
    margin: 10px 0 0 0;
    font-weight: bold;
  }
  .top_access_section .top_access .top_access_content {
    margin: 50px auto 20px;
  }
  .top_access_section .top_access .top_access_content > li {
    width: 370px;
  }
  .top_access_section .top_access .top_access_content > li:first-child {
    margin: 0 0 0 140px;
  }
  .top_access_section .top_access .top_access_content > li p {
    padding: 0 20px;
    font-size: 18px;
    margin: 10px 0 40px 0;
  }
  .top_access_section .top_access .top_access_content h3.top_access_train::before {
    width: 32px !important;
    height: 42px !important;
    left: -24px !important;
    top: 4px !important;
  }
  .top_access_section .top_access .top_access_content h3.top_access_car::before {
    width: 36px !important;
    height: 30px !important;
    left: -26px !important;
    top: 10px !important;
  }
  .top_access_section .top_access .top_access_content h3.top_access_bike::before {
    width: 44px !important;
    height: 22px !important;
    left: -31px !important;
    top: 11px !important;
  }
  .top_access_section .top_access .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_access_section .top_access .button a {
    margin: 0 0 20px 0;
    padding: 10px 40px;
  }
}
/*診療時間*/
.top_hours_section {
  position: relative;
  background: #f5fafd;
  width: 100%;
  padding: 150px 20px 50px;
}
.top_hours_section .top_hours {
  margin: 0 auto;
  width: 100%;
}
.top_hours_section .top_hours h2 {
  position: relative;
}
.top_hours_section .top_hours h2 .hours_icon {
  fill: #777;
  width: 60px;
  position: absolute;
  top: -70px;
  left: calc(50% - 30px);
}
.top_hours_section .top_hours table.info_hours {
  border-collapse: separate;
  border-radius: 30px;
  padding: 10px;
  background: #fff;
  margin: 0 0 20px 0;
}
.top_hours_section .top_hours table.info_hours tr:last-child th {
  border: 0;
}
.top_hours_section .top_hours table.info_hours tr:last-child td {
  border: 0;
}
.top_hours_section .top_hours table.info_hours tr th {
  background-color: #fff;
  padding: 10px 0;
  border: 0;
  border-bottom: solid 1px #eee;
  width: 40px;
}
.top_hours_section .top_hours table.info_hours tr td {
  background-color: #fff;
  border: 0;
  border-bottom: solid 1px #eee;
  text-align: center;
  width: 80px;
}
.top_hours_section .top_hours .hours_list {
  margin: 0;
  padding: 0;
}
.top_hours_section .top_hours .hours_list li {
  line-height: 2em;
  margin: 0px 0 0 40px;
}
.top_hours_section .top_hours .hours_list .general {
  position: relative;
}
.top_hours_section .top_hours .hours_list .general::before {
  content: "";
  background-size: cover;
  width: 18px;
  height: 18px;
  background-image: url(/wp-content/uploads/2021/12/hours_main_icon.svg);
  position: absolute;
  left: -25px;
  top: 4px;
}
.top_hours_section .top_hours .hours_list .child {
  position: relative;
}
.top_hours_section .top_hours .hours_list .child::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 21px;
  background-image: url(/wp-content/uploads/2021/12/hours_child_icon.svg);
  position: absolute;
  left: -28px;
  top: 2px;
}
.top_hours_section .top_hours .hours_list .food {
  position: relative;
}
.top_hours_section .top_hours .hours_list .food::before {
  content: "";
  background-size: cover;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/2021/12/hours_food_icon.svg);
  position: absolute;
  left: -25px;
  top: 3px;
}
.top_hours_section .top_hours .hours_list .online {
  position: relative;
}
.top_hours_section .top_hours .hours_list .online::before {
  content: "";
  background-size: cover;
  width: 16px;
  height: 16px;
  background-image: url(/wp-content/uploads/2021/12/hours_online_icon.svg);
  position: absolute;
  left: -24px;
  top: 6px;
}
.top_hours_section .top_hours .hours_list .woman {
  position: relative;
}
.top_hours_section .top_hours .hours_list .woman::before {
  content: "";
  background-size: cover;
  width: 23px;
  height: 24px;
  background-image: url(/wp-content/uploads/2021/12/hours_woman_icon.svg);
  position: absolute;
  left: -28px;
  top: 0px;
}
.top_hours_section .top_hours .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 0 0;
}

@media screen and (min-width: 768px) {
  .top_hours_section {
    padding: 150px 0 100px;
  }
  .top_hours_section .top_hours {
    width: 800px;
  }
  .top_hours_section .top_hours table.info_hours tr th {
    padding: 20px 0;
    width: 200px;
  }
  .top_hours_section .top_hours table.info_hours tr td {
    width: 80px;
  }
  .top_hours_section .top_hours .hours_list {
    padding: initial;
  }
  .top_hours_section .top_hours .hours_list .general::before {
    left: -24px;
    top: 8px;
  }
  .top_hours_section .top_hours .hours_list .child::before {
    top: 5px;
  }
  .top_hours_section .top_hours .hours_list .food::before {
    top: 6px;
  }
  .top_hours_section .top_hours .hours_list .online::before {
    top: 8px;
  }
}
/************************************
** 下層ページ
************************************/
.page .content {
  margin-top: 0;
}
.page .content .wrap {
  margin: 0;
  width: initial;
}
.page .content .wrap .main {
  padding: 0;
}
.page .content .wrap .main .entry-header .entry-title {
  text-align: center;
  background: #f6f3ea;
  padding: 30px 0;
  margin: 0 0 30px 0;
}
.page .content .wrap .main .entry-header .entry-title span {
  display: block;
  font-size: 0.8em;
}
.page .content .wrap .main .entry-header .date-tags {
  display: none;
}
.page .content .wrap .main .entry-content {
  width: 90%;
  margin: 0 auto;
}
.page .content .wrap .main .entry-content .sv {
  border-radius: 10px;
  margin: 20px auto;
}
.page .content .wrap .main .entry-content .sv img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.page .content .wrap .main .entry-content h2 {
  background: #f5fafd;
  border-radius: 10px;
  color: #037cca;
  font-weight: bolder;
  margin: 0 0 20px 0;
  padding: 20px;
  border: solid 2px #037cca;
}
.page .content .wrap .main .entry-content .case_list {
  background: #fff;
  border-radius: 10px;
  border: solid 1px #037cca;
  padding: 0 20px 20px;
  margin: 0 0 60px 0;
}
.page .content .wrap .main .entry-content .case_list h2 {
  margin: 20px 0;
  padding: 0;
  text-align: center;
  line-height: 1.6em;
  color: #333;
}

@media screen and (min-width: 768px) {
  .page .content {
    margin-top: 0;
  }
  .page .content .wrap {
    margin: 0;
    width: initial;
  }
  .page .content .wrap .main {
    padding: 0;
    overflow: hidden;
  }
  .page .content .wrap .main .entry-header .entry-title {
    padding: 60px 0;
  }
  .page .content .wrap .main .entry-content .sv {
    margin: 50px calc(50% - 50vw);
    width: 100vw;
  }
  .page .content .wrap .main .entry-content .sv img {
    height: 320px;
    width: 90%;
  }
  .page .content .wrap .main .entry-content h2 {
    font-size: 28px;
  }
  .page .content .wrap .main .entry-content .case_list {
    background: #fff;
    border-radius: 10px;
    border: solid 1px #037cca;
    padding: 20px 20px 60px 20px;
    margin: 0 0 60px 0;
  }
  .page .content .wrap .main .entry-content .case_list h2 {
    margin: 20px 0;
    padding: 0;
    text-align: center;
    line-height: 1.6em;
    color: #333;
  }
  .page .content .wrap .main .entry-content .case_list .button_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .page .content .wrap .main .entry-content .case_list .button_list .button {
    width: 300px;
    margin: 0 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .page .content .wrap .main .entry-content {
    width: 1000px;
  }
}
/*下層　診療案内*/
.page-id-760 article {
  background: #f5fafd;
}
.page-id-760 .medical_information_section {
  position: relative;
  width: 100%;
  padding: 50px 20px 0;
}
.page-id-760 .medical_information_section .top_medical_information {
  margin: 0 auto;
  width: 100%;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li {
  border-radius: 30px;
  background: #fff;
  margin: 0 auto 40px;
  width: 100%;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li h3 {
  text-align: center;
  font-size: 20px;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li h3::before {
  display: none;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li h3 span {
  font-size: 12px;
  display: block;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li p {
  padding: 0 20px;
  margin: 0 0 10px 0;
}
.page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li img {
  width: 100%;
  border-radius: 30px 30px 0 0;
}
.page-id-760 .medical_information_section .top_medical_information .button {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page-id-760 .medical_information_section .top_medical_information .button a {
  margin: 0 0 20px 0;
  padding: 10px 40px;
}

@media screen and (min-width: 768px) {
  .page-id-760 .medical_information_section .top_medical_information {
    margin: 0 auto;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li {
    width: 280px;
    margin: 0 0 40px 0;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li h3 {
    text-align: center;
    font-size: 18px;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li h3::before {
    display: none;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li h3 span {
    font-size: 16px;
    display: block;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li p {
    padding: 0 20px;
    font-size: 16px;
  }
  .page-id-760 .medical_information_section .top_medical_information .top_medical_information_content li img {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
  .page-id-760 .medical_information_section .top_medical_information .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-id-760 .medical_information_section .top_medical_information .button a {
    margin: 0 0 20px 0;
    padding: 10px 40px;
  }
}
/*予防接種*/
.page-id-770 .vpd a {
  background: 0;
}
.page-id-770 .vpd a::before {
  background: 0;
}

/*部位別共通*/
.case_content_lead {
  font-size: 16px;
  font-weight: bold;
}

.content_bottom_troubles {
  background: #f5fafd;
  padding: 40px 20px 20px;
  margin: 80px 0;
}
.content_bottom_troubles h2 {
  background: none;
  padding: 0 !important;
  margin: 0 0 20px 0 !important;
  color: #4c4537;
  text-align: center;
}
.content_bottom_troubles p {
  font-size: 18px;
  margin: 0 0 10px 0;
}
.content_bottom_troubles ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.content_bottom_troubles ul li {
  width: 48%;
}
.content_bottom_troubles ul li a {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  border: solid 1px #037cca;
  text-decoration: none;
}
.content_bottom_troubles ul li a h3 {
  margin: 0 !important;
  border: 0 !important;
  font-size: 12px;
  text-align: center;
}
.content_bottom_troubles ul li a h3::before {
  display: none;
}
.content_bottom_troubles ul li a img {
  height: 100px;
  display: block;
  margin: 0 auto;
}

.wp-block-spacer_case {
  height: 50px;
}

.case_list h2::first-letter {
  font-size: 36px;
  color: #037cca;
}

.case_content h2.case {
  position: relative;
  padding: 0 0 0 46px !important;
  font-size: 24px;
}
.case_content h2.case::before {
  content: "";
  background-image: url(/wp-content/uploads/2021/10/memo_icon.png);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  background-size: cover;
  position: absolute;
  top: -8px;
  left: 0;
}
.case_content h2.case span {
  font-size: 0.8em;
  display: inline-block;
  color: #f89276;
  border: solid 1px #f89174;
  padding: 5px 10px 5px 10px;
  border-radius: 20px;
  margin: 5px 0 0 5px;
  background: #f5fafd;
}
.case_content h2.case span::after {
  content: "etc";
  padding: 0 0 0 10px;
  font-size: 14px;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  .case_content_lead {
    font-size: 20px;
  }
  .content_bottom_troubles {
    padding: 80px 0 60px;
    margin: 120px 0 0 0;
  }
  .content_bottom_troubles .wp-block-group__inner-container {
    width: 1200px;
    margin: 0 auto;
  }
  .content_bottom_troubles p {
    text-align: center;
    margin: 0 0px 30px 0;
  }
  .content_bottom_troubles ul li {
    width: 17%;
  }
  .content_bottom_troubles ul li a {
    padding: 20px 0 30px;
  }
  .content_bottom_troubles ul li a h3 {
    font-size: 16px;
    padding: 20px 0 0 0;
  }
  .wp-block-spacer_case {
    height: 150px;
  }
  .case_content h2.case span {
    font-size: 0.6em;
    margin: 0 0 0 8px;
    top: 3px;
    position: absolute;
  }
  .case_content h2.case::before {
    top: -2px;
  }
}
/*covid-19*/
.page-id-752 .five_measures ul {
  padding-left: 0;
}
.page-id-752 .five_measures ul li {
  margin: 0 0 20px 0;
}
.page-id-752 .five_measures ul h3 {
  margin: 0 0 0 0 !important;
  padding: 10px 0;
}
.page-id-752 .five_measures ul h3::before {
  content: none;
}
.page-id-752 .five_measures ul h3 span {
  color: #037cca;
  display: block;
  padding: 10px 0;
  text-align: center;
  margin: 0 0 10px 0;
  border-top: solid 1px #037cca;
  border-bottom: solid 1px #037cca;
}

@media screen and (min-width: 768px) {
  .page-id-752 .five_measures ul li {
    margin: 0 0 40px 0;
  }
}
/*小児科・産婦人科オンラインとの連携*/
.page-id-1246 .aikotoba {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #037cca;
}

/*診療時間・アクセス*/
.page-id-122 .entry-header {
  margin: 0 0 60px 0;
}
.page-id-122 .top_hours_section {
  position: relative;
  background: none;
  width: 100%;
  padding: 0px 0 50px;
}
.page-id-122 .top_hours_section .top_hours table.info_hours {
  border-radius: 10px;
  border: solid 2px #037cca;
}
.page-id-122 .top_hours_section .top_hours table.info_hours tr:last-child th {
  border: 0;
}
.page-id-122 .top_hours_section .top_hours table.info_hours tr:last-child td {
  border: 0;
}
.page-id-122 .top_hours_section .top_hours table.info_hours tr th {
  background-color: #fff;
  padding: 10px 0;
  border: 0;
  border-bottom: solid 1px #eee;
  width: 40px;
}
.page-id-122 .top_hours_section .top_hours table.info_hours tr td {
  background-color: #fff;
  border: 0;
  border-bottom: solid 1px #eee;
  text-align: center;
  width: 30px;
}
.page-id-122 .top_hours_section .top_hours .hours_list {
  margin: 0;
  padding: 0;
}
.page-id-122 .top_hours_section .top_hours .hours_list li {
  line-height: 1.4em;
  margin: 0px 0 10px 40px;
}
.page-id-122 .info_hours_note {
  text-indent: -1em;
  padding-left: 1em;
  margin: 0;
  line-height: 1.4em;
}
.page-id-122 .metaslider {
  margin: 0 0 80px 0 !important;
}
.page-id-122 .metaslider .caption-wrap {
  background: #037cca;
  opacity: 1;
}
.page-id-122 .metaslider img {
  display: block;
  margin: 0 auto 30px !important;
  height: auto;
}
.page-id-122 .top_access_section {
  position: relative;
  width: 100%;
  padding: 0 0 50px;
}
.page-id-122 .top_access_section iframe {
  border-radius: 30px;
  width: 100%;
  height: 300px;
}
.page-id-122 .top_access_section .top_access {
  margin: 0 auto;
  width: 100%;
}
.page-id-122 .top_access_section .top_access h2 {
  position: relative;
}
.page-id-122 .top_access_section .top_access h2 .access_icon {
  fill: #777;
  width: 60px;
  position: absolute;
  top: -50px;
  left: calc(50% - 30px);
}
.page-id-122 .top_access_section .top_access h4 {
  text-align: center;
}
.page-id-122 .top_access_section .top_access .top_access_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.page-id-122 .top_access_section .top_access .top_access_content > li {
  margin: 0 0 20px 0;
  width: 100%;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3 {
  margin: 0 0 0 10px !important;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3::before {
  background: none;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3.top_access_train {
  position: relative;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3.top_access_train::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 32px;
  background-image: url(/wp-content/uploads/2021/12/access_train_icon.svg);
  position: absolute;
  left: -20px;
  top: 4px;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3.top_access_car {
  position: relative;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3.top_access_car::before {
  content: "";
  background-size: cover;
  width: 24px;
  height: 20px;
  background-image: url(/wp-content/uploads/2021/12/access_car_icon.svg);
  position: absolute;
  left: -20px;
  top: 10px;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3.top_access_bike {
  position: relative;
}
.page-id-122 .top_access_section .top_access .top_access_content > li h3.top_access_bike::before {
  content: "";
  background-size: cover;
  width: 32px;
  height: 16px;
  background-image: url(/wp-content/uploads/2021/12/access_bike_icon.svg);
  position: absolute;
  left: -23px;
  top: 11px;
}
.page-id-122 .top_access_section .top_access .top_access_content > li ul li {
  margin: 0 0 10px 0;
  width: 100%;
  list-style-type: disc;
}
.page-id-122 .top_access_section .top_access .top_access_content p {
  margin: 0 0 40px 20px;
  line-height: 1em;
}
.page-id-122 .top_access_section .top_access .top_access_content img {
  display: block;
  margin: 0 auto 30px;
  height: auto;
}
.page-id-122 .top_access_section .top_access .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .page-id-122 .entry-header {
    margin: 0 0 60px 0;
  }
  .page-id-122 .top_hours_section .top_hours {
    width: 1000px;
  }
  .page-id-122 table.info_hours {
    font-size: 20px;
  }
  .page-id-122 .metaslider {
    width: 800px !important;
    margin: 0 auto 80px !important;
  }
  .page-id-122 .metaslider .caption-wrap {
    padding: 20px;
  }
  .page-id-122 .top_access_section {
    padding: 100px 20px 100px;
  }
  .page-id-122 .top_access_section iframe {
    width: 100%;
    height: 400px;
  }
  .page-id-122 .top_access_section .top_access {
    width: 100%;
  }
  .page-id-122 .top_access_section .top_access > p {
    text-align: center;
    margin: 10px 0 0 0;
    font-weight: bold;
  }
  .page-id-122 .top_access_section .top_access .top_access_content {
    margin: 50px auto 20px;
  }
  .page-id-122 .top_access_section .top_access .top_access_content > li {
    width: 230px;
  }
  .page-id-122 .top_access_section .top_access .top_access_content > li:first-child {
    margin: 0;
    width: 350px;
  }
  .page-id-122 .top_access_section .top_access .top_access_content > li:last-child {
    margin: 0 0 0 50px;
    width: 250px;
  }
  .page-id-122 .top_access_section .top_access .top_access_content > li p {
    padding: 0 20px;
    font-size: 18px;
    margin: 10px 0 40px 0;
  }
  .page-id-122 .top_access_section .top_access .top_access_content h3.top_access_train::before {
    width: 32px !important;
    height: 42px !important;
    left: -24px !important;
    top: 4px !important;
  }
  .page-id-122 .top_access_section .top_access .top_access_content h3.top_access_car::before {
    width: 36px !important;
    height: 30px !important;
    left: -26px !important;
    top: 10px !important;
  }
  .page-id-122 .top_access_section .top_access .top_access_content h3.top_access_bike::before {
    width: 44px !important;
    height: 22px !important;
    left: -31px !important;
    top: 11px !important;
  }
  .page-id-122 .top_access_section .top_access .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-id-122 .top_access_section .top_access .button a {
    margin: 0 0 20px 0;
    padding: 10px 40px;
  }
}
/*オンライン診療*/
.page-id-779 .order1 {
  order: 1;
  margin: 0 0 20px 0 !important;
}
.page-id-779 .order2 {
  order: 2;
}

@media screen and (min-width: 768px) {
  .page-id-779 .order1 {
    order: 2;
  }
  .page-id-779 .order2 {
    order: 1;
    margin: 0 60px 0 0;
  }
}
/*クリニックについて*/
.page-id-754 .feature_section {
  position: relative;
  width: 100%;
  padding: 50px 20px 50px;
}
.page-id-754 .feature_section .top_feature {
  margin: 0 auto;
  width: 100%;
}
.page-id-754 .feature_section .top_feature .top_feature_content {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px 0 0 0;
}
.page-id-754 .feature_section .top_feature .top_feature_content li {
  border-radius: 10px;
  background: #f5fafd;
  margin: 0 0 40px 0 !important;
  padding: 20px;
}
.page-id-754 .feature_section .top_feature .top_feature_content li:nth-child(odd) {
  margin: 0;
}
.page-id-754 .feature_section .top_feature .top_feature_content li .number {
  font-family: "Montserrat";
  font-style: italic;
  font-size: 48px;
  text-align: left;
  margin: -40px 0 0px -40px;
  color: #d0edff;
  line-height: 1em;
}
.page-id-754 .feature_section .top_feature .top_feature_content li .feature_title {
  text-align: center;
  font-size: 24px;
  line-height: 1.4em;
}
.page-id-754 .feature_section .top_feature .top_feature_content li p {
  margin: 5px 0 0 0;
  text-align: justify;
  line-height: 1.6em;
  letter-spacing: 0.02em;
}
.page-id-754 .feature_section .top_feature .top_feature_content li img {
  display: block;
  margin: 0 auto;
  height: 40px;
}
.page-id-754 .feature_section .top_feature .button {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}
.page-id-754 .feature_section .top_feature .button a {
  margin: -10px 0 0 0;
  padding: 10px 20px;
  font-size: 16px;
}
.page-id-754 .kakaritsuke_section .box_blue {
  display: block;
  padding: 10px 20px 20px 20px !important;
}
.page-id-754 .kakaritsuke_section .box_blue li:last-child {
  border: 0;
}
.page-id-754 .hospital_list {
  padding-left: 0 !important;
  margin: 40px 0 !important;
}
.page-id-754 .hospital_list .ku {
  margin: 30px 0 -5px 0;
  line-height: 0;
}

@media screen and (min-width: 768px) {
  .page-id-754 .feature_section {
    padding: 100px 20px 50px;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content {
    justify-content: space-evenly;
    margin: 50px 0;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li {
    width: 400px;
    position: relative;
    margin: 40px 0 40px 0 !important;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li .number {
    font-size: 100px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li .feature_title {
    text-align: left;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li h3 {
    text-align: center;
    font-size: 20px;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li h3::before {
    display: none;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li h3 span {
    font-size: 16px;
    display: block;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li p {
    padding: 0 20px;
    font-size: 18px;
    margin: 10px 0 0 0;
  }
  .page-id-754 .feature_section .top_feature .top_feature_content li img {
    width: 100%;
    height: 80px;
    border-radius: 30px 30px 0 0;
  }
  .page-id-754 .feature_section .top_feature .button {
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .page-id-754 .feature_section .top_feature .button a {
    margin: 0 0 20px 0;
    padding: 10px 20px;
  }
}
/*院内紹介*/
.page-id-756 figure {
  margin: 0 0 20px 0 !important;
  border-radius: 20px;
}
.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 .name {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.page-id-758 .name .name_title {
  font-size: 0.8em;
}
.page-id-758 .doctor_intro div:first-child {
  order: 2;
}
.page-id-758 .doctor_intro div:last-child {
  order: 1;
}
.page-id-758 figure {
  width: 80%;
  margin: 0 auto !important;
  display: block;
}
.page-id-758 .list_noline span {
  display: block;
  color: #037cca;
}

@media screen and (min-width: 768px) {
  .page-id-758 .doctor_intro div:first-child {
    order: 1;
  }
  .page-id-758 .doctor_intro div:last-child {
    order: 2;
  }
}
/*よくある質問*/
.qa_anchor {
  padding-left: 0 !important;
}

.questions h3 {
  padding: 0 0 10px 45px;
  line-height: 1.6em;
}
.questions h3:before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  width: 35px;
  height: 35px;
  border-radius: 40px;
  background: #f6f3ea;
  font-size: 18px;
  color: #4a81ca;
  line-height: 2;
}
.questions .answer {
  position: relative;
  padding: 10px 20px 10px 45px;
  margin-bottom: 50px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.questions .answer:before {
  content: "A.";
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 20px;
  color: #f1a0b4;
}

@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: 140px;
  }
}
/*小児科・産婦人科オンラインジャーナルまとめ*/
.page-id-1277 .sidebar h3::before {
  content: none;
}
.page-id-1277 .sidebar .toc {
  margin: 0;
  padding: 0;
}
.page-id-1277 .sidebar .toc .toc-list > li {
  visibility: hidden;
}
.page-id-1277 .sidebar .toc .toc-list > li ol {
  visibility: visible;
}
.page-id-1277 .sidebar .toc .toc-list li {
  margin: 0 0 5px 0;
  border-bottom: solid 1px #ccc;
  padding: 5px 0 5px 0;
  font-size: 16px;
}
.page-id-1277 .sidebar .toc .toc-list li::marker {
  position: absolute;
  content: "● ";
  color: #037cca;
}
.page-id-1277 .main .entry-header .entry-title {
  padding: 30px 10px !important;
}
.page-id-1277 .main .banner {
  display: flex;
  justify-content: flex-start;
  flex-wrap: initial;
  padding: 0 !important;
  margin: 0 0 40px 0;
}
.page-id-1277 .main .banner li:first-child a {
  border: solid 1px #f06e80;
  border-radius: 10px;
  padding: 7px 7px 0px 7px;
  display: block;
}
.page-id-1277 .main .banner li:last-child a {
  border: solid 1px #68a146;
  border-radius: 10px;
  padding: 7px 7px 0px 7px;
  display: block;
}
.page-id-1277 .main .button_link_list .button a {
  border: 0;
  font-size: 16px;
}
.page-id-1277 .main h4 {
  margin-bottom: 0;
}
.page-id-1277 .main .wp-block-columns {
  gap: 0;
}
.page-id-1277 .main .wp-block-columns .wp-block-column {
  display: flex;
  border-bottom: solid 1px #ccc;
  padding: 20px 0;
}
.page-id-1277 .main .wp-block-columns .wp-block-column figure {
  order: 0;
  flex-basis: 30%;
}
.page-id-1277 .main .wp-block-columns .wp-block-column figure img {
  width: 100%;
}
.page-id-1277 .main .wp-block-columns .wp-block-column figure img:hover {
  opacity: 0.8;
}
.page-id-1277 .main .wp-block-columns .wp-block-column p {
  order: 1;
  margin: 0 0 0 0;
  padding: 0 10px;
  flex-basis: 70%;
  border: none;
  letter-spacing: 0;
  line-height: 1.6em;
  font-size: 16px;
  font-weight: bold;
}
.page-id-1277 .main .wp-block-columns .wp-block-column p a {
  text-decoration: none;
}

@media screen and (min-width: 767px) {
  .page-id-1277 .main {
    width: calc(100vw - 500px) !important;
    overflow: visible !important;
  }
  .page-id-1277 .main header {
    width: 100vw;
  }
  .page-id-1277 .main .entry-content {
    width: calc(100vw - 500px);
  }
  .page-id-1277 .main h4 {
    margin-bottom: 20px;
  }
  .page-id-1277 .main .wp-block-columns {
    gap: 2em;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column {
    display: initial;
    border-bottom: 0;
    padding: 0;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column figure {
    order: 0;
    flex-basis: 30%;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column figure img {
    width: 100%;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column p {
    order: 1;
    margin: 0 0 0 0;
    padding: 0 10px;
    flex-basis: 70%;
    border: none;
    letter-spacing: 0;
    line-height: 1.6em;
    font-size: 16px;
    font-weight: bold;
    height: 3.6em;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column p a {
    text-decoration: none;
  }
  .page-id-1277 .sidebar .sidebar-scroll {
    padding-top: 160px !important;
  }
  .page-id-1277 .banner {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1380px) {
  .page-id-1277 .main {
    width: 90% !important;
    margin: 0 auto;
  }
  .page-id-1277 .main header {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-id-1277 .main .entry-content {
    width: initial !important;
  }
  .page-id-1277 .main .wp-block-columns {
    gap: 2em;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column {
    display: initial;
    border-bottom: 0;
    padding: 0;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column figure {
    order: 0;
    flex-basis: 30%;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column figure img {
    width: 100%;
  }
  .page-id-1277 .main .wp-block-columns .wp-block-column p {
    font-size: 12px;
  }
  .page-id-1277 .sidebar .sidebar-scroll {
    padding-top: 0px !important;
  }
}
/*2022年患者満足度アンケート*/
/*年齢*/
.canvas_container_chart_age {
  position: relative;
  width: 80vw;
  height: 70vh;
  margin: 0 auto;
}

@media screen and (min-width: 767px) {
  .canvas_container_chart_age {
    width: 600px;
    height: 600px;
    margin: 0 auto;
  }
}
/*性別*/
.canvas_container_chart_sex {
  position: relative;
  width: 65vw;
  height: 45vh;
  margin: 0 auto;
}

@media screen and (min-width: 767px) {
  .canvas_container_chart_sex {
    width: 600px;
    height: 600px;
    margin: 0 auto;
  }
}
/*外来の種類*/
.canvas_container_chart_outpatient {
  position: relative;
  width: 80vw;
  height: 75vh;
  margin: 0 auto;
}

@media screen and (min-width: 767px) {
  .canvas_container_chart_outpatient {
    width: 600px;
    height: 600px;
    margin: 0 auto;
  }
}
/*全体的な満足度を教えてください*/
.canvas_container_chart_cs_total {
  position: relative;
  width: 65vw;
  height: 60vh;
  margin: 0 auto;
}

.opinion_strong {
  font-size: 24px;
  margin: 0 0 0 0;
}

@media screen and (min-width: 767px) {
  .canvas_container_chart_cs_total {
    width: 600px;
    height: 600px;
    margin: 0 auto;
  }
  .opinion_strong {
    font-size: 32px;
    margin: 30px 0 0 0;
  }
}
/*ご意見・ご要望*/
.opinion .notice {
  border: 0 !important;
  padding-top: 0;
}
.opinion .notice::before {
  content: none;
}
.opinion p {
  position: relative;
  padding-left: 1em;
  border-top: solid #ccc 1px;
  padding-top: 25px;
}
.opinion p::before {
  width: 10px;
  height: 10px;
  background: #037cca;
  border-radius: 10px;
  position: absolute;
  top: 33px;
  left: 0;
  content: "";
}
.opinion .opinion_answer {
  position: relative;
  padding: 10px 20px 10px 45px;
  margin: -20px 0 50px 0;
  border: 1px solid #f1a0b4;
  border-radius: 10px;
}
.opinion .opinion_answer::before {
  content: "→";
  position: absolute;
  top: 4px;
  left: 0.5em;
  font-size: 20px;
  color: #f1a0b4;
  background: 0;
}

@media screen and (min-width: 767px) {
  .opinion .notice {
    text-align: right;
    margin: 0 0 30px 0;
  }
  .opinion .notice::before {
    content: none;
  }
  .opinion p {
    position: relative;
    padding-left: 1em;
  }
  .opinion .opinion_answer {
    position: relative;
    padding: 20px 20px 20px 40px;
  }
  .opinion .opinion_answer::before {
    content: "→";
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 20px;
    color: #f1a0b4;
  }
}
/*採用情報*/
.page-id-2693 .lead {
  font-size: 20px;
  font-weight: bold;
}
.page-id-2693 .price_table table tr th {
  width: 50%;
}

@media screen and (min-width: 767px) {
  .page-id-2693 .lead {
    font-size: 24px;
  }
  .page-id-2693 .price_table {
    width: 500px !important;
  }
  .page-id-2693 table.table1 tr th {
    width: 200px;
  }
}
/*サイトマップ*/
#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: #037cca;
  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: #f5fafd;
}

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

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

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

/*お知らせ　詳細ページ*/
.single .entry-content {
  border: solid 1px #555;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}
.single .under-entry-content figure {
  display: none;
}
.single h3 {
  background: none;
  padding: 0 0 0 20px;
}

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