@charset "UTF-8";
/************************************
** 変数
************************************/
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  src: url("../font/ZenKakuGothicNew-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  src: url("../font/ZenKakuGothicNew-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
  src: url("../font/ZenKakuGothicNew-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Baloo2";
  font-weight: 400;
  src: url("../font/Baloo2-Regular.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: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  line-height: 170%;
  color: #2A2A2A;
  text-align: justify;
  letter-spacing: 0.04em;
}

p {
  margin-bottom: 1.5rem;
}

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

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

h2 {
  font-size: 2rem;
  font-weight: 500;
  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: #658EAF;
}

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

.mb10 {
  margin-bottom: 0.625rem;
}

.mb20 {
  margin-bottom: 1.25rem;
}

/************************************
** ボタン
************************************/
.btn,
.btn_large {
  position: relative;
  display: inline-block;
  justify-content: space-between;
  padding: 0.625rem 2.5rem 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  vertical-align: middle;
  background-color: #658EAF;
  filter: drop-shadow(0 4px 4px rgba(88, 88, 88, 0.25));
  border: 2px solid white;
  border-radius: 9999px;
}
.btn::after,
.btn_large::after {
  position: absolute;
  top: calc(50% - 0.21875rem);
  right: 1.375rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px white;
  border-right: solid 2px white;
  transition: all 0.2s;
  transform: rotate(45deg);
}
.btn:hover,
.btn_large:hover {
  color: white;
  filter: drop-shadow(0 2px 2px rgba(88, 88, 88, 0.25));
  opacity: 0.9;
}
.btn:hover::after,
.btn_large:hover::after {
  right: 1.125rem;
}

.btn_large {
  padding: 0.9375rem 2.8125rem 0.9375rem 1.5625rem;
  font-size: 1.25rem;
}
.btn_large::after {
  position: absolute;
  top: calc(50% - 0.3125rem);
  right: 1.375rem;
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: solid 2px white;
  border-right: solid 2px white;
  transition: all 0.2s;
  transform: rotate(45deg);
}

/************************************
** web予約・電話ボタン
************************************/
.web_btn {
  background-color: #0B487B;
}

.tel_btn {
  background-color: #60482C;
  font-size: 1.25rem;
}
.tel_btn::before {
  background-image: url("../images/icon/phone-w.svg");
}

/************************************
** 上に戻るボタン
************************************/
.scroll_top {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 100;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.625rem;
  background-color: #60482C;
  border: solid 2px white;
  border-radius: 8px;
  opacity: 0;
}
@media (width <= 992px) {
  .scroll_top {
    scale: 70%;
    right: 0.3125rem;
    bottom: 3.125rem;
  }
}
.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 {
  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: 700;
  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 {
  border-right: 1px solid white;
  background-color: #60482C;
}
.footer_fix_mobile .footer_fix_tel::before {
  background-image: url("../images/icon/phone-w.svg");
}
.footer_fix_mobile .footer_fix_web {
  border-left: 1px solid white;
  background-color: #0B487B;
}
.footer_fix_mobile .footer_fix_web::before {
  margin-right: 0.3125rem;
  background-image: url("../images/icon/schedule.svg");
}

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

/************************************
** 診療時間
************************************/
.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;
  background-color: white;
  border: 2px solid #cfbea9;
  border-radius: 8px;
}
.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;
  color: #60482c;
  background-color: white;
  border: 0;
  border-bottom: 2px solid #cfbea9;
}
.info_hours tbody tr:first-child th,
.info_hours tbody tr:first-child td {
  background-color: #f0e8de;
}
.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_hours_off {
  background-color: #60482c;
  color: white;
  border-radius: 4px;
  padding: 0.125rem 0.375rem 0.25rem;
  margin-right: 0.3125rem;
}

/************************************
** マップ
************************************/
.info_map iframe {
  margin-bottom: 1.25rem;
}
.info_map table {
  display: flex;
}
.info_map table th {
  width: 6.25rem;
  padding-left: 1.25rem;
  font-weight: 700;
  vertical-align: top;
  position: relative;
}
.info_map table th::before {
  position: absolute;
  display: inline-block;
  width: 0.875rem;
  height: 0.125rem;
  content: "";
  background-color: #60482C;
  top: 0.9375rem;
  left: 0;
}

/*********************************
* タイムライン
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;
  color: #423E3A;
  font-size: 12px;
  font-weight: 500;
}

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

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

.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 {
  content: "";
  width: 3px;
  background: #CFBEA9 !important;
  display: block;
  position: absolute;
  top: 25px;
  bottom: -3px;
  left: 5px;
}

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

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

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

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

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

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

.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;
  border: none !important;
  background: none !important;
}

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

.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: 7.5rem;
  background-color: #F4F2EF;
}
@media (width <= 1260px) {
  header {
    justify-content: normal;
  }
}
@media (width <= 992px) {
  header {
    height: 3.75rem;
  }
}

.header_container {
  display: grid;
  place-items: center;
  width: 1260px;
}
@media (width <= 1260px) {
  .header_container {
    width: 100%;
  }
}
@media (width <= 992px) {
  .header_container {
    place-items: start;
  }
}
.header_container .header_logo {
  padding: 0.625rem;
}
.header_container .header_logo img {
  width: auto;
  max-width: 100%;
  height: 3.75rem;
  text-align: center;
}
@media (width <= 992px) {
  .header_container .header_logo img {
    height: 2.5rem;
  }
}
@media (width <= 992px) {
  .header_container .nav_pc {
    display: none;
  }
}
.header_container .nav_pc .nav_first {
  display: flex;
  background-color: #e5e0d7;
  width: 100vw;
  justify-content: center;
  padding-left: 0;
}
.header_container .nav_pc .nav_first li {
  padding: 0.5rem 0.875rem;
  font-size: 1rem;
  list-style: none;
  z-index: 2;
}
.header_container .nav_pc .nav_first li a {
  color: #2A2A2A;
  text-decoration: none;
}
.header_container .nav_pc .nav_first .nav_second {
  display: none;
}
.header_container .nav_pc .nav_first .nav_second.is_active {
  position: absolute;
  display: block;
  width: 15.625rem;
  padding-left: 0.3125rem;
  background-color: #F4F2EF;
}
.header_container .header_info {
  position: absolute;
  top: 0;
  right: 0;
}
@media (width <= 992px) {
  .header_container .header_info {
    display: none;
  }
}
.header_container .header_info .cta_btn {
  display: grid;
  gap: 0.3125rem;
  place-content: center;
  place-items: center;
  width: 8.75rem;
  height: 8.75rem;
  color: white;
  text-align: center;
  text-decoration: none;
  background-color: #0B487B;
  filter: drop-shadow(0 4px 4px rgba(66, 66, 66, 0.25));
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  border-radius: 0 0 0 8px;
  z-index: 2;
  position: relative;
}
.header_container .header_info .cta_btn:hover {
  filter: drop-shadow(0 2px 2px rgba(66, 66, 66, 0.25));
  opacity: 0.9;
}
.header_container .header_info .cta_btn img {
  width: 3.75rem;
  height: 3.75rem;
  margin: auto;
}
.header_container .header_info .cta_btn span {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 14%;
}
.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: #966D3A;
  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: #fffcf9;
  transition: all 0.5s;
}
.header_container .nav_sp_wrap .nav_sp ul {
  padding: 4.375rem 10vw 0;
}
.header_container .nav_sp_wrap .nav_sp ul li {
  list-style: 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-left: 0.9375rem;
  font-size: 1rem;
  color: #2A2A2A;
  text-decoration: none;
}
.header_container .nav_sp_wrap .nav_sp ul li a::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #966D3A;
  border-right: solid 2px #966D3A;
  transform: rotate(45deg);
}
.header_container .nav_sp_wrap .nav_sp ul .nav_second {
  padding: 0 1.25rem;
}
.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 {
  background-color: #CFBEA9;
  padding: 1.875rem 0 0.625rem;
  position: relative;
  z-index: 1;
}
@media (width <= 992px) {
  .hero_section {
    padding: 0.875rem 0 4px;
  }
}
.hero_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #b5c1ca;
  z-index: -1;
}
.hero_section img {
  width: calc(100vw - 6.25rem);
  height: 34.375rem;
  margin: 0 3.125rem;
  border-radius: 24px;
  object-fit: cover;
  object-position: right 20%;
}
@media (width <= 992px) {
  .hero_section img {
    width: calc(100vw - 1.75rem);
    border-radius: 24px;
    object-position: left 20%;
    margin: 0 0.875rem;
  }
}
.hero_section .splide .splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media (width <= 992px) {
  .hero_section .splide .splide__controls {
    margin-top: 2px;
  }
}
.hero_section .splide .splide__toggle:hover {
  background: #658EAF;
}
.hero_section .splide .splide__toggle svg {
  fill: #cfbea9;
}
.hero_section .splide .splide__pagination {
  position: static;
}
.hero_section .splide__pagination__page.is-active {
  background-color: #658EAF;
}
.hero_section .hero_content {
  position: absolute;
  top: 25rem;
  left: 6.25rem;
}
@media (width <= 992px) {
  .hero_section .hero_content {
    left: 1.25rem;
  }
}
.hero_section .hero_content .hero_text {
  display: block;
  width: 13.75rem;
  padding: 0.3125rem 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  text-align: center;
  background-color: #60482C;
  border-radius: 4px;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text {
    width: 10.625rem;
    padding: 0.125rem 0.3125rem;
    font-size: 1rem;
  }
}
.hero_section .hero_content .hero_feature_wrap {
  gap: 0.625rem;
  margin-top: 0.9375rem;
  margin-left: 0.1875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_feature_wrap {
    width: calc(100vw - 3rem);
  }
}
.hero_section .hero_content .hero_feature {
  position: relative;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 11rem;
  height: 5.9375rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  color: #0B487B;
  text-align: center;
  background-color: #EEF2F5;
  outline: 3px solid rgba(148, 183, 192, 0.5);
  outline-offset: 0;
  border-radius: 8px;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_feature {
    width: auto;
    height: 4.375rem;
    font-size: 1rem;
  }
}
@media (width <= 480px) {
  .hero_section .hero_content .hero_feature {
    font-size: 0.8125rem;
  }
}
.hero_section .hero_content2 {
  position: absolute;
  top: 5rem;
  right: 5rem;
  z-index: 1;
}
@media (width <= 992px) {
  .hero_section .hero_content2 {
    top: 2.5rem;
    left: calc(100vw - 100px);
  }
}
.hero_section .hero_content2 .hero_text2 {
  display: inline-block;
  padding: 1.25rem;
  font-size: 1.5rem;
  line-height: 140%;
  background-color: rgba(255, 255, 255, 0.7);
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
  border-radius: 8px;
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 {
    padding: 0.625rem;
    font-size: 1.25rem;
  }
}

/************************************
** フッター
************************************/
footer {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: #F4F2EF;
}
@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-inline: auto;
  margin-block: 3.125rem;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo img {
    top: 0;
    max-height: 8.75rem;
  }
}
footer .grid_container .footer_info {
  text-align: center;
  grid-row: 1/2;
  grid-column: 2/3;
  margin-top: 3.75rem;
}
footer .grid_container .footer_info div {
  margin-bottom: 1.25rem;
}
@media (width <= 992px) {
  footer .grid_container .footer_info {
    grid-row: 2/3;
    grid-column: 1/2;
    margin-top: 0;
  }
}
footer .grid_container .footer_info_hours {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media (width <= 992px) {
  footer .grid_container .footer_info_hours {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
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: #2A2A2A;
}
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: #EEF2F5;
}
@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: repeat(1, auto);
  }
}
.news_post .grid_container .news_main {
  grid-row: 1/2;
  grid-column: 1/2;
  padding: 3.125rem 1.875rem;
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(66, 66, 66, 0.05));
  border-radius: 24px;
}
@media (width <= 992px) {
  .news_post .grid_container .news_main {
    padding: 2.5rem 1.25rem 0.625rem;
  }
}
.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: #423E3A;
}
.news_post .grid_container .news_main .news_link {
  padding: 3.125rem 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: #2A2A2A;
}
.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 #966D3A;
  border-right: solid 2px #966D3A;
  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;
}
@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 #0B487B;
}
.news_post .grid_container .widget_area .widget ul a {
  color: #2A2A2A;
}

/************************************
** お知らせアーカイブ
************************************/
.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: #423E3A;
}
.archive .news_post .grid_container .news_main .title_container h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #2A2A2A;
  text-align: left;
}
.archive .news_post .grid_container .news_main .nav-links {
  text-align: center;
}
.archive .news_post .grid_container .news_main .nav-links .prev,
.archive .news_post .grid_container .news_main .nav-links .next {
  position: relative;
  color: #2A2A2A;
}
.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 #966D3A;
  border-right: solid 2px #966D3A;
  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: #2A2A2A;
}
.archive .news_post .grid_container .news_main .nav-links .current {
  color: #60482C;
}

/************************************
** 固定ページ
************************************/
.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: #F4F2EF;
}
.page_wrap nav p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.page_wrap a {
  color: #60482C;
  text-decoration: underline;
}
.page_wrap .btn {
  color: white;
  text-decoration: none;
  margin-bottom: 1.875rem;
}
.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 {
  text-align: left;
  position: relative;
  margin-bottom: 4.0625rem;
}
.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 {
    margin-bottom: 2.5rem;
  }
}
.page_wrap .main_page h3 {
  position: relative;
  padding-bottom: 0.3125rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  border-bottom: solid 2px #CFBEA9;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .page_wrap .main_page h3 {
    margin-bottom: 1.25rem;
  }
}
.page_wrap .main_page h4 {
  display: inline-block;
  border-bottom: solid 4px #efe7df;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
@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 {
  margin-left: 0.3125rem;
  padding-left: 2.5rem;
  position: relative;
}
.page_wrap .main_page .schema-faq-section .schema-faq-question::before {
  background-color: #966D3A;
  border-radius: 9999px;
  color: white;
  content: "Q";
  left: 0;
  padding: 0.1875rem 0.625rem;
  position: absolute;
  top: -0.3125rem;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer {
  background-color: white;
  border: solid 2px #CFBEA9;
  border-radius: 10px;
  padding: 0.9375rem;
  padding-left: 2.5rem;
  position: relative;
  margin-top: 0.9375rem;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer::before {
  content: "A. ";
  left: 0.9375rem;
  position: absolute;
  top: 0.9375rem;
}
.page_wrap .main_page .th_fix_width th {
  width: 6.25rem;
}

/************************************
** トップ　共通
************************************/
.title_english {
  display: block;
  font-family: "Baloo2", cursive;
  font-size: 1rem;
  color: #0B487B;
  text-align: center;
}
@media (width <= 992px) {
  .title_english {
    font-size: 0.875rem;
    margin-bottom: -10px;
  }
}

h2 {
  font-weight: 700;
  text-align: center;
  position: relative;
}
h2::after {
  position: absolute;
  display: inline-block;
  width: 1.5rem;
  height: 0.125rem;
  content: "";
  background-color: #0B487B;
  top: 120%;
  left: calc(50% - 0.75rem);
}
@media (width <= 992px) {
  h2::after {
    top: 115%;
  }
}

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

/************************************
** トップ　info
************************************/
.info_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: #F4F2EF;
}
@media (width <= 992px) {
  .info_section {
    padding: 1.875rem 1.25rem 5rem;
  }
}
.info_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (width <= 992px) {
  .info_section .grid_container {
    grid-template-columns: repeat(1, auto);
  }
}
.info_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;
  padding-left: 0;
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(165, 144, 119, 0.05));
  border-radius: 24px;
}
@media (width <= 992px) {
  .info_section .top_info_news {
    grid-template-rows: 1fr 2fr 1fr;
    grid-template-columns: 1fr;
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 1.25rem;
  }
}
.info_section .top_info_news .top_info_news_title {
  grid-row: 1/2;
  grid-column: 1/2;
  place-content: center;
  text-align: center;
}
@media (width <= 992px) {
  .info_section .top_info_news .top_info_news_title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.info_section .top_info_news .top_info_news_title .title_english {
  padding-right: 5rem;
}
@media (width <= 992px) {
  .info_section .top_info_news .top_info_news_title .title_english {
    padding-right: 0;
  }
}
.info_section .top_info_news .top_info_news_title h2 {
  margin-bottom: 1.25rem;
}
.info_section .top_info_news .top_info_news_title h2::after {
  left: calc(50% - 3.9375rem);
}
@media (width <= 992px) {
  .info_section .top_info_news .top_info_news_title h2::after {
    left: calc(50% - 0.75rem);
  }
}
.info_section .top_info_news .top_info_news_btn {
  grid-row: 2/3;
  grid-column: 1/2;
  place-content: center;
  text-align: center;
}
@media (width <= 992px) {
  .info_section .top_info_news .top_info_news_btn {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
.info_section .top_info_news .top_info_news_main {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .info_section .top_info_news .top_info_news_main {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.info_section .top_info_news .info_news_item {
  margin: 0.625rem 0;
  border-bottom: 1px dashed #d7c7b6;
}
.info_section .top_info_news .info_news_item:last-child {
  border-bottom: 0;
}
.info_section .top_info_news .info_news_item a {
  display: grid;
  grid-template-columns: 5rem 1fr;
  color: #2A2A2A;
}
.info_section .top_info_news .info_news_item a time {
  grid-column: 1/2;
  font-size: 0.875rem;
}
.info_section .top_info_news .info_news_item a p {
  grid-column: 2/3;
  margin-bottom: 0.625rem;
}
.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;
}
.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;
  }
}

/************************************
** トップ　診療科目
************************************/
.specialities_section {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem) 12.5rem;
  background-color: #EEF2F5;
  position: relative;
}
@media (width <= 992px) {
  .specialities_section {
    padding: 2.5rem 0.625rem 12.5rem;
  }
}
.specialities_section .logo_bg {
  position: absolute;
  left: -20rem;
  top: 50%;
  transform: rotate(90deg);
  width: 50rem;
  height: auto;
}
@media (width <= 992px) {
  .specialities_section .logo_bg {
    left: 50%;
    top: 50%;
    width: 62.5rem;
    height: auto;
    max-width: none;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
.specialities_section .logo_bg2 {
  position: absolute;
  right: -20rem;
  top: 50%;
  transform: rotate(-90deg);
  width: 50rem;
  height: auto;
}
@media (width <= 992px) {
  .specialities_section .logo_bg2 {
    display: none;
  }
}
.specialities_section .grid_container {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(4, auto);
  gap: 4.375rem 3.125rem;
  margin-top: 6.25rem;
}
@media (width <= 992px) {
  .specialities_section .grid_container {
    grid-template-columns: repeat(2, auto);
    gap: 2.5rem 1.25rem;
  }
}
.specialities_section .grid_container .grid_card_wrap .grid_card {
  padding: 1.5625rem;
  background-color: white;
  filter: drop-shadow(0 0 10px rgba(165, 144, 119, 0.25));
  border-radius: 12px;
  transition: all 0.3s;
  border: 4px solid #9f9f9f;
  width: 11.25rem;
  height: 11.25rem;
  margin-inline: auto;
}
.specialities_section .grid_container .grid_card_wrap .grid_card:hover {
  filter: drop-shadow(0 0 10px rgba(165, 144, 119, 0.75));
}
.specialities_section .grid_container .grid_card_wrap .grid_card .grid_img_wrap {
  display: grid;
  place-content: center;
  width: 7.8125rem;
  height: 7.8125rem;
  margin-inline: auto;
  background-color: #CFBEA9;
  border-radius: 9999px;
}
.specialities_section .grid_container .grid_card_wrap h3 {
  padding: 0.625rem 0;
  color: #2A2A2A;
  text-align: center;
  font-size: 1.5rem;
  z-index: 1;
  position: relative;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card_wrap h3 {
    padding: 1.25rem 0 0.3125rem;
    font-size: 1.1875rem;
  }
}

/************************************
** トップ　特徴
************************************/
.circle_wrap {
  overflow: hidden;
  margin-top: -100px;
  z-index: 2;
  position: relative;
  top: 5px;
}
.circle_wrap .circle {
  background: #b5c1ca;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 9.375rem;
  margin-left: -6.25rem;
  margin-right: -6.25rem;
  padding-left: 6.25rem;
  padding-right: 6.25rem;
}

.feature_section {
  padding: 0 max((100vw - 75rem) / 2, 0.625rem) 6.25rem;
  background-color: #b5c1ca;
}
.feature_section .grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  place-items: center;
  margin-top: 6.25rem;
  row-gap: 4.375rem;
  align-items: start;
}
@media (width <= 992px) {
  .feature_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}
.feature_section .top_feature_card {
  width: 25rem;
  position: relative;
}
@media (width <= 992px) {
  .feature_section .top_feature_card {
    width: 100%;
  }
}
.feature_section .top_feature_card .feature_img {
  object-fit: cover;
  width: 25rem;
  height: 16.625rem;
  border-radius: 12px;
  border: 4px solid white;
}
@media (width <= 992px) {
  .feature_section .top_feature_card .feature_img {
    width: 100%;
  }
}
.feature_section .top_feature_card .ribbon {
  position: absolute;
  top: -2.5rem;
  left: 1.25rem;
}
.feature_section .top_feature_card .ribbon :nth-child(2) {
  font-size: 1.5rem;
  position: absolute;
  top: 3rem;
  left: 0.625rem;
  font-family: "Baloo2", cursive;
  color: white;
}
.feature_section .top_feature_card .ribbon :nth-child(4) {
  font-size: 2.25rem;
  position: absolute;
  top: 4.6875rem;
  left: 0.6em;
  font-family: "Baloo2", cursive;
  color: white;
}
.feature_section .top_feature_card h3 {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.9375rem;
}
@media (width <= 992px) {
  .feature_section .top_feature_card h3 {
    font-size: 1.25rem;
  }
}

/************************************
** トップ　ご挨拶
************************************/
.greeting_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 6.25rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='100%25' width='100%25'%3E%3Cdefs%3E%3Cpattern id='doodad' width='88' height='88' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(135)'%3E%3Crect width='100%25' height='100%25' fill='rgba(229, 223, 215,1)'/%3E%3Cpath d='M-1 20v20h2v-20zM39 20v20h2v-20z' fill='rgba(255, 255, 255,1)'/%3E%3Cpath d='M-10 29 h60 v2 h-60z' fill='rgba(255, 255, 255,1)'/%3E%3Cpath d='M19 0v40h2v-40z' fill='rgba(255, 255, 255,1)'/%3E%3Cpath d='M-10 9h60v2h-60z' fill='rgba(255, 255, 255,1)'/%3E%3Cpath d='M-1 0v20h2v-20zM39 0v20h2v-20z' fill='rgba(255, 255, 255,1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23doodad)' height='200%25' width='200%25'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 992px) {
  .greeting_section {
    padding: 3.125rem 1.25rem 6.25rem;
  }
}
.greeting_section .grid_container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  place-content: center;
  place-items: center;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .greeting_section .grid_container {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(6.25rem, auto);
  }
}
.greeting_section .grid_container .top_greeting_img {
  grid-row: 1/2;
  grid-column: 1/2;
  height: 100%;
  width: 100%;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_img {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.greeting_section .grid_container .top_greeting_img img {
  object-fit: cover;
  border-radius: 16px 0 0 16px;
  height: 100%;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_img img {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
}
.greeting_section .grid_container .top_greeting_text {
  display: grid;
  grid-row: 1/2;
  grid-column: 2/4;
  place-content: center;
  place-items: center;
  background-color: white;
  padding: 3.125rem;
  border-radius: 0 16px 16px 0;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text {
    grid-row: 2/3;
    grid-column: 1/2;
    padding: 2.5rem 0.9375rem;
    border-radius: 0 0 16px 16px;
  }
}
.greeting_section .grid_container .top_greeting_text p:nth-child(5) {
  place-self: end;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text p:nth-child(5) {
    font-size: 1.25rem;
  }
}

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

.footer_tel {
  display: none !important;
}

/************************************
** web予約非表示
************************************/
.web_btn {
  display: none !important;
}

.footer_fix_web {
  display: none !important;
}