@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl::after {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(60px, 9.3rem);
  height: max(22px, 3.4rem);
}

.common__ttl--wt::after {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(135px, 16rem);
  height: max(34px, 4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--black);
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding-left: 1rem;
  position: relative;
}

.common__btn--wt a {
  border: solid 1px var(--white);
  color: var(--white);
}

.common__btn a::after {
  content: "";
  background-color: #ba8a35;
  width: max(7px, 0.8rem);
  height: max(8px, 0.9rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-top: 2px;
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 20rem;
  opacity: 0.8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.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;
}

/*============================
	news
============================*/
.news {
  padding: 10rem 0;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 4.5rem auto 6rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 19rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-TIME {
  margin-bottom: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  padding: 10rem 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept {
    padding: 10rem 0 15rem;
  }
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 58.8rem;
  height: 33rem;
  top: 0;
  right: 0;
}

.concept::after {
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 52rem;
  height: 15.5rem;
  left: -2.8rem;
  bottom: 8rem;
}

@media (max-width: 767px) {
  .concept::before {
    width: 45rem;
    height: 25.2rem;
  }

  .concept::after {
    width: 40rem;
    height: 11.9rem;
    left: -5rem;
    bottom: 3rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5rem 10rem;
  margin: 6rem auto 0;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(18px, 3.3rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 7rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.concept__txt-wrapper h3 strong {
  display: block;
  font-size: max(24px, 4.6rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h3 span {
  display: block;
  margin-top: 7.5rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h3 span {
    margin: 0 0 0 5rem;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .concept__txt-wrapper p {
    height: max(360px, 46rem);
    margin-top: 3.5rem;
  }

  .concept .common__btn {
    margin: 0 20rem 0 auto;
  }
}

.concept__img {
  width: 69.5rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img img:nth-of-type(2) {
  display: block;
  width: 34.8rem;
  margin: -3rem -10rem 0 auto;
}

@media (max-width: 767px) {
  .concept__img img:nth-of-type(2) {
    width: 50%;
    margin: -6rem -4.5rem 0 auto;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 9rem 0 13.5rem;
  position: relative;
}

.menu::before,
.menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.menu::before {
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 37.4rem;
  height: 21.6rem;
  top: 0;
  left: 0;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 58rem;
  height: 33.4rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 32rem;
    height: 18.5rem;
  }

  .menu::after {
    width: 42rem;
    height: 24.2rem;
  }
}

.menu__list {
  width: 111.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 11.5rem;
  margin: 6rem auto 10rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__ttl-wrapper {
  display: flex;
}

.menu__list-item:nth-of-type(even) .menu__ttl-wrapper {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper,
  .menu__list-item:nth-of-type(even) .menu__ttl-wrapper {
    flex-direction: column;
  }
}

.menu__ttl-wrapper h3 {
  width: 29.5rem;
  font-size: max(24px, 4rem);
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 3rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper h3 {
    width: 100%;
    margin-bottom: 5rem;
  }
}

.menu__ttl-wrapper h3::before {
  content: "";
  background: url("../img/menu_txt-deco.png") no-repeat center / contain;
  width: 13.2rem;
  height: 15.6rem;
  position: absolute;
  top: -1.5rem;
  left: 4.7rem;
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .menu__ttl-wrapper h3::before {
    left: 36%;
  }
}

.menu__ttl-wrapper h3 span {
  font-size: max(12px, 1.8rem);
  text-transform: uppercase;
}

.menu__txt-wrapper {
  width: 100%;
  display: flex;
  gap: 6rem;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper {
  flex-direction: row-reverse;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    margin-top: -7.5rem;
  }
}

@media (max-width: 767px) {
  .menu__txt-wrapper,
  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    flex-direction: column;
    margin-top: 4rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    padding-top: 13.5rem;
  }
}

.menu__txt-wrapper p a {
  text-decoration: underline;
}

.menu__img-1 {
  width: 82rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__img-2 {
  width: 49rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img-1,
  .menu__img-2 {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 10rem 0 8.5rem;
  position: relative;
}

.gallery::before {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / contain;
  width: 44.2rem;
  height: 13.2rem;
  position: absolute;
  right: -8rem;
  bottom: 7rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .gallery::before {
    width: 32rem;
    height: 9.5rem;
    right: -4rem;
    bottom: 3rem;
  }
}

.gallery__slider {
  height: 22.6rem;
  margin: 6.5rem 0 6rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 8.5rem 0 12rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 6rem;
  margin: 8.5rem auto 9rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 41.5rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    height: 100%;
    margin-top: -4rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
  display: flex;
  align-items: center;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    width: 100%;
  }

  .access__list dt {
    display: block;
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 8rem 0 13rem;
}

.insta__contents {
  width: 87rem;
  margin: 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: 1.5rem;
}

.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: 28rem;
  height: 27rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
