@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.common__ttl span {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.access .common__ttl span {
  justify-content: center;
}

.common__ttl span::before,
.common__ttl span::after {
  content: "";
  display: block;
  background-color: var(--dark-brown);
  width: 100%;
  height: max(3px, 0.5rem);
  margin-top: 1rem;
}

.access .common__ttl span::before,
.access .common__ttl span::after {
  display: none;
}

.common__ttl span img {
  display: block;
  width: 17.6rem;
  flex-shrink: 0;
}

.kitchen .common__ttl span img {
  width: 40.6rem;
}

.gallery .common__ttl span img {
  width: 26.6rem;
}

.access .common__ttl span img {
  width: 19.8rem;
}

.common__btn {
  width: max(190px, 30rem);
  height: max(55px, 7.7rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border: solid 2px var(--dark-brown);
  position: absolute;
  top: 1rem;
  left: 1rem;
  pointer-events: none;
}

.policy .common__btn::before,
.menu .common__btn::before,
.access .common__btn::before {
  border: solid 2px var(--white);
}

.common__btn a {
  background-color: var(--orange);
  width: 100%;
  height: 100%;
  border: solid 2px var(--white);
  font-family: var(--font-en);
  font-size: max(18px, 2.4rem);
  color: var(--white);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.1em;
  position: relative;
}

.common__btn--g a {
  background-color: var(--green);
}

.common__line {
  position: relative;
}

.common__line::before {
  content: "";
  width: 128rem;
  height: 100%;
  border: solid max(4px, 0.6rem) var(--white);
  border-bottom: none;
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  left: 50%;
  pointer-events: none;
  z-index: 1;
}

.access.common__line::before,
.insta.common__line::before {
  border-top: none;
}

@media (max-width: 767px) {
  .common__line::before {
    width: 95%;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  padding: max(60px, 8rem) max(60px, 8rem) 0;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(260px, 44rem);
    padding: 5% 5% 0;
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.hero__slider::before {
  content: "";
  background: url("../img/hero_deco.png") repeat center / 100% 100%;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

@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-family: var(--font-en);
  font-size: max(14px, 2rem);
  color: var(--white);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: max(10px, 1.5rem);
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: -5rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: max(2px, 0.4rem);
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news,kitchen
============================*/
.news {
  background: var(--bg-2);
  border-bottom: solid max(4px, 0.6rem) var(--dark-brown);
  padding-top: 24rem;
  margin-top: -12rem;
  position: relative;
  z-index: 2;
}

.kitchen {
  background: var(--bg-3);
  padding: 12rem 0 12.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .kitchen {
    padding: 15rem 0 12.5rem;
  }
}

.kitchen::before,
.kitchen::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.kitchen::before {
  background-color: var(--dark-brown);
  width: 100%;
  height: max(4px, 0.6rem);
  transform: translateY(100%);
  left: 0;
  bottom: 12.5rem;
}

.kitchen::after {
  background: url("../img/kitchen_deco.png") no-repeat center / contain;
  width: 24.5rem;
  height: 14.3rem;
  top: 6.4rem;
  right: 17rem;
}

@media (max-width: 767px) {
  .kitchen::after {
    width: 18rem;
    height: 10.5rem;
    top: 4rem;
    right: 1rem;
  }
}

.CMS-NEWS-INDEX,
.CMS-ARTICLE-INDEX {
  width: 125rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4.5rem;
  margin: 3.5rem auto 5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX,
  .CMS-ARTICLE-INDEX {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT,
.CMS-ARTICLE-LINK-CONTENT {
  display: flex;
  gap: 2rem 3rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT,
  .CMS-ARTICLE-LINK-CONTENT {
    flex-direction: column;
  }
}

.CMS-NEWS-THUMBNAIL,
.CMS-ARTICLE-THUMBNAIL {
  width: 16rem;
  height: 12rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL,
  .CMS-ARTICLE-THUMBNAIL {
    width: 100%;
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME,
.CMS-ARTICLE-LINK,
.CMS-ARTICLE-TIME {
  font-weight: 500;
  line-height: 2;
}

@media (min-width: 768px) {
  .CMS-NEWS-TIME,
  .CMS-ARTICLE-TIME {
    margin-top: 1rem;
  }
}

.CMS-NEWS-MORE-READ,
.CMS-ARTICLE-MORE-READ {
  display: none;
}

.news .common__btn,
.kitchen .common__btn {
  margin-bottom: calc(max(55px, 7.7rem) / 2 * -1);
}

/*============================
	policy
============================*/
.policy {
  color: var(--white);
  padding: 11rem 0 9.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .policy {
    padding: 14rem 0;
  }
}

.policy::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 42.7rem;
  height: 37.5rem;
  position: absolute;
  top: -17rem;
  right: -4rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy::before {
    width: 30rem;
    height: 26.3rem;
    top: -13rem;
    right: -6rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  background-color: var(--black);
  width: 100%;
  padding: 6rem 6rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    padding: 7rem 13.5rem 0 32rem;
    margin-top: 13.5rem;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
    transform-origin: center;
  }

  100% {
    transform: rotate(360deg);
  }
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_txt-deco.png") no-repeat center / contain;
  width: 26.5rem;
  height: 26.5rem;
  position: absolute;
  top: -14rem;
  right: -12.5rem;
  pointer-events: none;
  animation: rotate 40s linear infinite;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    width: 20rem;
    height: 20rem;
    top: -10rem;
    right: -3rem;
  }
}

.policy__txt-wrapper h2 {
  font-size: max(20px, 3.8rem);
  font-weight: 900;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h2 {
    text-align: right;
  }
}

.policy__txt-wrapper h2 strong {
  font-size: max(25px, 4.8rem);
  color: var(--orange);
}

.policy__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 1rem 0 5rem;
}

.policy .common__btn {
  margin-bottom: calc(max(55px, 7.7rem) / 2 * -1);
}

@media (min-width: 768px) {
  .policy .common__btn {
    margin-left: auto;
    margin-right: 0;
  }
}

.policy__img-1 {
  width: 66rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  margin-right: -26rem;
}

.policy__img-2 {
  width: 23rem;
  position: absolute;
  right: 0;
  bottom: -5.5rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 100%;
    margin: 0;
    position: relative;
    z-index: -1;
  }

  .policy__img-2 {
    width: 15rem;
  }
}

/*============================
	menu
============================*/
.menu {
  color: var(--white);
  padding: 11rem 0 11.5rem;
  position: relative;
}

.menu::after {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 31.6rem;
  height: 24.9rem;
  position: absolute;
  top: -17rem;
  left: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::after {
    width: 23rem;
    height: 18.1rem;
    top: -9rem;
  }
}

.menu__inner {
  width: 115rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 85%;
    margin: 0 auto;
  }
}

.menu__ttl {
  display: block;
  width: 45.5rem;
}

.menu__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 13.5rem;
  margin: 10.5rem auto 0;
}

.menu__list-item {
  display: flex;
  position: relative;
}

.menu__list-item:nth-of-type(even) {
  background-color: var(--black);
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}

.menu__list-item::before {
  content: "";
  position: absolute;
  pointer-events: none;
}

.menu__list-item:nth-of-type(2)::before {
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 23.2rem;
  height: 34.2rem;
  top: -25rem;
  right: calc(50% - 50vw);
}

.menu__list-item:nth-of-type(3)::before {
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 30.5rem;
  height: 30.3rem;
  top: -17rem;
  left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2)::before {
    width: 15rem;
    height: 22.1rem;
    top: -16rem;
  }

  .menu__list-item:nth-of-type(3)::before {
    width: 22rem;
    height: 21.8rem;
    top: -12rem;
  }
}

.menu__txt-wrapper {
  background-color: var(--black);
  width: 100%;
  padding: 6rem 6rem 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    padding: 8rem 33.5rem 0 13.5rem;
    z-index: 0;
  }

  .menu__list-item:nth-of-type(2) .menu__txt-wrapper {
    padding: 8rem 16.5rem 0 56rem;
  }

  .menu__list-item:nth-of-type(3) .menu__txt-wrapper {
    padding: 8rem 9rem 0;
  }
}

.menu__txt-wrapper::before {
  content: "";
  background-color: #a9afb5;
  width: 21.5rem;
  height: 5.5rem;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.menu__txt-wrapper h3 {
  background: linear-gradient(0deg, var(--white) 50%, var(--green) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  width: 21.5rem;
  font-family: var(--font-menu);
  font-size: max(36px, 6rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  position: absolute;
  transform: translateY(-50%);
  top: 0;
  left: 0;
}

.menu__list-item:nth-of-type(even) .menu__txt-wrapper::before,
.menu__list-item:nth-of-type(even) .menu__txt-wrapper h3 {
  left: auto;
  right: 0;
}

.menu__txt-wrapper h4 {
  font-size: max(24px, 4.6rem);
  font-size: max(20px, 3.8rem);
  font-weight: 900;
}

.menu__txt-wrapper h4 strong {
  font-size: max(28px, 5.8rem);
  font-size: max(25px, 4.8rem);
  color: var(--orange);
}

.menu__txt-wrapper p {
  font-size: max(12px, 1.8rem);
  letter-spacing: 0.1em;
  line-height: 2.5;
  margin: 2rem 0 5.5rem;
}

.menu__list-item:nth-of-type(1) p {
  margin: 2rem 0 9rem;
}

.menu .common__btn {
  margin-bottom: calc(max(55px, 7.7rem) / 2 * -1);
}

@media (min-width: 768px) {
  .menu .common__btn {
    margin-left: 0;
  }

  .menu .menu__list-item:nth-of-type(3) .common__btn {
    margin-left: auto;
  }
}

.menu__img {
  display: block;
  height: 100%;
  flex-shrink: 0;
  z-index: 1;
}

.menu__list-item:nth-of-type(1) .menu__img {
  width: 71.2rem;
  margin: -29rem calc(50% - 50vw) 0 -31.5rem;
}

.menu__list-item:nth-of-type(2) .menu__img {
  width: 35.1rem;
  height: auto;
  position: absolute;
  top: -4rem;
  left: 12.5rem;
}

.menu__list-item:nth-of-type(3) .menu__img {
  width: 54rem;
  height: auto;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(1) .menu__img {
    width: 100%;
    margin: 0 calc(50% - 50vw) 4rem auto;
  }

  .menu__list-item:nth-of-type(2) .menu__img {
    width: 50%;
    margin: 4rem auto;
    position: static;
  }

  .menu__list-item:nth-of-type(3) .menu__img {
    width: 100%;
  }
}

.menu__img-deco {
  display: block;
  width: 22.4rem;
  position: absolute;
  left: calc(50% - 50vw);
  bottom: 7rem;
  pointer-events: none;
  z-index: 2;
}

@media (max-width: 767px) {
  .menu__img-deco {
    width: 15rem;
    bottom: -8rem;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-3);
  padding: 11.5rem 0 13rem;
  position: relative;
}

.gallery::before {
  content: "";
  background-color: var(--dark-brown);
  width: 100%;
  height: max(4px, 0.6rem);
  position: absolute;
  left: 0;
  bottom: calc(13rem + max(55px, 7.7rem) / 2);
  pointer-events: none;
}

.gallery__slider {
  height: 44.9rem;
  margin: 4rem 0 6.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 36rem;
}

/*============================
	access
============================*/
.access {
  color: var(--white);
  padding-bottom: 11.5rem;
}

.access__ttl-wrapper {
  background: url("../img/access_ttl-bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 35rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 7rem;
  margin: 5rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 85%;
    flex-direction: column;
  }
}

.access__map {
  width: 49rem;
  height: 36rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__map {
    width: 100%;
    height: 40rem;
  }
}

.access__list {
  border-top: solid 1px var(--white);
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  background-color: var(--black);
  width: max(75px, 11rem);
  font-weight: 400;
  display: flex;
  justify-content: center;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
  border-bottom: solid 1px var(--white);
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px var(--white);
  }
}

@media (max-width: 767px) {
  .access__list dt,
  .access__list dd {
    display: block;
    width: 100%;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11.5rem 0 10.5rem;
}

.insta__contents {
  width: 86rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 85%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.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: 26rem;
  height: 26rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}
