@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(16px, 2.4rem);
  font-weight: 500;
  color: var(--brown);
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl span {
  font-size: max(10px, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(40px, 7.1rem);
  height: max(44.5px, 7.9rem);
}

.common__btn-1 {
  width: max(200px, 32.3rem);
  height: max(45px, 6.6rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn-1 a {
  background-color: var(--bg-1);
  width: 100%;
  height: 100%;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.takeout .common__btn-1 a {
  font-size: max(14px, 2rem);
}

.common__btn-1 a::before,
.common__btn-1 a::after {
  content: "";
  position: absolute;
  top: 50%;
}

.common__btn-1 a::before {
  width: calc(100% + 1.1rem);
  height: calc(100% + 1.1rem);
  border: solid 1px var(--white);
  transform: translate(-50%, -50%);
  left: 50%;
}

.common__btn-1 a::after {
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(11px, 1.7rem);
  height: max(15.7px, 2.5rem);
  transform: translateY(-50%);
  right: 3rem;
}

.menu .common__btn-1 a::after {
  right: 2.4rem;
}

.common__btn-2 {
  width: max-content;
  margin-left: auto;
}

.common__btn-2 a {
  font-weight: 900;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.common__btn-2 a::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: max(10px, 1.3rem);
  height: max(9.2px, 1.2rem);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1) 60%);
  width: 100%;
  height: 26rem;
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  left: 0;
  bottom: 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;
}

@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(10px, 1.2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  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(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  background: var(--bg-1);
  padding: 5.5rem 0 10rem;
}

.news__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 6.9rem;
  margin: 4.5rem auto 5.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 20rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  letter-spacing: 0.05em;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	concept
============================*/
.concept {
  background: url("../img/concept_bg.jpg") no-repeat center / cover;
  padding: 8rem 0 10rem;
  position: relative;
}

@media (max-width: 767px) {
  .concept::before {
    content: "";
    background-color: var(--black);
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
}

.concept__contents {
  width: 101rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .concept__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.concept__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .concept__txt-wrapper {
    width: max(300px, 45rem);
  }
}

.concept__txt {
  margin: 2.5rem 0 9.5rem;
}

@media (min-width: 768px) {
  .concept__txt {
    height: max(340px, 45rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.concept__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0 0 0 6rem;
}

.concept__txt-wrapper h3 span {
  display: block;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .concept__txt-wrapper h3 {
    margin: 0 0 3rem;
  }

  .concept__txt-wrapper h3 span {
    margin: 0 0 0 3rem;
  }
}

.concept__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .concept__txt-wrapper p {
    padding-top: 4rem;
  }
}

/*============================
	menu
============================*/
.menu {
  position: relative;
}

@media (max-width: 767px) {
  .menu::before {
    content: "";
    background-color: var(--black);
    width: 100%;
    height: 100%;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
  }
}

.menu__list {
  width: 100%;
}

.menu__list-item {
  background: url("../img/menu_bg-1.jpg") no-repeat center / cover;
  display: flex;
  justify-content: space-between;
  padding: 6.5rem 24rem 8rem 15rem;
}

.menu__list-item:nth-of-type(2) {
  background: url("../img/menu_bg-2.jpg") no-repeat center / cover;
  padding: 13.5rem 15rem 7rem 27rem;
}

.menu__list-item:nth-of-type(3) {
  background: url("../img/menu_bg-3.jpg") no-repeat center / cover;
  padding: 11rem 27rem 6.5rem 15rem;
}

.menu__list-item:nth-of-type(even) {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .menu__list-item,
  .menu__list-item:nth-of-type(2),
  .menu__list-item:nth-of-type(3),
  .menu__list-item:nth-of-type(even) {
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 6rem;
    padding: 8rem 5%;
  }

  .menu__ttl-wrapper {
    display: contents;
  }
}

.menu .common__ttl {
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .menu .common__ttl {
    margin: 0;
    order: 1;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    width: 45rem;
  }
}

.menu__txt {
  margin: 2.5rem 0 9.5rem;
}

@media (min-width: 768px) {
  .menu__txt {
    height: max(340px, 45rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0 0 0 6rem;
}

.menu__txt-wrapper h3 span {
  display: block;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 3rem;
  }

  .menu__txt-wrapper h3 span {
    margin: 0 0 0 3rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .menu__txt-wrapper p {
    padding-top: 4rem;
  }
}

.menu__name {
  background-color: rgba(0, 0, 0, 0.6);
  width: max(180px, 25rem);
  height: max(140px, 20rem);
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (min-width: 768px) {
  .menu__name {
    margin-top: 21rem;
  }

  .menu__list-item:first-of-type .menu__name {
    margin-top: 26rem;
  }
}

.menu__name h4 {
  font-size: max(16px, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.menu__name h4 span {
  font-size: max(10px, 1.2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.menu__name h4 span::before {
  content: "";
  display: block;
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: max(150px, 21.4rem);
  height: max(7px, 1rem);
}

/*============================
	gallery
============================*/
.gallery {
  padding: 7rem 0 12rem;
}

.gallery__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .gallery__inner {
    width: 90%;
  }
}

.gallery__slider {
  height: 20rem;
  margin: 6.5rem 0 5.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  padding: 8rem 0 11.5rem;
}

.access__inner {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem 13rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .access__inner {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.access__list-wrapper {
  width: 52rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__list-wrapper {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .access .common__ttl {
    width: max-content;
    margin: 0 0 8rem 10.5rem;
  }
}

.access__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: 8rem 0 5rem;
}

@media (max-width: 767px) {
  .access__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 5rem 0;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 0;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
  color: var(--brown);
}

.access__list dd {
  width: calc(100% - max(75px, 13rem));
  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 {
    width: 100%;
  }

  .access__list dt {
    padding: 2rem 1.6rem 1rem;
  }

  .access__list dd {
    padding: 0 1.6rem 2rem;
  }
}

.access__txt-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7rem;
}

@media (max-width: 767px) {
  .access__txt-wrapper {
    flex-direction: column-reverse;
    row-gap: 4rem;
  }
}

@media (min-width: 768px) {
  .access__txt {
    height: max(340px, 45rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.access__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  letter-spacing: 0.1em;
  line-height: 2;
  margin-left: 6rem;
}

.access__txt-wrapper h3 span {
  display: block;
  margin-top: 3rem;
}

@media (max-width: 767px) {
  .access__txt-wrapper h3 {
    margin: 0 0 3rem;
  }

  .access__txt-wrapper h3 span {
    margin: 0 0 3rem;
  }
}

.access__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .access__txt-wrapper p {
    padding-top: 4rem;
  }
}

.access__img {
  display: block;
  width: 49rem;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	insta
============================*/
.insta {
  padding: 15rem 0;
}

.insta__contents {
  width: 84.4rem;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .insta__contents {
    width: 90%;
  }
}

.CMS-INSTAGRAM-LIST {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}

.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;
  }
}

/*============================
	parallax
============================*/
.parallax {
  width: 100%;
  height: 45rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  position: relative;
}

@media screen and (max-width: 767px) {
  .parallax {
    height: 40rem;
  }
}

.parallax::before {
  content: "";
  background: url("../img/parallax_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
