@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');

html {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.5;

}

main {
    max-width: 640px;
    margin: 0 auto;
    box-shadow: 0 0 10px #0000005e;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


/* CTA */
.cta {
    position: relative;
}

.cta__link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 93%;
    z-index: 1000;
}

/* 分割CTA用のクラス */
.cta__link--split {
    position: absolute;
    z-index: 1000;
    transform: none;
}

.cta__link--split picture {
    display: block;
    margin-bottom: 0;
}

.cta__link picture {
    display: block;
    margin-bottom: 20px;
}

.cta__link picture:last-child {
    margin-bottom: 0;
}

/* 04画像用のアンカーリンク */
.cta__link--menu {
    position: absolute;
    display: block;
    z-index: 1000;
    cursor: pointer;
}
/* FAQ */
.faq {
    padding: 40px 20px;
    background:#51B5DD;
}

.faq h2 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem 0;
}

.faq-item {
    margin-bottom: 0;
    border-bottom: 2px solid white;
    border-radius: 0;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.accordion__button {
    width: 100%;
    padding: 20px;
    background: #51B5DD;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 16px;
    color: white;
    transition: background-color 0.3s;
}

.faq-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* ぼかしアコーディオン画像 */
.foggy-image-block {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}

.foggy-image {
    position: relative;
    overflow: hidden;
    max-height: none;
    transition: max-height 0.6s ease;
}

.foggy-image.is-measuring {
    transition: none;
}

.foggy-image__media picture,
.foggy-image__media img {
    display: block;
    width: 100%;
    height: auto;
}

.foggy-image__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 7%;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 60%, #ffffff 100%);
    transition: opacity 0.3s ease;
}

.foggy-image.showing-overlay .foggy-image__overlay {
    opacity: 1;
}

@supports (backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px)) {
    .foggy-image__overlay {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

.foggy-image__toggle {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    width: 40%;
    max-width: 280px;
}

.foggy-image__toggle[data-state="expanded"] {
    bottom: 1%;
}

.foggy-image__toggle picture,
.foggy-image__toggle img {
    display: block;
    width: 100%;
    height: auto;
}

.foggy-image__toggle:focus-visible {
    outline: none;
    box-shadow: none;
}

.foggy-image-block.is-expanded .foggy-image__toggle {
    transform: translate(-50%, 0);
}

.compare-table {
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table picture,
.compare-table img {
    display: block;
    width: 145%;
    max-width: none;
}

.compare-table img {
    min-width: 100%;
}

.compare-table::-webkit-scrollbar {
    height: 8px;
}

.compare-table::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 999px;
}

.compare-table::-webkit-scrollbar-track {
    background-color: transparent;
}

.compare-table--overlay {
    position: absolute;
    top: 30%;
    left: 5%;
    right: 0;
    z-index: 900;
    
    background: transparent;
}

.compare-table--cases {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-height: 45%;
    z-index: 950;
    background: transparent;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.compare-table--cases picture,
.compare-table--cases img {
    display: block;
    width: auto;
    max-width: none;
    min-width: 130%;
}

.cases-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.cases-accordion__item {
    position: relative;
}

.cases-accordion__base {
    display: block;
}

.cases-accordion__base img {
    display: block;
    width: 100%;
    height: auto;
}

.cases-accordion__trigger {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.cases-accordion__trigger picture,
.cases-accordion__trigger img {
    display: block;
    width: 100%;
    height: auto;
}

.cases-accordion__panel {
    position: relative;
    overflow: hidden;
    width: 100%;
    transition: max-height 0.4s ease;
}

.cases-accordion__panel picture,
.cases-accordion__panel img {
    display: block;
    width: 100%;
    height: auto;
}

.cases-accordion__panel[hidden] {
    display: block;
    visibility: hidden;
    opacity: 0;
    max-height: 0 !important;
}

.cases-accordion__panel.is-open {
    visibility: visible;
    opacity: 1;
}

.cases-accordion__trigger--symbol {
    position: relative;
}

.cases-accordion__symbol {
    position: absolute;
    top: 28%;
    right: 12.5%;
    font-size: clamp(44px, 3vw, 64px);
    font-weight: 700;
    color: #031925;
    background: #FFFFFF;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.price-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.price-accordion__item {
    position: relative;
}

.price-accordion__trigger {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.price-accordion__trigger picture,
.price-accordion__trigger img {
    display: block;
    width: 100%;
    height: auto;
}

.price-accordion__panel {
    overflow: hidden;
    width: 100%;
    padding-top: 0;
    transition: max-height 0.4s ease;
}

.price-accordion__panel picture,
.price-accordion__panel img {
    display: block;
    width: 100%;
    height: auto;
}

.price-accordion__trigger--symbol {
    position: relative;
}

.price-accordion__panel[hidden] {
    display: block;
    visibility: hidden;
    opacity: 0;
    max-height: 0 !important;
    padding-top: 0;
}

.price-accordion__panel.is-open {
    visibility: visible;
    opacity: 1;
    padding-top: 0;
}

.price-accordion__symbol {
    position: absolute;
    top: 27%;
    right: 11%;
    font-size: clamp(30px, 3vw, 62px);
    width:55px;
    height:55px;
    font-weight: 700;
    color: #fff;
    background:#3879CD;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.faq-question {
    flex: 1;
    font-weight: bold;
    font-size:20px;
    color: white;
}

.accordion-toggle {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin-left: 10px;
    flex-shrink: 0;
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #51B5DD;
}

.accordion__content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
}

.faq-answer {
    flex: 1;
    color: white;
    line-height: 1.6;
}

/* アコーディオンが開いているとき */
.faq-item.open .accordion__body {
    max-height: 200px;
}

/* 追従CTAボタン */
.sticky-cta {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 640px;
    height: 63px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFF8F7;
}

.sticky-cta__button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    z-index: 1;
    width: 90%;
    text-align: center;
}

.sticky-cta__button img {
    width: 80% !important;
    height: auto !important;
    max-width: none !important;
    display: block !important;
    margin: 0 auto;
}

/* sticky CTA ホットスポット */
.sticky-cta__hotspot {
    position: absolute;
    top: 0;
    height: 100%;
    display: block;
    z-index: 2;
}
.sticky-cta__hotspot--left { left: 0; width: 40%; }
.sticky-cta__hotspot--right { left: 40%; width: 60%; }

/* sticky CTA 画像 */
.sticky-cta__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block !important;
    width: 80% !important;
    height: auto !important;
    pointer-events: none;
}

/* モーダル */
.modal_2 {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.modal__bg {
  background: rgba(10, 51, 99, 0.75);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content_reserve {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}

.modal_title_txt p {
  margin: 0 auto;
}

.modal__inner.only_reserve {
  display: flex;
  justify-content: center;
}

.modal_reserve_btn_03_btnbox {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  list-style-type: none;
  text-align: center;
}

/* 電話モーダル */
.tel_modal .modal_2.tel_17 {
  height: 180vh;
  top: -150px;
}

.tel_modal .modal__content_reserve {
  background: #fff;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
}

.tel_modal .modal__content_reserve.tel_17 {
  top: 37%;
  width: 90%;
  max-width: 800px;
}

.tel_modal .modal_title_txt {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  color: #1b3664;
}

.tel_modal .modal_reserve_btn_03_btnbox {
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  justify-content: space-around;
  -webkit-box-pack: space-around;
  -ms-flex-pack: space-around;
  list-style-type: none;
  text-align: center;
}

.tel_modal .modal_reserve_btn_03_btnitem {
  display: table;
}

.tel_modal .modal_reserve_btn_style {
  position: relative;
  display: inline-block;
  padding: 1em 1.2em;
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  width: 230px;
  margin: 20px;
  line-height: initial;
}

.tel_modal .modal_reserve_btn_style span {
  font-size: 20px;
  letter-spacing: 2px;
}

.tel_modal .color_tel {
  background: #1b3664;
  color: #fff;
}

.tel_modal .modal__inner.only_reserve {
  display: flex;
}

.tel_modal .modal__content_reserve.tel_17 {
  top: 50%;
  width: 100%;
}

/* 閉じるボタン */
.close {
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: #002d60;
  border-radius: 120px;
}

.close span::before,
.close span::after {
  display: block;
  content: "";
  position: absolute;
  top: 56%;
  left: 62%;
  width: 60%;
  height: 5%;
  margin: -8% 0 0 -42%;
  background: #fff;
}

.close span::before {
  transform: rotate(-45deg);
}

.close span::after {
  transform: rotate(45deg);
}

.close_btn {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
}

/* レスポンシブ対応（640px以下） */
@media screen and (max-width: 640px) {
  .tel_modal .modal__inner {
    justify-content: center;
    flex-flow: nowrap;
    width: 100%;
    background: #fff;
    padding: 8%;
  }
  
  .tel_modal .modal__content_reserve {
    overflow: scroll;
    overflow-y: scroll;
    width: 100%;
    height: 70%;
    background: none;
    top: 40%;
    padding: 2.66vw;
  }
  
  .tel_modal .modal_reserve_btn_style.tel_17 {
    padding: 0.8em 1.2em;
    font-size: 13px;
    margin: 10px 20px;
  }
  
  .tel_modal .modal_reserve_btn_style.tel_17 span {
    font-size: 12px;
  }
  
  .tel_modal .modal__inner__text {
    width: auto;
    padding-left: 0;
    font-size: min(18px, 2.4vw);
    line-height: 2;
  }
  
  .modal_title_txt {
    text-align: center;
    font-weight: bold;
    font-size: min(32px, 4.26vw);
    color: #1b3664;
  }
  
  .modal__content_reserve {
    overflow: scroll;
    overflow-y: scroll;
    width: 100%;
    height: 50%;
    background: none;
    top: 40%;
    padding: 2.66vw;
  }
  
  .modal_reserve_btn_style {
    position: relative;
    display: inline-block;
    padding: 1em 1.2em;
    text-decoration: none;
    border-radius: 5px;
    font-size: min(24px, 4.5vw);
    font-weight: bold;
    width: 45.66vw;
    margin: 2.66vw;
    line-height: initial;
  }
}

/* PC用クラスを非表示 */
.pc {
    display: none !important;
}

/* クリニック紹介セクション */
.section-treatment {
    background: #e7f2f9;
    padding: 33px 0;
    text-align: center;
}

.section-treatment .d-clinic-parts-3point-title__wrap {
    max-width: 832px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 20px;
}

.section-treatment .d-clinic-parts-3point__h2 {
    font-size: 24px;
    font-weight: bold;
    color: #11366f;
    margin-bottom: 30px;
}

.section-treatment .d-clinic-parts-3point-h2__recommendation1--treatment {
    font-size: 20px;
    margin-bottom: 10px;
}

.section-treatment .d-clinic-parts-3point-h2__recommendation2 {
    font-size: 24px;
    font-weight: bold;
}

.section-treatment .clinic_item__sub {
    background: #fff;
}

.section-treatment .clinic-logo__1 {
    width: 58.23%;
}

.section-treatment .clinic-logo__2 {
    width: 58.23%;
}

.section-treatment .clinic-logo__3 {
    width: 58.23%;
}

.section-treatment .clinic-logo__4 {
    width: 62.6%;
}

.section-treatment .clinic-logo__5 {
    width: 73.334%;
}

.section-treatment .clinic-logo__6 {
    width: 57.18%;
}

.section-treatment .clinic_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 31px;
}

.section-treatment .information-location {
    margin: 0 auto;
    display: none;
}

.section-treatment .information-location.current {
    display: block;
}

.section-treatment .section_clinic {
    overflow: hidden;
}

.section-treatment .js-modal-open {
    color: #0055b8;
    text-decoration: underline;
    font-weight: bold;
    font-size: min(24px, 3.12vw);
    display: block;
    position: absolute;
    top: 0;
    left: 53vw;
}

.section-treatment .ttl {
    font-size: min(34px, 5.3vw);
    margin-bottom: min(38px, 6vw);
    color: #11366f;
}

.section-treatment .ttl span {
    font-size: min(47px, 7.4vw);
}

.section-treatment .clinic_item {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: min(720px, 112.5vw);
    border-radius: 10px;
    margin: 0 auto 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-treatment .clinic-logo {
    position: absolute;
    top: 3.5%;
    left: 4%;
}

.section-treatment .clinic-logo img {
    max-width: 200px;
    height: auto;
}

.section-treatment .clinic-image {
    position: absolute;
    top: 17%;
    left: 2%;
    width: 96%;
}

.section-treatment .clinic-image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.section-treatment .information-list {
    position: absolute;
    top: 48%;
    left: 6%;
    width: 88%;
    font-size: 14px;
    /* line-height: 2.25; */
    letter-spacing: -0.04em;
    margin: 0 auto;
    font-weight: bold;
    text-align: justify;
}

.section-treatment .information-list li {
    padding-left: 5.3em;
    text-indent: -3em;
    position: relative;
    margin-bottom: 6px;
}

.section-treatment .information-list li::before {
    content: "";
    position: absolute;
    background: no-repeat center/100% auto;
    left: 0;
}

.section-treatment .information-list .doctor__item::before {
width: 15.5px;
  height: 19.5px;
    top: 7%;

    background-image: url(../img/introduction1.webp);
}

.section-treatment .information-list .address__item::before {
width: 15.5px;
  height: 19.5px;
    top: 5%;
    background-image: url(../img/introduction2.webp);
}

.section-treatment .information-list .train-station__item::before {
width: 15.5px;
  height: 19.5px;
    background-image: url(../img/introduction3.webp);
    top: 3%;
}

.section-treatment .information-list .doctor__item {
    font-weight: bold;
    color: #333;
}

.section-treatment .information-list .doctor__item a {
    color: #0055b8;
    text-decoration: underline;
    font-weight: bold;
    font-size: 14px;
    display: block;
    position: absolute;
    top: 0;
    left: 60%;
    transform: translateX(-50%);
}

.section-treatment .information-list .address__item {
    color: #666;

}

.section-treatment .information-list .train-station__item {
    color: #666;
}

.section-treatment .information-hour {
    position: absolute;
    top: 74.5%;
    left: 3%;
    width: 94%;
    height: 167px;
}

.section-treatment .information-hour img {
    width: 100%;
    height: auto;
}

.section-treatment .information-tel {
    position: absolute;
    top: 75.6%;
    width: 28%;
    right: 2%;
}

.section-treatment .information-tel a {
    display: block;
}

.section-treatment .information-tel img {
    width: min(162px, 25.33vw);
    height: auto;
}

/* クリニックモーダルスタイル - 元のサイトのSPViewスタイルに戻す */

  #modal01, #modal02, #modal03, #modal04, #modal05, #modal06 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
  }

  #modal01 .modal__bg, #modal02 .modal__bg, #modal03 .modal__bg, #modal04 .modal__bg, #modal05 .modal__bg, #modal06 .modal__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
  }

  #modal01 .modal__content, #modal02 .modal__content, #modal03 .modal__content, #modal04 .modal__content, #modal05 .modal__content, #modal06 .modal__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    width: 94.66vw;
    height: 80%;
    background: none;
    padding: 2.81vw;
  }

  #modal01 .modal__inner, #modal02 .modal__inner, #modal03 .modal__inner, #modal04 .modal__inner, #modal05 .modal__inner, #modal06 .modal__inner {
    flex-flow: column;
    background: #fff;
  }

  #modal01 .modal__inner__docphoto, #modal02 .modal__inner__docphoto, #modal03 .modal__inner__docphoto, #modal04 .modal__inner__docphoto, #modal05 .modal__inner__docphoto, #modal06 .modal__inner__docphoto {
    /* width: 67.6vw; */
    max-width:300px;
    margin: 0 auto;
    padding-top: 10.66vw;
  }

  #modal01 .modal__inner__docphoto img, #modal02 .modal__inner__docphoto img, #modal03 .modal__inner__docphoto img, #modal04 .modal__inner__docphoto img, #modal05 .modal__inner__docphoto img, #modal06 .modal__inner__docphoto img {
    width: 100%;
    height: auto;
  }

  #modal01 .doctor__box-area, #modal02 .doctor__box-area, #modal03 .doctor__box-area, #modal04 .doctor__box-area, #modal05 .doctor__box-area, #modal06 .doctor__box-area {
    font-size: min(26px, 3.46vw);
  }

  #modal01 h3.doctor__box-name, #modal02 h3.doctor__box-name, #modal03 h3.doctor__box-name, #modal04 h3.doctor__box-name, #modal05 h3.doctor__box-name, #modal06 h3.doctor__box-name {
    font-size: min(32px, 4.26vw);
    font-weight: normal;
    width: 82vw;
    border-bottom: 1px solid #000;
    margin-bottom: 2.26vw;
  }

  #modal01 .doctor__box-name span, #modal02 .doctor__box-name span, #modal03 .doctor__box-name span, #modal04 .doctor__box-name span, #modal05 .doctor__box-name span, #modal06 .doctor__box-name span {
    font-size: min(24px, 3.2vw);
    line-height: 2.14286;
  }

  #modal01 .doctor__box-info, #modal02 .doctor__box-info, #modal03 .doctor__box-info, #modal04 .doctor__box-info, #modal05 .doctor__box-info, #modal06 .doctor__box-info {
    padding-top: 2.93vw;
    width: 86vw;
  }

  #modal01 .modal__inner__text, #modal02 .modal__inner__text, #modal03 .modal__inner__text, #modal04 .modal__inner__text, #modal05 .modal__inner__text, #modal06 .modal__inner__text {
    width: 88.66vw;
    padding-left: 3.06vw;
    font-size: min(16px, 2.13vw);
    line-height: 1.7;
  }

  #modal01 .doctor__box-history, #modal02 .doctor__box-history, #modal03 .doctor__box-history, #modal04 .doctor__box-history, #modal05 .doctor__box-history, #modal06 .doctor__box-history {
    font-size: 14px;
  }

  #modal01 .doctor__box-history dt, #modal02 .doctor__box-history dt, #modal03 .doctor__box-history dt, #modal04 .doctor__box-history dt, #modal05 .doctor__box-history dt, #modal06 .doctor__box-history dt {
    font-weight: bold;
    display: block;
    float: left;
  }

  #modal01 .doctor__box-history dd, #modal02 .doctor__box-history dd, #modal03 .doctor__box-history dd, #modal04 .doctor__box-history dd, #modal05 .doctor__box-history dd, #modal06 .doctor__box-history dd {
    display: block;
    margin: 0 0 9px 100px;
  }

  #modal01 .close, #modal02 .close, #modal03 .close, #modal04 .close, #modal05 .close, #modal06 .close {
    width: 6.6vw;
    height: 6.6vw;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: #002d60;
    border-radius: 120px;
  }

  #modal01 .close_btn, #modal02 .close_btn, #modal03 .close_btn, #modal04 .close_btn, #modal05 .close_btn, #modal06 .close_btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }

  #modal01 .close span::before, #modal02 .close span::before, #modal03 .close span::before, #modal04 .close span::before, #modal05 .close span::before, #modal06 .close span::before,
  #modal01 .close span::after, #modal02 .close span::after, #modal03 .close span::after, #modal04 .close span::after, #modal05 .close span::after, #modal06 .close span::after {
    display: block;
    content: "";
    position: absolute;
    top: 56%;
    left: 62%;
    width: 60%;
    height: 5%;
    margin: -8% 0 0 -42%;
    background: #fff;
  }

  #modal01 .close span::before, #modal02 .close span::before, #modal03 .close span::before, #modal04 .close span::before, #modal05 .close span::before, #modal06 .close span::before {
    transform: rotate(-45deg);
  }

  #modal01 .close span::after, #modal02 .close span::after, #modal03 .close span::after, #modal04 .close span::after, #modal05 .close span::after, #modal06 .close span::after {
    transform: rotate(45deg);
  }

address{
      font-style: normal;
}

.clinic-note {
    margin-top: -40px;
    font-size: 10px;
    color: #617C8A;
    text-align: right;
    align-self: flex-end;
    width: 100%;
    max-width: 600px;
}