@charset "UTF-8";
/************************************
** 変数
************************************/
/* Local fonts: place Montserrat .woff2 files in ../font/ */
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  src: url("../font/Montserrat-400.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  src: url("../font/Montserrat-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-weight: 400;
  src: url("../font/NotoSerifJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-weight: 500;
  src: url("../font/NotoSerifJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-weight: 700;
  src: url("../font/NotoSerifJP-Bold.woff2") format("woff2");
  font-display: swap;
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/************************************
** サイト共通
************************************/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  line-height: 170%;
  color: #384764;
  text-align: justify;
  letter-spacing: 0.04em;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #6c006c;
  opacity: 0.8;
}

h1 {
  font-size: 2.25rem;
  line-height: 140%;
}
@media (width <= 992px) {
  h1 {
    font-size: 2rem;
    line-height: 150%;
  }
}

h2 {
  font-size: 2rem;
  line-height: 150%;
}
@media (width <= 992px) {
  h2 {
    font-size: 1.625rem;
  }
}

h3 {
  font-size: 1.75rem;
  line-height: 150%;
}
@media (width <= 992px) {
  h3 {
    font-size: 1.375rem;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 150%;
}
@media (width <= 992px) {
  h4 {
    font-size: 1.25rem;
  }
}

li::marker {
  color: #5c928a;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

@media (width <= 992px) {
  .scroll_table {
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.display_none {
  display: none;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: justify;
}

.align_center {
  text-align: center;
}

.mt10 {
  margin-top: 0.625rem;
}

.mt20 {
  margin-top: 1.25rem;
}

.mt30 {
  margin-top: 1.875rem;
}

.mt50 {
  margin-top: 3.125rem;
}

.mb10 {
  margin-bottom: 0.625rem;
}

.mb20 {
  margin-bottom: 1.25rem;
}

@media (width <= 992px) {
  .m_br::after {
    white-space: pre;
    content: "\a";
  }
}

.color_red {
  color: rgb(226, 86, 67);
}

/************************************
** ボタン
************************************/
.btn,
.btn_group,
.btn_solid,
.btn_orange {
  position: relative;
  display: inline-block;
  justify-content: space-between;
  padding: 1.25rem 4.375rem 1.25rem 4.375rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  color: white;
  text-decoration: none;
  vertical-align: middle;
  background: #5c928a;
  border-radius: 40px;
}
@media (width <= 992px) {
  .btn,
  .btn_group,
  .btn_solid,
  .btn_orange {
    padding: 1rem 3.75rem;
    font-size: 1rem;
  }
}
.btn::before,
.btn_group::before,
.btn_solid::before,
.btn_orange::before {
  position: absolute;
  top: calc(50% - 0.625rem);
  left: 3.375rem;
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  background-color: #fdf339;
  border-radius: 10px;
  transition: all 0.2s;
}
@media (width <= 992px) {
  .btn::before,
  .btn_group::before,
  .btn_solid::before,
  .btn_orange::before {
    left: 2.75rem;
  }
}
.btn::after,
.btn_group::after,
.btn_solid::after,
.btn_orange::after {
  position: absolute;
  top: calc(50% - 0.21875rem);
  right: 3.375rem;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: solid 2px #fdf339;
  border-right: solid 2px #fdf339;
  transition: all 0.2s;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .btn::after,
  .btn_group::after,
  .btn_solid::after,
  .btn_orange::after {
    right: 2.75rem;
  }
}
.btn:hover,
.btn_group:hover,
.btn_solid:hover,
.btn_orange:hover {
  color: white;
  opacity: 0.9;
}
.btn:hover::after,
.btn_group:hover::after,
.btn_solid:hover::after,
.btn_orange:hover::after {
  right: 2.625rem;
}

.btn_orange {
  color: #384764 !important;
  background-color: #fdf339;
}
.btn_orange::before {
  background-color: #384764;
}
.btn_orange::after {
  border-top: solid 2px #384764;
  border-right: solid 2px #384764;
}
.btn_orange:hover {
  color: #384764;
}

.btn_solid {
  color: #5c928a;
  background-color: white;
  background-image: none;
  border: solid 1px #5c928a;
}
.btn_solid::before {
  background-color: #5c928a;
}
.btn_solid::after {
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
}
.btn_solid:hover {
  color: #5c928a;
  background: #f0f9f8;
}

.btn_group {
  width: 100%;
  padding: 1.25rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #384764;
  text-align: center;
  background-color: white;
  background-image: none;
  filter: drop-shadow(0 0 4px rgba(77, 77, 77, 0.25));
  border: 0;
}
.btn_group::after {
  position: absolute;
  top: 1.875rem;
  left: calc(50% + 11.25rem);
  display: inline-block;
  width: 1.625rem;
  height: 0.25rem;
  content: "";
  background-image: url("../images/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  transform: rotate(0deg);
}
.btn_group:hover {
  color: #384764;
  filter: drop-shadow(0 0 6px rgba(77, 77, 77, 0.15));
}
.btn_group:hover::after {
  left: calc(50% + 11.5625rem);
}
@media (width <= 992px) {
  .btn_group:hover::after {
    left: calc(50% + 9.0625rem);
  }
}
@media (width <= 992px) {
  .btn_group {
    font-size: 1rem;
  }
  .btn_group::after {
    left: calc(50% + 8.75rem);
  }
}

/************************************
** 電話ボタン・web問診・web予約
************************************/
.tel_btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 10rem;
  height: 2.1875rem;
  padding-left: 1.25rem;
  margin-inline: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #384764;
  background-color: #f0f9f8;
  border-radius: 4px;
  transition: 0.3s;
}
.tel_btn::before {
  position: absolute;
  top: 0.4375rem;
  left: 0.3125rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background-image: url("../images/icon/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.tel_btn:hover {
  color: #384764;
  opacity: 0.7;
}

.interview_btn,
.web_btn {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 11.25rem;
  height: 4.25rem;
  padding-left: 1.875rem;
  margin-inline: 0.3125rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  background-color: #384764;
  border-radius: 4px;
  transition: 0.3s;
}
.interview_btn::before,
.web_btn::before {
  position: absolute;
  top: 1rem;
  left: 0.9375rem;
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  content: "";
  background-image: url("../images/icon/list.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.interview_btn:hover,
.web_btn:hover {
  color: white;
  opacity: 0.7;
}

.web_btn {
  min-width: 13.75rem;
  color: #384764;
  background-color: #fdf339;
}
.web_btn::before {
  background-image: url("../images/icon/calendar.svg");
}
.web_btn:hover {
  color: #384764;
  opacity: 0.7;
}

/************************************
** 上に戻るボタン
************************************/
.scroll_top {
  position: fixed;
  bottom: 0.625rem;
  left: 0.625rem;
  z-index: 100;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.625rem;
  pointer-events: none;
  visibility: hidden;
  background-color: #5c928a;
  border: solid 2px white;
  border-radius: 8px;
  opacity: 0;
}
@media (width <= 992px) {
  .scroll_top {
    right: 0.3125rem;
    bottom: 6.25rem;
    scale: 80%;
  }
}
.scroll_top::after {
  position: absolute;
  top: calc(50% - 0.1875rem);
  right: calc(50% - 0.28125rem);
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: solid 2px white;
  border-right: 0;
  border-left: solid 2px white;
  transition: all 0.2s;
  transform: rotate(45deg);
}
.scroll_top:hover {
  opacity: 0.9;
}
.scroll_top:hover::after {
  top: calc(50% - 0.5rem);
}

/************************************
** 初診WEB予約追従ボタン
************************************/
.scroll_web {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  z-index: 100;
  display: block;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.scroll_web_link:hover img {
  opacity: 0.8;
}
.scroll_web_close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1rem;
  line-height: 1;
  color: white;
  cursor: pointer;
  background-color: #384764;
  border: solid 2px white;
  border-radius: 50%;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.2);
}
.scroll_web_close:hover, .scroll_web_close:focus-visible {
  background-color: #5c928a;
}
@media (width <= 992px) {
  .scroll_web {
    display: none;
  }
}

/************************************
** モバイル時下部固定ボタン
************************************/
.footer_fix_mobile {
  display: none;
}
@media (width <= 992px) {
  .footer_fix_mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}
.footer_fix_mobile a {
  display: inline-block;
  justify-content: space-between;
  width: 50vw;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}
.footer_fix_mobile a::before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: -0.4375rem;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.footer_fix_mobile .footer_fix_tel {
  background: #6d4141;
  border-left: 1px solid white;
}
.footer_fix_mobile .footer_fix_tel::before {
  background-image: url("../images/icon/phone-w.svg");
}
.footer_fix_mobile .footer_fix_interview {
  background: #384764;
}
.footer_fix_mobile .footer_fix_interview::before {
  margin-right: 0.3125rem;
  background-image: url("../images/icon/list.svg");
}
.footer_fix_mobile .footer_fix_web {
  color: #384764;
  background: #fdf339;
}
.footer_fix_mobile .footer_fix_web::before {
  margin-right: 0.3125rem;
  background-image: url("../images/icon/calendar.svg");
}
.footer_fix_mobile .footer_fix_map {
  background: #5c928a;
  border-left: 1px solid white;
}
.footer_fix_mobile .footer_fix_map::before {
  margin-right: 0.3125rem;
  background-image: url("../images/icon/pin.svg");
}

/************************************
** テーブル
************************************/
.wp-block-table th {
  font-weight: 500;
  background-color: #f0f9f8;
  border: solid 1px #dde1e8 !important;
}
.wp-block-table td {
  background-color: white;
  border: solid 1px #dde1e8 !important;
}

/************************************
** 診療時間
************************************/
.info_hours_section {
  margin-bottom: 3.125rem;
}
@media (width <= 992px) {
  .info_hours_section {
    margin-bottom: 0rem;
  }
}

.info_hours {
  max-width: 62.5rem;
  padding: 2rem;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  text-align: center;
  background-color: white;
  border-radius: 0.375rem;
}
@media (width <= 992px) {
  .info_hours {
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.625rem;
  }
}
.info_hours table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}
.info_hours tbody tr th {
  padding: 0.625rem 0;
  font-weight: 700;
  text-align: left;
  border: 0;
  border-bottom: solid 1px #d5e6e3;
}
@media (width <= 992px) {
  .info_hours tbody tr th {
    font-size: 0.75rem;
  }
}
.info_hours tbody tr td {
  padding: 0.625rem 0;
  font-weight: 400;
  border: 0;
  border-bottom: solid 1px #d5e6e3;
}
@media (width <= 992px) {
  .info_hours tbody tr td {
    font-size: 0.75rem;
  }
}
.info_hours tbody tr td span {
  color: #5c928a;
}
.info_hours tbody tr:first-child th {
  width: 30%;
}
.info_hours tbody tr:last-child th,
.info_hours tbody tr:last-child td {
  border: 0;
}

/************************************
** マップ
************************************/
.info_map iframe {
  height: 18.75rem;
  margin-bottom: 1.25rem;
  border-radius: 0.5rem;
}
@media (width <= 992px) {
  .info_map iframe {
    margin-bottom: 0.625rem;
  }
}
.info_map table {
  position: relative;
  display: flex;
}
.info_map table th {
  width: 6.25rem;
  padding-left: 0.9375rem;
  font-weight: 400;
  vertical-align: top;
}

/*********************************
* タイムライン
https://ponhiro.com/timeline-wordpress/
*********************************/
.ptimeline-wrap {
  margin: 0 auto 2rem;
}

.ptimeline-wrap .ptimeline {
  padding: 0 !important;
  list-style: none !important;
}

.ptimeline-wrap .ptimeline-label {
  padding: 3px 0 0 2px;
  font-size: 12px;
  font-weight: 500;
  color: #444444;
}

.ptimeline-wrap .ptimeline-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #b46626;
}

.ptimeline-wrap .ptimeline-main {
  padding: 0 0 1.5em;
  margin-top: 0.5em;
  font-size: 1rem;
  line-height: 1.8;
  color: #384764;
  border-bottom: dashed 1px #dde1e8;
}

.ptimeline-wrap .ptimeline-main img {
  display: block;
  margin: 1em auto;
}

.ptimeline-wrap .ptimeline-item {
  position: relative;
  padding: 0 0 1em 1.5em !important;
  margin-bottom: 0 !important;
  border: none;
}

.ptimeline-wrap .ptimeline .ptimeline-item::before {
  position: absolute;
  top: 25px;
  bottom: -3px;
  left: 5px;
  display: block;
  width: 3px;
  content: "";
  background: #ffede1 !important;
}

.ptimeline-wrap .ptimeline-item:last-child::before {
  content: none;
}

/*********************************
* タイムライン マーカー
*********************************/
.ptimeline-wrap .ptimeline-marker {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  border: solid 3px #f8b381;
  border-radius: 50%;
}

.ptimeline-wrap .ptimeline-item:first-child .ptimeline-marker,
.ptimeline-wrap .ptimeline-item:last-child .ptimeline-marker {
  background: #f8b381;
}

/* 四角 */
.ptimeline-wrap .square .ptimeline-marker {
  border-radius: 0;
}

/* アイコン */
.ptimeline-wrap .icon .ptimeline-item .ptimeline-marker {
  content: unset;
  background: none !important;
  border: none !important;
}

.ptimeline-wrap .icon .ptimeline-item .ptimeline-marker::before {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #b46626;
}

.ptimeline-wrap .icon .ptimeline-item:first-child .ptimeline-marker,
.ptimeline-wrap .icon .ptimeline-item:last-child .ptimeline-marker {
  background: none !important;
}

/* 画像 */
.ptimeline-wrap .tl-img .ptimeline-item .ptimeline-marker {
  content: unset;
  background: none !important;
  border: none !important;
}

.ptimeline-wrap .tl-img .ptimeline-item .ptimeline-marker::before {
  position: relative;
  top: -4px;
  left: -2px;
  display: inline-block;
  width: 40px;
  height: 40px;
  content: "";
  background-image: url("ここに画像URL"); /* 画像1番目 */
  background-repeat: no-repeat;
  background-size: contain;
}

.ptimeline-wrap .tl-img li:nth-of-type(2) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像2番目 */
}

.ptimeline-wrap .tl-img li:nth-of-type(3) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像3番目 */
}

.ptimeline-wrap .tl-img li:nth-of-type(4) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像4番目 */
}

.ptimeline-wrap .tl-img li:nth-of-type(5) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像5番目 */
}

.ptimeline-wrap .tl-img .ptimeline-item {
  padding: 0 0 1em 3em !important;
}

.ptimeline-wrap .tl-img .ptimeline-item::before {
  top: 30px;
  left: 15px;
}

/************************************
** ヘッダー・ナビ
************************************/
header {
  height: 9.375rem;
}
@media (width <= 1260px) {
  header {
    justify-content: normal;
  }
}
@media (width <= 992px) {
  header {
    height: 3.75rem;
    margin-bottom: 0.625rem;
  }
}

.header_container {
  display: grid;
  grid-template-rows: 3.75rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.625rem max((100vw - 1260px) / 2, 1.25rem);
}
@media (width <= 1260px) {
  .header_container {
    width: 100%;
  }
}
@media (width <= 992px) {
  .header_container {
    display: block;
  }
}
.header_container .header_logo {
  grid-row: 1/2;
  grid-column: 1/2;
}
.header_container .header_logo img {
  width: auto;
  max-width: 100%;
  height: 3.125rem;
  margin-top: 0.625rem;
  text-align: left;
}
@media (width <= 992px) {
  .header_container .header_logo img {
    height: 2.5rem;
    margin-top: 0;
  }
}
.header_container .nav_pc {
  position: relative;
  grid-row: 2/3;
  grid-column: 1/5;
  justify-self: center;
}
@media (width <= 992px) {
  .header_container .nav_pc {
    display: none;
  }
}
.header_container .nav_pc .nav_first {
  display: flex;
  padding-left: 0;
  margin-top: 1.875rem;
}
.header_container .nav_pc .nav_first li {
  position: relative;
  padding: 0.125rem 1.5625rem;
  padding-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  list-style: none;
}
.header_container .nav_pc .nav_first li::after {
  position: absolute;
  top: 0.3125rem;
  right: 0;
  width: 0.0625rem;
  height: 1.625rem;
  content: "";
  border-right: solid 1px #dde1e8;
}
.header_container .nav_pc .nav_first li:last-child::after {
  content: none;
}
.header_container .nav_pc .nav_first li a {
  color: #384764;
  text-decoration: none;
}
.header_container .nav_pc .nav_first li:has(.nav_second)::before {
  position: absolute;
  top: 1.875rem;
  left: calc(50% - 3px);
  width: 0.3125rem;
  height: 0.3125rem;
  content: "";
  border-top: solid 1px #5c928a;
  border-right: solid 1px #5c928a;
  transform: rotate(135deg);
}
.header_container .nav_pc .nav_first .nav_second {
  z-index: 9999;
  display: none;
}
.header_container .nav_pc .nav_first .nav_second.is_active {
  position: absolute;
  top: 2.5rem;
  left: 0;
  display: block;
  width: 15.625rem;
  padding: 0.625rem 0.3125rem;
  background-color: #f5f6f9;
}
.header_container .nav_pc .nav_first .nav_second.is_active li {
  padding: 0.625rem;
}
.header_container .nav_pc .nav_first .nav_second.is_active li::after {
  border: 0;
}
.header_container .header_info {
  z-index: 0;
  display: flex;
  grid-row: 1/2;
  grid-column: 3/5;
  justify-content: flex-end;
}
.header_container .header_info p {
  margin-top: 0.3125rem;
  margin-bottom: 0;
  font-size: 0.6875rem;
  text-align: center;
}
@media (width <= 992px) {
  .header_container .header_info {
    display: none;
  }
}
.header_container .nav_sp_wrap {
  display: none;
}
@media (width <= 992px) {
  .header_container .nav_sp_wrap {
    display: block;
  }
}
.header_container .nav_sp_wrap .hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  cursor: pointer;
  background-color: #5c928a;
  border: 0;
}
.header_container .nav_sp_wrap .hamburger .hamburger_bar,
.header_container .nav_sp_wrap .hamburger .hamburger_bar::before,
.header_container .nav_sp_wrap .hamburger .hamburger_bar::after {
  position: absolute;
  top: 1.25rem;
  display: block;
  width: 1.5625rem;
  height: 0.1875rem;
  content: "";
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s;
}
.header_container .nav_sp_wrap .hamburger .hamburger_bar::before {
  top: -0.5rem;
}
.header_container .nav_sp_wrap .hamburger .hamburger_bar::after {
  top: 0.5rem;
}
.header_container .nav_sp_wrap .hamburger .hamburger_label {
  position: relative;
  top: 0.9375rem;
  left: 0;
  font-size: 0.75rem;
  color: white;
  white-space: nowrap;
}
.header_container .nav_sp_wrap .nav_sp {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9998;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: #f0f9f8;
  transition: all 0.5s;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_logo {
  position: absolute;
  top: 0.875rem;
  left: 1.25rem;
  width: min(100% - 6.25rem, 14.625rem);
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_logo a {
  display: block;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_logo img {
  width: 100%;
  height: auto;
}
.header_container .nav_sp_wrap .nav_sp ul {
  padding: 4.375rem 10vw 0;
  border-radius: 0.5rem;
}
.header_container .nav_sp_wrap .nav_sp ul.nav_first {
  padding: 1.25rem;
  margin: 5rem 1.25rem 1.25rem;
  background-color: white;
  border-radius: 0.5rem;
}
.header_container .nav_sp_wrap .nav_sp ul li {
  list-style: none;
  border-bottom: solid 1px #dde1e8;
}
.header_container .nav_sp_wrap .nav_sp ul li:last-child {
  border-bottom: none;
}
.header_container .nav_sp_wrap .nav_sp ul li a {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0.625rem;
  padding-right: 2rem;
  padding-left: 0.9375rem;
  font-size: 1rem;
  color: #384764;
  text-decoration: none;
}
.header_container .nav_sp_wrap .nav_sp ul li a:hover, .header_container .nav_sp_wrap .nav_sp ul li a:active, .header_container .nav_sp_wrap .nav_sp ul li a:focus {
  color: #384764;
  opacity: 1;
}
.header_container .nav_sp_wrap .nav_sp ul li:not(.menu-item-has-children) > a {
  padding-right: 2.5rem;
}
.header_container .nav_sp_wrap .nav_sp ul li:not(.menu-item-has-children) > a::after {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transform: translateY(-50%) rotate(45deg);
}
.header_container .nav_sp_wrap .nav_sp ul li.menu-item-has-children > a {
  padding-right: 3.375rem;
}
.header_container .nav_sp_wrap .nav_sp ul li.menu-item-has-children > a::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  background-color: #5c928a;
  background-image: linear-gradient(90deg, transparent 30%, white 30%, white 70%, transparent 70%), linear-gradient(transparent 30%, white 30%, white 70%, transparent 70%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 2px, 2px 100%;
  border-radius: 50%;
  transition: background-color 0.3s ease, background-image 0.3s ease;
  transform: translateY(-50%);
}
.header_container .nav_sp_wrap .nav_sp ul li.menu-item-has-children.is_open > a::after {
  background-color: #d5e6e3;
  background-image: linear-gradient(90deg, transparent 30%, white 30%, white 70%, transparent 70%);
  background-size: 100% 2px;
}
.header_container .nav_sp_wrap .nav_sp ul li .nav_second li a {
  padding-right: 0.75rem;
}
.header_container .nav_sp_wrap .nav_sp ul li .nav_second li a::after {
  content: none !important;
}
.header_container .nav_sp_wrap .nav_sp ul li .nav_second li a::before {
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transform: translateY(-50%) rotate(45deg);
}
.header_container .nav_sp_wrap .nav_sp ul .nav_second {
  display: none;
  padding: 0 1.25rem;
}
.header_container .nav_sp_wrap .nav_sp ul li.is_open > .nav_second {
  display: block;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours {
  padding: 0.75rem 1.5rem 2.5rem;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours .nav_sp_info_hours_title {
  margin-bottom: 0.25rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: left;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours .nav_sp_info_hours_department {
  margin-bottom: 1rem;
  font-size: 0.75rem;
  text-align: left;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours .info_hours {
  margin-bottom: 1.125rem;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours .info_hours_section > p,
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours .info_hours_section > ul {
  font-size: 0.875rem;
  line-height: 1.65;
  text-align: left;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours ul {
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours ul li {
  border-bottom: 0;
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar {
  background-color: rgba(255, 255, 255, 0);
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar::before {
  top: 0;
  transform: rotate(45deg);
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar::after {
  top: 0;
  transform: rotate(-45deg);
}
.header_container .nav_sp_wrap:has(.is_active) .nav_sp {
  left: 0;
}

/************************************
** ヒーロー
************************************/
.hero_section {
  position: relative;
}
@media (width <= 1260px) {
  .hero_section {
    overflow: hidden;
  }
}
.hero_section::after {
  position: absolute;
  right: 0;
  bottom: -3.4375rem;
  width: 359px;
  height: 327px;
  content: "";
  background-image: url("../images/photo/en.svg");
  background-repeat: no-repeat;
}
@media (width <= 1260px) {
  .hero_section::after {
    display: none;
  }
}
.hero_section img {
  width: 100vw;
  height: 34.375rem;
  object-fit: cover;
  object-position: right 20%;
  border-radius: 1.5rem;
}
@media (width <= 992px) {
  .hero_section img {
    width: 100vw;
    object-position: right 20%;
  }
}
.hero_section .splide__pagination {
  display: none;
}
.hero_section .hero_content {
  position: absolute;
  top: 5rem;
  left: 6.25rem;
}
@media (width <= 992px) {
  .hero_section .hero_content {
    top: 1.25rem;
    left: 1.25rem;
  }
}
.hero_section .hero_content .hero_text_image {
  position: relative;
  top: 3.5rem;
  left: -0.625rem;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text_image {
    top: 15rem;
    left: 0rem;
  }
}
.hero_section .hero_content .hero_text_image img {
  width: 27.0625rem;
  height: 6.875rem;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text_image img {
    width: 80vw;
    height: auto;
  }
}
.hero_section .hero_content .hero_text_day {
  display: block;
  padding: 0.75rem;
  padding-bottom: 0;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text_day {
    padding: 0.3125rem 0.5625rem 0;
    font-size: 1rem;
  }
}
.hero_section .hero_content .hero_text {
  position: relative;
  top: 5.125rem;
  left: -0.3125rem;
  width: 100%;
}
.hero_section .hero_content .hero_text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 140%;
  color: white;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text p {
    font-size: 0.8125rem;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text {
    position: absolute;
    top: 21.875rem;
    left: 0.25rem;
  }
}
.hero_section .hero_content_clinic {
  position: absolute;
  top: 3.4375rem;
  left: 5.625rem;
}
@media (width <= 992px) {
  .hero_section .hero_content_clinic {
    top: 11.875rem;
    left: 1.25rem;
  }
}
.hero_section .hero_content_clinic p {
  font-size: 0.875rem;
  color: white;
}
.hero_section .hero_content_clinic p::after {
  position: absolute;
  top: 0.875rem;
  left: 9.5rem;
  width: 17.5rem;
  height: 0.0625rem;
  content: "";
  background-color: white;
}
@media (width <= 992px) {
  .hero_section .hero_content_clinic p::after {
    left: 8.5rem;
    width: 43vw;
  }
}
.hero_section .hero_content2 {
  position: absolute;
  top: 21.5rem;
  left: 6.25rem;
  width: 100%;
}
@media (width <= 992px) {
  .hero_section .hero_content2 {
    top: initial;
    bottom: 1.25rem;
    left: 0rem;
  }
}
.hero_section .hero_content2 .hero_text2 {
  display: inline-block;
  font-weight: 500;
}
.hero_section .hero_content2 .hero_text2 ul {
  display: flex;
  padding: 0;
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 ul {
    padding-left: 1.5625rem;
  }
}
.hero_section .hero_content2 .hero_text2 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8.75rem;
  height: 8.75rem;
  margin-right: 0.875rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  color: #384764;
  background-color: white;
  list-style-type: none;
  border-radius: 50%;
}
.hero_section .hero_content2 .hero_text2 ul li:nth-child(3) {
  flex-flow: row wrap;
  align-content: center;
  text-align: center;
}
.hero_section .hero_content2 .hero_text2 ul li:nth-child(3) > span:first-child {
  flex-basis: 100%;
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 ul li:nth-child(3) .m_br {
    flex-basis: 100%;
    font-weight: 500;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 ul li {
    width: 5rem;
    height: 5rem;
    font-size: 0.75rem;
    line-height: 150%;
  }
}
.hero_section .hero_content2 .hero_text2 ul li span {
  display: block;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: underline;
  color: #384764;
}
.hero_section .hero_content2 .hero_text2 ul li span.m_br {
  font-family: inherit;
  font-size: inherit;
  text-decoration: none;
  color: #384764;
  font-weight: 500;
}
.hero_section .hero_content2 .hero_text2 ul li span.m_br::after {
  display: none;
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 ul li span.m_br::after {
    display: none;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 ul li span {
    font-size: 0.625rem;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 {
    padding: 0.3125rem;
    padding-right: 0.625rem;
    font-size: 1rem;
  }
}

/************************************
** フッター
************************************/
footer {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
}
@media (width <= 992px) {
  footer {
    padding: 1.25rem 0.625rem;
  }
}
footer .grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (width <= 992px) {
  footer .grid_container {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(6.25rem, auto);
  }
}
footer .grid_container .footer_logo {
  position: relative;
  grid-row: 1/2;
  grid-column: 1/2;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_logo img {
  position: relative;
  max-height: 9.375rem;
  margin-block: 3.125rem 2.5rem;
  margin-inline: auto;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo img {
    top: 0;
    max-height: 8.75rem;
  }
}
footer .grid_container .footer_sns {
  display: flex;
  justify-content: center;
  margin-top: 0rem;
}
footer .grid_container .footer_sns img {
  width: 2.5rem;
  margin: 0rem 0.125rem 0.125rem 0.125rem;
}
@media (width <= 992px) {
  footer .grid_container .footer_sns img {
    margin-right: 0.625rem;
    margin-left: 0;
  }
}
footer .grid_container .footer_group {
  grid-row: 1/2;
  grid-column: 2/3;
  margin-top: 3.75rem;
  text-align: left;
}
footer .grid_container .footer_group .btn_group {
  margin-top: 1.25rem;
  border-radius: 0.75rem;
}
footer .grid_container .footer_group .btn_group::before {
  display: none;
}
@media (width <= 992px) {
  footer .grid_container .footer_group {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_info_hours {
  grid-row: 2/3;
  grid-column: 1/2;
}
footer .grid_container .footer_info_hours .section_title {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: left;
}
@media (width <= 992px) {
  footer .grid_container .footer_info_hours .section_title {
    font-size: 1.25rem;
  }
}
footer .grid_container .footer_info_hours .section_title + p {
  font-size: 0.75rem;
}
@media (width <= 992px) {
  footer .grid_container .footer_info_hours {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
footer .grid_container .info_hours {
  background: none;
}
footer .grid_container .footer_map {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  footer .grid_container .footer_map {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_menu {
  grid-row: 3/4;
  grid-column: 1/3;
  margin-top: 5rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  text-align: center;
}
@media (width <= 992px) {
  footer .grid_container .footer_menu {
    grid-row: 5/6;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_menu a {
  color: #384764;
}
footer .grid_container .footer_copyright {
  grid-row: 4/5;
  grid-column: 1/3;
  margin-bottom: 3.125rem;
  font-size: 0.75rem;
  text-align: center;
}
@media (width <= 992px) {
  footer .grid_container .footer_copyright {
    grid-row: 6/7;
    grid-column: 1/2;
  }
}

/************************************
** お知らせ
************************************/
.news_post {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem) 3.125rem;
  background-color: #f0f9f8;
}
@media (width <= 992px) {
  .news_post {
    padding: 1.25rem 0.625rem 12.5rem;
  }
}
.news_post .grid_container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-auto-rows: minmax(6.25rem, auto);
  gap: 2.5rem;
}
@media (width <= 992px) {
  .news_post .grid_container {
    grid-template-columns: minmax(0, 1fr);
  }
}
.news_post .grid_container .news_main {
  grid-row: 1/2;
  grid-column: 1/2;
  min-width: 0;
  padding: 3.125rem 1.875rem 2.5rem;
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(66, 66, 66, 0.05));
  border-radius: 6px;
}
@media (width <= 992px) {
  .news_post .grid_container .news_main {
    padding: 2.5rem 1.25rem;
  }
}
.news_post .grid_container .news_main h1 {
  padding-bottom: 3.125rem;
  font-weight: 500;
}
.news_post .grid_container .news_main h2 {
  text-align: left;
}
.news_post .grid_container .news_main h2::after {
  content: none;
}
.news_post .grid_container .news_main time {
  color: #384764;
}
.news_post .grid_container .news_main .news_post_title {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
}
.news_post .grid_container .news_main .text a {
  overflow-wrap: anywhere;
}
.news_post .grid_container .news_main .news_link {
  padding: 3.125rem 0.625rem 0.625rem;
  text-align: center;
  list-style: none;
}
.news_post .grid_container .news_main .news_link.grid_container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.news_post .grid_container .news_main .news_link a {
  position: relative;
  color: #384764;
}
.news_post .grid_container .news_main .news_link a::before {
  position: absolute;
  top: calc(50% - 0.125rem);
  left: -1.25rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transition: all 0.2s;
  transform: rotate(-135deg);
}
.news_post .grid_container .news_main .news_link .prev_news {
  grid-row: 1/2;
  grid-column: 1/2;
}
.news_post .grid_container .news_main .news_link .next_news {
  grid-row: 1/2;
  grid-column: 2/3;
}
.news_post .grid_container .news_main .news_link .next_news a::before {
  right: -1.25rem;
  left: inherit;
  transform: rotate(45deg);
}
.news_post .grid_container .widget_area {
  grid-row: 1/3;
  grid-column: 2/3;
  min-width: 0;
}
@media (width <= 992px) {
  .news_post .grid_container .widget_area {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.news_post .grid_container .widget_area .widget {
  padding-bottom: 2.5rem;
}
.news_post .grid_container .widget_area .widget h2 {
  padding-bottom: 0.625rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.news_post .grid_container .widget_area .widget h2::after {
  content: none;
}
@media (width <= 992px) {
  .news_post .grid_container .widget_area .widget h2 {
    font-size: 1.5rem;
  }
}
.news_post .grid_container .widget_area .widget ul {
  padding-left: 0;
  list-style: none;
}
.news_post .grid_container .widget_area .widget ul li {
  padding: 0.625rem;
  border-bottom: 1px dashed #a6a6a6;
}
.news_post .grid_container .widget_area .widget ul a {
  color: #384764;
}

/************************************
** お知らせアーカイブ
************************************/
.archive .news_post .grid_container .news_main .title_container {
  padding: 0.625rem;
  border-bottom: solid 1px #dde1e8;
}
.archive .news_post .grid_container .news_main .title_container time {
  font-size: 0.875rem;
  color: #384764;
}
.archive .news_post .grid_container .news_main .title_container h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #384764;
  text-align: left;
}
.archive .news_post .grid_container .news_main .nav-links {
  text-align: center;
}
.archive .news_post .grid_container .news_main .nav-links .page-numbers:not(.prev, .next) {
  display: inline-block;
  margin-inline: 0.375rem;
}
.archive .news_post .grid_container .news_main .nav-links .prev,
.archive .news_post .grid_container .news_main .nav-links .next {
  position: relative;
  color: #384764;
}
.archive .news_post .grid_container .news_main .nav-links .prev::before,
.archive .news_post .grid_container .news_main .nav-links .next::before {
  position: absolute;
  top: calc(50% - 0.21875rem);
  left: -1.25rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transition: all 0.2s;
  transform: rotate(-135deg);
}
.archive .news_post .grid_container .news_main .nav-links .next::before {
  right: -1.25rem;
  left: inherit;
  transform: rotate(45deg);
}
.archive .news_post .grid_container .news_main .nav-links a {
  color: #384764;
}
.archive .news_post .grid_container .news_main .nav-links .current {
  color: #384764;
}

/************************************
** 固定ページ
************************************/
.page_wrap {
  background-color: white;
}
@media (width <= 992px) {
  .page_wrap {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap nav {
  padding: 0.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: #f5f6f9;
}
.page_wrap nav p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.page_wrap a {
  color: #056152;
  text-decoration: underline;
}
.page_wrap .btn,
.page_wrap .btn_orange {
  display: block;
  width: fit-content;
  margin-right: auto;
  margin-bottom: 1.875rem;
  margin-left: 0;
  color: white;
  text-align: left;
  text-decoration: none;
}
.page_wrap .btn[href*=".pdf" i]::after,
.page_wrap .btn_orange[href*=".pdf" i]::after {
  top: 50%;
  right: 2.875rem;
  width: 1rem;
  height: 1rem;
  background-color: #fdf339;
  border: 0;
  transform: translateY(-50%);
  -webkit-mask: url("../images/icon/pdf.svg") center/contain no-repeat;
  mask: url("../images/icon/pdf.svg") center/contain no-repeat;
}
@media (width <= 992px) {
  .page_wrap .btn[href*=".pdf" i]::after,
  .page_wrap .btn_orange[href*=".pdf" i]::after {
    right: 2.25rem;
  }
}
.page_wrap .btn[href*=".pdf" i]:hover::after,
.page_wrap .btn_orange[href*=".pdf" i]:hover::after {
  right: 2.125rem;
}
@media (width <= 992px) {
  .page_wrap .btn[href*=".pdf" i]:hover::after,
  .page_wrap .btn_orange[href*=".pdf" i]:hover::after {
    right: 1.5rem;
  }
}
.page_wrap .btn_orange[href*=".pdf" i]::after {
  background-color: #384764;
}
.page_wrap .main_page {
  padding-bottom: 3.125rem;
}
.page_wrap .main_page .main_page_text {
  padding: 100px max((100vw - 1000px) / 2, 10px) 50px;
}
.page_wrap .main_page .main_page_title {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: rgba(255, 255, 255, 0.7);
  background-image: url("../images/photo/hero-img-pc.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
}
@media (width <= 992px) {
  .page_wrap .main_page .main_page_title {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap .main_page .main_page_title h1 {
  margin: auto;
  font-weight: 500;
  text-align: center;
}
@media (width <= 992px) {
  .page_wrap .main_page .main_page_title h1 {
    font-size: 1.625rem;
  }
}
.page_wrap .main_page h2 {
  position: relative;
  padding-top: 1.25rem;
  padding-left: 2.75rem;
  margin-bottom: 4.0625rem;
  font-weight: 500;
  text-align: left;
  border-top: solid 2px #dde1e8;
}
.page_wrap .main_page h2:not(:first-child) {
  margin-top: 5rem;
}
.page_wrap .main_page h2::before, .page_wrap .main_page h2::after {
  position: absolute;
  top: calc(1.25rem + 0.75em);
  width: 1rem;
  height: 1rem;
  content: "";
  border-radius: 50%;
  transform: translateY(-50%);
}
.page_wrap .main_page h2::before {
  left: 0;
  background-color: #5c928a;
}
.page_wrap .main_page h2::after {
  left: 1.125rem;
  background-color: #fdf339;
}
@media (width <= 992px) {
  .page_wrap .main_page h2 {
    padding-top: 1rem;
    padding-left: 2.75rem;
    margin-bottom: 2.5rem;
  }
  .page_wrap .main_page h2::before, .page_wrap .main_page h2::after {
    top: calc(1rem + 0.75em);
  }
}
.page_wrap .main_page h3 {
  position: relative;
  padding-left: 2.375rem;
  margin-top: 3.125rem;
  margin-bottom: 1.5rem;
  color: #5c928a;
  font-weight: 400;
}
.page_wrap .main_page h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.75rem;
  height: 0.125rem;
  content: "";
  background-color: #dde1e8;
  transform: translateY(-50%);
}
@media (width <= 992px) {
  .page_wrap .main_page h3 {
    padding-left: 2rem;
    margin-bottom: 1.25rem;
  }
  .page_wrap .main_page h3::before {
    width: 1.375rem;
  }
}
.page_wrap .main_page h4 {
  position: relative;
  display: block;
  padding-left: 1.625rem;
  margin-bottom: 1.25rem;
  color: #384764;
  font-weight: 400;
}
.page_wrap .main_page h4::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  content: "";
  background-color: #dde1e8;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (width <= 992px) {
  .page_wrap .main_page h4 {
    padding-left: 1.4375rem;
    margin-bottom: 1rem;
  }
  .page_wrap .main_page h4::before {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.page_wrap .main_page ul {
  margin-bottom: 1.25rem;
}
.page_wrap .main_page .btn_grid_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.25rem;
}
@media (width <= 992px) {
  .page_wrap .main_page .btn_grid_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 480px) {
  .page_wrap .main_page .btn_grid_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_wrap .main_page .btn_grid_container .btn {
  width: 100%;
}
.page_wrap .main_page .schema-faq-section {
  margin-bottom: 3.125rem;
}
.page_wrap .main_page .schema-faq-section .schema-faq-question {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
  margin-left: 0;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 160%;
}
.page_wrap .main_page .schema-faq-section .schema-faq-question strong {
  font-weight: inherit;
}
@media (width <= 992px) {
  .page_wrap .main_page .schema-faq-section .schema-faq-question {
    padding-left: 2.625rem;
    font-size: 1.25rem;
  }
}
.page_wrap .main_page .schema-faq-section .schema-faq-question::before {
  position: absolute;
  top: 0.9em;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 1;
  color: white;
  content: "Q";
  background-color: #5c928a;
  border-radius: 50%;
  transform: translateY(-50%);
}
@media (width <= 992px) {
  .page_wrap .main_page .schema-faq-section .schema-faq-question::before {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer {
  position: relative;
  padding: 1.25rem;
  padding-left: 3rem;
  margin-top: 0.9375rem;
  line-height: 190%;
  background-color: white;
  border: solid 2px #d5e6e3;
  border-radius: 10px;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer::before {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  content: "A. ";
}
@media (width <= 992px) {
  .page_wrap .main_page .schema-faq-section .schema-faq-answer {
    padding: 1rem;
    padding-left: 2.625rem;
    line-height: 185%;
  }
  .page_wrap .main_page .schema-faq-section .schema-faq-answer::before {
    top: 1rem;
    left: 1rem;
  }
}
.page_wrap .main_page .disease_section .grid_container ul {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  padding-left: 0;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .page_wrap .main_page .disease_section .grid_container ul {
    grid-template-columns: 1fr;
  }
}
.page_wrap .main_page .disease_section .grid_container ul li {
  position: relative;
  padding: 0.625rem;
  margin: 0 3.125rem 1.25rem;
  list-style: none;
  border-bottom: 1px solid #5c928a;
}
@media (width <= 992px) {
  .page_wrap .main_page .disease_section .grid_container ul li {
    margin: 0.75rem 1.25rem;
  }
}
.page_wrap .main_page .disease_section .grid_container ul li a {
  display: block;
  color: #384764;
  text-decoration: none;
}
.page_wrap .main_page .disease_section .grid_container ul li::after {
  position: absolute;
  right: 0.125rem;
  bottom: -0.3125rem;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid #5c928a;
  transition: all 0.2s;
  transform: rotate(45deg);
}
.page_wrap .main_page .disease_section .grid_container ul li:hover {
  transition: transform 0.1s ease-in-out;
  transform: translateX(8px);
}
@media (width <= 992px) {
  .page_wrap .main_page .disease_section .grid_container ul li:hover {
    transform: none;
  }
}
.page_wrap .main_page .th_fix_width th {
  width: 6.25rem;
}

/************************************
** クリニックについて 基本情報
************************************/
.page-id-19 .main_page_text .wp-block-table,
.page-id-61 .main_page_text .wp-block-table {
  width: 100%;
}
.page-id-19 .main_page_text .wp-block-table table,
.page-id-61 .main_page_text .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
.page-id-19 .main_page_text .wp-block-table th,
.page-id-19 .main_page_text .wp-block-table td,
.page-id-61 .main_page_text .wp-block-table th,
.page-id-61 .main_page_text .wp-block-table td {
  padding: 1.125rem 1.5rem;
  font-weight: 400;
  text-align: left;
  vertical-align: top;
  background-color: white;
  border: 0 !important;
  border-bottom: solid 1px #dde1e8 !important;
}
.page-id-19 .main_page_text .wp-block-table th,
.page-id-61 .main_page_text .wp-block-table th {
  width: 9.375rem;
}
.page-id-19 .main_page_text .wp-block-table a,
.page-id-61 .main_page_text .wp-block-table a {
  color: inherit;
  text-decoration: none;
}
@media (width <= 992px) {
  .page-id-19 .main_page_text .wp-block-table table,
  .page-id-19 .main_page_text .wp-block-table tbody,
  .page-id-19 .main_page_text .wp-block-table tr,
  .page-id-19 .main_page_text .wp-block-table th,
  .page-id-19 .main_page_text .wp-block-table td,
  .page-id-61 .main_page_text .wp-block-table table,
  .page-id-61 .main_page_text .wp-block-table tbody,
  .page-id-61 .main_page_text .wp-block-table tr,
  .page-id-61 .main_page_text .wp-block-table th,
  .page-id-61 .main_page_text .wp-block-table td {
    display: block;
    width: 100%;
  }
  .page-id-19 .main_page_text .wp-block-table th,
  .page-id-61 .main_page_text .wp-block-table th {
    padding: 1.5rem 1rem 0;
    border-bottom: 0 !important;
  }
  .page-id-19 .main_page_text .wp-block-table td,
  .page-id-61 .main_page_text .wp-block-table td {
    padding: 0.625rem 1rem 1.125rem;
  }
}

.page-id-19 .main_page_text .wp-block-table br {
  display: none;
}
.page-id-19 .facility_gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (width <= 992px) {
  .page-id-19 .facility_gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.page-id-19 .facility_gallery .facility_gallery_item {
  margin: 0;
  overflow: hidden;
  border-radius: 0.5rem;
}
.page-id-19 .facility_gallery img {
  width: 100%;
  aspect-ratio: 900/532;
  object-fit: cover;
}
.page-id-19 .facility_gallery .facility_gallery_caption {
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: #384764;
  text-align: center;
  background-color: #f5f6f9;
}

.page-id-61 .main_page_text > .wp-block-group > .wp-block-group__inner-container > h3 {
  padding: 0.625rem;
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-weight: 500;
  color: #384764;
  text-align: left;
  letter-spacing: 0.12em;
  background-color: #f5f6f9;
}
.page-id-61 .main_page_text > .wp-block-group > .wp-block-group__inner-container > h3::before {
  content: none;
}
@media (width <= 992px) {
  .page-id-61 .main_page_text > .wp-block-group > .wp-block-group__inner-container > h3 {
    padding: 0.625rem;
    margin-bottom: 0;
  }
}
.page-id-61 .main_page_text .wp-block-table.scroll_table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.page-id-61 .main_page_text .wp-block-table.scroll_table table {
  table-layout: auto;
}
.page-id-61 .main_page_text .wp-block-table.scroll_table th,
.page-id-61 .main_page_text .wp-block-table.scroll_table td {
  padding: 0.75rem 0.5rem;
  text-align: center;
  white-space: nowrap;
}
.page-id-61 .main_page_text .wp-block-table.scroll_table thead th:first-child,
.page-id-61 .main_page_text .wp-block-table.scroll_table tbody th {
  width: 9.5rem;
  min-width: 9.5rem;
  text-align: left;
}
.page-id-61 .main_page_text .wp-block-table.scroll_table thead th:not(:first-child),
.page-id-61 .main_page_text .wp-block-table.scroll_table td {
  min-width: 6.5rem;
}
@media (width <= 992px) {
  .page-id-61 .main_page_text .wp-block-table.scroll_table table {
    display: table;
    width: 100%;
    min-width: 55rem;
  }
  .page-id-61 .main_page_text .wp-block-table.scroll_table thead {
    display: table-header-group;
  }
  .page-id-61 .main_page_text .wp-block-table.scroll_table tbody {
    display: table-row-group;
    width: auto;
  }
  .page-id-61 .main_page_text .wp-block-table.scroll_table tr {
    display: table-row;
    width: auto;
  }
  .page-id-61 .main_page_text .wp-block-table.scroll_table th,
  .page-id-61 .main_page_text .wp-block-table.scroll_table td {
    display: table-cell;
    width: auto;
    padding: 0.75rem 0.5rem;
    border-bottom: solid 1px #dde1e8 !important;
  }
}

/************************************
** トップ　共通
************************************/
.selif {
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
}

h2 {
  position: relative;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  text-align: center;
}

/************************************
** トップ　pickup
************************************/
.pickup_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem);
  background-image: linear-gradient(to bottom, #fffcfb, #fffcf9);
}
@media (width <= 992px) {
  .pickup_section {
    padding: 2.5rem 1.25rem 2.5rem;
  }
}
@media (width <= 992px) {
  .pickup_section .top_pickup_recruit {
    padding: 1.25rem;
  }
}

/************************************
** トップ　お知らせ・コラム
************************************/
.news_section,
.column_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem);
}
@media (width <= 992px) {
  .news_section,
  .column_section {
    padding: 2.5rem 1.5rem 2.5rem;
  }
}
.news_section .top_info_news,
.news_section .top_info_column,
.column_section .top_info_news,
.column_section .top_info_column {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 2fr;
  grid-row: 1/2;
  grid-column: 1/3;
  min-height: 15rem;
  padding: 1.875rem 3.125rem;
}
@media (width <= 992px) {
  .news_section .top_info_news,
  .news_section .top_info_column,
  .column_section .top_info_news,
  .column_section .top_info_column {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 0rem;
  }
}
.news_section .top_info_news .top_info_news_title,
.news_section .top_info_news .top_info_column_title,
.news_section .top_info_column .top_info_news_title,
.news_section .top_info_column .top_info_column_title,
.column_section .top_info_news .top_info_news_title,
.column_section .top_info_news .top_info_column_title,
.column_section .top_info_column .top_info_news_title,
.column_section .top_info_column .top_info_column_title {
  grid-row: 1/2;
  grid-column: 1/2;
  place-content: left;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title,
  .news_section .top_info_news .top_info_column_title,
  .news_section .top_info_column .top_info_news_title,
  .news_section .top_info_column .top_info_column_title,
  .column_section .top_info_news .top_info_news_title,
  .column_section .top_info_news .top_info_column_title,
  .column_section .top_info_column .top_info_news_title,
  .column_section .top_info_column .top_info_column_title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.news_section .top_info_news .top_info_news_title .title_english,
.news_section .top_info_news .top_info_column_title .title_english,
.news_section .top_info_column .top_info_news_title .title_english,
.news_section .top_info_column .top_info_column_title .title_english,
.column_section .top_info_news .top_info_news_title .title_english,
.column_section .top_info_news .top_info_column_title .title_english,
.column_section .top_info_column .top_info_news_title .title_english,
.column_section .top_info_column .top_info_column_title .title_english {
  position: relative;
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title .title_english,
  .news_section .top_info_news .top_info_column_title .title_english,
  .news_section .top_info_column .top_info_news_title .title_english,
  .news_section .top_info_column .top_info_column_title .title_english,
  .column_section .top_info_news .top_info_news_title .title_english,
  .column_section .top_info_news .top_info_column_title .title_english,
  .column_section .top_info_column .top_info_news_title .title_english,
  .column_section .top_info_column .top_info_column_title .title_english {
    font-size: 0.75rem;
  }
}
.news_section .top_info_news .top_info_news_title h2,
.news_section .top_info_news .top_info_column_title h2,
.news_section .top_info_column .top_info_news_title h2,
.news_section .top_info_column .top_info_column_title h2,
.column_section .top_info_news .top_info_news_title h2,
.column_section .top_info_news .top_info_column_title h2,
.column_section .top_info_column .top_info_news_title h2,
.column_section .top_info_column .top_info_column_title h2 {
  font-weight: 500;
  text-align: left;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title h2,
  .news_section .top_info_news .top_info_column_title h2,
  .news_section .top_info_column .top_info_news_title h2,
  .news_section .top_info_column .top_info_column_title h2,
  .column_section .top_info_news .top_info_news_title h2,
  .column_section .top_info_news .top_info_column_title h2,
  .column_section .top_info_column .top_info_news_title h2,
  .column_section .top_info_column .top_info_column_title h2 {
    font-size: 1.5rem;
  }
}
.news_section .top_info_news .top_info_column_title .title_english::before,
.news_section .top_info_column .top_info_column_title .title_english::before,
.column_section .top_info_news .top_info_column_title .title_english::before,
.column_section .top_info_column .top_info_column_title .title_english::before {
  left: 6.5625rem;
}
.news_section .top_info_news .top_info_news_btn,
.news_section .top_info_news .top_info_column_btn,
.news_section .top_info_column .top_info_news_btn,
.news_section .top_info_column .top_info_column_btn,
.column_section .top_info_news .top_info_news_btn,
.column_section .top_info_news .top_info_column_btn,
.column_section .top_info_column .top_info_news_btn,
.column_section .top_info_column .top_info_column_btn {
  grid-row: 2/3;
  grid-column: 1/2;
  place-content: center;
}
.news_section .top_info_news .top_info_news_btn .btn_solid,
.news_section .top_info_news .top_info_column_btn .btn_solid,
.news_section .top_info_column .top_info_news_btn .btn_solid,
.news_section .top_info_column .top_info_column_btn .btn_solid,
.column_section .top_info_news .top_info_news_btn .btn_solid,
.column_section .top_info_news .top_info_column_btn .btn_solid,
.column_section .top_info_column .top_info_news_btn .btn_solid,
.column_section .top_info_column .top_info_column_btn .btn_solid {
  padding: 0.625rem 3.125rem 0.625rem 1.25rem;
  border-radius: 4px;
}
.news_section .top_info_news .top_info_news_btn .btn_solid::before,
.news_section .top_info_news .top_info_column_btn .btn_solid::before,
.news_section .top_info_column .top_info_news_btn .btn_solid::before,
.news_section .top_info_column .top_info_column_btn .btn_solid::before,
.column_section .top_info_news .top_info_news_btn .btn_solid::before,
.column_section .top_info_news .top_info_column_btn .btn_solid::before,
.column_section .top_info_column .top_info_news_btn .btn_solid::before,
.column_section .top_info_column .top_info_column_btn .btn_solid::before {
  display: none;
}
.news_section .top_info_news .top_info_news_btn .btn_solid::after,
.news_section .top_info_news .top_info_column_btn .btn_solid::after,
.news_section .top_info_column .top_info_news_btn .btn_solid::after,
.news_section .top_info_column .top_info_column_btn .btn_solid::after,
.column_section .top_info_news .top_info_news_btn .btn_solid::after,
.column_section .top_info_news .top_info_column_btn .btn_solid::after,
.column_section .top_info_column .top_info_news_btn .btn_solid::after,
.column_section .top_info_column .top_info_column_btn .btn_solid::after {
  right: 1.875rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_btn,
  .news_section .top_info_news .top_info_column_btn,
  .news_section .top_info_column .top_info_news_btn,
  .news_section .top_info_column .top_info_column_btn,
  .column_section .top_info_news .top_info_news_btn,
  .column_section .top_info_news .top_info_column_btn,
  .column_section .top_info_column .top_info_news_btn,
  .column_section .top_info_column .top_info_column_btn {
    grid-row: 3/4;
    grid-column: 1/2;
    text-align: center;
  }
}
.news_section .top_info_news .top_info_news_main,
.news_section .top_info_news .top_info_column_main,
.news_section .top_info_column .top_info_news_main,
.news_section .top_info_column .top_info_column_main,
.column_section .top_info_news .top_info_news_main,
.column_section .top_info_news .top_info_column_main,
.column_section .top_info_column .top_info_news_main,
.column_section .top_info_column .top_info_column_main {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_main,
  .news_section .top_info_news .top_info_column_main,
  .news_section .top_info_column .top_info_news_main,
  .news_section .top_info_column .top_info_column_main,
  .column_section .top_info_news .top_info_news_main,
  .column_section .top_info_news .top_info_column_main,
  .column_section .top_info_column .top_info_news_main,
  .column_section .top_info_column .top_info_column_main {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.news_section .top_info_news .info_news_item,
.news_section .top_info_news .info_column_item,
.news_section .top_info_column .info_news_item,
.news_section .top_info_column .info_column_item,
.column_section .top_info_news .info_news_item,
.column_section .top_info_news .info_column_item,
.column_section .top_info_column .info_news_item,
.column_section .top_info_column .info_column_item {
  margin: 1.25rem 0;
  border-bottom: 1px dashed #dde1e8;
}
.news_section .top_info_news .info_news_item a,
.news_section .top_info_news .info_column_item a,
.news_section .top_info_column .info_news_item a,
.news_section .top_info_column .info_column_item a,
.column_section .top_info_news .info_news_item a,
.column_section .top_info_news .info_column_item a,
.column_section .top_info_column .info_news_item a,
.column_section .top_info_column .info_column_item a {
  display: grid;
  grid-template-columns: 5rem 1fr;
  color: #384764;
}
@media (width <= 992px) {
  .news_section .top_info_news .info_news_item a,
  .news_section .top_info_news .info_column_item a,
  .news_section .top_info_column .info_news_item a,
  .news_section .top_info_column .info_column_item a,
  .column_section .top_info_news .info_news_item a,
  .column_section .top_info_news .info_column_item a,
  .column_section .top_info_column .info_news_item a,
  .column_section .top_info_column .info_column_item a {
    display: flex;
    flex-direction: column;
  }
}
.news_section .top_info_news .info_news_item a time,
.news_section .top_info_news .info_column_item a time,
.news_section .top_info_column .info_news_item a time,
.news_section .top_info_column .info_column_item a time,
.column_section .top_info_news .info_news_item a time,
.column_section .top_info_news .info_column_item a time,
.column_section .top_info_column .info_news_item a time,
.column_section .top_info_column .info_column_item a time {
  grid-column: 1/2;
  font-size: 0.875rem;
}
@media (width <= 992px) {
  .news_section .top_info_news .info_news_item a time,
  .news_section .top_info_news .info_column_item a time,
  .news_section .top_info_column .info_news_item a time,
  .news_section .top_info_column .info_column_item a time,
  .column_section .top_info_news .info_news_item a time,
  .column_section .top_info_news .info_column_item a time,
  .column_section .top_info_column .info_news_item a time,
  .column_section .top_info_column .info_column_item a time {
    font-size: 0.75rem;
  }
}
.news_section .top_info_news .info_news_item a p,
.news_section .top_info_news .info_column_item a p,
.news_section .top_info_column .info_news_item a p,
.news_section .top_info_column .info_column_item a p,
.column_section .top_info_news .info_news_item a p,
.column_section .top_info_news .info_column_item a p,
.column_section .top_info_column .info_news_item a p,
.column_section .top_info_column .info_column_item a p {
  grid-column: 2/3;
  margin-bottom: 1.25rem;
}
@media (width <= 992px) {
  .news_section .top_info_news .info_news_item a p,
  .news_section .top_info_news .info_column_item a p,
  .news_section .top_info_column .info_news_item a p,
  .news_section .top_info_column .info_column_item a p,
  .column_section .top_info_news .info_news_item a p,
  .column_section .top_info_news .info_column_item a p,
  .column_section .top_info_column .info_news_item a p,
  .column_section .top_info_column .info_column_item a p {
    font-size: 0.875rem;
  }
}

/************************************
** トップ　info
************************************/
.news_section .top_info_news {
  grid-template-rows: auto 1fr;
}
.news_section .top_info_news .top_info_news_btn {
  align-self: start;
  margin-top: 1rem;
}
@media (width <= 992px) {
  .news_section .top_info_news {
    grid-template-rows: auto auto auto;
  }
  .news_section .top_info_news .top_info_news_btn {
    margin-top: 1rem;
  }
}

.info_section {
  padding: 5rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: #f0f9f8;
  border-radius: 1.5rem;
}
@media (width <= 992px) {
  .info_section {
    padding: 2.5rem 1.5rem;
  }
}
.info_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5rem;
}
@media (width <= 992px) {
  .info_section .grid_container {
    grid-template-columns: repeat(1, auto);
  }
}
.info_section .section_title {
  margin-bottom: 0.625rem;
  font-weight: 500;
  text-align: left;
}
@media (width <= 992px) {
  .info_section .section_title {
    font-size: 1.5rem;
  }
}
@media (width <= 992px) {
  .info_section p {
    font-size: 0.875rem;
  }
}
.info_section .top_info_hours {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media (width <= 992px) {
  .info_section .top_info_hours {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.info_section .top_info_hours .info_hours_section {
  margin-bottom: 0;
}
@media (width <= 992px) {
  .info_section .top_info_hours .info_hours_section {
    margin-bottom: 2.5rem;
  }
}
@media (width <= 992px) {
  .info_section .top_info_hours .info_hours_section li {
    font-size: 0.875rem;
  }
}
.info_section .top_map {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .info_section .top_map {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
@media (width <= 992px) {
  .info_section .top_map td {
    font-size: 0.875rem;
  }
}

/************************************
** トップ　Symptoms
************************************/
.symptoms_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem) 7.75rem;
  background-color: white;
}
@media (width <= 992px) {
  .symptoms_section {
    padding: 3.5rem 1.5rem 3.5rem;
  }
}
.symptoms_section .title_english {
  position: relative;
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
}
@media (width <= 992px) {
  .symptoms_section .title_english {
    font-size: 0.75rem;
  }
}
.symptoms_section h2 {
  font-weight: 500;
  text-align: left;
}
@media (width <= 992px) {
  .symptoms_section h2 {
    font-size: 1.5rem;
  }
}
.symptoms_section .grid_container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2.5rem;
  place-items: center;
  align-items: start;
  padding-bottom: 56px;
  margin-top: 3.5rem;
}
@media (width <= 1260px) {
  .symptoms_section .grid_container {
    grid-template-columns: repeat(2, auto);
    height: 100%;
    padding-bottom: 0rem;
  }
}
@media (width <= 992px) {
  .symptoms_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.symptoms_section .top_symptoms_card {
  position: relative;
  display: grid;
  place-items: flex-start;
  min-width: 15.625rem;
  height: 100%;
}
@media (width <= 992px) {
  .symptoms_section .top_symptoms_card {
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    column-gap: 1.5rem;
    align-items: start;
    width: 100%;
    padding-top: 2rem;
    border-top: solid 1px #5c928a;
  }
}
.symptoms_section .top_symptoms_card .symptoms_img_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.75rem;
  height: 8.75rem;
  margin: 0 auto;
  background: #f0f9f8;
  border-radius: 50%;
}
@media (width <= 992px) {
  .symptoms_section .top_symptoms_card .symptoms_img_wrapper {
    grid-row: 1/span 2;
    grid-column: 1;
    width: 6.25rem;
    height: 6.25rem;
    margin: 0;
  }
}
.symptoms_section .top_symptoms_card .symptoms_img_wrapper img {
  width: 2.5rem;
  height: auto;
}
.symptoms_section .top_symptoms_card h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #5c928a;
  text-align: left;
}
@media (width <= 992px) {
  .symptoms_section .top_symptoms_card h3 {
    grid-column: 2;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.symptoms_section .top_symptoms_card ul {
  padding-left: 0.2em;
}
@media (width <= 992px) {
  .symptoms_section .top_symptoms_card ul {
    grid-column: 2;
  }
}
.symptoms_section .top_symptoms_card ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.375rem;
  list-style: none;
}
@media (width <= 992px) {
  .symptoms_section .top_symptoms_card ul li {
    font-size: 0.9375rem;
  }
}
.symptoms_section .top_symptoms_card ul li::before {
  position: absolute;
  top: calc(50% - 4px);
  left: 2px;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: #dde1e8;
  border-radius: 50%;
}
.symptoms_section .top_symptoms_card p {
  margin-top: 0.9375rem;
}
.symptoms_section .advice_text {
  padding-top: 2rem;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
  line-height: 200%;
  text-align: center;
  border-top: solid 1px #dde1e8;
}
@media (width <= 992px) {
  .symptoms_section .advice_text {
    font-size: 0.9375rem;
    text-align: left;
    border-top: none;
  }
}
.symptoms_section .flex_container {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (width <= 992px) {
  .symptoms_section .flex_container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;
  }
}

/************************************
** トップ　Disease
************************************/
.disease_section {
  position: relative;
  padding: 5rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: #f5f6f9;
  border-radius: 1.5rem;
}
@media (width <= 992px) {
  .disease_section {
    padding: 4rem 1.5rem;
  }
}
.disease_section .title_english {
  position: relative;
  top: -10px;
  left: calc(50% - 20px);
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 14px;
}
@media (width <= 992px) {
  .disease_section .title_english {
    top: 0rem;
    font-size: 0.75rem;
  }
}
.disease_section h2 {
  font-weight: 500;
}
.disease_section .grid_container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 70rem;
  padding-left: 0;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .disease_section .grid_container ul {
    grid-template-columns: 1fr;
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
}
.disease_section .grid_container ul li {
  position: relative;
  list-style: none;
}
.disease_section .grid_container ul li .btn_solid {
  padding: 1.5rem 4.375rem;
  font-size: 1.125rem;
}
@media (width <= 992px) {
  .disease_section .grid_container ul li .btn_solid {
    padding: 0.875rem 2.5rem;
    font-size: 0.9375rem;
  }
}
@media (width <= 992px) {
  .disease_section .grid_container ul li .btn_solid::before {
    left: 1.625rem;
  }
}
@media (width <= 992px) {
  .disease_section .grid_container ul li .btn_solid::after {
    right: 1.625rem;
  }
}

/************************************
** トップ　Feature
************************************/
.feature_section {
  position: relative;
  padding: 12.5rem 1.25rem 7.5rem;
  overflow: hidden;
  background-color: white;
}
.feature_section::before {
  position: absolute;
  top: 3.125rem;
  left: 0;
  width: 382px;
  height: 363px;
  content: "";
  background-image: url("../images/photo/en2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (width <= 992px) {
  .feature_section::before {
    display: none;
  }
}
.feature_section .feature_container {
  position: relative;
  max-width: 70rem;
  margin-inline: auto;
}
.feature_section .feature_intro {
  width: calc(50% - 2.5rem);
  margin-left: auto;
}
.feature_section .feature_intro .title_english {
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
}
@media (width <= 992px) {
  .feature_section .feature_intro .title_english {
    font-size: 0.75rem;
  }
}
.feature_section .feature_intro .feature_heading {
  margin-bottom: 2.125rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 2.125rem;
  font-weight: 500;
  line-height: 150%;
  text-align: left;
}
.feature_section .feature_intro .feature_clinic_name {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1rem;
}
.feature_section .feature_intro .feature_lead {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 190%;
}
@media (width <= 992px) {
  .feature_section .feature_intro .feature_lead {
    font-size: 0.9375rem;
  }
}
.feature_section .feature_list {
  display: grid;
  grid-template-rows: repeat(4, 27.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 6.25rem;
  padding-bottom: 11.875rem;
  margin-top: -3.125rem;
}
.feature_section .feature_item {
  width: 100%;
  max-width: 31.25rem;
}
.feature_section .feature_item:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/2;
}
.feature_section .feature_item:nth-child(2) {
  grid-row: 2/3;
  grid-column: 2/3;
}
.feature_section .feature_item:nth-child(3) {
  grid-row: 3/4;
  grid-column: 1/2;
}
.feature_section .feature_item:nth-child(4) {
  grid-row: 4/5;
  grid-column: 2/3;
}
.feature_section .feature_item img {
  width: 100%;
  aspect-ratio: 17/12;
  object-fit: cover;
}
@media (width <= 992px) {
  .feature_section .feature_item img {
    border-radius: 0.5rem;
  }
}
.feature_section .feature_item .feature_number {
  display: flex;
  gap: 0.875rem;
  align-items: flex-end;
  margin-top: -2.125rem;
  margin-bottom: 1.25rem;
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 100%;
  color: #5c928a;
}
.feature_section .feature_item .feature_number .feature_number_dot {
  width: 0.5625rem;
  height: 0.5625rem;
  margin-bottom: 0.625rem;
  background-color: #fdf339;
  border-radius: 50%;
}
.feature_section .feature_item .feature_item_title {
  margin-bottom: 1.5rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
}
.feature_section .feature_item .feature_text {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 190%;
}
@media (width <= 992px) {
  .feature_section .feature_item .feature_text {
    font-size: 0.9375rem;
  }
}
.feature_section .feature_actions {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  margin-top: 80px;
}
@media (width <= 992px) {
  .feature_section {
    padding: 2.5rem 1.5rem 0rem;
  }
  .feature_section .feature_intro {
    width: 100%;
    margin-bottom: 3rem;
  }
  .feature_section .feature_intro .feature_heading {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  .feature_section .feature_list {
    display: block;
    padding-bottom: 0;
    margin-top: 0;
  }
  .feature_section .feature_item {
    max-width: 37.5rem;
    margin-inline: auto;
    margin-bottom: 4.5rem;
  }
  .feature_section .feature_item .feature_number {
    margin-top: -1.75rem;
    font-size: 5rem;
  }
  .feature_section .feature_item .feature_item_title {
    font-size: 1.375rem;
  }
  .feature_section .feature_actions {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;
  }
  .feature_section .feature_btn {
    width: min(100%, 20rem);
  }
}

/************************************
** トップ ご挨拶
************************************/
.greeting_section {
  position: relative;
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem) 8.75rem;
  /* 背景画像 (::before) */
}
.greeting_section::before {
  position: absolute;
  top: -6.875rem;
  right: 0;
  width: 27.1875rem;
  height: 22.6875rem;
  content: "";
  background-image: url("../images/photo/en3.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.greeting_section {
  /* PCレイアウト（デフォルト） */
}
.greeting_section .grid_container {
  display: grid;
  /* エリア指定：左側に画像を上下抜き、右側にタイトルと本文 */
  grid-template-areas: "img title" "img body";
  grid-template-columns: 1fr 1fr;
  place-content: center;
  place-items: center;
  margin-top: 6.25rem;
}
.greeting_section .grid_container .top_greeting_title {
  grid-area: title;
  width: 100%;
}
.greeting_section .grid_container .top_greeting_title .title_english {
  font-family: "Montserrat", "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
}
.greeting_section .grid_container .top_greeting_title h2 {
  margin-bottom: 2.5rem;
  font-weight: 500;
  text-align: left;
}
.greeting_section .grid_container .top_greeting_img {
  grid-area: img;
  width: 100%;
  height: 100%;
}
.greeting_section .grid_container .top_greeting_img img {
  max-height: 31.25rem;
  margin-top: -7.5rem;
  object-fit: cover;
}
.greeting_section .grid_container .top_greeting_text {
  position: relative;
  grid-area: body;
  width: 100%;
  padding: 0.9375rem;
}
.greeting_section .grid_container .top_greeting_text p:nth-child(6) {
  place-self: end;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
.greeting_section .grid_container .top_greeting_text .btn {
  margin-inline: auto;
}
.greeting_section .grid_container .top_greeting_text div:has(.btn) {
  margin-top: 3.125rem;
}
.greeting_section .grid_container .doctor_name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2.5rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: right;
}
.greeting_section .grid_container .doctor_name span {
  display: inline-block;
  margin-right: 1rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

@media (width <= 992px) {
  .greeting_section {
    padding-top: 8.75rem;
    padding-bottom: 4rem;
    overflow: hidden;
  }
  .greeting_section::before {
    top: 0;
    right: -1.25rem;
    width: 16.125rem;
    height: 13.4375rem;
    overflow: hidden;
  }
  .greeting_section .grid_container {
    /* 上から タイトル → 画像 → 本文 に並べ替え */
    grid-template-areas: "title" "img" "body";
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin-top: 0;
  }
  .greeting_section .grid_container .top_greeting_img img {
    margin-inline: auto;
    margin-top: 0;
    border-radius: 0.5rem;
  }
  .greeting_section .grid_container .top_greeting_text {
    padding: 2.5rem 0.9375rem 0;
  }
  .greeting_section .grid_container .top_greeting_text p:nth-child(6) {
    font-size: 1.25rem;
  }
}
/************************************
** トップ　予約CTA
************************************/
.cta_section {
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem) 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #f0f9f8 0, #f0f9f8 calc(100% - 10.625rem), white calc(100% - 10.625rem), white 100%);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
}
@media (width <= 992px) {
  .cta_section {
    padding-top: 4rem;
    background: linear-gradient(to bottom, #f0f9f8 0, #f0f9f8 calc(100% - 5.9375rem), white calc(100% - 5.9375rem), white 100%);
  }
}
.cta_section .grid_container {
  display: flex;
  justify-content: space-between;
}
@media (width <= 992px) {
  .cta_section .grid_container {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.cta_section .grid_container h2 {
  max-width: 50%;
  font-size: 28px;
  font-weight: 500;
  text-align: left;
}
@media (width <= 992px) {
  .cta_section .grid_container h2 {
    max-width: none;
    font-size: 1.375rem;
    letter-spacing: -0.04em;
  }
}
.cta_section .grid_container p {
  max-width: 50%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 200%;
  text-align: left;
}
@media (width <= 992px) {
  .cta_section .grid_container p {
    max-width: none;
    margin-bottom: 0;
    font-size: 0.9375rem;
  }
}
.cta_section .flex_container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3.5rem;
}
@media (width <= 992px) {
  .cta_section .flex_container {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 2.5rem;
  }
}
.cta_section .clinic_slider {
  width: 100vw;
  height: 17.5rem;
  margin-top: 4.5rem;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}
@media (width <= 992px) {
  .cta_section .clinic_slider {
    height: 12.8125rem;
    margin-top: 3rem;
  }
}
.cta_section .clinic_slider:hover .clinic_slider__track {
  animation-play-state: paused;
}
.cta_section .clinic_slider__track {
  display: flex;
  width: max-content;
  animation: clinic-slider 75s linear infinite;
  will-change: transform;
}
.cta_section .clinic_slider__group {
  display: flex;
  flex-shrink: 0;
  gap: 1.5rem;
  padding-right: 1.5rem;
}
@media (width <= 992px) {
  .cta_section .clinic_slider__group {
    gap: 1rem;
    padding-right: 1rem;
  }
}
.cta_section .clinic_slider__item {
  flex-shrink: 0;
  width: 20rem;
  height: 13.75rem;
  margin-top: 3.75rem;
  overflow: hidden;
  border-radius: 0.5rem;
}
.cta_section .clinic_slider__item:nth-child(even) {
  margin-top: 0;
}
@media (width <= 992px) {
  .cta_section .clinic_slider__item {
    width: 15rem;
    height: 10.3125rem;
    margin-top: 2.5rem;
  }
}
.cta_section .clinic_slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes clinic-slider {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta_section .clinic_slider__track {
    animation-play-state: paused;
  }
}
/************************************
** ふわっと下から上へ出現
************************************/
.scroll_up {
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(3rem);
}
.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}

/************************************
** ふわっと左から出現
************************************/
.scroll_left {
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
}
@media screen and (width <= 480px) {
  .scroll_left {
    transform: translateY(3rem);
  }
}

.scroll_left.on {
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/************************************
** ふわっと下から上へ出現
************************************/
.scroll_up {
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(3rem);
}
.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}

/************************************
** 電話ボタン非表示
************************************/
.footer_tel {
  display: none !important;
}

.info_map_tel {
  display: none !important;
}

/************************************
** web予約非表示
************************************/
/************************************
** web問診非表示
************************************/
