@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*======================================
セッティング
======================================*/
.sp {
  display: none;
}

.tabOnly {
  display: none !important;
}

.pcNone {
  display: block !important;
}
@-webkit-keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 400;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #585756;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body.fixed {
  position: fixed;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

p {
  line-height: 1.7777777778;
  letter-spacing: 0;
}

.l-inner {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.l-wrapper {
  overflow: hidden;
}

/*======================================
　共通ボタン
======================================*/
.c-btn {
  width: clamp(6rem, 8.3333333333vw, 9.5rem);
}
.c-btn a {
  display: block;
}

/*======================================
　アニメーション : fade
======================================*/
@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUp 0.5s ease;
  animation: fadeUp 0.5s ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(2rem);
  transform: translateY(2rem);
}

.delay-1 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
  -moz-animation-delay: 0.35s;
  -webkit-animation-delay: 0.35s;
  -o-animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
}

.delay-5 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
}

/*======================================
　追従ボタン
======================================*/
.floatingBtn_pc {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: clamp(5rem, 6.9444444444vw, 10rem);
  z-index: 10;
}
.floatingBtn_pc a {
  display: block;
}
.floatingBtn_pc a:not(:last-child) {
  margin-bottom: 1rem;
}
.floatingBtn_sp {
  display: none;
}

/*======================================
フッター
======================================*/
footer {
  position: relative;
  z-index: 2;
}

footer .scrollTop {
  display: block;
  width: clamp(4rem, 7.0175438596vw, 8rem);
  position: absolute;
  bottom: clamp(1rem, 2.6315789474vw, 3rem);
  right: clamp(1rem, 2.6315789474vw, 3rem);
  z-index: 2;
}

.footer_cta .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer_cta a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 2rem;
}
.footer_cta a .text {
  display: grid;
  place-items: center;
  height: 100%;
}
.footer_cta a.callBox {
  background-color: #478cc7;
  border-right: solid 0.1rem #fff;
}
.footer_cta a.callBox img {
  width: clamp(16rem, 31.5789473684vw, 36rem);
}
.footer_cta a.reserveBox {
  background-color: #66bdd4;
}
.footer_cta a.reserveBox img {
  width: clamp(22rem, 36.8421052632vw, 42rem);
}

.footer_menu .menuList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 4.3859649123vw, 5rem);
  padding: 5rem 2rem 3rem;
}
.footer_menu a {
  font-size: clamp(1.4rem, 1.5789473684vw, 1.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #585756;
  white-space: nowrap;
}

.footer_content {
  background-color: #eef9ff;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}
.footer_content .l-inner {
  max-width: 108rem;
}
.footer_content .contentBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
.footer_content .infoBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.footer_content .logo {
  width: clamp(16rem, 22.8070175439vw, 26rem);
  margin-bottom: 3rem;
}
.footer_content .access {
  font-size: clamp(1.4rem, 1.5789473684vw, 1.8rem);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 2.5rem;
}
.footer_content .call {
  display: block;
  width: clamp(26rem, 31.5789473684vw, 36rem);
}
.footer_content .reserveBox {
  width: clamp(25rem, 43.8596491228vw, 50rem);
}
.footer_content .table {
  margin-bottom: 2rem;
}
.footer_content .read {
  font-size: clamp(1.2rem, 1.2280701754vw, 1.4rem);
  font-weight: 400;
  line-height: 2.0714285714;
}

footer small {
  display: block;
  font-size: clamp(1.2rem, 1.2280701754vw, 1.4rem);
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  color: #585756;
  line-height: 1;
  letter-spacing: 0.05em;
}

/*======================================
　ヘッダー
======================================*/
.l-wrapper > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  background-color: #fff;
  padding: 0 clamp(2rem, 2.7777777778vw, 4rem) 0 clamp(2rem, 6.9444444444vw, 10rem);
  width: 100%;
  height: 8rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.l-wrapper > header h1 {
  width: 26rem;
  line-height: 1;
}
/*======================================
　nav
======================================*/
ul.gnav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: clamp(1rem, 3.4722222222vw, 5rem);
}

ul.gnav-menu > li {
  white-space: nowrap;
  line-height: 1;
  position: relative;
}

ul.gnav-menu > li > a {
  display: block;
  font-size: clamp(1.3rem, 1.25vw, 1.8rem);
  font-weight: 400;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #585756;
  line-height: 1;
  letter-spacing: 0;
}
/*======================================
　hamburger
======================================*/
.gnav-sp {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
  opacity: 0;
  background-color: #478cc7;
}

.gnav-sp .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.gnav-sp .wrap .icon {
  display: block;
  width: 3rem;
  margin: 0 auto;
}

.gnav-sp-menu {
  margin-bottom: 5rem;
}

.gnav-sp-menu li {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  line-height: 1.4;
}

.gnav-sp-menu li span {
  display: block;
  font-weight: normal;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
}

.gnav-sp-menu li a {
  display: block;
  padding: 1.2rem 0;
  white-space: nowrap;
  color: #fff;
}

.gnav-sp-menu li .fa-brands {
  font-size: 3.5rem;
}

.gnav-sp .iconBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
}

.gnav-sp .iconBox .insta {
  width: 1.9rem;
}

.gnav-sp .iconBox .facebook {
  width: 1rem;
}

/* toggle */
.toggle-btn {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100000;
  background-color: #478cc7;
}

.toggle-btn span {
  display: block;
  position: absolute;
  left: 2rem;
  width: 2rem;
  height: 0.2rem;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.toggle-btn span:nth-child(1) {
  top: 1.9rem;
}

.toggle-btn span:nth-child(2) {
  top: 2.7rem;
}

.toggle-btn span:nth-child(3) {
  top: 3.5rem;
}

/* open */
.open .gnav-sp {
  top: 0;
  opacity: 1;
  z-index: 99999;
}

.open .toggle-btn span {
  background-color: #fff;
}

.open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(0.8rem) rotate(-45deg);
  transform: translateY(0.8rem) rotate(-45deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-0.8rem) rotate(45deg);
  transform: translateY(-0.8rem) rotate(45deg);
}

/*======================================
　KV : 下層ページタイトル
======================================*/
.pageMv {
  padding-top: 8rem;
}
.pageMv_inner {
  width: 100%;
  height: clamp(25rem, 24.3055555556vw, 35rem);
  background-image: url(../img/page_mv@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.pageMv_inner::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.pageMv h1 {
  font-size: clamp(3rem, 3.6603221083vw, 5rem);
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  z-index: 3;
}

.parallax {
  height: clamp(20rem, 27.7777777778vw, 40rem);
  padding-bottom: 1.5rem;
  overflow: hidden;
}
.parallax::before {
  content: "";
  background-image: url(../img/parallax_photo@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}

/*============================
	hero
============================*/
.top-kv {
  position: relative;
  height: 100vh;
}

.top-kv-slider > * {
  height: 100vh;
}

.top-kv-slider > *:nth-of-type(1) {
  background: url(../img/mv_photo01@2x.jpg) no-repeat center/cover;
}

.top-kv-slider > *:nth-of-type(2) {
  background: url(../img/mv_photo02@2x.jpg) no-repeat center/cover;
}

.top-kv-slider > *:nth-of-type(3) {
  background: url(../img/mv_photo03@2x.jpg) no-repeat center/cover;
}

.top-kv .heading2 {
  font-size: clamp(2rem, 3.3333333333vw, 4.8rem);
  font-weight: bold;
  line-height: 1.4583333333;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  bottom: clamp(2rem, 5.9027777778vw, 8.5rem);
  left: clamp(2rem, 12.5vw, 18rem);
  text-shadow: 0 0 2.4rem rgba(48, 79, 118, 0.6);
}

.scroll {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 900;
  position: absolute;
  left: clamp(2rem, 4.5138888889vw, 6.5rem);
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  color: #000;
  letter-spacing: 0;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
}

.scroll span {
  width: 0.1rem;
  height: 4.5rem;
  background: #000;
  -webkit-animation: scroll infinite 1s;
  animation: scroll infinite 1s;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
  100% {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
  }
}
/*======================================
　当院について
======================================*/
.pageSub .about_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.pageSub .about_item:not(:last-child) {
  margin-bottom: 10rem;
}
.pageSub .about h2 {
  font-size: clamp(2rem, 2.6315789474vw, 3rem);
  font-weight: 900;
  color: #478cc7;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 4.3859649123vw, 5rem);
  position: relative;
  line-height: 1.3;
}
.pageSub .about h2::before {
  content: "";
  width: clamp(10rem, 26.3157894737vw, 30rem);
  height: 0.3rem;
  background-color: #478cc7;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  z-index: 2;
}
.pageSub .about h2::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #999;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.pageSub .about_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 4.3859649123vw, 5rem);
}
.pageSub .about_content .photo {
  width: clamp(30rem, 35.0877192982vw, 40rem);
}
.pageSub .about_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageSub .about_content .read {
  line-height: 2;
}

/*======================================
店舗情報
======================================*/
.pageSub .information_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.pageSub .information_table {
  margin-bottom: 5rem;
}
.pageSub .information_table dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 1.5rem;
}
.pageSub .information_table dl:not(:last-child) {
  border-bottom: solid 1px rgba(71, 140, 199, 0.2);
}
.pageSub .information_table dt, .pageSub .information_table dd, .pageSub .information_table a {
  line-height: 1.5;
  color: #585756;
}
.pageSub .information_table dt {
  width: 30%;
  font-weight: bold;
}
.pageSub .information_table dd {
  width: 70%;
  font-weight: 400;
}
.pageSub .information_table a {
  text-decoration: underline;
}
.pageSub .information_table a[href^="tel:"] {
  text-decoration: none;
}
.pageSub .information_map {
  height: 50rem;
}
.pageSub .information_map iframe {
  width: 100%;
  height: 100%;
}

/*======================================
店舗情報
======================================*/
.pageSub .contact_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.pageSub .contact_head {
  background-color: #fff;
  padding: clamp(2rem, 3.5087719298vw, 4rem);
  margin-bottom: 10rem;
}
.pageSub .contact_head h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.1929824561vw, 2.5rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: clamp(2rem, 2.6315789474vw, 3rem);
  color: #000;
}
.pageSub .contact_head a {
  display: grid;
  grid-template-columns: auto auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 1.7543859649vw, 2rem);
  font-size: clamp(3.5rem, 6.1403508772vw, 7rem);
  color: #338dc2;
  margin: 0 auto;
  letter-spacing: 0.05em;
}
.pageSub .contact_head i {
  font-family: "Material Icons";
  font-size: clamp(3rem, 4.3859649123vw, 5rem);
  color: #338dc2;
}
.pageSub .contact_form {
  margin-bottom: clamp(5rem, 6.9444444444vw, 10rem);
}
.pageSub .contact_form .CMS-FORM-GROUP > input,
.pageSub .contact_form .CMS-FORM-GROUP > textarea {
  width: 100%;
  border: solid 0.1rem #bbb;
  border-radius: 0.4rem;
}
.pageSub .contact_form .CMS-FORM-GROUP > input {
  height: 4rem;
}
.pageSub .contact_form .CMS-FORM-GROUP > input[type=submit] {
  width: 30rem;
  text-align: center;
  background-color: #478cc7;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  height: 6rem;
}
.pageSub .contact_form .CMS-FORM-GROUP > textarea {
  height: 10rem;
}
.pageSub .contact_form .CMS-FORM-GROUP > label {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}
.pageSub .contact_form .CMS-FORM-GROUP:not(:last-child) {
  margin-bottom: 3rem;
}
.pageSub .contact_form .CMS-FORM-RADIO input {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.5rem 0.3rem 0;
}
.pageSub .contact_form .CMS-FORM-RADIO label {
  margin-right: 3rem;
}
.pageSub .contact_form .CMS-FORM-GROUP:has(input[type=submit]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 6rem;
}
.pageSub .contact_form .CMS-FORM-GROUP:has(input[type=submit]) input {
  background-color: #66bdd4;
}
.pageSub .contact_privacy .read {
  line-height: 1.7;
  margin-bottom: 3rem;
}
.pageSub .contact_privacy .privacyBox {
  height: clamp(30rem, 34.7222222222vw, 50rem);
  overflow: scroll;
  border: 0.2rem solid #000000;
  padding: 2rem;
  background-color: #fff;
}
.pageSub .contact_privacy .privacyBox p {
  color: #000;
  line-height: 1.7;
}

/*======================================
ギャラリー
======================================*/
.pageSub .galleryBox_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.pageSub .galleryBox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 1.3888888889vw, 2rem);
}
.pageSub .galleryBox_item {
  list-style-type: none;
}
.pageSub .galleryBox_item img {
  width: clamp(8rem, 12.1527777778vw, 17.5rem);
  height: clamp(8rem, 12.1527777778vw, 17.5rem);
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*======================================
　診療内容
======================================*/
.pageSub .menu_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.pageSub .menu_item:not(:last-child) {
  margin-bottom: 10rem;
}
.pageSub .menu h2 {
  font-size: clamp(2rem, 2.6315789474vw, 3rem);
  font-weight: 900;
  color: #478cc7;
  padding-bottom: 2rem;
  margin-bottom: clamp(3rem, 4.3859649123vw, 5rem);
  position: relative;
  line-height: 1.3;
}
.pageSub .menu h2::before {
  content: "";
  width: clamp(10rem, 26.3157894737vw, 30rem);
  height: 0.3rem;
  background-color: #478cc7;
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  z-index: 2;
}
.pageSub .menu h2::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #999;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.pageSub .menu_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 4.3859649123vw, 5rem);
}
.pageSub .menu_content .photo {
  width: clamp(30rem, 35.0877192982vw, 40rem);
}
.pageSub .menu_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageSub .menu_content .read {
  line-height: 2;
}

/*======================================
お知らせ
======================================*/
.pageSub .articleBox_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(15rem, 17.5438596491vw, 20rem);
}
.pageSub .articleBox .CMS-NEWS-INDEX {
  max-width: 110rem;
  gap: 2.5rem;
  padding: 0;
}
.pageSub .articleBox .CMS-NEWS-ITEM {
  width: calc((100% - 5rem) / 3);
  margin: 0;
}
.pageSub .articleBox .CMS-NEWS-THUMBNAIL {
  height: 20rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 3rem;
  overflow: hidden;
}
.pageSub .articleBox .CMS-NEWS-ITEM a {
  padding: 0;
}
.pageSub .articleBox .CMS-NEWS-TIME {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  color: #585756;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 1rem;
}
.pageSub .articleBox .CMS-NEWS-LINK {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  color: #585756;
}
.pageSub .articleBox .CMS-NEWS-MORE-READ {
  display: block;
  bottom: -10rem;
  background-color: #585756;
}

/*======================================
お知らせ詳細
======================================*/
.pageSub .newsDetail_inner {
  padding-top: clamp(8rem, 10.5263157895vw, 12rem);
  padding-bottom: clamp(8rem, 10.5263157895vw, 12rem);
}
.pageSub .newsDetail .CMS-NEWS-TITLE {
  border-bottom: solid 1px #999;
  color: #478cc7;
}
.pageSub .newsDetail .CMS-NEWS-TITLE:after {
  border-bottom: solid 3px #478cc7;
}
.pageSub .newsDetail .CMS-NEWS-CONTENT {
  line-height: 1.7;
}

.pageSub .thanks_inner {
  padding: clamp(5rem, 10.5263157895vw, 12rem) 2rem;
  max-width: 102rem;
  margin: 0 auto;
}
.pageSub .thanks h2 {
  text-align: center;
  font-size: clamp(2rem, 2.6315789474vw, 3rem);
  margin-bottom: 3rem;
}
.pageSub .thanks .read {
  text-align: center;
  font-weight: 300;
  margin-bottom: 6rem;
  letter-spacing: 0;
}
.pageSub .thanks .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.pageSub .thanks .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #478cc7;
  color: #fff;
  width: clamp(25rem, 26.3157894737vw, 30rem);
  height: clamp(5rem, 5.2631578947vw, 6rem);
  font-size: clamp(1.8rem, 1.7543859649vw, 2rem);
}

/*======================================
TOPページ
======================================*/
.pageTop .topNews {
  background-image: url(../img/news_bg@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.pageTop .topNews_inner {
  max-width: 104rem;
  padding-top: 8rem;
  padding-bottom: 5rem;
  margin: 0 auto;
}
.pageTop .topNews_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 5.2631578947vw, 6rem);
  border: solid 0.1rem #fff;
}
.pageTop .topNews .heading2 {
  width: 17rem;
  margin: 0 auto 3rem;
}
.pageTop .topNews .c-btn {
  margin: 0 auto;
}
.pageTop .topNews .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageTop .topNews .CMS-NEWS-INDEX {
  max-width: 100rem;
  gap: clamp(2rem, 5.2631578947vw, 6rem);
  padding: 0;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.pageTop .topNews .CMS-NEWS-ITEM {
  width: calc((100% - 2.5rem) / 3);
  margin: 0;
}
.pageTop .topNews .CMS-NEWS-THUMBNAIL {
  height: 14rem;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 1rem;
}
.pageTop .topNews .CMS-NEWS-ITEM a {
  padding: 0;
}
.pageTop .topNews .CMS-NEWS-TIME {
  font-size: clamp(1.2rem, 1.5789473684vw, 1.8rem);
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  color: #adadad;
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 1rem;
}
.pageTop .topNews .CMS-NEWS-LINK {
  font-size: clamp(1.2rem, 1.5789473684vw, 1.8rem);
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7777777778;
  letter-spacing: 0;
  color: #585756;
}
.pageTop .topNews .CMS-NEWS-MORE-READ {
  display: none;
}
.pageTop .topReserve {
  background-color: #eef9ff;
}
.pageTop .topReserve_inner {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pageTop .topReserve_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.pageTop .topReserve_content > div {
  background-color: #fff;
  border-radius: 2rem;
  border: solid 0.2rem #478cc7;
}
.pageTop .topReserve_content .box01 {
  padding: 2rem 1.5rem;
}
.pageTop .topReserve_content .box01 h2 {
  font-size: clamp(1.8rem, 2.6315789474vw, 3rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 2rem;
  color: #478cc7;
}
.pageTop .topReserve_content .box01 .iconBox {
  margin-bottom: 2rem;
}
.pageTop .topReserve_content .box01 .read {
  font-size: 1.6rem;
  line-height: 1.8125;
  margin-inline: 2rem;
}
.pageTop .topReserve_content .box02 {
  padding: 4rem 3rem 3rem;
}
.pageTop .topReserve_content .box02 .table {
  margin-bottom: 2rem;
}
.pageTop .topReserve_content .box02 .read {
  font-size: 1.6rem;
  line-height: 1.8125;
  margin-inline: 2rem;
}
.pageTop .topPolicy_inner {
  padding-top: clamp(8rem, 8.7719298246vw, 10rem);
  position: relative;
  z-index: 1;
}
.pageTop .topPolicy_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: clamp(2rem, 5.2631578947vw, 6rem);
}
.pageTop .topPolicy_content .detailBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.pageTop .topPolicy_content .headBox {
  margin-left: clamp(2rem, 5.2631578947vw, 6rem);
  height: 100%;
  display: grid;
}
.pageTop .topPolicy_content .heading2 {
  width: 9rem;
}
.pageTop .topPolicy_content .c-btn {
  margin-top: auto;
  margin-bottom: 4rem;
}
.pageTop .topPolicy_content h3 {
  font-size: clamp(2rem, 2.4561403509vw, 2.8rem);
  font-weight: 400;
  line-height: 1.7142857143;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  margin-left: 2rem;
}
.pageTop .topPolicy_content .read {
  line-height: 2.6666666667;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  height: clamp(40rem, 42.9824561404vw, 49rem);
}
.pageTop .topPolicy_content .photoBox {
  width: clamp(30rem, 61.4035087719vw, 70rem);
  margin-left: clamp(-17rem, -14.9122807018vw, -2rem);
  border-radius: 2rem;
}
.pageTop .topDoctor_inner {
  padding-top: clamp(12rem, 14.0350877193vw, 16rem);
  padding-bottom: 8rem;
}
.pageTop .topDoctor .heading2 {
  width: 16rem;
  margin-bottom: 6rem;
}
.pageTop .topDoctor_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(2rem, 6.1403508772vw, 7rem);
  list-style-type: none;
}
.pageTop .topDoctor_listItem .photo {
  width: clamp(30rem, 29.8245614035vw, 34rem);
  margin-bottom: 1rem;
}
.pageTop .topDoctor_listItem .name {
  font-size: clamp(1.8rem, 2.1052631579vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-align: center;
}
.pageTop .topMenu {
  background-color: #eef9ff;
}
.pageTop .topMenu_inner {
  padding-top: clamp(8rem, 10.0877192982vw, 11.5rem);
  padding-bottom: clamp(8rem, 8.7719298246vw, 10rem);
}
.pageTop .topMenu_head {
  margin-bottom: 5rem;
}
.pageTop .topMenu .heading2 {
  width: 16rem;
  margin-bottom: 4rem;
}
.pageTop .topMenu_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: clamp(2rem, 3.5087719298vw, 4rem) clamp(2rem, 4.3859649123vw, 5rem);
  list-style-type: none;
}
.pageTop .topMenu_listItem {
  background-color: #fff;
  border-radius: 1rem;
  -webkit-box-shadow: 0.2rem 0.2rem 1rem rgba(173, 173, 173, 0.35);
  box-shadow: 0.2rem 0.2rem 1rem rgba(173, 173, 173, 0.35);
  padding: 3rem clamp(2rem, 3.5087719298vw, 4rem) 4rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.pageTop .topMenu_listItem::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 25/7;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: -1;
}
.pageTop .topMenu_listItem:nth-child(odd)::after {
  background-image: url(../img/treatment_arrow01@2x.png);
}
.pageTop .topMenu_listItem:nth-child(even)::after {
  background-image: url(../img/treatment_arrow02@2x.png);
}
.pageTop .topMenu_listItem .photo {
  width: clamp(8rem, 11.4035087719vw, 13rem);
}
.pageTop .topMenu_listItem .detailBox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.pageTop .topMenu_listItem h3 {
  font-size: clamp(1.8rem, 2.1052631579vw, 2.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  color: #585756;
}
.pageTop .topMenu_listItem p {
  color: #585756;
}
.pageTop .topGallery_inner {
  padding-top: clamp(8rem, 8.7719298246vw, 10rem);
  padding-bottom: clamp(8rem, 9.649122807vw, 11rem);
}
.pageTop .topGallery_head {
  margin-bottom: clamp(5rem, 5.701754386vw, 6.5rem);
}
.pageTop .topGallery .heading2 {
  width: 16rem;
}
.pageTop .topGallery #loopslider {
  width: 100%;
  height: 26rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.pageTop .topGallery #loopslider ul {
  float: left;
  display: inline;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}
.pageTop .topGallery #loopslider ul li {
  width: 28rem;
  float: left;
  display: inline;
  overflow: hidden;
}
.pageTop .topGallery #loopslider ul li img {
  padding: 0 1rem;
}
.pageTop .topGallery #loopslider ul:after {
  content: ".";
  height: 0;
  clear: both;
  display: block;
  visibility: hidden;
}
.pageTop .topGallery #loopslider ul {
  display: inline-block;
  overflow: hidden;
}
.pageTop .topGallery .c-btn {
  margin: 0 auto;
}
.pageTop .topAccess {
  background-color: #eef9ff;
}
.pageTop .topAccess_inner {
  padding-top: clamp(8rem, 8.7719298246vw, 10rem);
  padding-bottom: clamp(8rem, 8.7719298246vw, 10rem);
  position: relative;
  z-index: 1;
}
.pageTop .topAccess .heading2 {
  width: 16rem;
  margin-bottom: 6rem;
}
.pageTop .topAccess_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(2rem, 4.3859649123vw, 5rem);
}
.pageTop .topAccess_content .map {
  width: clamp(30rem, 61.4035087719vw, 70rem);
  height: clamp(25rem, 44.7368421053vw, 51rem);
  margin-right: clamp(-17rem, -14.9122807018vw, -2rem);
  border-radius: 2rem;
  overflow: hidden;
}
.pageTop .topAccess_content .map iframe {
  width: 100%;
  height: 100%;
}
.pageTop .topAccess_content .detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 1;
}
.pageTop .topAccess_content .detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2rem, 3.9473684211vw, 4.5rem);
  border-bottom: solid 0.1rem #478cc7;
}
.pageTop .topAccess_content .detail dl:first-child {
  border-top: solid 0.1rem #478cc7;
}
.pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd, .pageTop .topAccess_content .detail a {
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 400;
  color: #585756;
  letter-spacing: 0.15em;
  line-height: 1.3888888889;
}
.pageTop .topAccess_content .detail dt {
  width: 10rem;
  padding: 2.5rem 0;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.1);
}
.pageTop .topAccess_content .detail dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2.5rem 0 2.5rem;
}
@media (min-width: 767px){
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px){
  .pcNone {
    display: none !important;
  }
}
@media (min-width: 821px) and (max-width: 1023px){
  .tabOnly {
    display: block !important;
  }
}
@media screen and (max-width: 980px){
  .l-wrapper > header {
    padding: 2rem;
  }
  ul.gnav-menu {
    gap: 2rem;
  }
}
@media screen and (max-width: 820px){
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  .l-wrapper > header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 1rem;
    height: 6rem;
    background-color: initial;
  }
  .l-wrapper > header h1 {
    width: 12rem;
    margin-top: 0;
  }
  .l-wrapper > header::after {
    background-position: top center;
  }
  .pageMv {
    padding-top: 0;
  }
  .pageTop .topNews_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
  .pageTop .topNews_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 5rem;
    width: 100%;
  }
  .pageTop .topNews .heading2 {
    margin: 0;
  }
  .pageTop .topNews .c-btn {
    margin: 0;
  }
}
@media (max-width: 767px){
  .pageTop .topAccess_content .detail dd {
    padding: 0;
  }
}
@media screen and (max-width: 767px){
  .spNone {
    display: none !important;
  }
  body {
    font-size: 15px;
  }
  .floatingBtn_pc {
    display: none;
  }
  .floatingBtn_sp {
    width: 100%;
    height: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10;
  }
  .floatingBtn_sp a {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #4673ab;
  }
  .floatingBtn_sp a:last-child {
    background-color: #66bdd4;
  }
  .floatingBtn_sp a img {
    max-width: 17.5rem;
  }
  footer .scrollTop {
    bottom: 8rem;
  }
  .footer_cta .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer_cta a.callBox img {
    width: 60%;
  }
  .footer_cta a.reserveBox img {
    width: 80%;
  }
  .footer_menu .menuList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem;
  }
  .footer_menu a {
    font-size: 1.6rem;
  }
  .footer_content .l-inner {
    padding-bottom: 8rem;
  }
  .footer_content .contentBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
  }
  .footer_content .logo {
    margin: 0 auto 3rem;
  }
  .footer_content .access {
    text-align: center;
  }
  .footer_content .call {
    margin: 0 auto;
  }
  .footer_content .reserveBox {
    width: 100%;
  }
  .footer_content .read {
    font-size: 1.4rem;
    text-align: center;
  }
  footer small {
    font-size: 1rem;
    text-align: center;
  }
  .top-kv .heading2 {
    bottom: 4rem;
    left: 2rem;
  }
  .top-kv {
    height: 40vh;
  }
  .top-kv-slider > * {
    height: 40vh;
  }
  .scroll span {
    height: 4rem;
  }
  .pageSub .about_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageSub .about_content .photo {
    width: 100%;
  }
  .pageSub .information_table dl {
    padding: 1.5rem 1rem;
    gap: 1rem;
  }
  .pageSub .information_table dt {
    width: 100%;
  }
  .pageSub .information_table dd {
    width: 100%;
  }
  .pageSub .information_table a[href^="tel:"] {
    text-decoration: underline;
  }
  .pageSub .information_map {
    height: 25rem;
  }
  .pageSub .galleryBox_item img {
    width: clamp(10rem, 19.556714472vw, 15rem);
    height: clamp(10rem, 19.556714472vw, 15rem);
  }
  .pageSub .menu_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageSub .menu_content .photo {
    width: 100%;
  }
  .pageSub .articleBox .CMS-NEWS-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
  .pageSub .articleBox .CMS-NEWS-ITEM {
    width: 100%;
  }
  .pageSub .articleBox .CMS-NEWS-THUMBNAIL {
    margin-bottom: 1rem;
  }
  .pageSub .thanks .read {
    line-height: 1.7;
  }
  .pageTop .topNews .heading2 {
    width: 12rem;
  }
  .pageTop .topNews .CMS-NEWS-INDEX {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3rem;
  }
  .pageTop .topNews .CMS-NEWS-ITEM {
    width: 100%;
  }
  .pageTop .topNews .CMS-NEWS-THUMBNAIL {
    height: 20rem;
    margin-bottom: 1rem;
  }
  .pageTop .topNews .CMS-NEWS-TIME {
    margin: 0 0 0.5rem;
  }
  .pageTop .topNews .CMS-NEWS-LINK {
    font-size: 1.6rem;
  }
  .pageTop .topReserve_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topReserve_content .box01 {
    padding: 2rem;
  }
  .pageTop .topReserve_content .box01 .read {
    margin-inline: 0;
  }
  .pageTop .topReserve_content .box02 {
    padding: 2rem;
  }
  .pageTop .topReserve_content .box02 .read {
    margin-inline: 0;
  }
  .pageTop .topPolicy_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topPolicy_content .detailBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topPolicy_content .headBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5rem;
    margin-left: 0;
    margin-bottom: 5rem;
  }
  .pageTop .topPolicy_content .heading2 {
    width: 15rem;
  }
  .pageTop .topPolicy_content .c-btn {
    margin-top: initial;
    margin-bottom: initial;
  }
  .pageTop .topPolicy_content h3 {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    margin-left: 0;
    margin-bottom: 2rem;
  }
  .pageTop .topPolicy_content .read {
    -webkit-writing-mode: initial;
    -ms-writing-mode: initial;
    writing-mode: initial;
    height: auto;
    line-height: 2;
  }
  .pageTop .topPolicy_content .photoBox {
    width: calc(100% + 2rem);
    margin-left: -2rem;
  }
  .pageTop .topDoctor_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topDoctor_listItem .photo {
    width: 100%;
  }
  .pageTop .topDoctor_listItem .name {
    font-size: 2rem;
  }
  .pageTop .topMenu_list {
    grid-template-columns: auto;
  }
  .pageTop .topGallery #loopslider {
    height: 14rem;
  }
  .pageTop .topGallery #loopslider ul li {
    width: 16rem;
  }
  .pageTop .topAccess_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .pageTop .topAccess_content .map {
    width: 100%;
    margin-right: 0;
  }
  .pageTop .topAccess_content .detail {
    width: 100%;
  }
  .pageTop .topAccess_content .detail dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  .pageTop .topAccess_content .detail dt, .pageTop .topAccess_content .detail dd, .pageTop .topAccess_content .detail a {
    line-height: 1.7;
  }
  .pageTop .topAccess_content .detail dt {
    width: 100%;
    padding: 0;
    text-align: left;
    font-weight: bold;
  }
  .pageTop .topAccess_content .detail a {
    text-decoration: underline;
  }
}

.photoBox img {
  border-radius: 20px;
}