@charset "UTF-8";
/************************************
** 変数
************************************/
@font-face {
  font-display: swap;
  font-family: BIZUDPGothic;
  font-weight: 400;
  src: url("../font/BIZUDPGothic-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: BIZUDPGothic;
  font-weight: 700;
  src: url("../font/BIZUDPGothic-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: Tektur;
  font-weight: 400;
  src: url("../font/Tektur-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: ShipporiMincho;
  font-weight: 400;
  src: url("../font/ShipporiMincho-Bold.woff2") format("woff2");
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

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

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 {
  color: #231815;
  font-family: "BIZUDPGothic", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 170%;
  overflow-x: hidden;
  text-align: justify;
}

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 <= 1260px) {
  h1 {
    font-size: 2rem;
    line-height: 150%;
  }
}

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

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

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

li::marker {
  color: #C9C1B3;
}

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

.display_none {
  display: none;
}

.display_pc {
  display: block !important;
}
@media (width <= 1260px) {
  .display_pc {
    display: none !important;
  }
}

.display_sp {
  display: none !important;
}
@media (width <= 1260px) {
  .display_sp {
    display: block !important;
  }
}

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

.mb10 {
  margin-bottom: 0.625rem;
}

.mb20 {
  margin-bottom: 1.25rem;
}

/************************************
** ボタン
************************************/
.btn {
  background-color: #195986;
  color: white;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  justify-content: space-between;
  padding: 0.625rem 4.6875rem 0.625rem 1.25rem;
  position: relative;
  text-decoration: none;
  vertical-align: middle;
}
.btn::before, .btn::after {
  background: white;
  content: "";
  height: 1px;
  position: absolute;
  right: 0.9375rem;
  top: 50%;
  transition: all 0.2s;
}
.btn::before {
  transform: translateY(-50%);
  width: 1.5625rem;
}
.btn::after {
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
  width: 0.375rem;
}
.btn:hover {
  background-color: #195986;
  color: white;
}
.btn:hover::before, .btn:hover::after {
  right: 0.6875rem;
}

/************************************
** 電話・WEB予約ボタン・Instagramボタン
************************************/
.tel_btn {
  background-color: white;
  color: #195986;
  display: grid;
  font-family: "Tektur", cursive;
  font-size: 1.25rem;
  font-weight: 700;
  height: 4.6875rem;
  padding-left: 1.875rem;
  place-items: center;
  position: relative;
  transition: 0.3s;
  width: 12.5rem;
}
.tel_btn::before {
  background-image: url("../images/icon/phone_b.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2rem;
  left: 0.3125rem;
  position: absolute;
  top: 1.375rem;
  width: 2rem;
}
.tel_btn:hover {
  color: #195986;
  opacity: 0.8;
}

.web_btn {
  background-color: #195986;
  color: white;
  display: grid;
  font-size: 1rem;
  font-weight: 700;
  height: 4.6875rem;
  padding-left: 1.875rem;
  place-items: center;
  position: relative;
  width: 12.5rem;
}
.web_btn::before {
  background-image: url("../images/icon/schedule_w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 2rem;
  left: 0.5rem;
  position: absolute;
  top: 1.25rem;
  width: 2rem;
}
.web_btn:hover {
  color: white;
  opacity: 0.8;
}

.insta_btn {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  color: white;
  display: grid;
  font-size: 1rem;
  font-weight: 700;
  height: 4.6875rem;
  padding-left: 1.875rem;
  place-items: center;
  position: relative;
  width: 12.5rem;
}
.insta_btn::before {
  background-image: url("../images/icon/Instagram_Glyph_White.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1.875rem;
  left: 1.25rem;
  position: absolute;
  top: 1.25rem;
  width: 1.875rem;
}
.insta_btn:hover {
  color: white;
  opacity: 0.8;
}

/************************************
** 上に戻るボタン
************************************/
.scroll_top {
  background-color: #4A9FB5;
  border: solid 2px white;
  bottom: 0.625rem;
  display: block;
  height: 3.125rem;
  opacity: 0;
  padding: 0.625rem;
  position: fixed;
  right: 0.625rem;
  width: 3.125rem;
  z-index: 100;
}
@media (width <= 1260px) {
  .scroll_top {
    display: none;
  }
}
.scroll_top::after {
  border-left: solid 2px white;
  border-right: 0;
  border-top: solid 2px white;
  content: "";
  display: inline-block;
  height: 0.625rem;
  position: absolute;
  right: calc(50% - 0.28125rem);
  top: calc(50% - 0.1875rem);
  transform: rotate(45deg);
  transition: all 0.2s;
  width: 0.625rem;
}
.scroll_top:hover {
  opacity: 0.9;
}
.scroll_top:hover::after {
  top: calc(50% - 0.5rem);
}

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

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

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

.info_hours {
  margin: 0 auto 1.25rem;
  max-width: 62.5rem;
  overflow: hidden;
  padding: 0;
  text-align: center;
}
.info_hours table {
  border-collapse: collapse;
  margin-bottom: 0;
  width: 100%;
}
.info_hours tbody tr th,
.info_hours tbody tr td {
  border: 0;
  border-bottom: 1px solid #C9C1B3;
  color: #231815;
  font-weight: 400;
  padding: 0.625rem 0;
}
.info_hours tbody tr:first-child th {
  width: 30%;
}
.info_hours tbody tr:nth-child(2) td:last-child {
  width: 12%;
}

/************************************
** マップ
************************************/
.info_map iframe {
  margin-bottom: 1.25rem;
}
.info_map table {
  display: flex;
  position: relative;
}
.info_map table th {
  font-weight: 400;
  vertical-align: top;
  width: 6.875rem;
}
.info_map table th::before {
  color: #D8CA8C;
  content: "●";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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 {
  left: 15px;
  top: 30px;
}

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

.header_container {
  padding: 0.625rem max((100vw - 1260px) / 2, 1.25rem);
  padding-right: 0;
}
@media (width <= 1260px) {
  .header_container {
    width: 100%;
  }
}
@media (width <= 1260px) {
  .header_container {
    display: block;
  }
}
.header_container .wave {
  left: -6.25rem;
  position: absolute;
  top: -0.9375rem;
  z-index: 1;
}
@media (width <= 1260px) {
  .header_container .wave {
    left: -15.625rem;
  }
}
@media (width <= 480px) {
  .header_container .wave {
    left: -6.25rem;
  }
}
.header_container .header_logo {
  left: 3.75rem;
  position: absolute;
  top: 0.625rem;
  z-index: 2;
}
@media (width <= 1260px) {
  .header_container .header_logo {
    left: 0.9375rem;
  }
}
.header_container .header_logo img {
  height: 8.75rem;
  max-width: 100%;
  text-align: left;
  width: auto;
}
@media (width <= 1400px) {
  .header_container .header_logo img {
    height: 7.5rem;
  }
}
@media (width <= 1260px) {
  .header_container .header_logo img {
    height: 5rem;
    z-index: 9999;
  }
}
.header_container .header_info {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
@media (width <= 1260px) {
  .header_container .header_info {
    display: none;
  }
}
.header_container .nav_pc {
  justify-self: center;
  padding-top: 3.4375rem;
  position: absolute;
  z-index: 2;
}
@media (width <= 1260px) {
  .header_container .nav_pc {
    display: none;
  }
}
.header_container .nav_pc .nav_first {
  display: flex;
  margin-top: 0.9375rem;
  padding-left: 0;
}
.header_container .nav_pc .nav_first li {
  font-size: 1rem;
  list-style: none;
  padding: 0.125rem 0.875rem;
  position: relative;
  text-align: center;
}
.header_container .nav_pc .nav_first li:last-child {
  border-right: 0;
}
.header_container .nav_pc .nav_first li a {
  color: #231815;
  text-decoration: none;
}
.header_container .nav_pc .nav_first li .nav_english {
  color: #D8CA8C;
  display: flex;
  font-family: "Tektur", cursive;
  font-size: 0.75rem;
  justify-content: center;
}
.header_container .nav_pc .nav_first .nav_second {
  display: none;
  z-index: 9999;
}
.header_container .nav_pc .nav_first .nav_second.is_active {
  background-color: #FAF9F8;
  display: block;
  left: 0;
  padding: 0.625rem 0.3125rem;
  position: absolute;
  width: 15.625rem;
}
.header_container .nav_pc .nav_first .nav_second.is_active li {
  border-right: 0;
  padding: 0.625rem;
}
.header_container .nav_sp_wrap {
  display: none;
}
@media (width <= 1260px) {
  .header_container .nav_sp_wrap {
    display: block;
  }
}
.header_container .nav_sp_wrap .hamburger {
  background-color: #195986;
  border: 0;
  cursor: pointer;
  display: grid;
  font-family: "Tektur", cursive;
  height: 3.75rem;
  justify-content: center;
  place-items: center;
  position: fixed;
  right: 0;
  top: 0;
  width: 3.75rem;
  z-index: 9999;
}
.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 {
  background-color: white;
  content: "";
  display: block;
  height: 0.1875rem;
  position: absolute;
  top: 1.25rem;
  transition: all 0.3s;
  width: 1.5625rem;
}
.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 {
  color: white;
  font-size: 0.75rem;
  left: 0;
  position: relative;
  top: 0.9375rem;
  white-space: nowrap;
}
.header_container .nav_sp_wrap .nav_sp {
  background-color: #FAF9F8;
  height: 100%;
  left: 100%;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  transition: all 0.5s;
  width: 100%;
  z-index: 9998;
}
.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 {
  box-sizing: border-box;
  color: #231815;
  display: block;
  font-size: 1rem;
  padding: 0.625rem;
  padding-left: 0.9375rem;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.header_container .nav_sp_wrap .nav_sp ul li a::before {
  border-right: solid 2px #4A9FB5;
  border-top: solid 2px #4A9FB5;
  content: "";
  height: 0.4375rem;
  left: 0;
  position: absolute;
  top: 1.25rem;
  transform: rotate(45deg);
  width: 0.4375rem;
}
.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 {
  font-size: 0.875rem;
  padding: 0;
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar {
  background-color: rgba(255, 255, 255, 0);
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar::before {
  top: 0;
  transform: rotate(45deg);
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar::after {
  top: 0;
  transform: rotate(-45deg);
}
.header_container .nav_sp_wrap:has(.is_active) .nav_sp {
  left: 0;
}

/************************************
** ヒーロー
************************************/
.hero_section {
  background-color: #fcfbf6;
}
.hero_section::after {
  background: linear-gradient(90deg, rgb(233, 228, 203) 0%, rgba(239, 236, 219, 0.01) 40%, rgba(246, 244, 236, 0) 100%);
  content: "";
  display: block;
  height: 34.375rem;
  left: 20vw;
  position: absolute;
  top: 9.375rem;
  width: 80vw;
}
@media (width <= 1260px) {
  .hero_section::after {
    background: linear-gradient(90deg, rgba(233, 228, 203, 0.8) 0%, rgba(239, 236, 219, 0.01) 40%, rgba(246, 244, 236, 0) 100%);
    left: 10vw;
    top: 3.75rem;
    width: 90vw;
  }
}
.hero_section img {
  margin-left: 20vw;
  object-fit: cover;
}
@media (width <= 1260px) {
  .hero_section img {
    height: 34.375rem;
    margin-left: 10vw;
    width: 90vw;
  }
}
.hero_section .hero_content {
  position: absolute;
  right: 3.125rem;
  top: 33.75rem;
  z-index: 2;
}
@media (width <= 1260px) {
  .hero_section .hero_content {
    right: 0.625rem;
    top: 31.25rem;
  }
}
.hero_section .hero_content .hero_text {
  color: white;
  display: block;
  font-family: "ShipporiMincho", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  padding: 0.3125rem 0.625rem;
  text-align: right;
}
@media (width <= 1260px) {
  .hero_section .hero_content .hero_text {
    font-size: 1rem;
  }
}
.hero_section .hero_content .hero_text2 {
  color: white;
  display: inline-block;
  font-family: "ShipporiMincho", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 2.25rem;
  padding-top: 1.25rem;
  text-align: right;
}
@media (width <= 1260px) {
  .hero_section .hero_content .hero_text2 {
    font-size: 1.25rem;
    padding-top: 0.625rem;
  }
}

/************************************
** フッター
************************************/
footer {
  background-color: #F4F2EF;
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
}
@media (width <= 1260px) {
  footer {
    padding: 1.25rem 0.625rem;
  }
}
footer .grid_container {
  display: grid;
  gap: 2.5rem;
  grid-auto-rows: minmax(6.25rem, auto);
  grid-template-columns: 1fr 1fr;
}
@media (width <= 1260px) {
  footer .grid_container {
    grid-auto-rows: minmax(6.25rem, auto);
    grid-template-columns: 1fr;
  }
}
footer .grid_container .footer_logo {
  margin: 6.25rem 3.125rem 3.125rem;
}
@media (width <= 1260px) {
  footer .grid_container .footer_logo {
    margin: 3.125rem 1.25rem 0;
  }
}
footer .grid_container .footer_logo img {
  height: 12.5rem;
  margin-inline: auto;
}
@media (width <= 1260px) {
  footer .grid_container .footer_logo img {
    max-height: 8.75rem;
    top: 0;
  }
}
footer .grid_container .footer_info {
  justify-self: center;
  margin: 6.25rem 3.125rem 3.125rem;
  z-index: 0;
}
@media (width <= 1260px) {
  footer .grid_container .footer_info {
    margin: 0;
  }
}
footer .grid_container .footer_info a {
  margin: 1.25rem;
}
footer .grid_container .footer_menu {
  font-size: 0.875rem;
  grid-column: 1/3;
  margin-bottom: 0.625rem;
  margin-top: 5rem;
  text-align: center;
}
@media (width <= 1260px) {
  footer .grid_container .footer_menu {
    grid-column: 1/2;
  }
}
footer .grid_container .footer_menu a {
  color: #231815;
}
footer .grid_container .footer_copyright {
  font-size: 0.75rem;
  grid-column: 1/3;
  margin-bottom: 3.125rem;
  text-align: center;
}
@media (width <= 1260px) {
  footer .grid_container .footer_copyright {
    grid-column: 1/2;
  }
}

/************************************
** フッター　プレオープン
************************************/
footer .preopen {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
@media (width <= 1260px) {
  footer .preopen {
    grid-template-columns: repeat(1, auto);
  }
}
footer .preopen .footer_info_hours {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media (width <= 1260px) {
  footer .preopen .footer_info_hours {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
footer .preopen .footer_map {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (width <= 1260px) {
  footer .preopen .footer_map {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

/************************************
** お知らせ
************************************/
.news_post {
  background-color: #FAF9F8;
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem) 25rem;
}
@media (width <= 1260px) {
  .news_post {
    padding: 1.25rem 0.625rem 12.5rem;
  }
}
.news_post .grid_container {
  display: grid;
  gap: 2.5rem;
  grid-auto-rows: minmax(6.25rem, auto);
  grid-template-columns: 3fr 1fr;
}
@media (width <= 1260px) {
  .news_post .grid_container {
    grid-template-columns: repeat(1, auto);
  }
}
.news_post .grid_container .news_main {
  background-color: white;
  grid-column: 1/2;
  grid-row: 1/2;
  padding: 3.125rem 1.875rem;
  z-index: 2;
}
@media (width <= 1260px) {
  .news_post .grid_container .news_main {
    margin-top: 1.875rem;
    padding: 2.5rem 1.25rem 0.625rem;
  }
}
.news_post .grid_container .news_main h1 {
  font-weight: 700;
  padding-bottom: 3.125rem;
}
.news_post .grid_container .news_main h2 {
  text-align: left;
}
.news_post .grid_container .news_main time {
  color: #6C6443;
}
.news_post .grid_container .news_main .news_link {
  list-style: none;
  padding: 3.125rem 0.625rem;
  text-align: center;
}
.news_post .grid_container .news_main .news_link.grid_container {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.news_post .grid_container .news_main .news_link a {
  color: #231815;
  position: relative;
}
.news_post .grid_container .news_main .news_link a::before {
  border-right: solid 2px #4A9FB5;
  border-top: solid 2px #4A9FB5;
  content: "";
  display: inline-block;
  height: 0.4375rem;
  left: -1.25rem;
  position: absolute;
  top: calc(50% - 0.21875rem);
  transform: rotate(-135deg);
  transition: all 0.2s;
  width: 0.4375rem;
}
.news_post .grid_container .news_main .news_link .prev_news {
  grid-column: 1/2;
  grid-row: 1/2;
}
.news_post .grid_container .news_main .news_link .next_news {
  grid-column: 2/3;
  grid-row: 1/2;
}
.news_post .grid_container .news_main .news_link .next_news a::before {
  left: inherit;
  right: -1.25rem;
  transform: rotate(45deg);
}
.news_post .grid_container .widget_area {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media (width <= 1260px) {
  .news_post .grid_container .widget_area {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.news_post .grid_container .widget_area .widget {
  padding-bottom: 2.5rem;
}
.news_post .grid_container .widget_area .widget h3 {
  font-size: 1.75rem;
  padding-bottom: 0.625rem;
}
@media (width <= 1260px) {
  .news_post .grid_container .widget_area .widget h3 {
    font-size: 1.5rem;
  }
}
.news_post .grid_container .widget_area .widget ul {
  list-style: none;
  padding-left: 0;
}
.news_post .grid_container .widget_area .widget ul li {
  border-bottom: 1px dashed #D8CA8C;
  padding: 0.625rem;
}
.news_post .grid_container .widget_area .widget ul a {
  color: #231815;
}

/************************************
** お知らせアーカイブ
************************************/
.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: #83827a;
}
.archive .news_post .grid_container .news_main .title_container h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #231815;
  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: #231815;
}
.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 #4A9FB5;
  border-right: solid 2px #4A9FB5;
  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: #231815;
}
.archive .news_post .grid_container .news_main .nav-links .current {
  color: #195986;
}

/************************************
** 固定ページ
************************************/
.page_wrap {
  background-color: #FAF9F8;
}
@media (width <= 1260px) {
  .page_wrap {
    padding: 1.875rem 0.625rem;
  }
}
.page_wrap nav {
  padding: 0.125rem max((100vw - 75rem) / 2, 0.625rem);
  position: relative;
  z-index: 2;
}
.page_wrap nav p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.page_wrap .main_page .main_page_text {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 100px max((100vw - 1000px) / 2, 10px) 50px;
  position: relative;
  z-index: 2;
}
@media (width <= 1260px) {
  .page_wrap .main_page .main_page_text {
    padding: 80px max((100vw - 1000px) / 2, 10px) 50px;
  }
}
.page_wrap .main_page .main_page_title {
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.7);
  background-image: url("../images/photo/hero-img-pc-2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem);
  position: relative;
  z-index: 2;
}
@media (width <= 1260px) {
  .page_wrap .main_page .main_page_title {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap .main_page .main_page_title h1 {
  margin: auto;
  text-align: center;
}
@media (width <= 1260px) {
  .page_wrap .main_page .main_page_title h1 {
    font-size: 1.625rem;
  }
}
.page_wrap .main_page h2 {
  color: #6C6443;
  margin-bottom: 2.5rem;
  padding-block: 0.5rem;
  padding-inline: 0.5rem;
  position: relative;
}
@media (width <= 1260px) {
  .page_wrap .main_page h2 {
    margin-bottom: 1.5rem;
  }
}
.page_wrap .main_page h2:not(:first-child) {
  margin-top: 6.25rem;
}
.page_wrap .main_page h3 {
  border-bottom: 2px solid #C9C1B3;
  font-weight: 400;
  margin-bottom: 1.5rem;
  padding-bottom: 0.3125rem;
  position: relative;
}
@media (width <= 1260px) {
  .page_wrap .main_page h3 {
    margin-bottom: 1.25rem;
  }
}
.page_wrap .main_page h3::before {
  background-color: #C9C1B3;
  content: "";
  display: inline-block;
  height: 1.875rem;
  margin-bottom: -0.3125rem;
  margin-right: 0.625rem;
  width: 0.5rem;
}
@media (width <= 1260px) {
  .page_wrap .main_page h3::before {
    margin-bottom: -0.4375rem;
    transform: scale(0.8);
  }
}
.page_wrap .main_page h4 {
  border-bottom: 2px dashed #F9F8F4;
  display: inline-block;
  font-weight: 400;
  margin-bottom: 1.25rem;
}
@media (width <= 1260px) {
  .page_wrap .main_page h4 {
    margin-bottom: 1rem;
  }
}
.page_wrap .main_page ul {
  margin-bottom: 1.5rem;
}
.page_wrap .main_page .btn_grid_container {
  display: grid;
  gap: 0 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 1260px) {
  .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 .faq_wrap {
  margin-bottom: 3.125rem;
}
.page_wrap .main_page .faq_wrap .faq_question {
  margin-left: 0.3125rem;
  padding-left: 2.5rem;
  position: relative;
}
.page_wrap .main_page .faq_wrap .faq_question::before {
  background-color: #4A9FB5;
  border-radius: 9999px;
  color: white;
  content: "Q";
  left: 0;
  padding: 0.1875rem 0.625rem;
  position: absolute;
  top: 0;
}
.page_wrap .main_page .faq_wrap .faq_answer {
  background-color: white;
  border: solid 2px #195986;
  border-radius: 10px;
  padding: 0.9375rem;
  padding-left: 2.5rem;
  position: relative;
}
.page_wrap .main_page .faq_wrap .faq_answer::before {
  content: "A. ";
  left: 0.9375rem;
  position: absolute;
  top: 0.9375rem;
}
.page_wrap .main_page .th_fix_width th {
  width: 6.25rem;
}
.page_wrap .main_page .treatment_item ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  margin-top: 3.125rem;
  padding-left: 0;
}
@media (width <= 1260px) {
  .page_wrap .main_page .treatment_item ul {
    grid-template-columns: 1fr;
  }
}
.page_wrap .main_page .treatment_item ul li {
  border-bottom: 1px solid #826F1D;
  list-style: none;
  margin: 0 5rem 1.25rem;
  padding: 0.625rem;
  position: relative;
  text-align: center;
}
@media (width <= 1260px) {
  .page_wrap .main_page .treatment_item ul li {
    margin: 0.75rem 1.25rem;
  }
}
.page_wrap .main_page .treatment_item ul li a {
  color: #231815;
  display: block;
}
.page_wrap .main_page .treatment_item ul li::after {
  border-right: 1px solid #826F1D;
  border-top: 1px solid #826F1D;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0.9375rem;
  top: 1.1875rem;
  transform: rotate(45deg);
  transition: all 0.2s;
  width: 10px;
}
.page_wrap .main_page .treatment_item ul li:hover::after {
  right: 0.625rem;
}

/************************************
** トップ　共通
************************************/
h2 {
  color: #231815;
  font-weight: 400;
  position: relative;
  text-align: center;
}

.h2_english {
  color: #D8CA8C;
  display: block;
  font-family: "Tektur", cursive;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
}
@media (width <= 1260px) {
  .h2_english {
    font-size: 1.5rem;
  }
}

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

/************************************
** トップ　info
************************************/
.info_section {
  background-color: #fcfbf6;
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 0;
}
@media (width <= 1260px) {
  .info_section {
    padding: 1.875rem 1.25rem 0;
  }
}
.info_section .grid_container {
  background-color: white;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, auto);
  margin-inline: calc(50% - 50vw);
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
}
@media (width <= 1260px) {
  .info_section .grid_container {
    grid-template-columns: repeat(1, auto);
  }
}
.info_section .top_news {
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22100%25%22%20height%3D%22100%25%22%20id%3D%22pattern-box%22%3E%3Cdefs%3E%3Cpattern%20id%3D%22pattern%22%20x%3D%222%22%20y%3D%222%22%20width%3D%2225%22%20height%3D%2225%22%20patternUnits%3D%22userSpaceOnUse%22%20patternTransform%3D%22rotate(0)%22%3E%3Ccircle%20cx%3D%2212.5%22%20cy%3D%2212.5%22%20r%3D%222%22%20fill%3D%22%23F4F0E0%22%20stroke%3D%22%22%20stroke-width%3D%220%22%3E%3C%2Fcircle%3E%3C%2Fpattern%3E%3C%2Fdefs%3E%3C!----%3E%3Crect%20fill%3D%22url(%23pattern)%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22100%25%22%20height%3D%22100%25%22%3E%3C%2Frect%3E%3C%2Fsvg%3E");
  margin-inline: calc(50% - 50vw);
  padding: 3.125rem 20vw;
}
@media (width <= 1260px) {
  .info_section .top_news {
    padding: 3.125rem 1.25rem;
  }
}
.info_section .top_news h2 {
  margin-top: 0;
}
.info_section .top_news h2::before {
  content: none;
}
.info_section .top_news .top_news_main {
  margin-bottom: 1.875rem;
  margin-top: 1.875rem;
}
.info_section .top_news .top_news_main .top_news_item {
  border-bottom: 1px solid #C9C1B3;
  margin: 0.625rem 0;
}
.info_section .top_news .top_news_main .top_news_item:last-child {
  border-bottom: 0;
}
.info_section .top_news .top_news_main .top_news_item a {
  color: #231815;
  display: grid;
  grid-template-columns: 5.3125rem 1fr;
  text-decoration: none;
}
.info_section .top_news .top_news_main .top_news_item a time {
  grid-column: 1/2;
}
.info_section .top_news .top_news_main .top_news_item a p {
  grid-column: 2/3;
  margin-bottom: 0.625rem;
  margin-left: 2.1875rem;
}
.info_section .top_news div:has(.btn) {
  text-align: center;
}
.info_section .top_info_hours {
  grid-column: 1/2;
  grid-row: 1/2;
}
.info_section .top_map {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media (width <= 1260px) {
  .info_section .top_map {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}

/************************************
** トップ　特徴
************************************/
.feature_section {
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(246, 244, 236) 50%, rgb(248, 245, 233) 100%);
  padding: 9.375rem max((100vw - 75rem) / 2, 0.625rem);
}
.feature_section .h2_english {
  text-align: left;
}
@media (width <= 1260px) {
  .feature_section .h2_english {
    margin-top: 1.25rem;
  }
}
.feature_section h2 {
  margin-bottom: 1.875rem;
  text-align: left;
}
@media (width <= 1260px) {
  .feature_section h2 {
    margin-bottom: 1.25rem;
  }
}
.feature_section .grid_container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.feature_section .grid_container .order_1 {
  order: 2;
}
@media (width <= 1260px) {
  .feature_section .grid_container .order_1 {
    order: 1;
  }
}
.feature_section .grid_container .order_2 {
  order: 1;
}
@media (width <= 1260px) {
  .feature_section .grid_container .order_2 {
    order: 2;
  }
}
.feature_section .grid_container .order_3 {
  order: 3;
  padding: 2.5rem;
}
@media (width <= 1260px) {
  .feature_section .grid_container .order_3 {
    padding: 0;
  }
}
.feature_section .grid_container .order_4 {
  order: 4;
  padding: 2.5rem;
}
@media (width <= 1260px) {
  .feature_section .grid_container .order_4 {
    padding: 0;
  }
}
@media (width <= 1260px) {
  .feature_section .grid_container {
    gap: 0.625rem;
    grid-template-columns: 1fr;
  }
}
.feature_section .top_feature_img_b {
  position: relative;
}
.feature_section .top_feature_img_b img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
@media (width <= 1260px) {
  .feature_section .top_feature_img_b img {
    height: 23.125rem;
  }
}
.feature_section .top_feature_img_b::after {
  border: 1px solid #826F1D;
  content: "";
  height: 27.1875rem;
  left: 0.3125rem;
  position: absolute;
  top: 0.3125rem;
  width: 100%;
}
@media (width <= 1260px) {
  .feature_section .top_feature_img_b::after {
    height: 100%;
  }
}
.feature_section .top_feature_img {
  position: relative;
}
.feature_section .top_feature_img img {
  height: 23.125rem;
  object-fit: cover;
  width: 100%;
}
.feature_section .top_feature_img::after {
  border: 1px solid #826F1D;
  content: "";
  height: 100%;
  left: 0.3125rem;
  position: absolute;
  top: 0.3125rem;
  width: 100%;
}
.feature_section .top_feature_text h3 {
  background: linear-gradient(transparent 60%, #D8CA8C 60%);
  display: inline;
  padding-bottom: 5px;
}
.feature_section .top_feature_text div:has(h3) {
  margin-bottom: 1.25rem;
  margin-top: 1.875rem;
}
@media (width <= 1260px) {
  .feature_section .top_feature_text .btn {
    display: block;
    margin: 0 auto;
    width: fit-content;
  }
}

/************************************
** トップ　診療内容
************************************/
.treatment_section {
  background-color: #FAF9F8;
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 12.5rem;
  position: relative;
}
@media (width <= 1260px) {
  .treatment_section {
    padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 6.25rem;
  }
}
.treatment_section .grid_container ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  margin-top: 3.125rem;
  padding-left: 0;
}
@media (width <= 1260px) {
  .treatment_section .grid_container ul {
    grid-template-columns: 1fr;
  }
}
.treatment_section .grid_container ul li {
  border-bottom: 1px solid #826F1D;
  list-style: none;
  margin: 0 5rem 1.25rem;
  padding: 0.625rem;
  position: relative;
  text-align: center;
}
@media (width <= 1260px) {
  .treatment_section .grid_container ul li {
    margin: 0.75rem 1.25rem;
  }
}
.treatment_section .grid_container ul li a {
  color: #231815;
  display: block;
}
.treatment_section .grid_container ul li::after {
  border-right: 1px solid #826F1D;
  border-top: 1px solid #826F1D;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 0.9375rem;
  top: 1.1875rem;
  transform: rotate(45deg);
  transition: all 0.2s;
  width: 10px;
}
.treatment_section .grid_container ul li:hover::after {
  right: 0.625rem;
}
.treatment_section .splash_g {
  left: 0;
  position: absolute;
  top: -6.25rem;
}
@media (width <= 1260px) {
  .treatment_section .splash_g {
    left: -3.125rem;
    top: -9.375rem;
    transform: scale(0.7);
  }
}
.treatment_section .splash_b {
  bottom: -6.25rem;
  position: absolute;
  right: 0;
}
@media (width <= 1260px) {
  .treatment_section .splash_b {
    bottom: -7.5rem;
    right: -1.875rem;
    transform: scale(0.6);
  }
}

/************************************
** トップ　ご挨拶
************************************/
.greeting_section {
  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='39' height='39' viewBox='0 0 40 40' patternUnits='userSpaceOnUse' patternTransform='rotate(135)'%3E%3Crect width='100%25' height='100%25' fill='rgba(255, 255, 255,1)'/%3E%3Cpath d='M-10 30h60v2h-60zM-10-10h60v2h-60' fill='rgba(242, 242, 238,1)'/%3E%3Cpath d='M-10 10h60v1h-60zM-10-30h60v1h-60z' fill='rgba(244, 244, 241,1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23doodad)' height='200%25' width='200%25'/%3E%3C/svg%3E ");
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 12.5rem;
}
@media (width <= 1260px) {
  .greeting_section {
    padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
  }
}
.greeting_section .grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  margin-top: 3.125rem;
}
@media (width <= 1260px) {
  .greeting_section .grid_container {
    grid-auto-rows: minmax(6.25rem, auto);
    grid-template-columns: 1fr;
  }
}
.greeting_section .grid_container .top_greeting_img {
  grid-column: 1/2;
  grid-row: 1/2;
  justify-self: center;
  margin-top: 3.125rem;
  position: relative;
}
.greeting_section .grid_container .top_greeting_img::after {
  border: 1px solid #826F1D;
  content: "";
  height: 100%;
  left: 0.3125rem;
  position: absolute;
  top: 0.3125rem;
  width: 100%;
}
@media (width <= 1260px) {
  .greeting_section .grid_container .top_greeting_img {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 0;
    transform: scale(0.8);
  }
}
.greeting_section .grid_container .top_greeting_img img {
  height: 22.5rem;
  object-fit: cover;
  width: 22.5rem;
}
.greeting_section .grid_container .top_greeting_img .logo_s {
  height: 14.375rem;
  left: 12.5rem;
  position: absolute;
  top: 15rem;
  width: 14.375rem;
  z-index: 2;
}
.greeting_section .grid_container .top_greeting_text {
  padding-inline: 1.875rem;
}
@media (width <= 1260px) {
  .greeting_section .grid_container .top_greeting_text {
    padding: 5rem 0.625rem;
  }
}
.greeting_section .grid_container .top_greeting_text p:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
@media (width <= 1260px) {
  .greeting_section .grid_container .top_greeting_text p:nth-child(2) {
    font-size: 1.25rem;
  }
}
.greeting_section .grid_container .top_greeting_text .btn {
  display: block;
  margin-inline: auto;
  margin-top: 3.125rem;
  width: fit-content;
}

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

.tel_btn {
  display: none;
}

.footer_fix_tel {
  display: none !important;
}

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

.footer_fix_web {
  display: none !important;
}