@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  border-bottom: solid 1px var(--light-green);
  font-size: max(20px, 2.8rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  padding-bottom: 2rem;
  margin: 0 auto;
}

.common__ttl--wt {
  border-bottom: solid 1px var(--white);
  color: var(--white);
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(12px, 1.6rem);
  font-weight: 500;
  color: var(--light-green);
  letter-spacing: 0;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl--wt span {
  color: var(--white);
}

.common__btn {
  width: max-content;
  margin: 0 auto;
}

.common__btn a {
  background: url("../img/btn_arw.png") no-repeat right bottom / contain;
  width: 100%;
  height: 100%;
  color: var(--black);
  letter-spacing: 0.15em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 max(15px, 2.3rem) 1.5rem 0.6rem;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_arw-wt.png") no-repeat right bottom / contain;
  color: var(--white);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.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 .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 2rem;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -3rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: transparent;
  width: 10px !important;
  height: 10px !important;
  border: solid 1px var(--green);
  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: var(--green);
}

@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(12px, 1.4rem);
  color: var(--white);
  letter-spacing: 0.2em;
  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(--white);
  width: 1px;
  height: max(70px, 12.5rem);
  animation: scroll 2.5s infinite;
}

/*============================
	concept
============================*/
.concept {
  padding: 18.5rem 0 11.5rem;
  position: relative;
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 25.6rem;
  height: 24.8rem;
  top: 12.8rem;
  right: 14.5rem;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 27.4rem;
  height: 23.8rem;
  left: 9rem;
  bottom: 14rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 18rem;
    height: 17.4rem;
    top: 8rem;
    right: 5rem;
  }

  .concept::after {
    width: 19rem;
    height: 16.5rem;
    left: 3rem;
    bottom: 4rem;
  }
}

.concept__txt-wrapper {
  width: 62rem;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 90%;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 7.5rem 0 4rem;
}

.concept__txt-wrapper p {
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-bottom: 8rem;
}

.concept__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4rem;
  margin-bottom: 4rem;
}

.concept__list li {
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
}

.concept__list li:not(:last-of-type)::after {
  content: "↓";
  display: block;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: -0.6rem;
  pointer-events: none;
}

/*============================
	flow
============================*/
.flow {
  background-color: var(--gray);
  padding: 13rem 0 13.5rem;
}

.flow__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12rem 3.5rem;
  margin: 16rem auto 9.5rem;
}

@media (max-width: 767px) {
  .flow__list {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.flow__list li {
  border: solid 3px var(--green);
  padding: 3rem;
  position: relative;
}

.flow__list li::before,
.flow__list li::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.flow__list li::before {
  content: "01";
  background-color: var(--green);
  width: 14rem;
  height: 7rem;
  border-radius: 20rem 20rem 0 0;
  font-family: var(--font-flow);
  font-size: max(20px, 4.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  transform: translate(-50%, -100%);
  top: 0;
  left: 50%;
}

.flow__list li:nth-of-type(2):before {
  content: "02";
}

.flow__list li:nth-of-type(3):before {
  content: "03";
}

.flow__list li:nth-of-type(4):before {
  content: "04";
}

.flow__list li:nth-of-type(5):before {
  content: "05";
}

.flow__list li:nth-of-type(6):before {
  content: "06";
}

.flow__list li::after {
  background: url("../img/flow_arw.png") no-repeat center / contain;
  width: max(12px, 1.8rem);
  height: max(19px, 2.9rem);
  transform: translate(50%, -50%);
  top: 50%;
  right: -2rem;
}

.flow__list li:nth-of-type(4)::after {
  display: none;
}

.flow_txt{
  margin: 0 16rem;
}

@media (max-width: 767px) {
  .flow__list li::after {
    transform: translate(-50%, 100%) rotate(90deg);
    top: auto;
    right: auto;
    left: 50%;
    bottom: -1.5rem;
  }
  .flow_txt{
    text-align: center;
    margin: 0;
  }
}

@media (min-width: 768px) {
  .flow__list li:nth-of-type(4)::after {
    display: none;
  }
}

.flow__list h3 {
  font-size: max(14px, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}

.flow__list p {
  line-height: 2;
}



/*============================
	area
============================*/
.area {
  padding: 13rem 0 17.5rem;
}

.area__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 7rem;
  padding: 0 19rem 0 12rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .area__contents {
    width: 90%;
    flex-direction: column-reverse;
    padding: 0;
  }
}

.area__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .area__txt-wrapper {
    padding-top: 5rem;
  }
}

.area__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 700;
}

.area__txt-wrapper p {
  line-height: 2;
  margin: 3rem 0 3.5rem;
}

.area__list {
  width: max-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 9rem;
}

.area__list li {
  background-color: var(--green);
  width: max(50px, 8rem);
  border-radius: 1rem;
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 0;
}

@media (min-width: 768px) {
  .area .common__btn {
    margin: 0;
  }
}

.area__img {
  display: block;
  width: 63.2rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .area__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 11.5rem 0 28.5rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 17rem;
  height: 20.2rem;
  position: absolute;
  top: 7.4rem;
  left: 10.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 13rem;
    height: 15.4rem;
    left: 5rem;
  }
}

.menu__contents {
  width: 110rem;
  display: flex;
  gap: 8rem 14rem;
  margin: 11.5rem auto 0;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  width: 100%;
  padding-left: 6rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper {
    padding: 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.menu__txt-wrapper p {
  line-height: 2;
  margin: 2.5rem 0 9rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img-list {
  width: 48rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img-list {
    width: 90%;
    margin-left: auto;
  }
}

.menu__img-list::before {
  content: "";
  background-color: var(--green);
  width: 60rem;
  height: 43rem;
  position: absolute;
  top: 4rem;
  right: -17rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__img-list::before {
    height: 54rem;
    right: -8rem;
  }
}

.menu__img-list li:nth-of-type(2) {
  width: 24rem;
  margin: -13rem 0 0 -11rem;
}

@media (max-width: 767px) {
  .menu__img-list li:nth-of-type(2) {
    width: 50%;
    margin: -14rem 0 0 -7rem;
  }
}

/*============================
	case
============================*/
.case {
  background-color: var(--gray);
  padding: 11rem 0 12rem;
}

.CMS-ARTICLE-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 8rem auto 12rem;
}

@media (max-width: 767px) {
  .CMS-ARTICLE-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-ARTICLE-LINK-CONTENT {
  display: block;
}

.CMS-ARTICLE-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-ARTICLE-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-ARTICLE-LINK,
.CMS-ARTICLE-TIME {
  margin-right: 1.2rem;
}

.CMS-ARTICLE-LINK {
  border-top: solid 1px var(--green);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-ARTICLE-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-ARTICLE-MORE-READ {
  display: none;
}

/*============================
	gallery
============================*/
.gallery {
  background-color: var(--green);
  padding: 12rem 0 11rem;
}

.gallery__slider {
  height: 20rem;
  margin: 7.5rem 0 10.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 32rem;
  margin: 0 0.5rem;
}

/*============================
	cafe
============================*/
.cafe {
  padding: 19.5rem 0 20.5rem;
}

.cafe__contents {
  background-color: var(--yellow);
  width: 110rem;
  color: var(--white);
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .cafe__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.cafe__txt-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 6rem 4rem;
}

.cafe__txt-wrapper p {
  text-align: center;
  letter-spacing: 0.05em;
  margin: 3rem 0 4.5rem;
}

/*============================
	access
============================*/
.access {
  background-color: var(--gray);
  padding: 11rem 0 22rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 7rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__list-wrapper {
  background-color: var(--green);
  padding: 5rem 7rem 5.5rem 14rem;
  margin: 6rem 0 0 -8rem;
}

@media (max-width: 767px) {
  .access__list-wrapper {
    padding: 5rem 6rem 6rem;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.access__list dt,
.access__list dd {
  color: var(--white);
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__map {
  display: block;
  width: 62.5rem;
  height: 47rem;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 40rem;
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  padding: 13.5rem 0 22rem;
}

.insta__contents {
  width: 88.7rem;
  margin: 11.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;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 40rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
