@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(24px, 3.7rem);
  font-size: 3.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  position: relative;
  margin-bottom: 8rem;
}

.common__ttl::before,
.common__ttl::after {
  content: "";
  display: block;
}

.common__ttl::before {
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(50px, 8.6rem);
  height: max(16.8px, 2.9rem);
  width: 7.6rem;
  height: 7.6rem;
}
.common__ttl::after {
  background: url("../img/ttl_deco2.png") no-repeat center / contain;
  width: 2.7rem;
  height: 2.7rem;
  bottom: -4.5rem;
  position: absolute;
}

.common__ttl.common__ttl--wt {
  color: #fff;
}
.common__ttl.common__ttl--wt::before {
  filter: grayscale(100%) brightness(0) invert(100%); 
}
.common__ttl.common__ttl--wt::after {
  filter: grayscale(100%) brightness(0) invert(100%); 
}


.common__btn {
  width: max(160px, 20rem);
  width: 20.5rem;
  /* height: max(40px, 4.8rem); */
  margin: 0 auto;
}
.common__btn--wt img {
  filter: grayscale(100%) brightness(0) invert(100%);  /* 白 */
}
/* .common__btn a {
  width: 100%;
  height: 100%;
  border: solid 1px var(--white);
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-left: 2rem;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(24.6px, 3.7rem);
  height: max(4px, 0.6rem);
} */
@media (max-width: 767px) {
  .common__btn {
    width: 35rem;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 23rem;
  opacity: 0.52;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.hero__ttl {
  font-size: max(24px, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.7;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 24rem;
  left: 37.5rem;
  z-index: 2;
  color: #fff;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(24px, 4rem);
    writing-mode: horizontal-tb;
    top: auto;
    right: auto;
    left: 5%;
    bottom: 10%;
  }
}

.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;
}

@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(14px, 2rem);
  letter-spacing: 0.05em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 14rem;
  bottom: -3rem;
  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(80px, 16.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  background: 
  url("../img/deco-news.png") no-repeat left -7.5rem top 3rem / 65rem,
  url("../img/back-news.jpg") no-repeat center / cover;
  padding: 8rem 0 8.5rem;
}
@media (max-width: 767px) {
  .news {
    background: 
    url("../img/deco-news.png") no-repeat left -5rem top 1rem / 35rem,
    url("../img/back-news.jpg") no-repeat center / cover;
    padding: 10rem 0 10rem;
  }  
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 9.5rem auto 7rem;
}

@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: 21rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 37rem;
  }
}

.CMS-NEWS-TIME {
  font-size: 1.5rem;
}
.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.2em;
  line-height: 1.7;
}

.CMS-NEWS-MORE-READ {
  display: none;
}
@media (max-width: 767px) {
  .CMS-NEWS-TIME {
    font-size: max(11px, 1.5rem);
  }  
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-1);
  background: url(../img/back-policy.jpg) no-repeat center top / cover;
  padding: 15rem 0 13rem;
}
@media (max-width: 767px) {
  .policy {
    padding: 15rem 0 15rem;
  }  
}

.policy__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 12.5rem;
  margin: 0 auto 9rem;
}

@media (max-width: 767px) {
  .policy__list {
    width: 90%;
  }
}

.policy__list-item {
  display: flex;
}

.policy__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .policy__list-item,
  .policy__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  /* background: var(--bg-2); */
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  padding: 4rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(505px, 50.5rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 5rem 21rem 4rem 4.5rem;
    margin: 6rem -17.4rem 0 -4.5rem;
  }

  .policy__list-item:nth-of-type(odd) .policy__txt-wrapper {
    padding: 5rem 4.5rem 4rem 21rem;
    margin: 6rem -4.5rem 0 -17.4rem;
  }
}

.policy__txt-wrapper::before {
  content: "食";
  /* font-family: var(--font-shippori); */
  font-size: 39.5rem;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
  text-stroke: 2px var(--white);
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  top: -15rem;
  right: -8rem;
  pointer-events: none;
}

.policy__list-item:nth-of-type(2) .policy__txt-wrapper::before {
  content: "飲";
  top: -16rem;
  right: auto;
  left: -6rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before,
  .policy__list-item:nth-of-type(2) .policy__txt-wrapper::before {
    font-size: 24rem;
    top: -3rem;
    right: -4rem;
    left: auto;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(18px, 2.6rem);
  font-weight: 700;
  color: #231815;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 {
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper h3 span {
  display: block;
  background-color: var(--white);
  height: max-content;
  padding: 1rem 0.5rem;
}

.policy__txt-wrapper h3 span:nth-of-type(2) {
  font-size: max(2px, 3rem);
  padding: 1rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 span,
  .policy__txt-wrapper h3 span:nth-of-type(2) {
    width: max-content;
    padding: 0.5rem 1rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  color: #fff;
}

.policy__img-1 {
  width: 61.8rem;
  height: 100%;
  flex-shrink: 0;
}

.policy__img-2 {
  width: 41rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img-1,
  .policy__img-2 {
    width: 100%;
  }
}

.policy__contents {
  width: 100rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__contents .policy__txt-wrapper {
  width: 100%;
  padding: 4rem;
  margin: 0;
}

@media (min-width: 768px) {
  .policy__contents .policy__txt-wrapper {
    height: max(285px, 28.5rem);
    padding: 3.5rem 8rem 3.5rem 25rem;
    margin: 3.5rem 0 0 -22rem;
  }
}

.policy__contents .policy__txt-wrapper h3 {
  font-size: max(12px, 1.8rem);
  margin-top: -7rem;
}

@media (max-width: 767px) {
  .policy__contents .policy__txt-wrapper h3 {
    margin-top: 0;
  }
}

.policy__contents .policy__txt-wrapper h3 span:nth-of-type(2) {
  font-size: max(16px, 2.1rem);
}

.policy__contents .policy__txt-wrapper::before {
  content: "楽";
  font-size: 23.4rem;
  top: -10rem;
  right: -12rem;
}

@media (max-width: 767px) {
  .policy__contents .policy__txt-wrapper::before {
    font-size: 24rem;
    top: -3rem;
    right: -4rem;
  }
}

/*============================
	menu
============================*/
.menu {
  /* background: var(--bg-2); */
  background: url(../img/back-menu.jpg) repeat-y center top / cover;
  padding: 6.5rem 0 29.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .menu {
    padding: 9rem 0 12rem;
  }
}


.menu::before {
    content: "";
    background: url(../img/deco-menu.png) no-repeat center top / contain;
    width: 54rem;
    height: 54rem;
    position: absolute;
    top: 3rem;
    right: 0;
    z-index: 1;
  }
  @media (max-width: 767px) {
    .menu::before {
      width: 25rem;
      height: 25rem;
      top: 1rem;
      right: 0;
    }  
  }
/* .menu::before,
.menu::after {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 39rem;
  height: 39rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
} */

/* .menu::after {
  transform: scale(-1, -1);
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
} */

/* @media (max-width: 767px) {
  .menu::before,
  .menu::after {
    width: 30rem;
    height: 30rem;
  }
} */

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 24rem;
  margin: 21.5rem auto 0;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 20rem;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem 16rem;
  position: relative;
}

.menu__list-item:nth-of-type(odd) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
}

.menu__list-item::before {
  content: "";
  background: url("../img/menu_bg-1.jpg") no-repeat center / cover;
  width: 99.7rem;
  height: 53.3rem;
  position: absolute;
  top: -7.5rem;
  right: calc(50% - 50vw);
  mix-blend-mode: multiply;
}

.menu__list-item:nth-of-type(2)::before {
  background: url("../img/menu_bg-2.jpg") no-repeat center / cover;
  right: auto;
  left: calc(50% - 50vw);
}
.menu__list-item:nth-of-type(3)::before {
  background: url("../img/menu_bg-3.jpg") no-repeat center / cover;
}
.menu__list-item:nth-of-type(4)::before {
  background: url("../img/menu_bg-4.jpg") no-repeat center / cover;
  right: auto;
  left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__list-item::before {
    width: 100vw;
    height: 50rem;
    top: -8rem;
    left: calc(50% - 50vw);
    right: auto;
  }
}

.menu__txt-wrapper {
  width: 100%;
  padding-right: 8rem;
}

.menu__list-item:nth-of-type(2) .menu__txt-wrapper {
  padding: 0 0 0 8rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper,
  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    padding: 0;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.3rem);
  font-weight: 700;
  color: #ae5d22;
  letter-spacing: 0.1em;
}

.menu__txt-wrapper h3 strong {
  font-size: max(20px, 3rem);
  font-weight: 900;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3.5rem 0 4.5rem;
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin: 0;
  }
}

.menu__img {
  width: 45rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img p {
  font-size: 9.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0.45;
  position: absolute;
  top: -5rem;
  right: -3.5rem;
  color: #ae7822;
}

.menu__list-item:nth-of-type(2) .menu__img p,
 .menu__list-item:nth-of-type(4) .menu__img p {
    right: auto;
  left: -3.5rem;
}

/*============================
	gallery
============================*/
.gallery {
  /* background: var(--bg-1); */
  background: url(../img/back-gallery.jpg) no-repeat center top / cover;
  padding: 6.5rem 0 10.5rem;
}
@media (max-width: 767px) {
  .gallery {
    padding: 8.5rem 0 10.5rem;
  }
}

.gallery__slider {
  height: 25.6rem;
  margin: 12.5rem 0 7rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/back-access.jpg") no-repeat center top / cover;
  padding: 10.8rem 0;
  position: relative;
}

  .access::before {
    content: "";
    background: url(../img/deco-access.png) no-repeat center top / contain;
    width: 59rem;
    height: 59rem;
    position: absolute;
    top: 1rem;
    left: -10rem;
  }
  @media (max-width: 767px) {
    .access {
      background: url("../img/back-access.jpg") no-repeat left top / cover;
      padding: 10.8rem 0 6rem;
    }
    
    .access::before {
      width: 33rem;
      height: 33rem;
      top: 0rem;
      left: -6rem;
    }
    }
.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8rem;
  margin: 17rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    margin: 12rem auto 0;
  }
}

.access__img {
  width: 60.4rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 6rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 6rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 600;
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  border-bottom: solid 1px #000;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px #000;
  }
}

@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;
  }
}

.access__btn-1 {
  width: max-content;
  margin: 0 0 7rem auto;
}

.access__btn-1 a {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.access__btn-1 a::after {
  content: "";
  display: block;
  background-color: #000;
  width: 1.1rem;
  height: 1.3rem;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.access__btn-2 {
  width: max(240px, 40rem);
  height: max(60px, 8rem);
}

@media (max-width: 767px) {
  .access__btn-2 {
    margin: 0 auto;
  }
}

.access__btn-2 a {
  width: 100%;
  height: 100%;
  border: solid 2px var(--white);
  font-size: max(14px, 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.access__btn-2 a::before {
  content: "";
  background-color: var(--white);
  width: max(12px, 1.8rem);
  height: max(10px, 1.5rem);
  clip-path: polygon(100% 100%, 0% 100%, 100% 0);
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}

/*============================
	insta
============================*/
.insta {
  /* background: var(--bg-1); */
  background: url(../img/back-insta.jpg) no-repeat center top / cover;
  padding: 8rem 0 10rem;
}

.insta__contents {
  width: 87rem;
  margin: 10rem 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;
  }
}
