@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.common__ttl span {
  font-size: max(14px, 2rem);
  color: #eb7387;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.common__btn {
  width: max(60px, 9rem);
  height: max(60px, 9rem);
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: #d8f2e7;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn a::before {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(21.8px, 2.8rem);
  height: max(7px, 0.9rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: calc(100vh - max(103px, 12.5rem));
  margin-top: max(103px, 12.5rem);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(240px, 36rem);
    margin-top: max(60px, 8rem);
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  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__ttl {
  background-color: rgba(110, 189, 146, 0.85);
  border-radius: 0 2rem 2rem 0;
  font-size: max(24px, 4rem);
  font-weight: 500;
  color: var(--white);
  padding: 4rem 7rem 4rem 12rem;
  position: absolute;
  left: 0;
  bottom: 5rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(16px, 2.4rem);
    padding: 2rem 4rem 2rem 5%;
    bottom: 10%;
  }
}

/*============================
	about
============================*/
.about {
  padding: 7.5rem 0 8rem;
}

.about__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 3rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.about__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .about__txt-wrapper {
    padding-top: 2rem;
  }
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.5rem);
  font-weight: 400;
  margin: 2rem 0;
}

.about__txt-wrapper p {
  line-height: 2;
  margin-bottom: 1.5rem;
}

.about__img {
  width: 70rem;
  height: 100%;
  border-radius: 0 2rem 2rem 0;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    border-radius: 2rem;
    margin: 0;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-1);
  padding: 9rem 0 7rem;
}

.menu .common__ttl {
  align-items: center;
}

.menu__list {
  width: 104rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  margin: 8rem auto;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }
}

.menu__list-item {
  background-color: var(--white);
  border: solid 2px var(--green);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  filter: drop-shadow(2px 2px 0.8rem rgba(173, 173, 173, 0.35));
}

.menu__list-item:nth-of-type(4) {
  gap: 1.5rem;
}

@media (max-width: 767px) {
  .menu__list-item {
    padding: 2rem 3rem;
  }
}

.menu__img {
  display: block;
  width: 15.2rem;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__list-item h3 {
  font-size: max(14px, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
}

.menu__btn {
  width: max(240px, 39rem);
  height: max(55px, 8rem);
  margin: 0 auto;
}

.menu__btn a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  border: solid 2px var(--green);
  border-radius: 20rem;
  font-size: max(14px, 2rem);
  font-weight: 500;
  color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.menu__btn a::before {
  content: "";
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(21.8px, 2.8rem);
  height: max(7px, 0.9rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3.4rem;
}

/*============================
	faq
============================*/
.faq {
  background: url("../img/faq_bg.jpg") no-repeat center / cover;
  padding: 7rem 0 8rem;
}

.faq__inner {
  width: 102rem;
  display: flex;
  align-items: flex-end;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .faq__inner {
    width: 90%;
    flex-direction: column;
  }
}

.faq__txt-wrapper {
  width: 100%;
}

.faq__txt-wrapper p {
  margin-top: 5rem;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  padding: 10rem 0;
}

.news__inner {
  width: 116rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  padding-left: 8rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.CMS-NEWS-LINK-CONTENT {
  background-color: var(--white);
  border-radius: 15rem;
  display: flex;
  gap: 1rem 4rem;
  padding: 2rem 10rem 2rem 3rem;
  position: relative;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
    padding: max(10px, 2rem) 4rem;
  }
}

.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: 4rem;
  z-index: 1;
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .CMS-NEWS-LINK-CONTENT:hover::before {
    right: 2.5rem;
  }
}

.CMS-NEWS-LINK {
  width: 58rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK {
    width: 54rem;
  }
}

.CMS-NEWS-TIME {
  color: #adadad;
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  padding: 7rem 0 7.5rem;
}

.access__ttl-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 8rem 3rem;
  margin: 0 auto 2rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
  text-align: right;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px #eaeaea;
}

.access__list dt:first-of-type {
  border-top: solid 1px #eaeaea;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px #eaeaea;
  }

  .access__list dd:first-of-type {
    border-top: 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;
  }
}

.access__map {
  width: 67rem;
  height: 65rem;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    margin: 0;
  }
}

.access__insta {
  background-color: var(--bg-1);
  width: 80rem;
  border: solid 1px var(--green);
  border-radius: 1rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .access__insta {
    width: 90%;
  }
}

.access__insta::before {
  content: "";
  background: url("../img/insta_bg.png") no-repeat center / contain;
  width: 56.5rem;
  height: 39.7rem;
  position: absolute;
  top: -23rem;
  left: -12rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__insta::before {
    top: -25rem;
    left: -20rem;
  }
}

.access__insta a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 3rem 9rem;
  position: relative;
}

@media (max-width: 767px) {
  .access__insta a {
    padding: 3rem 3rem 4rem;
  }
}

.access__insta a::before {
  content: "";
  background: url("../img/insta_arw.png") no-repeat center / contain;
  width: max(18.6px, 2.8rem);
  height: max(6px, 0.9rem);
  position: absolute;
  right: 1.5rem;
  bottom: 2rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__insta a::before {
    bottom: 1.5rem;
  }
}

.access__insta .common__ttl {
  font-size: max(18px, 3.3rem);
  gap: 1rem;
}

.access__insta .common__ttl span {
  color: var(--green);
}
