@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  display: block;
  width: 25.7rem;
  font-family: var(--font-en);
  font-size: max(28px, 5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  margin: -4rem auto;
}

.policy .common__ttl {
  width: 30.6rem;
}

.menu .common__ttl {
  width: 26.7rem;
}

.gallery .common__ttl {
  width: 36.4rem;
}

.access .common__ttl {
  width: 30.6rem;
}

.insta .common__ttl {
  width: 40.3rem;
}

.store .common__ttl {
  width: 68rem;
}

.common__btn {
  width: max(147px, 18.9rem);
  height: max(42px, 5.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__video {
  background: var(--grad-3);
  width: 110rem;
  padding: max(3px, 0.5rem);
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .common__video {
    width: 90%;
  }
}

.common__video::before {
  content: "";
  display: block;
  background: var(--grad-3);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  opacity: 0.5;
  filter: blur(5px);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.coomon__line {
  background: var(--grad);
  width: 100%;
  height: max(10px, 2rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@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;
}

@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 {
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: absolute;
  left: 6rem;
  bottom: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--white);
  width: 2px;
  height: max(40px, 7.6rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 11.5rem 0 13rem;
  position: relative;
  z-index: 1;
}

.news::before,
.news::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.news::before {
  background: url("../img/news_deco-1.png") no-repeat center / contain;
  width: 38rem;
  height: 89rem;
  left: 0;
  bottom: -35rem;
}

.news::after {
  background: url("../img/news_deco-2.png") no-repeat center / contain;
  width: 22.8rem;
  height: 18.2rem;
  right: 6rem;
  bottom: -6rem;
}

@media (max-width: 767px) {
  .news::before {
    width: 30rem;
    height: 70.2rem;
    bottom: -25rem;
  }

  .news::after {
    width: 17rem;
    height: 13.5rem;
    right: -2rem;
  }
}

.news__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 16rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .news__inner {
    width: 90%;
    flex-direction: column;
  }
}

.news__ttl-wrapper {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 7.5rem;
  flex-shrink: 0;
}

.news__ttl-wrapper .common__ttl {
  margin: -4rem;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
}

.CMS-NEWS-ITEM {
  border-top: solid 1px var(--white);
  padding: 2.3rem 0;
  position: relative;
}

.CMS-NEWS-ITEM::after {
  content: "";
  background: url("../img/news_arw.png") no-repeat center / contain;
  width: max(7px, 0.95rem);
  height: max(11px, 1.5rem);
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 3rem;
  pointer-events: none;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .CMS-NEWS-ITEM:hover::after {
    right: 2rem;
  }
}

.CMS-NEWS-ITEM:last-of-type {
  border-bottom: solid 1px var(--white);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    display: block;
  }
}

.CMS-NEWS-LINK {
  max-width: 45rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .CMS-NEWS-LINK {
    max-width: 36rem;
  }
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK {
    max-width: 90%;
  }
}

.CMS-NEWS-TIME {
  width: max(120px, 17rem);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .CMS-NEWS-TIME {
    margin-bottom: 1rem;
  }
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: url("../img/policy_bg.jpg") no-repeat center / cover;
  padding: 9.5rem 0 11rem;
  position: relative;
}

.policy::before,
.policy::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.policy::before {
  background: url("../img/policy_deco-1.png") no-repeat center / contain;
  width: 21.6rem;
  height: 21.4rem;
  left: 6rem;
  bottom: 28.5rem;
}

.policy::after {
  background: url("../img/policy_deco-2.png") no-repeat center / contain;
  width: 40.5rem;
  height: 56.2rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .policy::before {
    width: 17rem;
    height: 16.8rem;
    left: -2rem;
    bottom: 3rem;
  }

  .policy::after {
    width: 28rem;
    height: 38.8rem;
  }
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 11rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 100%;
  }
}

.policy__txt-wrapper {
  width: 90%;
  max-width: 78rem;
  text-align: center;
  margin: 0 auto;
}

.policy__txt-wrapper h3 {
  font-size: max(16px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 5.5rem;
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 3rem 0 5rem;
}

/*============================
	menu
============================*/
.menu {
  padding: 15rem 0 12.5rem;
}

.menu .common__video {
  margin: 10rem auto 13rem;
}

.menu__course {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 3.5rem 5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__course {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.menu__list {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9.5rem 5.5rem;
  margin: 9.5rem auto 9rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    grid-template-columns: 1fr;
    margin: 20rem auto 9rem;
  }
}

.menu__list::before {
  content: "";
  background: url("../img/menu_deco-3.png") no-repeat center / contain;
  width: 18rem;
  height: 22.2rem;
  position: absolute;
  left: calc(50% - 50vw - 4rem);
  bottom: -20rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list::before {
    width: 15rem;
    height: 18.5rem;
  }
}

.menu__list-item {
  display: flex;
  flex-direction: column;
  row-gap: 3.5rem;
  position: relative;
}

.menu__list-item:nth-of-type(2):before {
  content: "";
  background: url("../img/menu_deco-2.png") no-repeat center / contain;
  width: 20.2rem;
  height: 22.4rem;
  position: absolute;
  top: 16rem;
  right: -11rem;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 767px) {
  .menu__list-item:nth-of-type(2):before {
    width: 17rem;
    height: 18.8rem;
    top: 28rem;
    right: -4rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: 100%;
    padding-right: 5rem;
  }

  .menu__course .menu__txt-wrapper {
    padding-top: 1rem;
    margin-bottom: 18rem;
  }
}

.menu__course .menu__txt-wrapper ::before {
  content: "";
  background: url("../img/menu_deco-1.png") no-repeat center / contain;
  width: 40.2rem;
  height: 25.5rem;
  position: absolute;
  transform: translateY(100%);
  bottom: 1rem;
  right: -5.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu__course .menu__txt-wrapper ::before {
    width: 30rem;
    height: 19rem;
  }
}

.menu__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__img {
  width: 100%;
  flex-shrink: 0;
  position: relative;
}

.menu__course .menu__img {
  width: 70rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .menu__img,
  .menu__course .menu__img {
    width: 100%;
    margin: 0;
  }
}

.menu__img figcaption {
  display: block;
  width: 38.5rem;
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  pointer-events: none;
}

.menu__list-item .menu__img figcaption {
  width: 28.6rem;
  right: auto;
  left: -3rem;
  bottom: -3rem;
}

.menu__list-item:nth-of-type(2) .menu__img figcaption {
  width: 31rem;
}

.menu__takeout {
  background: var(--grad-3);
  width: 110rem;
  padding: max(2px, 0.4rem);
  margin: 0 auto 11.5rem;
}

@media (max-width: 767px) {
  .menu__takeout {
    width: 90%;
  }
}

.menu__takeout-inner {
  background-color: var(--black);
  display: flex;
  gap: 2rem 8.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .menu__takeout-inner {
    flex-direction: column-reverse;
  }
}

.menu__takeout-inner::before {
  content: "";
  display: block;
  background: var(--grad-3);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  opacity: 0.5;
  filter: blur(5px);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: -1;
}

.takeout__txt-wrapper {
  width: 100%;
  padding: 5.5rem 0 5rem 4.5rem;
}

@media (max-width: 767px) {
  .takeout__txt-wrapper {
    padding: 4rem 5rem 5rem;
  }
}

.takeout__txt-wrapper h3 {
  display: block;
  width: 43.6rem;
  margin: -4rem;
}

.takeout__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 4rem;
}

.takeout__img {
  display: block;
  width: 52.3rem;
  height: 100%;
  flex-shrink: 0;
  margin: -3rem -3rem -2rem 0;
}

@media (max-width: 767px) {
  .takeout__img {
    width: 90%;
    margin: 4rem auto 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 11.5rem 0 15rem;
  position: relative;
}

.gallery::before {
  content: "";
  background-color: var(--black);
  opacity: 0.5;
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gallery .common__video {
  margin-top: 10rem;
}

.gallery__slider {
  height: 26rem;
  margin: 11rem 0 8.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 35.6rem;
}

/*============================
	access
============================*/
.access {
  padding: 12rem 0 18.5rem;
  position: relative;
}

.access::before,
.access::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.access::before {
  background: url("../img/access_deco-1.png") no-repeat center / contain;
  width: 34rem;
  height: 46rem;
  top: 0;
  left: 0;
}

.access::after {
  background: url("../img/access_deco-2.png") no-repeat center / contain;
  width: 41rem;
  height: 61rem;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .access::before {
    width: 30rem;
    height: 40.5rem;
  }

  .access::after {
    width: 32rem;
    height: 47.6rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem 10rem;
  margin: 11rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__contents::before {
  content: "";
  background: url("../img/access_deco-3.png") no-repeat center / contain;
  width: 41.9rem;
  height: 22.5rem;
  position: absolute;
  transform: translateY(-100%);
  top: -3.5rem;
  right: -12.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access__contents::before {
    width: 32rem;
    height: 17.2rem;
    top: -13rem;
    right: -10rem;
  }
}

.access__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  margin-right: calc(50% - 50vw);
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
    margin: 0;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: -2.5rem 0 4rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.5rem 1.6rem;
}

.access__list dt {
  width: max(75px, 11rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 11rem));
}

.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;
  }
}

.access__btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .access__btn-wrapper {
    flex-direction: column;
    gap: 6rem;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.access__sns {
  display: flex;
  align-items: center;
  gap: 3.5rem;
}

.access__sns li {
  display: block;
  width: max(28px, 5.2rem);
}

.top__map {
  height: 42rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 11rem 0 15.5rem;
}

.insta__contents {
  width: 88.7rem;
  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: 2.4rem 2.9rem;
}

.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: 27.6rem;
  height: 27.6rem;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .CMS-INSTAGRAM-LIST img {
    width: 100%;
    height: auto;
  }
}

/*============================
	store
============================*/
.store {
  padding: 9.5rem 0 7rem;
}

.store__txt-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.store__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
  margin: 5rem 0;
}
