@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
}

body {
  font-weight: 400;
  font-family: YakuHanMP, "Cambria", "Noto Serif JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.075rem;
  color: #333;
  overflow-x: hidden;
}

#loading {
  transition: all 1s; /*ローディングにかかる時間*/
  background-color: white;
  z-index: 999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.spin {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  border-top-color: #5FD264;
  border-right-color: #5FD264;
  border-bottom-color: #5FD264;
  animation: spin 0.6s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

.swiper {
  z-index: -1;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  text-decoration: none;
  transition: 0.5s all;
}

.font-xs, .blog-txt, .blog-date, .more-btn a, .main-title .en {
  font-size: clamp(1.3rem, 1.227rem + 0.36vw, 1.5rem);
}

.font-sm, .doctor-list li a .doctor-name span, .info-ttl, .info-tel small, .sub-title, body {
  font-size: clamp(1.4rem, 1.331rem + 0.31vw, 1.7rem);
}

.font-md, .treatment .treatment-list ul li {
  font-size: clamp(1.4rem, 1.218rem + 0.91vw, 1.9rem);
}

.font-lr {
  font-size: clamp(1.7rem, 1.373rem + 1.64vw, 2.6rem);
}

.font-lg, .about-txt .about-title, .info-tel, .main-title {
  font-size: clamp(2.5rem, 2.246rem + 1.13vw, 3.6rem);
}

.main-title {
  position: relative;
  color: #5FD264;
  font-weight: 500;
  letter-spacing: 0.2rem;
  display: inline-block;
}
.main-title::before {
  position: absolute;
  content: "";
  background: url(../images/clover_ico.svg) no-repeat center/contain;
  width: 0.5em;
  height: 0.5em;
}
.main-title .en {
  letter-spacing: 0.2em;
  margin-top: 0.1rem;
  display: block;
}
@media screen and (max-width: 960px) {
  .main-title .en {
    text-align: center;
  }
}
.main-title.vertical-rl {
  line-height: 0.8;
  writing-mode: vertical-rl;
  padding-top: 0.65em;
}
@media screen and (max-width: 960px) {
  .main-title.vertical-rl {
    line-height: 1;
    padding: 0 0.65em;
  }
}
.main-title.vertical-rl::before {
  top: 0;
  right: 0.1em;
  margin: auto;
}
@media screen and (max-width: 960px) {
  .main-title.vertical-rl::before {
    top: 0.25em;
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 960px) {
  .main-title.vertical-rl {
    writing-mode: horizontal-tb;
    margin: 0 auto;
  }
  .main-title.vertical-rl .en {
    margin-top: 0.5em;
  }
}
.main-title.horizontal-tb {
  line-height: 1.2;
  padding-left: 0.65em;
  margin: 0 auto;
}
.main-title.horizontal-tb::before {
  top: 0.35em;
  left: 0;
}
.main-title.horizontal-tb .en {
  text-align: center;
}

.sub-title._black {
  color: #333;
}

.more-btn a {
  position: relative;
  color: #333;
  padding-right: 45px;
  font-family: "Noto Sans JP";
  letter-spacing: 0.1rem;
  transition: 0.5s all;
}
.more-btn a::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url(../images/arrows_green.svg) no-repeat center/contain;
  transition: 0.5s all;
}
.more-btn a:hover {
  opacity: 0.6;
}
.more-btn a:hover::before {
  right: -0.5em;
}

.mb-sm, .sub-title {
  margin-bottom: 16px;
}

.mb-lg {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .mb-lg {
    margin-bottom: 150px;
  }
}

.pb-sm {
  padding-bottom: 16px;
}

.pb-lg {
  padding-bottom: 80px;
}
@media screen and (max-width: 960px) {
  .pb-lg {
    padding-bottom: 150px;
  }
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

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

.flex {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
    flex-wrap: wrap;
  }
}

.pc {
  display: inline-block;
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: inline-block;
  }
}

.news-list li {
  font-family: "Noto Sans JP";
  margin: 3rem 0 1rem;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .news-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.news-list li a {
  transition: 0.3s all;
  width: 100%;
  color: #333;
  padding: 1.25em 0;
  display: block;
}
.news-list li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 600px) {
  .news-list li a {
    padding: 0.25em 0 1em;
  }
}
.news-list .news-date {
  margin: 0 3em 0 1em;
}
@media screen and (max-width: 600px) {
  .news-list .news-date {
    display: block;
    margin: 0;
  }
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
}
@media screen and (max-width: 960px) {
  .blog-list {
    margin-left: 0;
  }
}
.blog-list li {
  width: calc(33.3333333333% - 50px);
  margin-left: 50px;
}
@media screen and (max-width: 960px) {
  .blog-list li {
    margin-top: 40px;
    width: 100%;
    margin-left: 0;
  }
}
.blog-list a {
  font-family: "Noto Sans JP";
  color: #333;
}
.blog-list a img {
  transform: scale(1);
  transition: 0.5s all;
}
.blog-list a:hover {
  opacity: 0.5;
}
.blog-list a:hover img {
  transform: scale(1.1);
}

.blog-thum {
  border-radius: 10px;
  overflow: hidden;
}
.blog-thum img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 14/9;
}

.blog-ttl {
  font-weight: 500;
}

.blog-date {
  font-weight: 400;
  margin: 1em 0 0.25em;
  display: block;
}

.blog-txt {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #909090;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}
section {
  padding: 120px 0;
}
@media screen and (max-width: 960px) {
  section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 480px) {
  section {
    padding: 60px 0;
  }
}

.text-area {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  writing-mode: vertical-rl;
  letter-spacing: 0;
  white-space: nowrap;
}
.text-area .__inner {
  width: 80%;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -45%);
  position: absolute;
}
@media screen and (max-width: 1680px) {
  .text-area .__inner {
    top: 55%;
    transform: translate(-50%, -55%);
  }
}
@media screen and (max-width: 960px) {
  .text-area .__inner {
    width: 90%;
    height: 100%;
  }
}
.text-area .__inner p {
  font-size: min(10rem, 7vw);
  font-weight: 300;
  color: white;
  text-shadow: 0 0 10px #afd5db, 0 0 10px #afd5db, 0 0 35px #afd5db;
}
@media screen and (max-width: 1680px) {
  .text-area .__inner p {
    font-size: max(6rem, 5vw);
  }
}
@media screen and (max-width: 960px) {
  .text-area .__inner p {
    font-size: min(7rem, 12vw);
    font-weight: 400;
  }
}
.text-area .__inner .l-txt {
  position: absolute;
  left: 0;
}
@media screen and (max-width: 960px) {
  .text-area .__inner .l-txt {
    bottom: 1em;
  }
}
@media screen and (max-width: 960px) {
  .text-area .__inner .r-txt {
    position: absolute;
    top: 120px;
  }
}

.about {
  overflow: hidden;
}
.about .flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .about .flex {
    align-items: flex-start;
  }
}

.about-img {
  margin: 0 0 0 calc(50% - 50vw);
}
.about-img img {
  width: 50vw;
}
@media screen and (max-width: 960px) {
  .about-img img {
    width: 100%;
  }
}

.about-txt {
  width: 50%;
  padding: 0 0 0 5vw;
}
@media screen and (max-width: 960px) {
  .about-txt {
    width: 100%;
    padding: 0;
  }
}
.about-txt .about-title {
  color: #5FD264;
  font-weight: 500;
  letter-spacing: 0.2rem;
  display: block;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 960px) {
  .about-txt .about-title {
    margin-top: 1em;
    margin-bottom: 0.5em;
  }
}
.about-txt p {
  line-height: 2;
}
.about-txt .more-btn {
  text-align: right;
  margin-top: 3em;
}
@media screen and (max-width: 960px) {
  .about-txt .more-btn {
    margin-top: 2em;
  }
}

.treatment {
  background: #F5FFF0;
}
.treatment .treatment-list {
  width: 100%;
  margin: 4em 0 0;
}
@media screen and (max-width: 960px) {
  .treatment .treatment-list {
    margin: 2em 0 0;
  }
}
.treatment .treatment-list ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20%;
}
@media screen and (max-width: 960px) {
  .treatment .treatment-list ul {
    padding: 0;
  }
}
.treatment .treatment-list ul li {
  width: 50%;
  margin-bottom: 2em;
  padding: 0 0 0 1em;
  border-left: 3px solid #5FD264;
}
@media screen and (max-width: 960px) {
  .treatment .treatment-list ul li {
    display: flex;
    align-items: center;
    height: 2.5em;
    line-height: 1.3;
  }
}
.treatment .treatment-list .more-btn {
  text-align: right;
}

/* スライドの動き等速 */
.treatmentSwiper .swiper-wrapper {
  transition-timing-function: linear;
}
.treatmentSwiper .swiper-wrapper .swiper-slide {
  flex-shrink: inherit;
}
@media screen and (max-width: 960px) {
  .treatmentSwiper .swiper-wrapper .swiper-slide {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 961px) {
  .treatmentSwiper .swiper-wrapper .swiper-slide img {
    width: 100%;
  }
}

.doctor {
  overflow: hidden;
  text-align: center;
}
.doctor .flex {
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .doctor .flex {
    align-items: center;
    padding: 0 2em;
  }
}
.doctor .more-btn {
  text-align: right;
  margin-top: 6rem;
}
@media screen and (max-width: 960px) {
  .doctor .more-btn {
    margin-top: 0;
  }
}

.doctor-list {
  width: 90%;
  margin: 5rem auto 0;
}
.doctor-list ul {
  margin-left: -100px;
}
@media screen and (max-width: 960px) {
  .doctor-list ul {
    margin-top: 3rem;
  }
}
.doctor-list li {
  position: relative;
  margin-left: 100px;
}
.doctor-list li:nth-child(1) {
  transition-delay: 0.4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(2) {
  transition-delay: 0.8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(3) {
  transition-delay: 1.2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(4) {
  transition-delay: 1.6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(5) {
  transition-delay: 2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(6) {
  transition-delay: 2.4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(7) {
  transition-delay: 2.8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(8) {
  transition-delay: 3.2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(9) {
  transition-delay: 3.6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(10) {
  transition-delay: 4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(11) {
  transition-delay: 4.4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(12) {
  transition-delay: 4.8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(13) {
  transition-delay: 5.2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(14) {
  transition-delay: 5.6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(15) {
  transition-delay: 6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(16) {
  transition-delay: 6.4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(17) {
  transition-delay: 6.8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(18) {
  transition-delay: 7.2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(19) {
  transition-delay: 7.6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(20) {
  transition-delay: 8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(21) {
  transition-delay: 8.4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(22) {
  transition-delay: 8.8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(23) {
  transition-delay: 9.2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(24) {
  transition-delay: 9.6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(25) {
  transition-delay: 10s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(26) {
  transition-delay: 10.4s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(27) {
  transition-delay: 10.8s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(28) {
  transition-delay: 11.2s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(29) {
  transition-delay: 11.6s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li:nth-child(30) {
  transition-delay: 12s;
}
@media screen and (max-width: 960px) {
  .doctor-list li {
    margin-bottom: 70px;
  }
}
.doctor-list li a .img-box {
  overflow: hidden;
  border-radius: 10px;
}
.doctor-list li a .img-box img {
  transition: 0.5s all;
}
.doctor-list li a .txt-box {
  position: absolute;
  right: -2rem;
  bottom: -2rem;
  background: #5FD264;
  color: white;
  display: inline-block;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .doctor-list li a .txt-box {
    width: 90%;
    right: -2rem;
    bottom: -3rem;
  }
}
.doctor-list li a .doctor-name {
  padding: 1.5rem 7rem 1.5rem 2rem;
  position: relative;
  text-align: left;
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
}
@media screen and (max-width: 600px) {
  .doctor-list li a .doctor-name {
    padding: 1.5rem 5rem 1.5rem 2rem;
  }
}
.doctor-list li a .doctor-name::before {
  position: absolute;
  content: "";
  background: url(../images/arrows.svg) no-repeat center/contain;
  width: 0.65em;
  height: 0.65em;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s all;
}
.doctor-list li a .doctor-name span {
  font-family: "Noto Sans JP";
  display: block;
  margin-bottom: 0.25em;
}
.doctor-list li a .doctor-name small {
  font-size: clamp(1.2rem, 1.164rem + 0.18vw, 1.3rem);
  letter-spacing: 0.2rem;
  display: block;
}
@media screen and (max-width: 480px) {
  .doctor-list li a .doctor-name small {
    font-size: 1rem;
  }
}
.doctor-list li a:hover img {
  transform: scale(1.075);
  opacity: 0.6;
}
.doctor-list li a:hover ::before {
  right: 0.75em;
}

.news {
  margin: 80px 0;
  padding: 120px 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  .news {
    margin: 40px 0 0;
    padding: 100px 0 120px;
  }
}
.news::before {
  position: absolute;
  content: "";
  background: url(../images/top_news_bg.svg) no-repeat center/contain;
  width: 1300px;
  height: 687px;
  aspect-ratio: 70/37;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .news::before {
    background: url(../images/top_news_bg.svg) no-repeat center/cover;
    width: 100%;
    height: 100%;
  }
}

.news_box,
.blog_box {
  width: 90%;
  margin-left: 10%;
}
@media screen and (max-width: 960px) {
  .news_box,
  .blog_box {
    width: 100%;
    margin-left: 0;
  }
}
.news_box .more-btn,
.blog_box .more-btn {
  margin-top: 4rem;
  text-align: right;
}

.blog {
  background: url(../images/brown_bg_top.svg) no-repeat bottom -1px center/100%;
  padding: 180px 0 10%;
}
@media screen and (max-width: 960px) {
  .blog {
    padding: 120px 0 20%;
  }
}
@media screen and (max-width: 600px) {
  .blog {
    padding: 20px 0 20%;
  }
}
.blog .ban {
  display: block;
  text-align: center;
  margin: 80px auto;
}
.blog .ban a {
  display: inline-block;
  transition: 0.5s all;
}
.blog .ban a:hover {
  opacity: 0.5;
}

.infomation {
  text-align: center;
  background: #F9FAF8;
}
@media screen and (max-width: 960px) {
  .infomation .flex {
    flex-direction: column-reverse;
  }
}
.infomation .main-title {
  color: #A59669;
  margin-bottom: 4rem;
}
.infomation .main-title::before {
  background: url(../images/clover_ico2.svg) no-repeat center/contain;
}

.gmap {
  width: 50%;
  height: 540px;
}
@media screen and (max-width: 960px) {
  .gmap {
    width: 100%;
    height: 300px;
    margin-top: 3rem;
  }
}

.info_box {
  width: 50%;
  font-family: "Noto Sans JP";
  font-weight: 300;
  text-align: left;
  margin-left: 50px;
}
@media screen and (max-width: 960px) {
  .info_box {
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}

.info-logo {
  width: 100%;
}
.info-logo img {
  width: 70%;
}
@media screen and (max-width: 960px) {
  .info-logo img {
    margin: 0 auto;
  }
}

.info-ttl {
  font-weight: 500;
  color: white;
  background: #A59669;
  padding: 0.25rem 1rem;
  border-radius: 5px;
  margin: 2rem 0 1rem;
}

.info-tel {
  margin-top: 1rem;
  font-weight: 700;
}
.info-tel a {
  color: #333;
}
.info-tel [data-ruby] {
  position: relative;
}
.info-tel [data-ruby]::before {
  content: attr(data-ruby);
  position: absolute;
  top: -0.75em;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 0.3em;
  width: 80px;
  text-align: center;
  font-weight: 400;
}

.access-schedule .table {
  width: 100%;
  border-top: 1px solid #A59669;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 600px) {
  .access-schedule .table {
    font-size: 1rem;
  }
}
.access-schedule .table .head {
  background: rgba(167, 152, 113, 0.2);
}
.access-schedule .table th {
  padding: 1rem;
  font-weight: 300;
  border-bottom: 1px solid #A59669;
  border-right: 1px solid #A59669;
}
@media screen and (max-width: 600px) {
  .access-schedule .table th {
    padding: 0.75rem;
    font-weight: 400;
  }
}
.access-schedule .table td {
  padding: 1rem;
  border-bottom: 1px solid #A59669;
  border-right: 1px solid #A59669;
}
@media screen and (max-width: 600px) {
  .access-schedule .table td {
    padding: 0.75rem;
  }
}
.access-schedule .table td img {
  width: 1.5rem;
  margin: 0 auto;
}
.access-schedule .table th:last-child,
.access-schedule .table td:last-child {
  border-right: none;
}

.access-schedule .txt {
  margin-top: 1rem;
}/*# sourceMappingURL=index.css.map */