@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.common__ttl--wt {
  color: var(--white);
}

.insta .common__ttl {
  row-gap: 1.5rem;
}

.common__ttl span {
  display: block;
  font-family: var(--font-en);
  font-size: max(24px, 4.8rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.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(--orange);
  width: 100%;
  height: 100%;
  font-size: max(12px, 1.8rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: max(24px, 3.6rem);
  position: relative;
}

.common__btn--br a {
  background-color: #6f4106;
}

.common__btn a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: max(30px, 4rem);
  height: 1px;
}

/*============================
  header
============================*/
.header.top {
  height: max(81rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: max(180px, 24rem);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 0 0;
    margin-left: 11.5rem;
    position: absolute;
  }

  .header.top::before,
  .header.top::after {
    content: "";
    background-color: var(--white);
    width: max(3px, 0.4rem);
    height: 100%;
    position: absolute;
    top: 0;
    left: 2rem;
    pointer-events: none;
  }

  .header.top::after {
    left: auto;
    right: 2rem;
  }

  .header.top .header__logo {
    margin: 0 auto 4rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1000px) {
  .header.top {
    height: max(100rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: max(60px, 8rem);
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(81rem, 100vh);
  position: relative;
}

@media (max-width: 1000px) {
  .hero {
    height: max(100rem, 100vh);
  }
}

@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;
}

/*============================
	news
============================*/
.news {
  padding: 12.5rem 0 12rem;
}

.CMS-NEWS-INDEX {
  width: 101.2rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.6rem;
  margin: 5.5rem auto 8rem;
}

@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(--brown);
  padding-top: 1rem;
  margin-top: 1rem;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: var(--bg-2);
  color: var(--white);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .concept {
    padding-bottom: 18rem;
  }
}

.concept::before,
.concept::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.concept::before {
  background: url("../img/concept_deco-1.png") no-repeat center / contain;
  width: 64.6rem;
  height: 86.2rem;
  transform: translateX(-50%);
  top: 2.5rem;
  left: 50%;
  z-index: -1;
}

.concept::after {
  background: url("../img/concept_deco-2.png") no-repeat center / contain;
  width: 53.4rem;
  height: 49.5rem;
  right: 5rem;
  bottom: -12rem;
}

@media (max-width: 767px) {
  .concept::before {
    top: auto;
    bottom: 4rem;
  }

  .concept::after {
    width: 40rem;
    height: 37.1rem;
    right: 2rem;
    bottom: -8rem;
  }
}

.concept__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem 3.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 54.5rem;
  height: auto;
  margin: 11rem 0 26rem auto;
}

@media (max-width: 767px) {
  .concept__txt-wrapper {
    width: 100%;
    margin: 0;
  }
}

.concept__txt-wrapper h2 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.concept__txt-wrapper h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: 8.8rem;
  font-weight: 900;
  font-style: italic;
  color: var(--orange);
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.concept__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
  margin: 3rem 0 4rem;
}

.concept .common__btn {
  margin: 0;
}

.concept__img {
  width: 71.6rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

/*============================
	menu
============================*/
.menu {
  color: var(--white);
  position: relative;
}

@media (max-width: 767px) {
  .menu {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 4rem;
    padding-top: 10rem;
  }
}

.menu__contents {
  background: url("../img/menu_bg.jpg") repeat center / 100% auto;
  width: 48rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .menu__contents {
    width: 80%;
  }
}

.menu__contents::before,
.menu__contents::after {
  content: "";
  display: block;
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 18rem;
  height: 14rem;
}

.menu__contents::before {
  margin-bottom: 4rem;
}

.menu__contents::after {
  transform: scale(1, -1);
  margin-top: 6rem;
}

.menu__contents h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 3rem;
}

.menu__contents p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 2.5rem 0 9rem;
}

.menu__line {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.menu__line::before,
.menu__line::after {
  content: "";
  background-color: var(--orange);
  width: max(10px, 1.5rem);
  height: 100%;
  opacity: 0.8;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 2rem;
}

.menu__line::after {
  left: auto;
  right: 2rem;
}

.menu__img-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  row-gap: 5.5rem;
  position: absolute;
  top: 15.5rem;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__img-wrapper {
    position: static;
  }
}

.menu__img {
  display: block;
  width: 42rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 35rem;
  }
}

.menu__img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 1px #b8a184;
  position: absolute;
  top: 1rem;
  left: 1rem;
  pointer-events: none;
}

.menu__img:nth-of-type(odd):before {
  border-left: none;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 11rem 0 12rem;
  position: relative;
  z-index: 1;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / cover;
  width: 39.5rem;
  height: 45.9rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.gallery::before {
  top: 0;
  right: 0;
}

.gallery::after {
  transform: scale(-1, -1);
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .gallery::before,
  .gallery::after {
    width: 30rem;
    height: 34.8rem;
  }
}

.gallery__slider {
  height: 23rem;
  margin: 6.5rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.5rem;
  margin: 0 0.9rem;
}

/*============================
	access
============================*/
.access {
  padding: 14.5rem 0;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7.5rem;
  margin: 6.5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 59rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 4.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4.5rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 2rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-size: max(12px, 1.5rem);
  font-weight: 700;
}

.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 {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 12rem 0 14rem;
  position: relative;
  z-index: 1;
}

.insta::before,
.insta::after {
  content: "";
  background: url("../img/deco_1.png") no-repeat center / cover;
  width: 39.5rem;
  height: 45.9rem;
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.insta::before {
  top: 0;
  right: 0;
}

.insta::after {
  transform: scale(-1, -1);
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .insta::before,
  .insta::after {
    width: 30rem;
    height: 34.8rem;
  }
}

.insta__contents {
  width: 90.5rem;
  margin: 7.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.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: 28.2rem;
  height: 28.2rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
