@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.news .common__ttl {
  align-items: center;
}

.common__ttl span {
  font-size: max(14px, 2rem);
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.common__btn {
  width: max(70px, 9.3rem);
  height: max(70px, 9.3rem);
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #f0fcf5;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.common__btn a img {
  width: max(18px, 2.8rem);
  height: auto;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  padding: max(60px, 8rem) 3rem 4.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 50rem);
    padding: max(70px, 9rem) 5% 5%;
  }
}

.hero__ttl {
  font-size: max(16px, 2.8rem);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3rem;
  position: absolute;
  top: 14.5rem;
  right: 8rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(14px, 2rem);
    gap: 2rem;
    top: max(80px, 11rem);
    right: 8%;
  }
}

.hero__ttl span {
  display: block;
  background-color: var(--white);
  border-radius: 2rem;
  padding: 1.7rem 4rem;
}

@media (max-width: 767px) {
  .hero__ttl span {
    border-radius: 1rem;
    padding: 1rem 2rem;
  }
}

.hero__ttl strong {
  font-weight: 700;
  color: var(--green);
}

.hero__slider {
  width: 100%;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}

@keyframes zoomOut {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}

.hero__slider .swiper-slide-active img,
.hero__slider .swiper-slide-duplicate-active img,
.hero__slider .swiper-slide-prev img {
  animation: zoomOut 7s linear both;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 2rem;
  transform: translateX(-50%) !important;
  left: 50% !important;
  bottom: 7rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--white);
  width: max(10px, 1.5rem) !important;
  height: max(10px, 1.5rem) !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: #53b394;
}

/*============================
	info
============================*/
.info {
  background-color: #f6fcf9;
  padding: 5rem 0;
}

.info__contents {
  width: 116rem;
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .info__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.info__txt-wrapper {
  width: 47rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-shrink: 0;
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .info__txt-wrapper {
    width: 100%;
  }
}

.info__txt-wrapper h3 {
  border-radius: 2rem;
  font-size: max(18px, 3rem);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.info__txt-wrapper h3:nth-of-type(1) {
  background-color: var(--green);
  color: var(--white);
}

.info__txt-wrapper h3:nth-of-type(2) {
  background-color: var(--white);
  border: solid max(2px, 0.3rem) var(--green);
  color: var(--green);
}

.info__txt-wrapper h3:nth-of-type(2)::before {
  content: "";
  display: block;
  background: url("../img/info_icon.png") no-repeat center / contain;
  width: max(36px, 6.6rem);
  height: max(36px, 6.6rem);
}

.info__table {
  background-color: var(--white);
  width: 100%;
  border: solid max(2px, 0.3rem) var(--green);
  border-radius: 2rem;
  padding: 2rem 4rem 2rem 3rem;
}

.info__table .common__timetable caption {
  font-size: max(12px, 1.8rem);
}

.info__table .common__timetable th,
.info__table .common__timetable td {
  font-size: max(16px, 2.4rem);
}

@media (max-width: 767px) {
  .info__table .common__timetable th,
  .info__table .common__timetable td {
    font-size: max(14px, 2rem);
  }
}

/*============================
	news
============================*/
.news {
  padding: 10rem 0 11rem;
}

.news__inner {
  width: 104rem;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  flex-shrink: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    row-gap: 2rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  gap: 0.5rem 2.5rem;
  padding: 1rem max(30px, 6rem) 1rem 0;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
  }
}

.CMS-NEWS-LINK-CONTENT::before {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(18.5px, 2.6rem);
  height: max(5px, 0.7rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1rem;
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 0;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
}

.CMS-NEWS-TIME {
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	about
============================*/
.about {
  background: var(--bg-2);
  padding-bottom: 7.5rem;
}

.about__contents {
  width: 104rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 13.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.5rem);
  font-weight: 700;
  margin: 4rem 0;
}

.about__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  line-height: 2;
  margin-bottom: 3rem;
}

.about__img {
  width: 52.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
  }
}

.about__img img:nth-of-type(1) {
  border-radius: 0 2rem 2rem 0;
}

.about__img img:nth-of-type(2) {
  width: 36rem;
  border-radius: 2rem;
  margin: -11rem -5.5rem 0 auto;
}

/*============================
	treatment
============================*/
.treatment {
  background-color: var(--bg-1);
  padding: 6.5rem 0 7.5rem;
}

.treatment__inner {
  width: 104rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .treatment__inner {
    width: 90%;
  }
}

.treatment__txt {
  font-size: max(14px, 2rem);
  margin: 4rem 0;
}

.treatment__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

@media (max-width: 767px) {
  .treatment__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.treatment__item {
  background-color: var(--white);
  border-radius: 1rem;
  filter: drop-shadow(2px 2px 0.5rem rgba(173, 173, 173, 0.35));
  position: relative;
}

.treatment__item::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(18px, 2.8rem);
  height: max(5.8px, 0.9rem);
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  pointer-events: none;
}

.treatment__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem 4rem;
}

.treatment__list h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.treatment__list h3::before {
  content: "";
  display: block;
  background-color: var(--green);
  width: max(12px, 1.8rem);
  height: max(12px, 1.8rem);
  border-radius: 50%;
}

/*============================
	access
============================*/
.access {
  padding: 8rem 0 4.5rem;
}

.access__inner {
  width: 104rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
  }
}

.access__contents {
  width: 100%;
  display: flex;
  gap: 4rem 6.5rem;
  margin-bottom: 6.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    flex-direction: column;
  }
}

.access__list {
  border-top: solid 1px #eaeaea;
  display: flex;
  flex-wrap: wrap;
  margin-top: 5.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 0;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 500;
  text-align: right;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
  border-bottom: solid 1px #eaeaea;
  padding-left: 3.5rem;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px #eaeaea;
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    text-align: left;
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__map-1 {
  width: 67rem;
  height: 51.5rem;
  border-radius: 2rem 0 0 2rem;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

.access__map-2 {
  width: 100%;
  height: 60rem;
}

@media (max-width: 767px) {
  .access__map-1 {
    width: 100%;
    height: 50rem;
    border-radius: 2rem;
    margin: 0;
  }
}

.access__txt {
  background-color: #f6f6f6;
  width: 90%;
  border-radius: 2rem;
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  color: #353535;
  padding: 2rem 3.5rem;
  margin: 3rem auto 0;
}
