@charset "UTF-8";
/************************************
** 変数
************************************/
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 400;
  src: url("../font/ZenMaruGothic-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  src: url("../font/ZenMaruGothic-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  src: url("../font/ZenMaruGothic-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: pacifico;
  font-weight: 700;
  src: url("../font/Pacifico-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 Maru Gothic", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  line-height: 170%;
  color: #4b4b4b;
  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: #f6bec8;
}

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

.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: 500;
  color: white;
  text-decoration: none;
  vertical-align: middle;
  background-image: linear-gradient(to right, #f59dad, #eca5c2, #dfaed2, #d2b8db, #c7c0df);
  filter: drop-shadow(0 4px 4px rgba(152, 66, 81, 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(85, 33, 41, 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);
}

/************************************
** 上に戻るボタン
************************************/
.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: #f6bec8;
  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;
  background-image: linear-gradient(to bottom, #c7c0df, #bdb4dc, #b3a8d8, #a99cd5, #9f90d1);
}
.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;
}
.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;
}
.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: #efe7df;
  border: solid 1px #d7c7b6 !important;
}
.wp-block-table td {
  background-color: white;
  border: solid 1px #d7c7b6 !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: 1px solid #d7c7b6;
  border-radius: 16px;
}
.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: #4b4b4b;
  background-color: white;
  border: 0;
  border-bottom: 1px solid #d7c7b6;
}
.info_hours tbody tr:first-child th,
.info_hours tbody tr:first-child td {
  background-color: #efe7df;
}
.info_hours tbody tr:first-child th {
  width: 30%;
}
.info_hours tbody tr:nth-child(2) td:last-child {
  width: 12%;
}
.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: #efe7df;
  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;
  color: #7d7d7d;
  font-size: 12px;
  font-weight: 500;
}

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

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

.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: #ffdee4 !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 #f59dad;
}

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

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

.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 {
  display: grid;
  place-content: center;
  height: 6.25rem;
  background-image: linear-gradient(to bottom, #ffffff, #fffeff);
}
@media (width <= 1260px) {
  header {
    justify-content: normal;
  }
}
@media (width <= 992px) {
  header {
    height: 3.75rem;
  }
}

.header_container {
  display: grid;
  grid-auto-flow: column;
  place-content: center space-between;
  width: 1260px;
  padding: 0 1.25rem;
}
@media (width <= 1260px) {
  .header_container {
    width: 100%;
  }
}
.header_container .header_logo img {
  width: auto;
  max-width: 100%;
  height: 3.125rem;
  text-align: left;
}
@media (width <= 992px) {
  .header_container .header_logo img {
    height: 2.375rem;
  }
}
@media (width <= 992px) {
  .header_container .nav_pc {
    display: none;
  }
}
.header_container .nav_pc .nav_first {
  display: flex;
  padding-left: 0;
  margin-right: 9.375rem;
}
.header_container .nav_pc .nav_first li {
  padding: 0.625rem;
  font-size: 1rem;
  list-style: none;
}
.header_container .nav_pc .nav_first li a {
  color: #4b4b4b;
  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: white;
}
.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-image: linear-gradient(to bottom, #f6bec8, #f6b6c1, #f6aebb, #f5a5b4, #f59dad);
  filter: drop-shadow(0 4px 4px rgba(152, 66, 81, 0.25));
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  border-radius: 0 0 0 8px;
}
.header_container .header_info .cta_btn:hover {
  filter: drop-shadow(0 2px 2px rgba(85, 33, 41, 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-image: linear-gradient(to bottom, #f6bec8, #f6b6c1, #f6aebb, #f5a5b4, #f59dad);
  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: #4b4b4b;
  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 #f6bec8;
  border-right: solid 2px #f6bec8;
  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-image: linear-gradient(to bottom, #fffeff, #fffdfe, #fffcfb);
}
.hero_section img {
  width: calc(100vw - 3.125rem);
  height: 37.5rem;
  margin-left: auto;
  border-radius: 72px 0 0 72px;
  object-fit: cover;
  object-position: right 20%;
}
@media (width <= 992px) {
  .hero_section img {
    width: calc(100vw - 1.25rem);
    border-radius: 24px 0 0 24px;
    object-position: left 20%;
    margin-left: 1.25rem;
  }
}
.hero_section .hero_content {
  position: absolute;
  top: 31.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: #a59584;
}
@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_text2 {
  display: inline-block;
  padding: 1.875rem;
  font-size: 1.5rem;
  line-height: 140%;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text2 {
    padding: 0.625rem;
    font-size: 1.25rem;
  }
}
.hero_section .hero_content2 {
  position: absolute;
  top: 31.25rem;
  right: 3.125rem;
  z-index: 1;
}
@media (width <= 992px) {
  .hero_section .hero_content2 {
    top: 25rem;
    right: 1.25rem;
  }
}
.hero_section .hero_content2 .hero_feature {
  position: relative;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 10rem;
  height: 10rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
  color: white;
  text-align: center;
  letter-spacing: 0.1em;
  background-image: linear-gradient(to bottom, #c7c0df, #bdb4dc, #b3a8d8, #a99cd5, #9f90d1);
  border-radius: 9999px;
  outline: 6px solid rgba(159, 144, 209, 0.5);
  outline-offset: 0;
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_feature {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 1rem;
  }
}

/************************************
** フッター
************************************/
footer {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: transparent;
}
@media (width <= 992px) {
  footer {
    padding: 1.25rem 0.625rem;
  }
}
footer .grid_container {
  position: relative;
  top: -6.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(6.25rem, auto);
  gap: 2.5rem;
  margin-bottom: -31.25rem;
}
@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/3;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_logo::before {
  position: absolute;
  top: -10rem;
  left: calc((100% - 33.75rem) / 2);
  width: 33.75rem;
  height: 16.875rem;
  content: "";
  background-color: white;
  border-radius: 50%/100% 100% 0 0;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo::before {
    top: -2.5rem;
    left: calc((100% - 18.75rem) / 2);
    width: 18.75rem;
    height: 9.375rem;
  }
}
footer .grid_container .footer_logo img {
  position: relative;
  top: -3.75rem;
  max-height: 15rem;
  margin-inline: auto;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo img {
    top: 0;
    max-height: 8.75rem;
  }
}
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: 2/3;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_info_hours .footer_info {
  text-align: center;
}
footer .grid_container .footer_info_hours .footer_info .footer_tel {
  display: block;
  margin-bottom: 2.5rem;
  font-size: 2.5rem;
  font-weight: 500;
  color: #a59584;
}
footer .grid_container .footer_info_hours .footer_info .footer_tel::before {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.5rem;
  vertical-align: -0.4375rem;
  content: "";
  background-image: url("../images/icon/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
footer .grid_container .footer_map {
  grid-row: 2/4;
  grid-column: 2/3;
}
@media (width <= 992px) {
  footer .grid_container .footer_map {
    grid-row: 3/4;
    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: 4/5;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_menu a {
  color: #4b4b4b;
}
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: 5/6;
    grid-column: 1/2;
  }
}

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

/************************************
** お知らせ
************************************/
.news_post {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem) 25rem;
  background-color: #faf9ff;
}
@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 10px rgba(246, 190, 200, 0.25));
  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 time {
  color: #7d7d7d;
}
.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: #4b4b4b;
}
.news_post .grid_container .news_main .news_link a::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 #f6bec8;
  border-right: solid 2px #f6bec8;
  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;
}
@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 #c7c0df;
}
.news_post .grid_container .widget_area .widget ul a {
  color: #4b4b4b;
}

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

/************************************
** 固定ページ
************************************/
.page_wrap {
  background-image: linear-gradient(to bottom, #ffffff 80%, #fdeded 100%);
}
@media (width <= 992px) {
  .page_wrap {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap nav {
  padding: 0.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: #fffbfc;
}
.page_wrap nav p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.page_wrap a {
  color: #f59dad;
  text-decoration: underline;
}
.page_wrap .btn {
  color: white;
  text-decoration: none;
  margin-bottom: 1.875rem;
}
.page_wrap .main_page {
  padding-bottom: 18.75rem;
}
.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/top-feature1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
}
@media (width <= 992px) {
  .page_wrap .main_page .main_page_title {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap .main_page .main_page_title h1 {
  margin: auto;
  font-weight: 500;
  text-align: center;
}
@media (width <= 992px) {
  .page_wrap .main_page .main_page_title h1 {
    font-size: 1.625rem;
  }
}
.page_wrap .main_page h2 {
  position: relative;
  padding-block: 0.5rem;
  padding-inline: 0.5rem;
  margin-bottom: 2.5rem;
  background-color: #fff4f6;
  border-bottom: solid 3px #ffdee4;
  border-radius: 16px;
}
@media (width <= 992px) {
  .page_wrap .main_page h2 {
    margin-bottom: 1.5rem;
  }
}
.page_wrap .main_page h3 {
  position: relative;
  padding-bottom: 0.3125rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  border-bottom: dashed 2px #e5e1f0;
}
@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 .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 .faq_wrap {
  margin-bottom: 3.125rem;
}
.page_wrap .main_page .faq_wrap .faq_question {
  border: solid 2px #9f90d1;
  padding: 0.9375rem;
  border-radius: 9999px 9999px 9999px 0;
  margin-bottom: 0.625rem;
  background-color: white;
}
.page_wrap .main_page .faq_wrap .faq_question::before {
  content: "Q. ";
}
.page_wrap .main_page .faq_wrap .faq_answer {
  border: solid 2px #f59dad;
  padding: 0.9375rem;
  border-radius: 9999px 9999px 0;
  background-color: white;
}
.page_wrap .main_page .faq_wrap .faq_answer::before {
  content: "A. ";
}
.page_wrap .main_page .th_fix_width th {
  width: 6.25rem;
}

/************************************
** トップ　共通
************************************/
.title_english {
  display: block;
  font-family: "pacifico", cursive;
  font-size: 1.5rem;
  color: #ffdee4;
  text-align: center;
}

h2 {
  font-weight: 400;
  text-align: center;
}

/************************************
** トップ　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-image: linear-gradient(to bottom, #fffcfb, #fffcf9);
}
@media (width <= 992px) {
  .info_section {
    padding: 1.875rem 1.25rem 5rem;
  }
}
.info_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  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 10px rgba(246, 190, 200, 0.25));
  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 h2 {
  margin-bottom: 0;
}
.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: #4b4b4b;
}
.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);
  background-color: #fffbfc;
}
@media (width <= 992px) {
  .specialities_section {
    padding: 2.5rem 0.625rem;
  }
}
.specialities_section .logo_bg {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.specialities_section .grid_container {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-columns: repeat(6, auto);
  gap: 4.375rem 3.125rem;
  margin-top: 6.25rem;
}
@media (width <= 992px) {
  .specialities_section .grid_container {
    grid-template-columns: repeat(2, auto);
    column-gap: 1.25rem;
  }
}
.specialities_section .grid_container .grid_card {
  padding: 1.5625rem;
  background-color: white;
  filter: drop-shadow(0 0 10px rgba(246, 190, 200, 0.25));
  border-radius: 24px;
  transition: all 0.3s;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card {
    padding: 0.9375rem;
  }
}
.specialities_section .grid_container .grid_card:hover {
  filter: drop-shadow(0 0 10px rgba(243, 29, 68, 0.25));
}
.specialities_section .grid_container .grid_card:hover h3::after {
  left: 0.625rem;
}
.specialities_section .grid_container .grid_card .grid_img_wrap {
  display: grid;
  place-content: center;
  width: 7.1875rem;
  height: 7.1875rem;
  margin-inline: auto;
  margin-top: -3.75rem;
  background-image: linear-gradient(to bottom, #f6bec8, #f6b6c1, #f6aebb, #f5a5b4, #f59dad);
  border-radius: 9999px;
  outline: 6px solid rgba(246, 190, 200, 0.5);
  outline-offset: 3px;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card .grid_img_wrap {
    width: 4.6875rem;
    height: 4.6875rem;
    margin-top: -2.5rem;
  }
  .specialities_section .grid_container .grid_card .grid_img_wrap img {
    width: 2.625rem;
    height: 2.625rem;
  }
}
.specialities_section .grid_container .grid_card h3 {
  padding: 1.5625rem 0 0.9375rem;
  font-weight: 500;
  color: #4b4b4b;
  text-align: center;
  border-bottom: 1px dashed #d7c7b6;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card h3 {
    padding: 1.25rem 0 0.3125rem;
    font-size: 1.1875rem;
  }
}
.specialities_section .grid_container .grid_card h3::after {
  position: relative;
  top: -0.3125rem;
  left: 0;
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: solid 2px #f59dad;
  border-right: solid 2px #f59dad;
  transition: all 0.3s;
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card h3::after {
    top: -0.1875rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}
.specialities_section .grid_container .grid_card p {
  padding: 1.25rem;
  color: #4b4b4b;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card p {
    padding: 0;
    padding-top: 0.625rem;
  }
}
.specialities_section .grid_container .grid_card:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/3;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(1) {
    grid-row: 1/2;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(2) {
  grid-row: 1/2;
  grid-column: 3/5;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(2) {
    grid-row: 2/3;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(3) {
  grid-row: 1/2;
  grid-column: 5/7;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(3) {
    grid-row: 3/4;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(4) {
  grid-row: 2/3;
  grid-column: 2/4;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(4) {
    grid-row: 4/5;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(5) {
  grid-row: 2/3;
  grid-column: 4/6;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(5) {
    grid-row: 5/6;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(6) {
  grid-row: 3/4;
  grid-column: 1/3;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(6) {
    grid-row: 6/7;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(7) {
  grid-row: 3/4;
  grid-column: 3/5;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(7) {
    grid-row: 7/8;
    grid-column: 1/4;
  }
}
.specialities_section .grid_container .grid_card:nth-child(8) {
  grid-row: 3/4;
  grid-column: 5/7;
}
@media (width <= 992px) {
  .specialities_section .grid_container .grid_card:nth-child(8) {
    grid-row: 8/9;
    grid-column: 1/4;
  }
}

/************************************
** トップ　特徴
************************************/
.feature_section {
  margin-bottom: -6.25rem;
  background-color: transparent;
}
@media (width <= 992px) {
  .feature_section {
    margin-bottom: -3.125rem;
  }
}
.feature_section .parallax_content {
  height: 28.125rem;
  overflow: hidden;
  position: relative;
}
@media (width <= 992px) {
  .feature_section .parallax_content {
    height: 18.75rem;
  }
}
.feature_section .parallax_content .parallax_content_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0);
  z-index: -1;
}
.feature_section .parallax_content .parallax_content_img::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/photo/top-feature1.webp") no-repeat;
  background-size: cover;
  background-position: top center;
}
.feature_section .top_feature_wrap {
  position: relative;
  top: -10rem;
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 3.75rem 3.125rem;
  margin-left: max((100vw - 75rem) / 2, 0.625rem);
  background-image: linear-gradient(to bottom, #fcf7f1, #f9f3ec, #f5efe8, #f2ebe3, #efe7df);
  border-radius: 24px 0 0 24px;
}
@media (width <= 992px) {
  .feature_section .top_feature_wrap {
    top: -6.25rem;
    padding: 2.5rem max(100vw - 75rem, 1.25rem) 3.125rem max((100vw - 75rem) / 2, 0.625rem);
  }
}
.feature_section .top_feature_wrap .title_english {
  color: #d7c7b6;
}
.feature_section .grid_container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  place-content: center;
  place-items: center;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .feature_section .grid_container {
    top: -6.25rem;
    grid-template-rows: 16.625rem 1fr;
    grid-template-columns: 1fr;
  }
}
.feature_section .grid_container::before {
  position: absolute;
  left: 12.5rem;
  z-index: 0;
  width: calc(100% - 12.5rem);
  height: 25rem;
  content: "";
  background-color: #fffcf9;
  border-radius: 24px 0 0 24px;
}
@media (width <= 992px) {
  .feature_section .grid_container::before {
    top: 12.5rem;
    left: -0.625rem;
    width: 100vw;
    height: calc(100% - 17.5rem);
    border-radius: 0;
  }
}
.feature_section .top_feature_img {
  z-index: 1;
  grid-row: 1/2;
  grid-column: 1/2;
}
@media (width <= 992px) {
  .feature_section .top_feature_img {
    padding-top: 0;
  }
}
.feature_section .top_feature_img img {
  object-fit: cover;
  width: 25rem;
  height: 16.625rem;
  border-radius: 20px;
}
.feature_section .top_feature_text {
  z-index: 1;
  grid-row: 1/2;
  grid-column: 2/3;
  padding: 4.375rem;
}
@media (width <= 992px) {
  .feature_section .top_feature_text {
    grid-row: 2/3;
    grid-column: 1/2;
    padding: 2.5rem 0;
  }
}

/************************************
** トップ　下肢静脈瘤について
************************************/
.varices_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 9.375rem;
  background-color: transparent;
}
@media (width <= 992px) {
  .varices_section {
    padding: 1.25rem;
  }
}
.varices_section .title_english {
  color: #e5e1f0;
}
.varices_section .grid_container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  place-items: center;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .varices_section .grid_container {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(6.25rem, auto);
  }
}
.varices_section .grid_container::before {
  position: absolute;
  top: -25rem;
  z-index: -1;
  width: 100vw;
  height: 56.25rem;
  content: "";
  background-image: linear-gradient(to right, #ece8f5, #eae7f4, #efedf8, #f5f3fb, #faf9ff);
  transform: skewY(35deg);
}
@media (width <= 992px) {
  .varices_section .grid_container::before {
    top: -18.75rem;
    height: 50rem;
  }
}
@media (width <= 480px) {
  .varices_section .grid_container::before {
    top: -12.5rem;
  }
}
.varices_section .grid_container .top_varices_text {
  display: grid;
  grid-row: 1/2;
  grid-column: 1/2;
  place-content: center;
  place-items: center;
  padding-inline: 1.875rem;
}
@media (width <= 992px) {
  .varices_section .grid_container .top_varices_text {
    grid-row: 2/3;
    grid-column: 1/2;
    padding: 4.375rem 0;
  }
}
.varices_section .grid_container .top_varices_img {
  position: relative;
  grid-row: 1/2;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .varices_section .grid_container .top_varices_img {
    grid-row: 1/2;
    grid-column: 1/2;
    padding-right: 1.25rem;
  }
}
.varices_section .grid_container .top_varices_img::before {
  position: absolute;
  top: 2.5rem;
  left: 1.875rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #e5e1f0;
  border-radius: 20px;
}
@media (width <= 992px) {
  .varices_section .grid_container .top_varices_img::before {
    top: 1.875rem;
    left: 1.25rem;
    width: calc(100% - 1.25rem);
  }
}
.varices_section .grid_container .top_varices_img img {
  border-radius: 20px;
}

/************************************
** トップ　ご挨拶
************************************/
.greeting_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem) 31.25rem;
  background-image: url("../images/photo/top-greeting-bg-pc.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 992px) {
  .greeting_section {
    padding: 3.125rem 1.25rem 12.5rem;
    background-image: url("../images/photo/top-greeting-bg-sp.webp");
  }
}
.greeting_section .grid_container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 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;
}
@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 {
  width: 25rem;
  height: 25rem;
  object-fit: cover;
  border-radius: 20px;
  outline: 6px solid rgba(255, 255, 255, 0.5);
  outline-offset: -6px;
}
.greeting_section .grid_container .top_greeting_text {
  display: grid;
  grid-row: 1/2;
  grid-column: 2/3;
  place-content: center;
  place-items: center;
  padding-inline: 1.875rem;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text {
    grid-row: 2/3;
    grid-column: 1/2;
    padding: 2.5rem 0;
  }
}
.greeting_section .grid_container .top_greeting_text p:nth-child(2) {
  place-self: end;
  font-size: 1.5rem;
  font-weight: 500;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text p:nth-child(2) {
    font-size: 1.25rem;
  }
}

/************************************
** プレオープン
************************************/
.preopen h1 {
  display: none;
}
.preopen p {
  max-width: 50rem;
  margin-inline: auto;
}