@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.menu .common__ttl {
  width: max-content;
  font-size: max(14px, 2.4rem);
  align-items: flex-end;
  row-gap: 0;
  position: absolute;
  top: 11rem;
  right: 32rem;
}

.gallery .common__ttl {
  row-gap: 0;
}

@media (max-width: 767px) {
  .menu .common__ttl {
    right: 8%;
  }
}

.common__ttl span {
  display: block;
}

.menu .common__ttl span {
  width: 30.2rem;
  margin-right: -5rem;
}

.gallery .common__ttl span {
  width: max(119px, 18rem);
}

.news .common__ttl span {
  width: max(92px, 14rem);
}

.access .common__ttl span {
  width: max(110px, 16.8rem);
}

.insta .common__ttl span {
  width: max(165px, 25.1rem);
}

.common__btn {
  width: max(160px, 21.6rem);
  height: max(40px, 5rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background-color: var(--white);
  width: 100%;
  height: 100%;
  color: var(--brown);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.common__btn a::before,
.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--green);
  width: max(10px, 1.4rem);
  height: 100%;
}

.common__btn a::after {
  background-color: var(--red);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before,
.hero::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero::before {
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), #231815);
  height: 15rem;
  mix-blend-mode: multiply;
  top: 0;
}

.hero::after {
  background: url("../img/deco-1.png") no-repeat center top / cover;
  height: 24.8rem;
  bottom: 0;
}

@media (max-width: 767px) {
  .hero::after {
    height: 18rem;
  }
}

.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;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  color: var(--white);
  padding: 12.5rem 0 17rem;
  position: relative;
}

.concept::before {
  content: "";
  width: calc(100% - 16rem);
  height: calc(100% - 15rem);
  border: solid max(3px, 0.6rem) var(--white);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

@media (max-width: 767px) {
  .concept::before {
    width: 95%;
    height: 95%;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  align-items: flex-end;
  gap: 4rem 7rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 85%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

.concept__txt-wrapper h2 {
  border-bottom: solid 1px var(--white);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
}

.concept__txt-wrapper h2 span {
  display: block;
  width: 38.8rem;
  margin-bottom: 4rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.15em;
  line-height: 2;
  margin: 3rem 0 6rem;
}

@media (min-width: 768px) {
  .concept .common__btn {
    margin: 0;
  }
}

.concept__img {
  width: 46rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .concept__img {
    width: 100%;
  }
}

.concept__img img:nth-of-type(1) {
  width: 56.4rem;
  margin: -12.5rem -19.5rem -4rem auto;
}

.concept__img img:nth-of-type(2) {
  width: 100%;
  border: solid max(2px, 0.4rem) var(--white);
}

@media (max-width: 767px) {
  .concept__img img:nth-of-type(1) {
    width: 80%;
    margin: -12.5rem -10rem -4rem auto;
  }
}

/*============================
	menu
============================*/
.menu {
  padding: 33rem 0 17rem;
  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: 59rem;
  height: 39.4rem;
  top: 0;
  left: -1.5rem;
}

.menu::after {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 61.2rem;
  height: 66.8rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .menu::before {
    width: 50rem;
    height: 33.4rem;
    left: -10rem;
  }

  .menu::after {
    width: 50rem;
    height: 54.5rem;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8.5rem;
  margin: 0 auto 13.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list::before {
  content: "";
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 30.6rem;
  height: 37.4rem;
  position: absolute;
  left: -7rem;
  bottom: -27rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__list::before {
    width: 24rem;
    height: 29.3rem;
    left: -7rem;
    bottom: -24rem;
  }
}

.menu__list li figure {
  display: flex;
  align-items: center;
}

.menu__list li:nth-of-type(even) figure {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list li figure,
  .menu__list li:nth-of-type(even) figure {
    flex-direction: column-reverse;
  }
}

.menu__txt-wrapper {
  background: url("../img/menu_bg-1.jpg") no-repeat center / cover;
  width: 100%;
  color: var(--white);
  padding: 5rem 5rem 6rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding: 7rem 7rem 7rem 17rem;
    margin-left: calc(50% - 50vw);
  }

  .menu__list li:nth-of-type(even) .menu__txt-wrapper {
    padding: 7rem 17rem 7rem 7rem;
    margin: 0 calc(50% - 50vw) 0 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  position: relative;
}

.menu__txt-wrapper h3 span {
  display: block;
  width: 26rem;
  position: absolute;
  top: -6rem;
  right: 0;
}

.menu__list li:nth-of-type(2) .menu__txt-wrapper h3 span {
  width: 24rem;
  top: -7.5rem;
}

.menu__list li:nth-of-type(3) .menu__txt-wrapper h3 span {
  width: 26.7rem;
  top: -7.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__img {
  width: 62rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: url("../img/gallery_bg.jpg") no-repeat center / cover;
  padding: 10.5rem 0 14rem;
}

.gallery__slider {
  height: 22.6rem;
  margin: 6.5rem 0 12.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.8rem;
}

/*============================
	news
============================*/
.news {
  padding: 10rem 0 12rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 6.5rem auto 7.5rem;
}

@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: 20rem;
  margin-bottom: 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  margin-right: 1.2rem;
}

.CMS-NEWS-LINK {
  border-top: solid 1px var(--black);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  color: var(--white);
  padding-bottom: 10rem;
}

.access__ttl-wrapper {
  background: url("../img/access_ttl-bg.jpg") no-repeat center / cover;
  height: 38rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7rem;
  margin: 12rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 48rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2rem 0 7rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 7rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 12rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 12rem));
}

.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;
  }
}

.top__map {
  height: 38rem;
}

/*============================
	line
============================*/
.line {
  background: url("../img/line_bg.jpg") no-repeat center / cover;
}

.line__txt-wrapper {
  background-color: rgba(255, 255, 255, 0.9);
  width: 60rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6.5rem 0 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .line__txt-wrapper {
    width: 80%;
  }
}

.line__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  color: #06c755;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
  margin-bottom: 4rem;
}

.line__txt-wrapper h2::before {
  content: "";
  display: block;
  background: url("../img/line.png") no-repeat center / contain;
  width: max(40px, 7.8rem);
  height: max(40px, 7.8rem);
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-3);
  padding: 9rem 0 27rem;
  position: relative;
}

@media (max-width: 767px) {
  .insta {
    padding: 9rem 0 20rem;
  }
}

.insta::after {
  content: "";
  background: url("../img/deco-1.png") no-repeat center top / cover;
  width: 100%;
  height: 24.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .insta::after {
    height: 18rem;
  }
}

.insta__contents {
  width: 82rem;
  margin: 9rem 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.8rem;
}

.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: 26.1rem;
  height: 26.1rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
