@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Zen+Maru+Gothic&display=swap");
:root {
  --zen: "Zen Maru Gothic", sans-serif;
  --qui: "Quicksand", sans-serif;
  font-family: var(--zen);
  --green: #498197;
  --lgreen: #4DAED7;
  --perple:#6E7AEA;
  --bg:#E4F3F9;
  --bg-p:rgba(110, 122, 234, 0.1);
  line-height: 1.875;
  color: #333;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: #fff;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--green);
}
a:hover {
  opacity: 0.8;
}

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

header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
}

#sp-menu {
  display: none;
}

#ham {
  display: none;
}

.logo {
  display: block;
  width: 215px;
  position: fixed;
  top: 15px;
  left: 25px;
  z-index: 1001;
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  position: fixed;
  top: 0;
  right: 25px;
  z-index: 1001;
  height: 100px;
}

.header__nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
  height: 100%;
}
.header__nav-list li {
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
}
.header__nav-list li a {
  font-size: 16px;
  font-weight: 500;
}

#hover-target {
  position: relative;
}

.hover-cont {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 20px 8px;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  flex-direction: column;
  display: flex;
  gap: 10px 0;
}
.hover-cont a {
  display: block;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
}
.hover-cont.active {
  opacity: 1;
  visibility: visible;
}

.header__nav-tel-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 26px;
  font-weight: 700;
  color: var(--green);
  font-family: var(--qui);
}
.header__nav-tel-link .icon {
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../img/top/phone-icon.svg);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  background-color: var(--green);
  padding: 3px;
  border-radius: 50%;
}

.header__nav-contact-list {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header__nav-contact-list li {
  width: 155px;
  height: 52px;
}
.header__nav-contact-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: var(--perple);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  text-align: center;
  line-height: 1.4;
}
.header__nav-contact-list li:nth-of-type(2) a {
  background-color: var(--lgreen);
}

@media screen and (max-width: 1400px) {
  .logo {
    width: 140px;
    top: 14px;
    left: 15px;
    line-height: 1;
  }
  header {
    height: 73px;
    width: 100%;
  }
  #ham {
    width: 73px;
    height: 73px;
    position: fixed;
    z-index: 1001;
    top: 0;
    right: 0;
    display: block;
  }
  #ham .ham {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--lgreen);
    display: block;
  }
  #ham .ham .line {
    position: absolute;
    width: 32px;
    height: 2px;
    background-color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
  }
  #ham .ham .line:first-of-type {
    transform: translate(-50%, -9px);
  }
  #ham .ham .line:last-of-type {
    transform: translate(-50%, 8px);
  }
  #ham.active .ham .line:first-of-type {
    transform: translate(-50%, 0) rotate(45deg);
  }
  #ham.active .ham .line:last-of-type {
    transform: translate(-50%, 0) rotate(-45deg);
  }
  #ham.active .ham .line:nth-of-type(2) {
    opacity: 0;
  }
  .header__nav {
    display: none;
  }
  #sp-menu {
    display: block;
    height: 100vh;
    overflow: scroll;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--bg);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  #sp-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
  #sp-menu.active {
    opacity: 1;
    visibility: visible;
  }
  .sp-menu__wrapper {
    padding: 130px 5% 100px;
    background-color: var(--bg);
    width: 100%;
  }
  .sp-menu__nav-list > li#click-target {
    font-size: 18px;
    padding: 0 35px;
    border-right: none;
    line-height: 1.2;
    color: var(--lgreen);
    padding: 20px 30px 20px 0;
    border-bottom: 1px solid var(--lgreen);
    position: relative;
    display: block;
  }
  .sp-menu__nav-list > li#click-target::after {
    content: "＋";
    position: absolute;
    top: 20px;
    right: 5px;
  }
  .sp-menu__nav-list > li#click-target.active::after {
    content: "－";
  }
  .sp-menu__nav-list > li > a {
    font-size: 18px;
    padding: 0 35px;
    border-right: none;
    line-height: 1.2;
    color: var(--lgreen);
    padding: 20px 30px 20px 0;
    border-bottom: 1px solid var(--lgreen);
    position: relative;
    display: block;
  }
  .sp-menu__nav-list > li > a::after {
    content: "";
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    right: 5px;
    width: 11px;
    height: 11px;
    background-image: url(../img/top/right-arrow.svg);
    transition: transform 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
  }
  .sp-menu__nav-list > li > a:hover::after {
    transform: translate(3px, -50%);
  }
  #click-target-cont {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
  }
  #click-target-cont li a {
    padding: 15px 10px 0;
    padding-left: 1em;
    font-size: 16px;
    font-weight: 500;
    display: block;
    position: relative;
  }
  #click-target-cont li a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 9px;
    width: 6px;
    height: 1px;
    background-color: var(--lgreen);
    display: block;
  }
  #click-target-cont.active {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .comp__btns {
    display: flex;
    gap: 6px;
    justify-content: center;
  }
  .comp__btn {
    width: calc(50% - 3px);
    max-width: 250px;
    display: flex;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    position: relative;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .comp__btn::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 12px;
    top: 50%;
    right: 13px;
    transform: translate(0, -50%);
    background-image: url(../img/top/right-arrow-white.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: all 0.3s ease;
  }
  .comp__btn:hover::after {
    transform: translate(3px, -50%);
  }
  .comp__btn-perple {
    background-color: var(--perple);
  }
  .comp__btn-green {
    background-color: var(--lgreen);
  }
  .sp-menu__nav {
    margin-bottom: 40px;
  }
}
@keyframes nobiru {
  0% {
    height: 0;
  }
  100% {
    height: 500px;
  }
}
#top-mv {
  position: relative;
}
#top-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(77, 174, 215, 0.15);
  animation: nobiru 1s 0.5s ease-in-out forwards;
}

main {
  margin-top: 100px;
}

.inner {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}

.top-mv__bl {
  position: relative;
  padding-top: 70px;
  opacity: 0;
  animation: fadeIn 0.5s 1.7s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-mv__img {
  width: 60%;
  position: relative;
  margin-left: auto;
  margin-right: 0;
}

.top-mv__cont {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.top-mv__ttl {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.top-mv__ttl .txt {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  background-color: var(--lgreen);
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 5px 0 5px 20px;
}

.top-mv__txt {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 30px;
}
.top-mv__txt .txt {
  font-weight: bold;
  font-size: 20px;
  line-height: 1.4;
  background-color: #fff;
  color: var(--green);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 5px 0 5px 15px;
}

.top-mv__point-list {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.top-mv__point-list li {
  background-color: var(--lgreen);
  width: 140px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  font-family: 18px;
  font-weight: bold;
  border: 5px solid #fff;
}

.scroll-down-link {
  font-family: var(--qui);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  padding: 10px 0;
  width: 280px;
  border-bottom: 1px solid var(--green);
  position: absolute;
  left: 0;
  bottom: 0;
}
.scroll-down-link::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../img/top/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  right: 5px;
  position: absolute;
  top: 50%;
  animation: scroll-down 1.5s ease-in-out infinite;
}

@keyframes scroll-down {
  0% {
    transform: translateY(-35%);
  }
  50% {
    transform: translateY(-15%);
  }
  100% {
    transform: translateY(-35%);
  }
}
#top-news {
  padding: 120px 0 0;
}

.top-news__bl {
  background-color: var(--bg);
  border-radius: 10px;
  padding: 60px 6%;
  display: flex;
}
.top-news__bl .news__list {
  width: 75%;
  border-left: 2px solid var(--green);
  padding: 10px 0 30px 7%;
}

.top-news__ttl-bl {
  width: 25%;
  position: relative;
}

.news__list li a {
  display: flex;
  position: relative;
  padding: 20px 25px 20px 0;
  border-bottom: 1px solid var(--green);
}
.news__list li a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url(../img/top/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}
.news__list li a:hover {
  opacity: 0.8;
}
.news__list li a:hover::before {
  transform: translate(3px, -50%);
}
.news__list li a time {
  display: block;
  width: 100px;
  font-size: 16px;
  font-family: var(--qui);
}
.news__list li a .txt {
  width: calc(100% - 100px);
  font-size: 16px;
}

.top-news__ttl-en {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--qui);
  color: var(--green);
  letter-spacing: 0.1em;
}

.top-news__ttl-ja {
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 50px;
}

.top-news__link {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
  padding: 7px 0;
  width: 160px;
  border-bottom: 1px solid var(--green);
  position: absolute;
  left: 0;
  bottom: 0;
}
.top-news__link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-image: url(../img/top/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  right: 5px;
  position: absolute;
  top: 50%;
  transform: translate(0, -25%);
  transition: all 0.3s ease;
}
.top-news__link:hover {
  opacity: 0.8;
}
.top-news__link:hover::after {
  transform: translate(3px, -25%);
}

#top-about {
  padding: 120px 0 20px;
  position: relative;
  overflow: hidden;
}
#top-about::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 638px;
  background-color: rgba(77, 174, 215, 0.15);
}

.top-about__ttl-bl {
  margin-bottom: 50px;
}

.top-about__ttl-en {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--qui);
  color: var(--green);
  letter-spacing: 0.1em;
  text-align: center;
}

.top-about__ttl-ja {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.top-about__bl {
  width: calc(50% + 600px);
  max-width: 95%;
  display: flex;
}
.top-about__bl .img {
  width: calc(100% - 600px);
  position: relative;
  z-index: 1;
}
.top-about__bl .cont {
  width: 600px;
  padding-left: 4%;
}

.top-about__ttl-middle {
  font-weight: bold;
  line-height: 1.5;
  font-size: 31px;
  margin-bottom: 20px;
  color: var(--green);
}

.top-about__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
.top-about__list li {
  background-color: #fff;
  padding: 7px 10px 7px 45px;
  border-radius: 5px;
  position: relative;
  font-size: 18px;
}
.top-about__list li::before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  background-image: url(../img/top/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 10px;
  top: 11px;
}

.top-about__swiper {
  margin-top: 10px;
}
.top-about__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.top-about__swiper .swiper-wrapper .swiper-slide {
  font-size: 7.7vw;
  font-weight: 700;
  color: var(--lgreen);
  font-family: var(--qui);
  letter-spacing: 0.05em;
  opacity: 0.2;
}

.inner-s {
  width: 1000px;
  margin: 0 auto;
  max-width: 90%;
}

.cta {
  padding: 60px 0;
}

.cta__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cta__list li a {
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.cta__list li a.white-btn {
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: bold;
  font-size: 22px;
}
.cta__list li a.perple-btn {
  background-color: var(--perple);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
.cta__list li a.green-btn {
  background-color: var(--lgreen);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.en {
  font-family: var(--qui);
  letter-spacing: 0.1em !important;
}

#top-problem {
  position: relative;
  padding: 120px 0 80px;
  background-color: var(--bg);
}
#top-problem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/495;
  background-image: url(../img/top/problem.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
#top-problem .inner {
  position: relative;
  z-index: 1;
}

.top-problem__ttl {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 50px;
}

.top-problem__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 70px;
}
.top-problem__list li {
  background-color: #fff;
  padding: 20px 15px;
  border-radius: 5px;
  position: relative;
}
.top-problem__list li .ttl {
  text-align: center;
  color: var(--perple);
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 15px;
  font-family: var(--qui);
}
.top-problem__list li .txt {
  font-size: 18px;
  line-height: 1.5;
  color: var(--green);
}

.solution-bl {
  background-color: var(--lgreen);
  border-radius: 20px;
  padding: 50px 5%;
  position: relative;
}
.solution-bl::before {
  content: "";
  position: absolute;
  top: -70px;
  transform: translateX(-50%);
  left: 50%;
  width: 36px;
  height: 48px;
  background-image: url(../img/top/arrow-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.solution-bl p {
  color: #fff;
  font-size: 20px;
}

#top-service {
  padding: 40px 0 0;
}

.top-service__ttl {
  margin-bottom: 40px;
}
.top-service__ttl .tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0;
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
}
.top-service__ttl .tag::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 2px;
  height: 35px;
  background-color: var(--green);
  transform: translateY(-40%) rotate(-25deg);
}
.top-service__ttl .tag::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 2px;
  height: 35px;
  background-color: var(--green);
  transform: translateY(-40%) rotate(25deg);
}
.top-service__ttl .txt {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  display: block;
  color: var(--green);
}

.top-service__list li {
  display: flex;
}
.top-service__list li .img {
  width: 50%;
}
.top-service__list li .cont {
  width: 50%;
  background-color: var(--bg-p);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 5%;
}
.top-service__list li .cont .cont-inner {
  width: 600px;
  max-width: 100%;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-service__list li .cont .cont-inner .txt {
  font-size: 15px;
  margin-bottom: 30px;
}
.top-service__list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.top-service__list li:nth-child(2n) .cont {
  background-color: #e4f3f9;
}
.top-service__list li:nth-child(2n) .top-service__ttl-middle,
.top-service__list li:nth-child(2n) .top-service__ttl-small {
  color: var(--green);
}

.top-service__ttl-middle {
  font-size: 36px;
  font-weight: bold;
  color: var(--perple);
  margin-bottom: 10px;
}

.top-service__ttl-small {
  font-size: 24px;
  font-weight: bold;
  color: var(--perple);
  margin-bottom: 20px;
}

.visit-btn,
.online-btn {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--perple);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1.4;
  border-radius: 5px;
}
.visit-btn::after,
.online-btn::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url(../img/top/right-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  right: 8px;
  position: absolute;
  top: 50%;
  transform: translate(0, -25%);
  transition: all 0.3s ease;
}
.visit-btn:hover,
.online-btn:hover {
  opacity: 0.8;
}
.visit-btn:hover::after,
.online-btn:hover::after {
  transform: translate(3px, -25%);
}

.online-btn {
  background-color: var(--lgreen) !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.txt-small {
  font-size: 12px;
}

#top-doctor {
  padding: 120px 0 0;
}

.top-doctor__bl {
  width: calc(50% + 600px);
  border-radius: 20px 0 0 20px;
  background-color: var(--bg);
  position: relative;
  margin: 0 0 0 auto;
  max-width: 95%;
}
.top-doctor__bl.p2 {
  background-color: var(--bg-p);
  margin-top: 100px;
}
.top-doctor__bl.p2 .doctor__name-ttl {
  color: var(--perple);
}
.top-doctor__bl.p2 .top-doctor__detail-ttl {
  color: var(--perple);
}
.top-doctor__bl.p2 .top-doctor__bl-inner {
  display: block;
}
.top-doctor__bl.p2 .top-doctor__bl-inner .cont {
  width: 100%;
  padding-right: 0;
}
.top-doctor__bl.p2 .top-doctor__bl-inner .cont .top-doctor__detail-bl-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.top-doctor__bl-inner {
  width: 1200px;
  max-width: 95%;
  position: relative;
  padding: 40px 0 40px 40px;
  display: flex;
}
.top-doctor__bl-inner .cont {
  width: calc(100% - 520px);
  padding-right: 40px;
}
.top-doctor__bl-inner .img {
  width: 520px;
}
.top-doctor__bl-inner .img img {
  transform: translateY(-70px);
}

.doctor__name-ttl {
  position: absolute;
  left: 40px;
  top: 0;
  transform: translateY(-50%);
  color: var(--lgreen);
  font-size: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.doctor__name-ttl .small {
  font-size: 23px;
}

.top-doctor__ttl {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 70px;
}

.top-doctor__main-txt {
  font-size: 16px;
  margin-bottom: 30px;
}

.top-doctor__detail-bl {
  padding: 30px 8%;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.top-doctor__detail-ttl {
  color: var(--green);
  font-weight: bold;
  font-size: 18px;
  width: 100px;
}

.top-doctor__detail-cont {
  width: calc(100% - 100px);
}

.history-list01 {
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.history-list01 li {
  display: flex;
}
.history-list01 li .year {
  display: flex;
  width: 60px;
  font-size: 14px;
}
.history-list01 li .txt {
  width: calc(100% - 60px);
  font-size: 14px;
}

.history-list02 {
  font-size: 14px;
}

.mb10 {
  margin-bottom: 10px !important;
}

.top-reason__ttl-bl {
  position: relative;
  margin-bottom: 100px;
}

.top-reason__ttl {
  position: absolute;
  right: 50px;
  top: -50px;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  font-size: 44px;
}
.top-reason__ttl .txt {
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: bold;
  text-align: center;
  background-color: var(--lgreen);
  display: block;
  padding: 10px 0;
  border-radius: 5px;
  height: -moz-fit-content;
  height: fit-content;
}

#top-reason {
  padding: 200px 0 0;
  overflow: hidden;
}

.top-reason__list {
  display: grid;
  gap: 150px;
}
.top-reason__list li {
  display: flex;
  position: relative;
}
.top-reason__list li .txt-small {
  margin-bottom: 30px;
}
.top-reason__list li::after {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 50px;
  width: calc(50vw + 600px);
  height: calc(100% + 60px);
  background-color: var(--bg);
  z-index: -1;
}
.top-reason__list li.first-list::after {
  height: calc(100% + 300px);
}
.top-reason__list li .cont {
  width: 50%;
  padding-right: 40px;
}
.top-reason__list li .cont .txt {
  margin-bottom: 30px;
}
.top-reason__list li .img {
  width: 50%;
}
.top-reason__list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.top-reason__list li:nth-child(2n) .cont {
  padding-right: 0;
  padding-left: 40px;
}
.top-reason__list li:nth-child(2n) .top-reason__ttl-middle,
.top-reason__list li:nth-child(2n) .top-reason__list-tag {
  color: var(--perple);
}
.top-reason__list li:nth-child(2n) .top-reason__list-tag {
  border-bottom: 2px solid var(--perple);
}
.top-reason__list li:nth-child(2n) .more-btn {
  background-color: var(--perple) !important;
}
.top-reason__list li:nth-child(2n)::after {
  background-color: var(--bg-p);
  right: auto;
  left: 50px;
}

.top-reason__list-tag {
  font-size: 18px;
  font-weight: bold;
  color: var(--lgreen);
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--qui);
  border-bottom: 2px solid var(--lgreen);
  line-height: 1.5;
}

.top-reason__ttl-middle {
  font-size: 30px;
  font-weight: bold;
  color: var(--lgreen);
  margin-bottom: 20px;
  line-height: 1.5;
}

.more-btn {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--lgreen);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  position: relative;
  line-height: 1.4;
  border-radius: 5px;
}
.more-btn::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  background-image: url(../img/top/right-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 10px;
  right: 8px;
  position: absolute;
  top: 50%;
  transform: translate(0, -25%);
  transition: all 0.3s ease;
}
.more-btn:hover {
  opacity: 0.8;
}
.more-btn:hover::after {
  transform: translate(3px, -25%);
}

#top-area {
  padding: 120px 0 100px;
}

.area__bl {
  position: relative;
  border: 3px solid var(--green);
  border-radius: 30px;
  background-image: url(../img/top/map.webp);
  background-position: left 0 top 0;
  background-size: 50%;
  padding: 50px 5%;
}

.area__ttl {
  padding: 0 25px;
  background-color: #fff;
  font-size: 34px;
  font-weight: bold;
  color: var(--green);
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.area__ttl-middle {
  font-size: 20px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 12px;
  border-bottom: 2px solid var(--green);
}

.city-list {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.city-list li {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.city-list li.w100p {
  width: 100%;
}
.city-list li.w100p .city {
  display: block;
}
.city-list li .ku {
  font-weight: 500;
  font-size: 14px;
}

.area__cont {
  width: 50%;
  margin: 0 0 0 auto;
}

.area__add {
  border-radius: 15px;
  background-color: var(--bg);
  padding: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.top-feature__btn-bl {
  padding: 50px 0 0;
  display: flex;
  justify-content: center;
  max-width: 90%;
  margin: 0 auto;
}

#top-price {
  padding: 100px 0;
  position: relative;
}
#top-price::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 110px);
  background-color: var(--bg);
}

.top-price__bl {
  display: flex;
  position: relative;
  z-index: 1;
}
.top-price__bl .img {
  width: 50%;
}
.top-price__bl .cont {
  width: 50%;
  padding-left: 5%;
}
.top-price__bl .cont .txt {
  font-size: 16px;
  margin-bottom: 30px;
}

.top-price__ttl {
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 20px;
}

.sp {
  display: none;
}

section {
  overflow: hidden;
}

.btn-flex {
  display: flex;
  gap: 15px;
}

.top-area__hospital-bl {
  padding-top: 70px;
}

.top-area__hospital-ttl {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: var(--green);
  margin-bottom: 30px;
}

.top-area__hospital-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.top-area__hospital-list li {
  height: 120px;
  border-radius: 10px;
  background-color: #e4f3f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: var(--green);
  text-align: center;
  line-height: 1.5;
}

.pt0 {
  padding-top: 0 !important;
}

@media screen and (max-width: 1400px) {
  main {
    margin-top: 73px;
  }
  .top-service__list li {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-service__list li .cont {
    width: 100%;
  }
  .top-service__list li .img {
    width: 100%;
  }
  .top-service__list li .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .top-service__list li:nth-child(2n) .cont {
    order: 1;
  }
  .top-service__list li:nth-child(2n) .img {
    order: 2;
  }
  .top-service__list li .cont {
    padding: 0;
  }
  .top-service__list li .cont .cont-inner {
    padding: 50px 8%;
    width: 100%;
  }
  .top-problem__list li .txt {
    font-size: 16px;
  }
  .city-list li {
    font-size: 15px;
  }
}
@media screen and (max-width: 1300px) {
  .area__bl {
    background-size: 51%;
  }
}
@media screen and (max-width: 1270px) {
  .area__bl {
    background-size: 52%;
  }
}
@media screen and (max-width: 1240px) {
  .area__bl {
    background-size: 53%;
  }
}
@media screen and (max-width: 1220px) {
  .area__bl {
    background-size: 54%;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__txt .txt {
    font-size: 16px;
  }
  .top-mv__point-list li {
    width: 120px;
    font-size: 16px;
    line-height: 1.5;
  }
  .top-mv__point-list {
    gap: 15px;
    margin-top: 20px;
  }
  #top-mv::before {
    height: 385px;
  }
  .top-problem__list li .txt {
    font-size: 1.3vw;
  }
  .top-doctor__bl-inner .cont {
    width: 50%;
  }
  .top-doctor__bl-inner .img {
    width: 50%;
  }
  .top-doctor__detail-bl {
    padding: 30px 6%;
  }
  .top-doctor__detail-ttl {
    width: 80px;
  }
  .top-doctor__detail-cont {
    width: calc(100% - 80px);
  }
  .area__bl {
    padding: 640px 4% 40px;
    background-size: 100%;
    padding-top: 640px;
    width: 600px;
  }
  .area__cont {
    width: 100%;
  }
  .area__ttl {
    transform: translate(-50%, -110%);
  }
  #top-area {
    padding: 150px 0 100px;
  }
  #top-price::before {
    height: calc(100% - 44px);
  }
}
@media screen and (max-width: 960px) {
  .top-mv__ttl .txt {
    font-size: 28px;
    padding: 5px 0 5px 18px;
  }
  .top-mv__txt .txt {
    background-color: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }
  .top-mv__txt .sp-txt {
    background-color: #fff;
    border-radius: 5px;
    padding: 5px 8px 5px 15px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .scroll-down-link {
    display: none;
  }
  .top-mv__cont {
    width: 100%;
    top: 0;
    transform: translateY(0);
  }
  .top-mv__point-list {
    gap: 8px;
    margin-top: -15px;
    justify-content: flex-end;
  }
  .top-mv__img {
    width: 105%;
    padding-top: 246px;
    transform: translateX(-5.5%);
  }
  #top-mv {
    padding-top: 40px;
    overflow: hidden;
  }
  .cta__list {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 350px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #top-about {
    padding: 60px 0 20px;
  }
  .top-about__ttl-middle {
    font-size: 22px;
    text-align: center;
  }
  #top-about::before {
    height: calc(100% - 245px);
  }
  .top-about__list li {
    padding: 40px 10px 10px;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .top-about__list li::before {
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
  }
  .top-about__swiper .swiper-wrapper .swiper-slide {
    font-size: 8.2vw;
    letter-spacing: 0.02em;
  }
  .top-about__bl {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .top-about__bl .cont {
    width: 100%;
    padding-left: 5%;
  }
  .top-about__bl .img {
    width: 100%;
  }
  .top-news__bl {
    padding: 40px 6% 120px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .top-news__ttl-bl {
    width: 100%;
    position: initial;
    display: flex;
    justify-content: space-between;
  }
  .top-news__bl .news__list {
    width: 100%;
    border-left: none;
    padding: 0;
  }
  .news__list li a .txt {
    width: 100%;
    font-size: 14px;
  }
  .news__list li a {
    padding: 15px 25px 15px 0;
    flex-direction: column;
  }
  .news__list li a time {
    width: 100%;
    font-size: 14px;
  }
  .top-news__link {
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
  }
  .top-news__ttl-ja {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .top-news__ttl-en {
    font-size: 30px;
  }
  #top-news {
    padding: 60px 0 0;
  }
  .top-about__ttl-en {
    font-size: 15px;
  }
  .top-about__ttl-ja {
    font-size: 30px;
  }
  .top-about__ttl-bl {
    margin-bottom: 25px;
  }
  .sp {
    display: inline-block;
  }
  .cta {
    padding: 40px 0;
  }
  #top-problem::before {
    /* グラデーションマスクを追加（モダンブラウザ用） */
    -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgb(0, 0, 0), rgba(0, 0, 0, 0));
  }
  .top-problem__ttl {
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  .top-problem__list {
    grid-template-columns: 1fr;
  }
  .top-problem__list li .ttl {
    margin-bottom: 5px;
    font-size: 12px;
  }
  .top-problem__list li .txt {
    font-size: 15px;
    text-align: center;
  }
  .top-problem__list li {
    padding: 12px 10px;
  }
  .solution-bl::before {
    top: -58px;
  }
  .solution-bl {
    padding: 35px 5%;
    width: 100vw;
    margin-left: -5vw;
  }
  #top-problem {
    overflow: hidden;
  }
  .solution-bl p {
    font-size: 14px;
  }
  #top-problem {
    padding: 120px 0 0;
  }
  .top-service__ttl .tag {
    font-size: 18px;
  }
  .top-service__ttl .tag::before {
    left: -20px;
    height: 27px;
  }
  .top-service__ttl .tag::after {
    right: -20px;
    height: 27px;
  }
  .top-service__ttl .txt {
    font-size: 25px;
    line-height: 1.5;
    padding-top: 10px;
  }
  .top-service__list li {
    grid-template-columns: 1fr;
  }
  .top-service__list li .img {
    order: 2;
  }
  .top-service__list li .cont .cont-inner {
    padding: 30px 5%;
  }
  .top-service__ttl-middle {
    font-size: 30px;
    margin-bottom: 5px;
    text-align: center;
  }
  .top-service__ttl-small {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.5;
    text-align: center;
  }
  .top-service__list li .cont .cont-inner .txt {
    font-size: 14px;
  }
  .visit-btn,
  .online-btn {
    width: 350px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .visit-btn br,
  .online-btn br {
    display: none;
  }
  #top-doctor {
    padding: 60px 0 0;
  }
  .top-doctor__ttl {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .top-doctor__bl-inner {
    max-width: 100%;
    position: relative;
    padding: 105px 5% 40px;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .top-doctor__bl {
    width: 100%;
    border-radius: 20px 20px 0 0;
    margin: 0 0 0 auto;
    max-width: 100%;
  }
  .doctor__name-ttl {
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    font-size: 22px;
    display: flex;
    gap: 0;
    align-items: center;
    flex-direction: column;
    line-height: 1.4;
  }
  .doctor__name-ttl .small {
    font-size: 18px;
  }
  .top-doctor__bl-inner .img {
    width: 100%;
  }
  .top-doctor__bl-inner .cont {
    width: 100%;
    padding-right: 0;
  }
  .top-doctor__bl-inner .img img {
    transform: translateY(0);
  }
  .top-doctor__main-txt {
    font-size: 14px;
  }
  .history-list01 li .txt {
    width: calc(100% - 50px);
    font-size: 12px;
  }
  .history-list01 li .year {
    width: 50px;
    font-size: 12px;
  }
  .top-doctor__detail-bl {
    position: relative;
  }
  .top-doctor__detail-ttl {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  .top-doctor__detail-ttl br {
    display: none;
  }
  .smb20 {
    margin-bottom: 20px !important;
  }
  .history-list02.center li {
    text-align: center;
  }
  .top-doctor__detail-cont {
    width: 100%;
  }
  #top-reason {
    padding: 80px 0 0;
  }
  .top-reason__ttl {
    font-size: 28px;
    right: 22px;
    top: -30px;
    gap: 5px;
  }
  .top-reason__ttl .txt {
    padding: 0;
    background-color: transparent;
    display: flex;
    gap: 5px;
    flex-direction: column;
  }
  .top-reason__ttl .txt-sp {
    writing-mode: vertical-rl;
    color: #fff;
    font-weight: bold;
    text-align: center;
    background-color: var(--lgreen);
    display: block;
    padding: 8px 0;
    border-radius: 5px;
    height: -moz-fit-content;
    height: fit-content;
    line-height: 1.3;
  }
  .top-reason__ttl-bl.inner {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .top-reason__list.inner {
    width: 100%;
    max-width: 100%;
  }
  .top-reason__list li::after {
    right: 0;
    width: 100%;
    bottom: 30px;
  }
  .top-reason__list li {
    flex-direction: column;
    gap: 40px;
  }
  .top-reason__list li .cont {
    width: 100%;
    padding-right: 0;
    padding: 0 5%;
  }
  .top-reason__list li .img {
    width: 100%;
  }
  .top-reason__list-tag {
    font-size: 14px;
    margin: 0 auto 15px;
  }
  .top-reason__ttl-middle {
    font-size: 25px;
    line-height: 1.5;
    text-align: center;
  }
  .more-btn {
    width: 350px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-reason__list li.first-list::after {
    height: calc(100% + 40px);
  }
  .top-reason__list {
    gap: 0;
  }
  .top-reason__list li::after {
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% + 40px);
  }
  .top-reason__list li:nth-child(2n)::after {
    right: 0;
    left: 0;
  }
  .top-reason__list li:nth-child(2n) {
    flex-direction: column;
  }
  .top-reason__list li:nth-child(2n) .cont {
    padding: 30px 5% 0;
  }
  .top-reason__list li:nth-child(3) .cont {
    padding: 30px 5% 0;
  }
  .top-reason__list li:nth-child(5) .cont {
    padding: 30px 5% 0;
  }
  .top-price__bl {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .top-price__bl .img {
    width: 100%;
  }
  .top-price__bl .cont {
    width: 100%;
    padding-left: 0;
  }
  .top-price__ttl {
    font-size: 25px;
    margin-bottom: 15px;
    text-align: center;
  }
  .top-price__bl .cont .txt {
    font-size: 14px;
    margin-bottom: 25px;
  }
  #top-price::before {
    height: calc(100% - 29vw);
  }
  #top-price {
    padding: 70px 0;
  }
  .top-doctor__bl.p2 .top-doctor__bl-inner .cont .top-doctor__detail-bl-flex {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .top-area__hospital-list li {
    height: 82px;
    font-size: 15px;
  }
  .top-area__hospital-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .area__bl.inner {
    border: none;
    border-radius: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 107vw;
  }
  .area__bl.inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(50% - 6em);
    height: 2px;
    background-color: var(--green);
    display: block;
  }
  .area__bl.inner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% - 6em);
    height: 2px;
    background-color: var(--green);
    display: block;
  }
  .area__ttl {
    transform: translate(-50%, -50%);
    background-color: transparent;
    font-size: 25px;
  }
  .area__ttl-middle {
    font-size: 18px;
    text-align: center;
    padding-bottom: 4px;
  }
  .city-list li {
    font-size: 14px;
  }
  .area__add {
    padding: 22px 10px;
    text-align: center;
    font-size: 13px;
  }
  #top-area {
    padding: 100px 0 20px;
  }
  .btn-flex {
    gap: 8px;
    flex-direction: column;
  }
  .top-area__hospital-bl {
    padding-top: 0;
    padding-bottom: 30px;
  }
  .top-area__hospital-ttl {
    font-size: 20px;
    margin-bottom: 17px;
  }
  .top-area__hospital-list {
    grid-template-columns: 1fr;
  }
  .top-area__hospital-list li {
    height: 80px;
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  .top-mv__txt .sp-txt {
    font-size: 4vw;
  }
  .top-mv__ttl .txt {
    font-size: 7vw;
  }
  .top-mv__img {
    padding-top: 62vw;
  }
  .top-mv__point-list li {
    width: 24vw;
    font-size: 3.6vw;
    border: 2px solid #fff;
  }
  #top-mv::before {
    height: calc(40px + 144vw);
  }
  .more-btn {
    width: 100%;
  }
}
#footer-clinic {
  padding: 120px 0 0;
}

.footer-clinic__ttl {
  text-align: center;
  font-weight: bold;
  font-size: 40px;
  color: var(--green);
  margin-bottom: 40px;
}

.footer-clinic__inner {
  display: flex;
}
.footer-clinic__inner .cont {
  width: 50%;
  padding-right: 5%;
}
.footer-clinic__inner .map {
  background-color: #ccc;
  width: 50%;
  height: 480px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 1;
}

.footer-clinic__logo {
  width: 360px;
  max-width: 100%;
  margin-bottom: 30px;
  display: block;
}

.footer-clinic__list li {
  display: flex;
  border-bottom: 1px solid #C7C7C7;
  padding: 20px 0;
}
.footer-clinic__list li .txt {
  width: calc(100% - 100px);
  font-size: 16px;
  font-weight: 500;
}
.footer-clinic__list li a {
  color: #333;
}

.footer-clinic__list-ttl {
  width: 100px;
  font-size: 16px;
  font-weight: 700;
}

.mt50 {
  margin-top: 50px !important;
}

.time-table {
  width: 100%;
  border-collapse: collapse;
}
.time-table th, .time-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #C7C7C7;
  font-size: 16px;
  font-weight: 500;
  width: calc((100% - 140px) / 7);
}
.time-table .left-cell {
  width: 140px;
  text-align: left !important;
}
.time-table .green-cell {
  color: var(--lgreen);
}
.time-table .holiday-cell {
  position: relative;
}
.time-table .holiday-cell::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  transform: translate(-50%, -50%);
  height: 1px;
  background-color: #C7C7C7;
}

.time-table__caution {
  font-size: 12px;
  margin-top: 10px;
  color: #969696;
}

footer {
  border-top: 1px solid #C7C7C7;
  padding: 100px 0 60px;
  position: relative;
}

.footer__nav-list {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px 0;
}
.footer__nav-list li {
  width: 25%;
}
.footer__nav-list li a {
  font-size: 18px;
  width: 100%;
  font-weight: 500;
  text-align: center;
  display: block;
  padding: 0 15px;
  border-right: 1px solid #C7C7C7;
  line-height: 1.2;
  color: #333;
}
.footer__nav-list li:last-child a {
  border-right: none;
}

.footer__bl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__logo {
  width: 320px;
  margin-bottom: 15px;
  display: block;
}

.footer__address {
  font-size: 14px;
  line-height: 1.5;
}

.footer__btn-list {
  display: flex;
  gap: 20px;
}
.footer__btn-list li {
  width: 200px;
}
.footer__btn-list li a {
  width: 100%;
  height: 72px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  text-align: center;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__btn-list li a.white-btn {
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: bold;
  font-size: 20px;
}
.footer__btn-list li a.perple-btn {
  background-color: var(--perple);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
.footer__btn-list li a.green-btn {
  background-color: var(--lgreen);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.top-return-btn {
  display: block;
  position: absolute;
  width: 80px;
  height: 80px;
  right: 30px;
  top: 50px;
  border-radius: 50%;
  background-color: var(--lgreen);
  color: #fff;
  background-image: url(../img/top/up-arrow.svg);
  background-size: 27px;
  background-repeat: no-repeat;
  background-position: center;
}

#sp-fixed {
  display: none;
}

@media screen and (max-width: 960px) {
  .footer-clinic__logo {
    width: 240px;
    margin: 0 auto 15px;
  }
  .footer-clinic__inner .cont {
    width: 100%;
    padding-right: 0;
  }
  .footer-clinic__list li {
    padding: 15px 0;
    flex-direction: column;
    justify-content: center;
  }
  .footer-clinic__list-ttl {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .footer-clinic__list li .txt {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }
  .time-table th, .time-table td {
    padding: 10px 5px;
    font-size: 14px;
  }
  .footer-clinic__inner {
    flex-direction: column;
    gap: 30px;
  }
  .footer-clinic__inner .map {
    width: 100%;
    height: 240px;
  }
  footer .inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer__bl .btn-area {
    display: none;
  }
  .footer__bl .cont {
    width: 100%;
  }
  .footer__logo {
    width: 240px;
    margin: 0 auto 15px;
    display: block;
  }
  .footer__address {
    text-align: center;
    font-size: 12px;
    margin-bottom: 40px;
  }
  footer {
    padding: 60px 0 120px;
    position: relative;
  }
  .footer__nav-list {
    flex-direction: column;
    gap: 0;
  }
  .footer__nav-list li {
    width: 100%;
  }
  .footer__nav-list li a {
    font-size: 18px;
    padding: 0 35px;
    border-right: none;
    line-height: 1.2;
    color: var(--lgreen);
    padding: 20px 0;
    border-bottom: 1px solid var(--lgreen);
    position: relative;
  }
  .footer__nav-list li a::after {
    content: "";
    position: absolute;
    transform: translate(0, -50%);
    top: 50%;
    right: 5px;
    width: 11px;
    height: 11px;
    background-image: url(../img/top/right-arrow.svg);
    transition: transform 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
  }
  .footer__nav-list li a:hover::after {
    transform: translate(3px, -50%);
  }
  .top-return-btn {
    top: auto;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-clinic__ttl {
    font-size: 25px;
    margin-bottom: 25px;
  }
  #footer-clinic {
    padding: 60px 0 0;
  }
  #sp-fixed {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 0 15px 15px;
    z-index: 50;
    display: flex;
    justify-content: center;
    transition: all 0.7s ease;
  }
  #sp-fixed.active {
    bottom: 0;
  }
}
body {
  opacity: 0;
  transition: opacity 0.5s ease;
}
body.loaded {
  opacity: 1;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fadeUp.active {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */