@charset "UTF-8";
/************************************
** 変数
************************************/
@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;
}
@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 400;
  src: url("../font/libre-baskerville-latin-400-normal.woff2") format("woff2"), url("../font/libre-baskerville-latin-400-normal.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Libre Baskerville";
  font-style: normal;
  font-weight: 700;
  src: url("../font/libre-baskerville-latin-700-normal.woff2") format("woff2"), url("../font/libre-baskerville-latin-700-normal.woff") format("woff");
  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: #504b2d;
  background-color: #fafaf5;
  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;
  font-weight: 700;
  line-height: 150%;
}
@media (width <= 992px) {
  h2 {
    font-size: 1.5rem;
  }
}

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: 0.625rem 3.75rem 0.625rem 1.25rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: white;
  text-decoration: none;
  vertical-align: middle;
  background-image: linear-gradient(to bottom, #6ac3b6, #5c928a 70%);
  border-radius: 6px;
}
.btn::before,
.btn_group::before,
.btn_solid::before,
.btn_orange::before {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background-color: white;
  border-radius: 50%;
  transition: all 0.2s;
  transform: translateY(-50%);
}
.btn::after,
.btn_group::after,
.btn_solid::after,
.btn_orange::after {
  position: absolute;
  top: 50%;
  right: 1.875rem;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transition: all 0.2s;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover,
.btn_group:hover,
.btn_solid:hover,
.btn_orange:hover {
  color: white;
}
.btn:hover::before,
.btn_group:hover::before,
.btn_solid:hover::before,
.btn_orange:hover::before {
  right: 1rem;
}
.btn:hover::after,
.btn_group:hover::after,
.btn_solid:hover::after,
.btn_orange:hover::after {
  right: 1.46875rem;
}

.btn_orange {
  background-image: linear-gradient(to bottom, #f9b375, #f57820 70%);
}
.btn_orange::after {
  border-top: solid 2px #f28c42;
  border-right: solid 2px #f28c42;
}

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

.btn_group {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #056152;
  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.625rem;
  left: calc(50% + 8.125rem);
  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: #5c928a;
  filter: drop-shadow(0 0 6px rgba(77, 77, 77, 0.15));
}
.btn_group:hover::after {
  left: calc(50% + 8.4375rem);
}
@media (width <= 992px) {
  .btn_group:hover::after {
    left: calc(50% + 8.125rem);
  }
}
@media (width <= 992px) {
  .btn_group {
    font-size: 1rem;
  }
  .btn_group::after {
    top: 1.625rem;
    left: calc(50% + 8.125rem);
  }
}

/************************************
** 電話ボタン・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: 1rem;
  font-weight: 500;
  color: #504b2d;
  background-color: #eeeaea;
  border-radius: 6px;
  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: #504b2d;
  opacity: 0.7;
}

.interview_btn,
.web_btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 15rem;
  height: 3.5rem;
  padding-top: 0.125rem;
  padding-left: 2.75rem;
  margin-inline: 0.3125rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  background-image: linear-gradient(to bottom, #6ac3b6, #5c928a 70%);
  border-radius: 6px;
  transition: 0.3s;
}
.interview_btn::before,
.web_btn::before {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  display: inline-block;
  width: 2rem;
  height: 2.125rem;
  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 {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom, #f9b375, #f57820 70%);
}
.web_btn::before {
  flex-shrink: 0;
  background-image: url("../images/icon/calendar.svg");
}
.web_btn::after {
  display: inline-block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z' fill='%23f0932b'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% 65%;
  border-radius: 50%;
}

/************************************
** 上に戻るボタン
************************************/
.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);
}

/************************************
** モバイル時下部固定ボタン
************************************/
/************************************
** 固定フッター
************************************/
.footer_fix_mobile {
  position: fixed;
  bottom: 0.625rem;
  left: 50%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
  justify-items: center;
  transform: translateX(-50%);
}
.footer_fix_mobile .footer_fix_recruit {
  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  width: 9.375rem;
  height: 3.5rem;
  padding: 0 0.9375rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #6ac3b6, #5c928a 70%);
  border-radius: 6px;
  transition: 0.3s;
  /* 2. 右側：白丸＆緑矢印アイコン */
}
.footer_fix_mobile .footer_fix_recruit::after {
  position: absolute;
  right: 1rem;
  display: inline-block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z' fill='%235C928A'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% 65%;
  border-radius: 50%;
}
.footer_fix_mobile .footer_fix_recruit {
  /* ホバー時 */
}
.footer_fix_mobile .footer_fix_recruit:hover {
  color: white;
  opacity: 0.7;
}
.footer_fix_mobile .footer_fix_web {
  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 3.5rem;
  padding: 0 1rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #f9b375, #f57820 70%);
  border-radius: 6px;
  transition: 0.3s;
}
.footer_fix_mobile .footer_fix_web::before {
  position: absolute;
  top: 0.625rem;
  left: 1.125rem;
  display: inline-block;
  flex-shrink: 0;
  width: 2rem;
  height: 2.125rem;
  content: "";
  background-image: url("../images/icon/calendar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer_fix_mobile .footer_fix_web {
  /* 2. 右側：白丸＆オレンジ矢印アイコン */
}
.footer_fix_mobile .footer_fix_web::after {
  position: absolute;
  right: 1rem;
  display: inline-block;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  content: "";
  background-color: white;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z' fill='%23f0932b'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% 65%;
  border-radius: 50%;
}
.footer_fix_mobile .footer_fix_web {
  /* ホバー時 */
}
.footer_fix_mobile .footer_fix_web:hover {
  color: white;
  opacity: 0.7;
}

/************************************
** テーブル
************************************/
.wp-block-table th {
  font-weight: 500;
  background-color: transparent;
  border-top: solid 1px #dfdfdf !important;
  border-right: none;
  border-bottom: solid 1px #dfdfdf !important;
  border-left: none;
}
.wp-block-table td {
  background-color: transparent;
  border-top: solid 1px #dfdfdf !important;
  border-right: none;
  border-bottom: solid 1px #dfdfdf !important;
  border-left: none;
}

/************************************
** 診療時間
************************************/
.info_hours_section {
  margin-bottom: 3.125rem;
}

.info_hours {
  max-width: 62.5rem;
  padding: 0;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  text-align: center;
}
.info_hours table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}
.info_hours tbody tr th,
.info_hours tbody tr td {
  padding: 0.625rem 0;
  font-weight: 400;
  border: 0;
  border-bottom: solid 1px #9ecac2;
}
.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 {
  margin-bottom: 1.25rem;
}
.info_map table {
  position: relative;
  display: flex;
}
.info_map table th {
  width: 6.25rem;
  padding-left: 0.9375rem;
  font-weight: 400;
  vertical-align: top;
}
.info_map table::before {
  position: absolute;
  display: inline-block;
  width: 0.1875rem;
  height: 100%;
  content: "";
  background-color: #5c928a;
  border-radius: 2.5px;
}

/*********************************
* タイムライン
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;
  line-height: 1.5;
  color: #056152;
}

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

.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: #9ecac2 !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 #5c928a;
  border-radius: 50%;
}

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

/* 四角 */
.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: #056152;
}

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

/************************************
** 著者紹介
************************************/
.article_author {
  max-width: 62.5rem;
  margin: 6.25rem auto 0;
}
.article_author .author_grid_container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12.5rem, 15.625rem) 1fr;
  gap: 2.25rem;
  align-items: stretch;
  padding: 1.5625rem;
  overflow: hidden;
  background-color: white;
  border: solid 1px #dfdfdf;
  border-radius: 6px;
}
.article_author .author_grid_container::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.375rem;
  content: "";
  background-image: linear-gradient(to right, #5c928a, #9ecac2);
}
.article_author .author_grid_container > div:first-child {
  overflow: hidden;
  background-color: #fafaf5;
}
.article_author .author_grid_container > div:first-child img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 18.75rem;
  object-fit: cover;
  object-position: center top;
}
.article_author .author_grid_container > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.article_author .author_grid_container p {
  margin-bottom: 1rem;
  font-size: 0.8125rem;
  line-height: 175%;
  text-align: left;
}
.article_author .author_grid_container p:first-child {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.article_author .author_grid_container p:first-child::before {
  display: block;
  width: 1.5rem;
  height: 1px;
  content: "";
  background-color: #5c928a;
}
.article_author .author_grid_container .author_name {
  margin: 0 0 1.25rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.04em;
}
.article_author .author_grid_container .author_name span {
  display: inline-block;
  margin-right: 0.75rem;
}
.article_author .author_grid_container .author_title {
  width: 100%;
  padding: 0.625rem 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
  color: #056152;
  background-color: #fafaf5;
  border-left: solid 0.1875rem #5c928a;
}
.article_author .author_grid_container p:last-of-type {
  padding-top: 0.875rem;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  border-top: dashed 1px #dfdfdf;
}
.article_author .author_grid_container .btn {
  margin-top: auto;
  color: #5c928a;
  background-color: #fafaf5;
  background-image: none;
  border: solid 1px #9ecac2;
}
.article_author .author_grid_container .btn:hover {
  color: #056152;
  background-color: #f7f3ed;
}
@media (width <= 992px) {
  .article_author .author_grid_container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.125rem;
  }
  .article_author .author_grid_container > div:first-child {
    justify-self: center;
    width: min(65%, 11.875rem);
    aspect-ratio: 4/5;
  }
  .article_author .author_grid_container > div:first-child img {
    min-height: 0;
  }
  .article_author .author_grid_container .author_name {
    font-size: 1.25rem;
  }
  .article_author .author_grid_container .btn {
    width: 100%;
    text-align: center;
  }
}

/************************************
** 目次
************************************/
#toc_container {
  box-sizing: border-box;
  display: block;
  width: min(100%, 42.5rem) !important;
  padding: 1.5rem 1.75rem 0.625rem;
  margin: 0 auto 3.75rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  background-color: rgba(255, 255, 255, 0.75);
  border: solid 1px #dfdfdf;
  border-radius: 6px;
}
#toc_container .toc_title {
  position: relative;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding-right: 2.5rem;
  margin-bottom: 0.875rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: left;
}
#toc_container .toc_title::before {
  display: block;
  width: 2rem;
  height: 1px;
  content: "";
  background-color: #5c928a;
}
#toc_container .toc_toggle {
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0;
  transform: translateY(-50%);
}
#toc_container .toc_toggle a {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  color: #056152;
  text-decoration: none;
  border: solid 1px #9ecac2;
  border-radius: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
#toc_container .toc_toggle a:hover {
  background-color: rgba(158, 202, 194, 0.15);
  border-color: #5c928a;
}
#toc_container .toc_toggle .toc_toggle_indicator {
  position: relative;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
}
#toc_container .toc_toggle .toc_toggle_indicator::before, #toc_container .toc_toggle .toc_toggle_indicator::after {
  position: absolute;
  display: block;
  content: "" !important;
  background-color: #056152;
  transition: opacity 0.2s ease;
}
#toc_container .toc_toggle .toc_toggle_indicator::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
#toc_container .toc_toggle .toc_toggle_indicator::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  transform: translateX(-50%);
}
#toc_container:not(.contracted) .toc_toggle_indicator::after {
  opacity: 0;
}
#toc_container.contracted .toc_toggle_indicator::after {
  opacity: 1;
}
#toc_container ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
#toc_container .toc_list > li {
  border-bottom: dashed 1px #dfdfdf;
}
#toc_container .toc_list > li:last-child {
  border-bottom: 0;
}
#toc_container .toc_list > li > a {
  display: flex;
  gap: 0.625rem;
  align-items: baseline;
  padding: 0.6875rem 0;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  color: #504b2d;
  text-decoration: none;
}
#toc_container .toc_list > li > a:hover {
  color: #056152;
}
#toc_container .toc_depth_1 {
  flex-shrink: 0;
  min-width: 1.5rem;
  font-weight: 500;
  color: #5c928a;
}
#toc_container .toc_list > li > ul {
  padding-bottom: 0.625rem;
  margin-left: 2.125rem;
}
#toc_container .toc_list > li > ul li {
  margin-bottom: 0.25rem;
}
#toc_container .toc_list > li > ul li:last-child {
  margin-bottom: 0;
}
#toc_container .toc_list > li > ul a {
  display: flex;
  gap: 0.5rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #504b2d;
  text-decoration: none;
}
#toc_container .toc_list > li > ul a:hover {
  color: #056152;
}
#toc_container .toc_depth_2 {
  flex-shrink: 0;
  min-width: 1.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  #toc_container {
    padding: 1.25rem 1.25rem 0.625rem;
    margin-bottom: 2.8125rem;
  }
  #toc_container .toc_title {
    font-size: 1.0625rem;
  }
  #toc_container .toc_list > li > a {
    font-size: 0.9375rem;
  }
}
@media (width <= 480px) {
  #toc_container {
    padding: 1.125rem 0.9375rem 0.625rem;
  }
  #toc_container .toc_list > li > ul {
    margin-left: 1.25rem;
  }
}

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

.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;
    padding: 1.125rem 1.625rem;
  }
}
.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: 1.625rem;
    margin-top: 0;
  }
}
.header_container .nav_pc {
  position: relative;
  grid-row: 2/3;
  grid-column: 1/5;
  justify-self: center;
}
.header_container .nav_pc::before {
  position: absolute;
  top: 1.25rem;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 0.0625rem;
  content: "";
  border-top: solid 1px #dfdfdf;
}
@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 0.9375rem;
  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 #dfdfdf;
}
.header_container .nav_pc .nav_first li:last-child::after {
  content: none;
}
.header_container .nav_pc .nav_first li a {
  color: #504b2d;
  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: #fcfbfb;
}
.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;
  margin-top: 0.5rem;
}
.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: #fafaf5;
  transition: all 0.5s;
}
.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: 20px;
  margin: 80px 20px 20px;
  background: #ffffff;
  border-radius: 0.5rem;
}
.header_container .nav_sp_wrap .nav_sp ul li {
  list-style: none;
  border-bottom: solid 1px #dfdfdf;
}
.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: #504b2d;
  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: #504b2d;
  opacity: 1;
}
.header_container .nav_sp_wrap .nav_sp ul li {
  /* ▼ 1階層目（親）の＋ボタンなしメニューにのみ右側の「＞」を付ける ▼ */
}
@media (width <= 992px) {
  .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;
    display: block;
    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: #9ecac2;
  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 {
  /* ▼ 子メニュー（2階層目）の設定 ▼ */
}
.header_container .nav_sp_wrap .nav_sp ul li .nav_second li {
  /* 子メニューのliに::afterが付かないように指定 */
}
.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 {
  /* 左側の「＞」マークアイコン */
}
.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: 1.25rem 0.625rem;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours ul {
  padding: 0;
  font-size: 0.875rem;
}
.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;
}
.hero_section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 220px;
  height: 220px;
  content: "";
  background-image: radial-gradient(circle at 0 0, transparent 230px, #5c928a 230px);
}
@media (width <= 992px) {
  .hero_section::after {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle at 0 0, transparent 210px, #5c928a 210px);
  }
}
.hero_section img {
  width: 100vw;
  height: 33.75rem;
  object-fit: cover;
  object-position: right 20%;
  border-bottom-right-radius: 230px;
}
@media (width <= 992px) {
  .hero_section img {
    width: 100vw;
    object-position: right 20%;
    border-bottom-right-radius: 200px;
  }
}
.hero_section .splide__pagination {
  display: none;
}
.hero_section .hero_content {
  position: absolute;
  bottom: 2.5rem;
  left: 11.875rem;
}
@media (width <= 992px) {
  .hero_section .hero_content {
    bottom: 1.25rem;
    left: 1.25rem;
  }
}
.hero_section .hero_content .hero_text_day {
  display: block;
  padding: 0.75rem;
  padding-bottom: 0;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: white;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text_day {
    padding: 0.3125rem 0.5625rem 0;
    font-size: 0.625rem;
    line-height: 1.8em;
  }
}
.hero_section .hero_content .hero_text {
  position: relative;
  display: block;
  padding: 0.625rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 2.625rem;
  line-height: 140%;
  color: white;
  letter-spacing: 0.17em;
}
.hero_section .hero_content .hero_text::before {
  position: absolute;
  top: -3.75rem;
  left: -10rem;
  width: 12.1875rem;
  height: 17rem;
  content: "";
  background-image: url("/wp-content/themes/clinic/images/photo/hero_text_before.svg");
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text::before {
    top: -10.625rem;
    left: -0.625rem;
    width: 7.9375rem;
    height: 11.125rem;
    background-size: 7.9375rem 11.125rem;
  }
}
.hero_section .hero_content .hero_text::after {
  position: absolute;
  top: 0;
  right: -7.5rem;
  width: 12.375rem;
  height: 12.625rem;
  content: "";
  background-image: url("/wp-content/themes/clinic/images/photo/hero_text_after.svg");
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text::after {
    top: -5rem;
    left: 13.75rem;
    width: 8.1875rem;
    height: 8.3125rem;
    background-size: 8.1875rem 8.3125rem;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text {
    padding: 0.3125rem;
    font-size: 1.5rem;
  }
}
.hero_section .hero_content2 {
  position: absolute;
  top: 15.625rem;
  left: 6.25rem;
}
@media (width <= 992px) {
  .hero_section .hero_content2 {
    top: 18.125rem;
    left: 1.25rem;
  }
}
.hero_section .hero_content2 .hero_text2 {
  display: inline-block;
  padding-top: 0.625rem;
  font-weight: 500;
  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_content2 .hero_text2 ul {
    padding-left: 1.5625rem;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 {
    padding: 0.3125rem;
    padding-right: 0.625rem;
    font-size: 1rem;
  }
}

/************************************
** フッター
************************************/
.footer_section {
  padding: 8.125rem 0 0 0;
  overflow: hidden;
}
@media (width <= 992px) {
  .footer_section {
    padding: 0;
  }
}
.footer_section .footer_container {
  max-width: 75rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* 左右の高さを揃える */
}
@media (width <= 992px) {
  .footer_section .footer_container {
    flex-direction: column;
    padding-left: 0rem;
  }
}
.footer_section {
  /* -----------------------------
     左カラム
  ----------------------------- */
}
.footer_section .footer_left {
  flex: 0 0 23.75rem;
  padding-top: 11.875rem;
  padding-right: 5rem;
}
@media (width <= 992px) {
  .footer_section .footer_left {
    flex: none;
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    padding-top: 5rem;
  }
}
.footer_section .footer_left .footer_logo {
  margin-bottom: 1.5rem;
}
.footer_section .footer_left .footer_logo img {
  max-width: 22.5rem;
  height: auto;
}
@media (width <= 992px) {
  .footer_section .footer_left .footer_logo img {
    max-width: 280px;
  }
}
.footer_section .footer_left .footer_desc {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #504b2d;
  margin-bottom: 2rem;
}
@media (width <= 992px) {
  .footer_section .footer_left .footer_desc {
    font-size: 0.875rem;
  }
}
.footer_section .footer_left .footer_btn_wrap {
  margin-bottom: 1.5rem;
}
.footer_section .footer_left .footer_btn_wrap .btn_reservation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 15rem;
  height: 3.5rem;
  padding: 0 1rem;
  box-sizing: border-box;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #f9b375, #f57820 70%);
  border-radius: 6px;
  transition: 0.3s;
}
.footer_section .footer_left .footer_btn_wrap .btn_reservation::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2.125rem;
  background-image: url("../images/icon/calendar.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  position: absolute;
  top: 0.625rem;
  left: 1.125rem;
}
.footer_section .footer_left .footer_btn_wrap .btn_reservation {
  /* 2. 右側：白丸＆オレンジ矢印アイコン */
}
.footer_section .footer_left .footer_btn_wrap .btn_reservation::after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: white;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z' fill='%23f0932b'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 65% 65%;
  position: absolute;
  right: 1rem;
}
.footer_section .footer_left .footer_btn_wrap .btn_reservation {
  /* ホバー時 */
}
.footer_section .footer_left .footer_btn_wrap .btn_reservation:hover {
  color: white;
  opacity: 0.7;
}
.footer_section .footer_left .footer_copyright {
  font-size: 0.75rem;
  color: #504b2d;
}
.footer_section {
  /* -----------------------------
     右カラム
  ----------------------------- */
}
.footer_section .footer_right {
  flex: 1;
  background-color: #5c928a;
  border-radius: 16.875rem 0 0 0;
  margin-right: calc(-1 * (100vw - 100%));
  padding: 7.5rem max((100vw - 75rem) / 2, 1.25rem) 5rem 10rem;
  color: white;
}
@media (width <= 1260px) {
  .footer_section .footer_right {
    padding: 7.5rem 6.875rem 6.25rem;
  }
}
@media (width <= 992px) {
  .footer_section .footer_right {
    margin-right: 0rem;
    border-radius: 6.25rem 0 0 0;
    padding: 3.75rem 1.25rem 6.25rem;
  }
}
.footer_section .footer_right .footer_menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.125rem;
  width: 37.5rem;
  border-bottom: solid 1px #fff;
  padding-bottom: 2rem;
}
@media (width <= 1260px) {
  .footer_section .footer_right .footer_menu {
    width: 28.125rem;
    gap: 0;
  }
}
@media (width <= 992px) {
  .footer_section .footer_right .footer_menu {
    display: none;
  }
}
.footer_section .footer_right .footer_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer_section .footer_right .footer_menu ul li {
  margin-bottom: 0.75rem;
}
.footer_section .footer_right .footer_menu ul li a {
  color: white;
  font-size: 0.8125rem;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.footer_section .footer_right .footer_menu ul li a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer_section .footer_right {
  /* グループ院エリア */
}
.footer_section .footer_right .footer_group {
  display: flex;
  justify-content: flex-start;
  gap: 4.6875rem;
}
@media (width <= 1260px) {
  .footer_section .footer_right .footer_group {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (width <= 992px) {
  .footer_section .footer_right .footer_group {
    flex-direction: column;
    gap: 1rem;
  }
}
.footer_section .footer_right .footer_group .group_title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.footer_section .footer_right .footer_group .btn_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2.5rem;
  width: 25rem;
  height: 3.625rem;
  margin-bottom: 0.5rem;
  background-color: white;
  color: #4c8271;
  border-radius: 8px;
  font-size: 1.125rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (width <= 992px) {
  .footer_section .footer_right .footer_group .btn_group {
    width: 100%;
    font-size: 0.9375rem;
    padding: 0.875rem 1rem;
    justify-content: center;
  }
}
.footer_section .footer_right .footer_group .btn_group:hover {
  opacity: 0.9;
}

/************************************
** お知らせ
************************************/
.news_post {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem) 3.125rem;
  background-color: #fafaf5;
}
@media (width <= 992px) {
  .news_post {
    padding: 1.25rem 0.625rem 12.5rem;
  }
}
.news_post .grid_container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  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 {
  margin-bottom: 1.25rem;
  text-align: left;
}
.news_post .grid_container .news_main h2::after {
  content: none;
}
.news_post .grid_container .news_main ul {
  margin-bottom: 1.25rem;
}
.news_post .grid_container .news_main time {
  color: #504b2d;
}
.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 .thumbnail img {
  margin-inline: auto;
}
.news_post .grid_container .news_main .thumbnail {
  margin-bottom: 3.125rem;
}
.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: #504b2d;
}
.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: #504b2d;
}

/************************************
** お知らせアーカイブ
************************************/
.archive .news_post .grid_container .news_main .title_container {
  padding: 0.625rem;
}
.archive .news_post .grid_container .news_main .title_container time {
  font-size: 0.875rem;
  color: #504b2d;
}
.archive .news_post .grid_container .news_main .title_container h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #504b2d;
  text-align: left;
}
.archive .news_post .grid_container .news_main .nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (width <= 480px) {
  .archive .news_post .grid_container .news_main .nav-links {
    gap: 0.25rem;
  }
}
.archive .news_post .grid_container .news_main .nav-links .page-numbers {
  display: grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  line-height: 1;
}
.archive .news_post .grid_container .news_main .nav-links .prev,
.archive .news_post .grid_container .news_main .nav-links .next {
  position: relative;
  min-width: 0.75rem;
  color: #504b2d;
}
.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: 0.125rem;
  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: 0.125rem;
  left: inherit;
  transform: rotate(45deg);
}
.archive .news_post .grid_container .news_main .nav-links a {
  color: #504b2d;
}
.archive .news_post .grid_container .news_main .nav-links .current {
  font-weight: 500;
  color: white;
  background-color: #5c928a;
  border-radius: 50%;
}

/************************************
** 固定ページ
************************************/
.page_wrap {
  background-color: #fafaf5;
}
@media (width <= 992px) {
  .page_wrap {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap nav {
  padding: 0.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: white;
}
.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 {
  margin-bottom: 1.875rem;
  color: white;
  text-decoration: none;
}
.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-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  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-left: 1.875rem;
  margin-bottom: 4.0625rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  text-align: left;
  border-left: solid 2px #5c928a;
}
.page_wrap .main_page h2:not(:first-child) {
  margin-top: 5rem;
}
.page_wrap .main_page h2::after {
  left: 0;
}
@media (width <= 992px) {
  .page_wrap .main_page h2 {
    padding-left: 0.625rem;
    margin-bottom: 2.5rem;
  }
}
.page_wrap .main_page h3 {
  position: relative;
  padding-bottom: 0.3125rem;
  margin-top: 3.125rem;
  margin-bottom: 1.5rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-weight: 400;
  border-bottom: solid 2px #dfdfdf;
}
@media (width <= 992px) {
  .page_wrap .main_page h3 {
    margin-bottom: 1.25rem;
  }
}
.page_wrap .main_page h4 {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-weight: 400;
}
.page_wrap .main_page h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1rem;
  height: 2px;
  content: "";
  background-color: #9ecac2;
  transform: translateY(-50%);
}
@media (width <= 992px) {
  .page_wrap .main_page h4 {
    margin-bottom: 1rem;
  }
}
.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: 2.5rem;
  margin-left: 0.3125rem;
}
.page_wrap .main_page .schema-faq-section .schema-faq-question::before {
  position: absolute;
  top: -0.3125rem;
  left: 0;
  padding: 0.1875rem 0.625rem;
  color: white;
  content: "Q";
  background-color: #5c928a;
  border-radius: 9999px;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer {
  position: relative;
  padding: 0.9375rem;
  padding-left: 2.5rem;
  margin-top: 0.9375rem;
  background-color: white;
  border: solid 2px #9ecac2;
  border-radius: 10px;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer::before {
  position: absolute;
  top: 0.9375rem;
  left: 0.9375rem;
  content: "A. ";
}
.page_wrap .main_page .disease_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin-top: 2.5rem;
}
.page_wrap .main_page .disease_list li {
  display: inline-block;
  list-style: none;
}
.page_wrap .main_page .disease_list li::marker {
  content: none;
}
.page_wrap .main_page .disease_list li a {
  position: relative;
  display: inline-block;
  padding: 0.625rem 2.25rem 0.625rem 1.25rem;
  font-size: 1rem;
  color: #504b2d;
  text-decoration: none;
  background-color: white;
  border: solid 1px #dfdfdf;
  border-radius: 40px;
}
@media (width <= 992px) {
  .page_wrap .main_page .disease_list li a {
    padding: 0.5rem 2.25rem 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}
.page_wrap .main_page .disease_list li a::after {
  position: absolute;
  right: 1.5rem;
  bottom: 1.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .page_wrap .main_page .disease_list li a::after {
    bottom: 1.0625rem;
  }
}
.page_wrap .main_page .contact-form {
  width: 100%;
}
.page_wrap .main_page .contact-form table {
  width: 100%;
  table-layout: fixed;
}
.page_wrap .main_page .contact-form tr {
  border-bottom: dashed 1px #dfdfdf;
}
.page_wrap .main_page .contact-form th,
.page_wrap .main_page .contact-form td {
  padding: 1.25rem 0;
  vertical-align: middle;
  border: 0;
}
.page_wrap .main_page .contact-form th {
  width: 30%;
  padding-right: 1.875rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-weight: 500;
  text-align: left;
}
.page_wrap .main_page .contact-form td {
  width: 70%;
}
.page_wrap .main_page .contact-form p {
  margin-bottom: 0;
}
.page_wrap .main_page .contact-form .hissu {
  display: inline-block;
  padding: 0.125rem 0.4375rem;
  margin-left: 0.75rem;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.6;
  color: white;
  vertical-align: middle;
  background-color: #e2565b;
  border-radius: 2px;
}
.page_wrap .main_page .contact-form input[type=text],
.page_wrap .main_page .contact-form input[type=email],
.page_wrap .main_page .contact-form input[type=tel],
.page_wrap .main_page .contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  color: #504b2d;
  background-color: #f7f7f7;
  border: solid 1px #dfdfdf;
  border-radius: 4px;
  outline: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.page_wrap .main_page .contact-form input[type=text],
.page_wrap .main_page .contact-form input[type=email],
.page_wrap .main_page .contact-form input[type=tel] {
  height: 3.125rem;
}
.page_wrap .main_page .contact-form textarea {
  min-height: 12.5rem;
  resize: vertical;
}
.page_wrap .main_page .contact-form input[type=text]:focus,
.page_wrap .main_page .contact-form input[type=email]:focus,
.page_wrap .main_page .contact-form input[type=tel]:focus,
.page_wrap .main_page .contact-form textarea:focus {
  background-color: white;
  border-color: #5c928a;
}
.page_wrap .main_page .contact-form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.375rem;
  align-items: center;
}
.page_wrap .main_page .contact-form .wpcf7-list-item {
  margin: 0;
}
.page_wrap .main_page .contact-form .wpcf7-list-item label {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  cursor: pointer;
}
.page_wrap .main_page .contact-form input[type=radio] {
  display: grid;
  flex-shrink: 0;
  place-content: center;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  appearance: none;
  cursor: pointer;
  background-color: #f1f3f5;
  border: solid 1px #d5dbe0;
  border-radius: 50%;
}
.page_wrap .main_page .contact-form input[type=radio]::before {
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  background-color: #5c928a;
  border-radius: 50%;
  transition: transform 0.15s ease;
  transform: scale(0);
}
.page_wrap .main_page .contact-form input[type=radio]:checked {
  border-color: #5c928a;
}
.page_wrap .main_page .contact-form input[type=radio]:checked::before {
  transform: scale(1);
}
.page_wrap .main_page .contact-form input[type=radio]:focus-visible {
  outline: solid 2px #9ecac2;
  outline-offset: 2px;
}
.page_wrap .main_page .contact-form .file-label {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.page_wrap .main_page .contact-form .file-label .filebutton {
  display: grid;
  place-items: center;
  width: 11rem;
  height: 2.375rem;
  font-size: 0.8125rem;
  background-color: #f7f7f7;
  border: solid 1px #dfdfdf;
  border-radius: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.page_wrap .main_page .contact-form .file-label:hover .filebutton {
  opacity: 0.7;
}
.page_wrap .main_page .contact-form .file-label:focus-within .filebutton {
  border-color: #5c928a;
  outline: solid 2px #9ecac2;
  outline-offset: 2px;
}
.page_wrap .main_page .contact-form .file-label .wpcf7-form-control-wrap {
  position: absolute;
  inset: 0;
}
.page_wrap .main_page .contact-form .file-label input[type=file] {
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}
.page_wrap .main_page .contact-form .file-message {
  display: inline-block;
  max-width: calc(100% - 12.25rem);
  margin-left: 0.75rem;
  font-size: 0.8125rem;
  vertical-align: middle;
  overflow-wrap: anywhere;
}
.page_wrap .main_page .contact-form .wpcf7-not-valid-tip {
  margin-top: 0.3125rem;
  font-size: 0.8125rem;
  color: #e2565b;
}
.page_wrap .main_page .contact-form .submit-btn {
  margin-top: 2.5rem;
  text-align: center;
}
.page_wrap .main_page .contact-form .submit-btn input[type=submit] {
  min-width: 15rem;
  padding: 0.875rem 2.5rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  background-image: linear-gradient(to bottom, #6ac3b6, #5c928a 70%);
  border: 0;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}
.page_wrap .main_page .contact-form .submit-btn input[type=submit]:hover {
  opacity: 0.8;
}
.page_wrap .main_page .contact-form .submit-btn input[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
@media (width <= 992px) {
  .page_wrap .main_page .contact-form table,
  .page_wrap .main_page .contact-form tbody,
  .page_wrap .main_page .contact-form tr,
  .page_wrap .main_page .contact-form th,
  .page_wrap .main_page .contact-form td {
    display: block;
    width: 100%;
  }
  .page_wrap .main_page .contact-form th {
    padding: 1.25rem 0 0.625rem;
  }
  .page_wrap .main_page .contact-form td {
    padding: 0 0 1.25rem;
  }
  .page_wrap .main_page .contact-form .wpcf7-radio {
    gap: 0.625rem 1.125rem;
  }
  .page_wrap .main_page .contact-form .wpcf7-list-item {
    width: auto;
  }
  .page_wrap .main_page .contact-form textarea {
    min-height: 11.25rem;
  }
}
@media (width <= 480px) {
  .page_wrap .main_page .contact-form .file-message {
    display: block;
    max-width: 100%;
    margin-top: 0.25rem;
    margin-left: 0;
  }
  .page_wrap .main_page .contact-form .wpcf7-radio {
    display: grid;
    grid-template-columns: 1fr;
  }
  .page_wrap .main_page .contact-form .submit-btn input[type=submit] {
    width: 100%;
  }
}
.page_wrap .main_page .th_fix_width th {
  width: 6.25rem;
}

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

h2 {
  position: relative;
  margin-top: 1.25rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-weight: 400;
  color: #504b2d;
  text-align: left;
}
@media (width <= 992px) {
  h2 {
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

/************************************
** トップ　pickup
************************************/
/************************************
** トップ　お知らせ
************************************/
.news_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem) 0;
}
.news_section .top_info_news {
  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;
  background-color: white;
  border-radius: 12px;
}
@media (width <= 992px) {
  .news_section .top_info_news {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 2rem;
  }
}
.news_section .top_info_news .top_info_news_title {
  grid-row: 1/2;
  grid-column: 1/2;
  place-content: left;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.news_section .top_info_news .top_info_news_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title .title_english {
    font-size: 0.875rem;
  }
}
.news_section .top_info_news .top_info_news_title .title_english::before {
  position: absolute;
  top: 1.75rem;
  left: 0rem;
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title .title_english::before {
    top: 1.625rem;
    left: 0rem;
    width: 2.5rem;
  }
}
.news_section .top_info_news .top_info_news_title h2 {
  font-weight: 500;
  text-align: left;
}
.news_section .top_info_news .top_info_column_title .title_english::before {
  left: 6.5625rem;
}
.news_section .top_info_news .top_info_news_btn {
  grid-row: 2/3;
  grid-column: 1/2;
  place-content: center;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_btn {
    grid-row: 3/4;
    grid-column: 1/2;
    margin-top: 1.25rem;
    text-align: center;
  }
}
.news_section .top_info_news .top_info_news_main {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_main {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.news_section .top_info_news .info_news_item {
  margin: 0.625rem 0;
  border-bottom: 1px dashed #dfdfdf;
}
.news_section .top_info_news .info_news_item:last-child {
  border-bottom: 0;
}
@media (width <= 992px) {
  .news_section .top_info_news .info_news_item:last-child {
    border-bottom: 1px dashed #dfdfdf;
  }
}
.news_section .top_info_news .info_news_item a {
  display: grid;
  grid-template-columns: 5rem 1fr;
  color: #504b2d;
}
@media (width <= 992px) {
  .news_section .top_info_news .info_news_item a {
    display: block;
  }
}
.news_section .top_info_news .info_news_item a time {
  grid-column: 1/2;
  font-size: 0.875rem;
}
.news_section .top_info_news .info_news_item a p {
  grid-column: 2/3;
  margin-bottom: 0.625rem;
}

/************************************
** トップ　地域社会の架け橋となる医療機関
************************************/
.about_section {
  position: relative;
  padding: 6.25rem max((100vw - 62.5rem) / 2, 1.25rem) 2.5rem;
  overflow: hidden;
}
@media (width <= 992px) {
  .about_section {
    padding: 0rem 1.25rem 0rem;
  }
}
.about_section .about_section_bgtext {
  position: absolute;
  top: 10.625rem;
  left: 50%;
  z-index: -1;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 9.375rem;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transform: translateX(-50%);
}
@media (width <= 992px) {
  .about_section .about_section_bgtext {
    display: none;
  }
}
.about_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 5.3125rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .about_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.about_section .grid_container .top_about_main_left {
  margin-top: 5rem;
}
@media (width <= 992px) {
  .about_section .grid_container .top_about_main_left {
    grid-row: 2;
    margin-top: 1.25rem;
  }
}
.about_section .grid_container .top_about_main_left img {
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
}
.about_section .top_about_main_right {
  max-width: 430px;
}
@media (width <= 1260px) {
  .about_section .top_about_main_right {
    max-width: none;
  }
}
.about_section .top_about_main_right .top_about_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .about_section .top_about_main_right .top_about_title .title_english {
    font-size: 0.625rem;
  }
}
.about_section .top_about_main_right .top_about_title .title_english::before {
  position: absolute;
  top: 1.75rem;
  left: 0rem;
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .about_section .top_about_main_right .top_about_title .title_english::before {
    top: 1.25rem;
    left: 0rem;
    width: 2.5rem;
  }
}
.about_section .top_about_main_right .top_about_title h2 {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

/************************************
** トップ　info
************************************/
/************************************
** トップ　RICメンタルクリニックが大切にしていること
************************************/
.feature_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem;
}
@media (width <= 992px) {
  .feature_section {
    padding-bottom: 3.5rem;
  }
}
.feature_section .top_feature_title {
  text-align: center;
}
.feature_section .top_feature_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .feature_section .top_feature_title .title_english {
    font-size: 0.625rem;
  }
}
.feature_section .top_feature_title .title_english::before {
  position: absolute;
  top: 1.75rem;
  right: 0rem;
  left: 0rem;
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  margin-inline: auto;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .feature_section .top_feature_title .title_english::before {
    top: 1.25rem;
    width: 2.5rem;
  }
}
.feature_section .top_feature_title h2 {
  text-align: center;
}
.feature_section .grid_container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 3.125rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 3.75rem;
}
@media (width <= 992px) {
  .feature_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0rem;
    margin-top: 0rem;
  }
}
.feature_section .top_feature_card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 17.5rem;
  height: 100%;
  padding: 1.875rem 1.25rem 1.25rem;
  border-radius: 12px;
}
@media (width <= 992px) {
  .feature_section .top_feature_card {
    width: 100%;
    padding: 0.75rem 1.25rem;
  }
}
.feature_section .top_feature_card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.9375rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #5c928a;
  text-align: center;
}
@media (width <= 992px) {
  .feature_section .top_feature_card h3 {
    margin-bottom: 0rem;
    font-size: 1.375rem;
  }
}
.feature_section .top_feature_card h3 span {
  display: inline;
  background: linear-gradient(transparent 60%, #fafaf5 0%);
}
.feature_section .top_feature_card p {
  margin-top: 0.9375rem;
}
.feature_section .advice_text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 200%;
  text-align: center;
}
@media (width <= 992px) {
  .feature_section .advice_text {
    margin-bottom: 0rem;
  }
}

/************************************
** クリニック一覧
************************************/
.clinics_section {
  padding: 7.5rem max((100vw - 75rem) / 2, 1.25rem) 23.125rem;
  background: white;
  border-top-left-radius: 16.875rem;
}
@media (width <= 992px) {
  .clinics_section {
    padding: 3.75rem 1.25rem 20.625rem;
    border-top-left-radius: 5rem;
  }
}
.clinics_section .top_clinics_title {
  text-align: center;
}
.clinics_section .top_clinics_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .clinics_section .top_clinics_title .title_english {
    font-size: 0.625rem;
  }
}
.clinics_section .top_clinics_title .title_english::before {
  position: absolute;
  top: 1.75rem;
  right: 0rem;
  left: 0rem;
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  margin-inline: auto;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .clinics_section .top_clinics_title .title_english::before {
    top: 1.25rem;
    width: 2.5rem;
  }
}
.clinics_section .top_clinics_title h2 {
  text-align: center;
}
.clinics_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 3.75rem;
}
@media (width <= 1260px) {
  .clinics_section .grid_container {
    grid-template-columns: repeat(2, auto);
    height: 100%;
    margin-top: 2rem;
  }
}
@media (width <= 992px) {
  .clinics_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.clinics_section .top_clinics_banner {
  position: relative;
  display: block;
  overflow: hidden;
}
.clinics_section .top_clinics_banner::before {
  position: absolute;
  right: 0rem;
  bottom: 2.25rem;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background-color: #5c928a;
  border-radius: 50%;
  transition: all 0.2s;
}
@media (width <= 992px) {
  .clinics_section .top_clinics_banner::before {
    right: 0rem;
    bottom: 3.25rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.clinics_section .top_clinics_banner::after {
  position: absolute;
  right: 1rem;
  bottom: 3.25rem;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: solid 3px white;
  border-right: solid 3px white;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .clinics_section .top_clinics_banner::after {
    right: 0.5rem;
    bottom: 3.6875rem;
    width: 0.375rem;
    height: 0.375rem;
    border-top: solid 2px white;
    border-right: solid 2px white;
  }
}
.clinics_section .clinics_img {
  border-radius: 0.5rem;
}
.clinics_section h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #504b2d;
  text-align: left;
}
@media (width <= 992px) {
  .clinics_section h3 {
    font-size: 1.25rem;
  }
}
.clinics_section p {
  font-size: 0.875rem;
  color: #504b2d;
}
@media (width <= 992px) {
  .clinics_section p {
    padding-right: 3.75rem;
  }
}

/************************************
** トップ　症状
************************************/
/************************************
** トップ　診療案内
************************************/
.treatment_section {
  padding: 7.5rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem;
  margin-top: -16.875rem;
  background: #f7f3ed;
  border-top-right-radius: 16.875rem;
}
@media (width <= 992px) {
  .treatment_section {
    padding: 3.75rem 1.25rem 3.75rem;
    border-top-right-radius: 5rem;
  }
}
.treatment_section .top_treatment_title {
  text-align: center;
}
.treatment_section .top_treatment_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_title .title_english {
    font-size: 0.625rem;
  }
}
.treatment_section .top_treatment_title .title_english::before {
  position: absolute;
  top: 1.75rem;
  right: 0rem;
  left: 0rem;
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  margin-inline: auto;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_title .title_english::before {
    top: 1.25rem;
    width: 2.5rem;
  }
}
.treatment_section .top_treatment_title h2 {
  text-align: center;
}
.treatment_section .grid_container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 3.75rem;
}
@media (width <= 992px) {
  .treatment_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    margin-top: 0rem;
  }
}
.treatment_section .top_treatment_card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 17.5rem;
  height: 100%;
  padding: 2.5rem 2.5rem 3.125rem;
  background: white;
  border-radius: 8px;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card {
    width: 100%;
    padding: 1.5rem 1.5rem 2.25rem 1.5rem;
  }
}
.treatment_section .top_treatment_card .top_treatment_card_banner {
  position: relative;
  display: block;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card .top_treatment_card_banner {
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 1rem;
    align-items: center;
  }
}
.treatment_section .top_treatment_card .top_treatment_card_banner::before {
  position: absolute;
  right: 0rem;
  bottom: -1.25rem;
  width: 2rem;
  height: 2rem;
  content: "";
  background-color: #5c928a;
  border-radius: 50%;
  transition: all 0.2s;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card .top_treatment_card_banner::before {
    bottom: -0.75rem;
  }
}
.treatment_section .top_treatment_card .top_treatment_card_banner::after {
  position: absolute;
  right: 0.8125rem;
  bottom: -0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: solid 3px white;
  border-right: solid 3px white;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card .top_treatment_card_banner::after {
    bottom: 0rem;
  }
}
.treatment_section .top_treatment_card .treatment_img {
  display: block;
  margin: 0 auto;
  border-top-left-radius: 12.5rem;
  border-top-right-radius: 12.5rem;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card .treatment_img {
    grid-row: 1/3;
    grid-column: 1/2;
    width: 100%;
    height: auto;
    margin-bottom: auto;
  }
}
.treatment_section .top_treatment_card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.9375rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #504b2d;
  text-align: left;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card h3 {
    grid-column: 2/3;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }
}
.treatment_section .top_treatment_card p {
  margin-top: 0.9375rem;
  color: #504b2d;
}
@media (width <= 992px) {
  .treatment_section .top_treatment_card p {
    grid-column: 2/3;
    margin-top: 0;
    font-size: 0.8125rem;
  }
}
.treatment_section .advice_text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 200%;
  text-align: center;
}

/************************************
 ** トップ　症状から探す 疾患から探す
*************************************/
.search_section {
  padding: 5rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem;
}
@media (width <= 992px) {
  .search_section {
    padding: 0rem 1.25rem 3.5rem;
  }
}
.search_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 11.25rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 3.75rem;
}
@media (width <= 992px) {
  .search_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}
.search_section .search_symptoms {
  width: 100%;
}
.search_section .search_symptoms .top_search_symptoms_title {
  text-align: center;
}
.search_section .search_symptoms .top_search_symptoms_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .search_section .search_symptoms .top_search_symptoms_title .title_english {
    font-size: 1.25rem;
  }
}
.search_section .search_symptoms .top_search_symptoms_title .title_english::before {
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .search_section .search_symptoms .top_search_symptoms_title .title_english::before {
    top: 0.9375rem;
    left: 4.0625rem;
  }
}
.search_section .search_symptoms .top_search_symptoms_title h2 {
  margin-top: 0.625rem;
  text-align: center;
}
.search_section .search_symptoms ul {
  padding: 0;
  margin-top: 2.5rem;
}
.search_section .search_symptoms ul li {
  list-style: none;
}
.search_section .search_symptoms ul li::marker {
  content: none;
}
.search_section .search_symptoms ul li a {
  position: relative;
  display: block;
  padding: 1.25rem 7.5rem 1.25rem 1.5rem;
  margin-bottom: 0.625rem;
  font-size: 1rem;
  color: #504b2d;
  background-color: white;
  border: solid 1px #dfdfdf;
  border-radius: 8px;
}
@media (width <= 992px) {
  .search_section .search_symptoms ul li a {
    padding-right: 3.75rem;
  }
}
.search_section .search_symptoms ul li a::before {
  position: absolute;
  right: 1.375rem;
  bottom: 1.375rem;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background-color: #5c928a;
  border-radius: 50%;
  transition: all 0.2s;
}
.search_section .search_symptoms ul li a::after {
  position: absolute;
  right: 2rem;
  bottom: 1.9375rem;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  border-top: solid 2px white;
  border-right: solid 2px white;
  transform: rotate(45deg);
}
.search_section .search_disease .top_search_disease_title {
  text-align: center;
}
.search_section .search_disease .top_search_disease_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .search_section .search_disease .top_search_disease_title .title_english {
    font-size: 1.25rem;
  }
}
.search_section .search_disease .top_search_disease_title .title_english::before {
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .search_section .search_disease .top_search_disease_title .title_english::before {
    top: 0.9375rem;
    left: 4.0625rem;
  }
}
.search_section .search_disease .top_search_disease_title h2 {
  margin-top: 0.625rem;
  text-align: center;
}
.search_section .search_disease ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin-top: 2.5rem;
}
.search_section .search_disease ul li {
  display: inline-block;
  list-style: none;
}
.search_section .search_disease ul li::marker {
  content: none;
}
.search_section .search_disease ul li a {
  position: relative;
  display: inline-block;
  padding: 0.625rem 2.25rem 0.625rem 1.25rem;
  font-size: 1rem;
  color: #504b2d;
  background-color: white;
  border: solid 1px #dfdfdf;
  border-radius: 40px;
}
@media (width <= 992px) {
  .search_section .search_disease ul li a {
    padding: 0.5rem 2.25rem 0.5rem 1.25rem;
    font-size: 0.875rem;
  }
}
.search_section .search_disease ul li a::after {
  position: absolute;
  right: 1.5rem;
  bottom: 1.1875rem;
  width: 0.5rem;
  height: 0.5rem;
  content: "";
  border-top: solid 2px #5c928a;
  border-right: solid 2px #5c928a;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .search_section .search_disease ul li a::after {
    bottom: 1.0625rem;
  }
}

/************************************
** トップ　コラム
************************************/
.column_section {
  padding: 7.5rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem 0;
  background-color: white;
  border-top-right-radius: 16.875rem;
}
@media (width <= 992px) {
  .column_section {
    padding: 3.75rem 0rem 2.5rem 0;
    border-top-right-radius: 5rem;
  }
}
.column_section .top_info_column_title {
  margin-bottom: 3.5rem;
  text-align: center;
}
@media (width <= 992px) {
  .column_section .top_info_column_title {
    margin-bottom: 0rem;
  }
}
.column_section .top_info_column_title .title_english {
  position: relative;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .column_section .top_info_column_title .title_english {
    font-size: 0.625rem;
  }
}
.column_section .top_info_column_title .title_english::before {
  position: absolute;
  top: 1.75rem;
  right: 0rem;
  left: 0rem;
  display: inline-block;
  width: 2.5rem;
  height: 0.125rem;
  margin-inline: auto;
  content: "";
  background-color: #5c928a;
}
@media (width <= 992px) {
  .column_section .top_info_column_title .title_english::before {
    top: 1.25rem;
    width: 2.5rem;
  }
}
.column_section .top_info_column_title h2 {
  text-align: center;
}
.column_section .top_info_column {
  display: grid;
  grid-template-columns: 1fr 40.625rem;
  grid-row: 1/2;
  grid-column: 1/3;
  gap: 158px;
  min-height: 15rem;
  padding: 1.875rem 3.125rem 1.875rem 0rem;
  background-color: white;
  border-radius: 12px;
}
@media (width <= 992px) {
  .column_section .top_info_column {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-row: auto;
    grid-column: auto;
    gap: 1.5rem;
    padding: 1.25rem;
  }
}
.column_section .top_info_column .top_info_column_left {
  position: relative;
}
.column_section .top_info_column .top_info_column_left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 0.5rem;
}
.column_section .top_info_column .top_info_column_right {
  display: flex;
  flex-direction: column;
  max-width: 650px;
}
.column_section .top_info_column .top_info_column_right .info_column_item {
  position: relative;
  border-bottom: 1px dashed #dfdfdf;
}
.column_section .top_info_column .top_info_column_right .info_column_item:first-child {
  border-top: 1px dashed #dfdfdf;
}
.column_section .top_info_column .top_info_column_right .info_column_item:hover {
  opacity: 0.8;
  transition: all 0.2s;
}
.column_section .top_info_column .top_info_column_right .info_column_item::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background-color: #5c928a;
  border-radius: 50%;
  transition: all 0.2s;
  transform: translateY(-50%);
}
.column_section .top_info_column .top_info_column_right .info_column_item::after {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  width: 0.375rem;
  height: 0.375rem;
  content: "";
  border-top: solid 2px white;
  border-right: solid 2px white;
  transform: translateY(-50%) rotate(45deg);
}
.column_section .top_info_column .top_info_column_right .info_column_item:last-child {
  border-bottom: 0;
}
.column_section .top_info_column .top_info_column_right .info_column_item a {
  display: flex;
  grid-template-columns: 5rem 1fr;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 2.25rem 3.75rem 2.25rem 0;
  color: #504b2d;
}
@media (width <= 992px) {
  .column_section .top_info_column .top_info_column_right .info_column_item a {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 2.5rem 1rem 0;
  }
}
.column_section .top_info_column .top_info_column_right .info_column_item a time {
  width: 6.25rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 0.875rem;
  color: #5c928a;
}
@media (width <= 992px) {
  .column_section .top_info_column .top_info_column_right .info_column_item a time {
    width: auto;
    margin-bottom: 0.25rem;
  }
}
.column_section .top_info_column .top_info_column_right .info_column_item a p {
  flex: 1;
  margin-bottom: 0;
}
@media (width <= 992px) {
  .column_section .top_info_column .top_info_column_right .info_column_item a p {
    width: 100%;
  }
}
.column_section .top_info_column .top_info_column_right .top_info_column_btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media (width <= 992px) {
  .column_section .top_info_column .top_info_column_right .top_info_column_btn {
    justify-content: center;
    margin-top: 1.25rem;
    text-align: center;
  }
}

/************************************
** トップ　カウンセリング
************************************/
/************************************
** トップ　ご挨拶
************************************/
/************************************
** トップ　予約CTA
************************************/
/************************************
 ** トップ　バナー　採用情報　法人について
 ************************************/
.banner_section {
  padding: 7.5rem max((100vw - 75rem) / 2, 1.25rem) 0rem;
}
@media (width <= 992px) {
  .banner_section {
    padding: 3.75rem 1.25rem 0rem;
  }
}
.banner_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 0rem;
}
@media (width <= 1260px) {
  .banner_section .grid_container {
    grid-template-columns: repeat(2, auto);
    height: 100%;
  }
}
@media (width <= 992px) {
  .banner_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}
.banner_section .top_banner_link {
  position: relative;
  display: block;
  overflow: hidden;
}
.banner_section .top_banner_link::before {
  position: absolute;
  right: 0rem;
  bottom: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background-color: #5c928a;
  border-radius: 50%;
  transition: all 0.2s;
}
@media (width <= 992px) {
  .banner_section .top_banner_link::before {
    right: 0rem;
    bottom: 0.625rem;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.banner_section .top_banner_link::after {
  position: absolute;
  right: 1rem;
  bottom: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: solid 3px white;
  border-right: solid 3px white;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .banner_section .top_banner_link::after {
    right: 0.5rem;
    bottom: 1.0625rem;
    width: 0.375rem;
    height: 0.375rem;
    border-top: solid 2px white;
    border-right: solid 2px white;
  }
}
.banner_section .banner_img {
  border-radius: 0.5rem;
}
.banner_section h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.25rem;
  font-family: libre baskerville, "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #504b2d;
  text-align: left;
}
@media (width <= 992px) {
  .banner_section h3 {
    font-size: 1rem;
  }
}
.banner_section p {
  font-size: 0.875rem;
  color: #504b2d;
}

/************************************
** ふわっと下から上へ出現
************************************/
.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);
}