@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(14px, 2rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem 1.5rem;
}

.common__ttl--row {
  flex-direction: row;
  align-items: baseline;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(45px, 8.3rem);
  font-weight: 400;
  color: #4c4948;
}

.common__btn {
  width: max(170px, 24.5rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--black);
  width: 100%;
  height: 100%;
  border-radius: 100vmax;
  font-size: max(12px, 1.7rem);
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
  padding-left: 2rem;
  position: relative;
}

.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: max(6px, 0.75rem);
  height: max(10px, 1.2rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  padding: 21rem 0 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: auto;
    padding: max(60px, 8rem) 0 0;
  }
}

.hero__contents {
  width: 110rem;
  display: flex;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .hero__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.hero__txt-wrapper {
  width: 100%;
  margin-right: -6rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero__txt-wrapper {
    padding-top: 11rem;
  }
}

.hero__txt-wrapper h2 {
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 4rem;
}

.hero__txt-wrapper h2 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero__txt-wrapper h2 strong:first-of-type {
  color: var(--brown);
}

.hero__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.hero__slider {
  width: 92rem;
  height: 50rem;
  border-radius: 4.5rem 0 0 4.5rem;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero__slider {
    width: 100vw;
    height: 50rem;
    margin-left: auto;
    margin-bottom: 5rem;
  }
}

@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__img {
  display: block;
  width: 42.3rem;
  position: absolute;
  transform: translateX(-50%);
  left: 46%;
  bottom: 0;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__img {
    width: 80%;
    margin: 5rem auto 0;
    position: static;
    transform: none;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.hero__scroll {
  font-size: max(10px, 1.2rem);
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--brown);
  width: 1px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	about
============================*/
.about {
  padding-top: 10.5rem;
  position: relative;
}

.about::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center top / cover;
  width: 100%;
  height: 45.8rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .about::before {
    height: 36rem;
  }
}

.about__contents {
  width: 110rem;
  display: flex;
  margin: 5.5rem auto 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .about__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}

.about__contents::before,
.about__contents::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.about__contents::before {
  background: url("../img/about_deco-1.png") no-repeat center / contain;
  width: 54.8rem;
  height: 54.8rem;
  top: -2rem;
  right: -2.5rem;
}

.about__contents::after {
  background: linear-gradient(-45deg, #00a59d, #0fd6c7);
  width: 104.6rem;
  height: 50rem;
  border-radius: 5.5rem;
  left: calc(50% - 50vw - 11rem);
  bottom: -9rem;
}

@media (max-width: 767px) {
  .about__contents::before {
    top: 0;
    right: 2rem;
  }

  .about__contents::after {
    height: 45rem;
    bottom: 0;
  }
}

.about__txt-wrapper {
  background-color: var(--white);
  width: 100%;
  border-radius: 2rem;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
  padding: 6rem 5rem 4.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .about__txt-wrapper {
    width: 55rem;
    padding: 9rem 5rem 4.5rem;
  }
}

.about__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.about__txt-wrapper h3 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.about__txt-wrapper h3 strong:first-of-type {
  color: var(--brown);
}

.about__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .about .common__btn {
    margin: 0 0 0 auto;
  }
}

.about__img {
  width: 57.1rem;
  position: absolute;
  right: -5rem;
  bottom: -4rem;
  z-index: 1;
}

@media (max-width: 767px) {
  .about__img {
    width: 100%;
    position: static;
  }
}

/*============================
	service
============================*/
.service {
  padding: 17.5rem 0 29rem;
}

@media (max-width: 767px) {
  .service {
    padding: 15rem 0 18rem;
  }
}

.service__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 7.5rem auto 0;
}

@media (max-width: 767px) {
  .service__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

.service__txt-wrapper {
  background-color: var(--white);
  width: 100%;
  border-radius: 2rem;
  filter: drop-shadow(3px 3px 5px rgba(0, 0, 0, 0.2));
  padding: 6rem 5rem 4.5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .service__txt-wrapper {
    padding: 9rem 5rem 4.5rem;
    margin-top: 8.5rem;
  }
}

.service__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.service__txt-wrapper h3 strong {
  font-size: max(20px, 3.5rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service__txt-wrapper h3 strong:first-of-type {
  color: var(--brown);
}

.service__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .service .common__btn {
    margin: 0 0 0 auto;
  }
}

.service__img {
  width: 86.5rem;
  height: 50rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-right: -14.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .service__img {
    width: 95vw;
    height: auto;
    margin-right: auto;
  }
}

.service__img::before {
  content: "";
  background-color: #0fd6c7;
  width: 100rem;
  height: 100%;
  border-radius: 0 5.5rem 5.5rem 0;
  opacity: 0.2;
  position: absolute;
  right: -3rem;
  bottom: -14.5rem;
  pointer-events: none;
  z-index: -1;
}

.service__img img {
  border-radius: 0 5.5rem 5.5rem 0;
}

/*============================
	news
============================*/
.news {
  background: linear-gradient(0deg, #00a59d, #0fd6c7);
  padding: 9rem 0 8.5rem;
  margin-bottom: 10.5rem;
}

.news__ttl-wrapper {
  width: 96rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__ttl-wrapper {
    width: 90%;
  }
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }
}

.CMS-NEWS-INDEX {
  width: 96rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 3.5rem auto 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
    margin: 5rem auto 6rem;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 17rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  line-height: 2;
}

.CMS-NEWS-TIME {
  color: var(--white);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	qa
============================*/
.qa {
  padding-bottom: 10rem;
}

.qa__contents {
  width: 100rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 5rem 19rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .qa__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.qa__txt-wrapper {
  width: 100%;
}

.qa__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 3.5rem 0 5.5rem;
}

.qa__img {
  display: block;
  width: 43.9rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .qa__img {
    width: 100%;
  }
}

/*============================
	insta
============================*/
.insta {
  padding: 25rem 0 20rem;
  position: relative;
}

.insta::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center top / cover;
  width: 100%;
  height: 45.8rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .insta::before {
    height: 36rem;
  }
}

.insta__contents {
  width: 88.7rem;
  margin: 8.5rem auto 0;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 2.9rem;
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST {
    gap: 1rem;
  }
}

.CMS-INSTAGRAM-LIST img {
  width: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
