@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  width: max-content;
  font-family: var(--font-mincho);
  font-size: max(24px, 4rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  padding-left: 6rem;
  margin: 0 auto;
  position: relative;
}

.common__ttl span {
  font-family: var(--font-en);
  font-size: max(12px, 1.8rem);
  font-weight: 400;
  color: #bebebe;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(70px, 10.7rem);
  height: max(74.5px, 11.4rem);
  opacity: 0.2;
  position: absolute;
  left: 0;
  bottom: 0;
}

.common__btn {
  width: max(280px, 41rem);
  height: max(48px, 7rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.menu .common__btn {
  width: max(294px, 43rem);
  height: max(48px, 7rem);
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-family: var(--font-mincho);
  font-size: max(12px, 1.8rem);
  color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: max(30px, 6rem);
  position: relative;
}

.menu .common__btn a {
  background: url("../img/btn_bg-menu.png") no-repeat center / contain;
  padding-right: max(35px, 7rem);
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(90rem, 100vh);
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
  }
}

.hero::before {
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
  width: 100%;
  height: 23rem;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.hero__ttl {
  height: max-content;
  font-family: var(--font-mincho);
  font-size: max(24px, 4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  filter: drop-shadow(0 0 0.7rem rgba(0, 0, 0, 0.75));
  position: absolute;
  transform: translate(-50%, -50%);
  top: 55%;
  left: 50%;
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: max(20px, 3.2rem);
  }
}

.hero__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero__slider::before {
  content: "";
  background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(0, 0, 0, 1));
  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;
}

.hero__scroll {
  width: max(36px, 4.8rem);
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: calc(max(30px, 3.5rem) * -1);
  z-index: 3;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

/*============================
	message
============================*/
.message {
  background-color: var(--white);
  color: var(--black);
  padding: 16rem 0 10rem;
}

.message__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .message__contents {
    width: 90%;
    flex-direction: column-reverse;
    row-gap: 8rem;
  }
}

.message__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .message__txt-wrapper {
    height: max(400px, 40rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.message__txt-wrapper::before {
  content: "";
  background: url("../img/message_deco.png") no-repeat center / contain;
  width: 29.8rem;
  height: 29.8rem;
  position: absolute;
  right: -13.5rem;
  bottom: -12.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .message__txt-wrapper::before {
    right: -10rem;
    bottom: -10rem;
  }
}

.message__txt-wrapper h2 {
  font-family: var(--font-mincho);
  font-size: max(24px, 4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: -6.5rem;
  margin-left: 4rem;
  filter: drop-shadow(0 0 0.7rem rgba(0, 0, 0, 0.75));
}

@media (max-width: 767px) {
  .message__txt-wrapper h2 {
    margin: 0 0 3rem;
  }
}

.message__txt-wrapper p {
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2;
}

.message__img {
  width: 84rem;
  height: 100%;
  flex-shrink: 0;
  margin-left: calc(50% - 50vw);
  position: relative;
}

@media (max-width: 767px) {
  .message__img {
    width: 100%;
    margin: 0;
  }
}

.message__img img:nth-of-type(2) {
  width: 50.8rem;
  height: auto;
  position: absolute;
  left: 6rem;
  bottom: -6rem;
}

@media (max-width: 767px) {
  .message__img img:nth-of-type(2) {
    width: max(210px, 40rem);
    left: 2rem;
  }
}

/*============================
	news
============================*/
.news {
  background: url("../img/news_bg.jpg") no-repeat center / cover;
  padding: 16rem 0 8rem;
}

.CMS-NEWS-INDEX {
  width: 110rem;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 7rem;
  margin: 6.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: 20rem;
  margin-bottom: 1rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  line-height: 2;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  background: var(--bg-1);
  border-top: solid max(4px, 0.8rem) var(--green);
  border-bottom: solid max(4px, 0.8rem) var(--green);
  padding: 13.5rem 0 9rem;
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  margin: 3rem auto 0;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  padding: 5rem 5rem 6rem;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(500px, 50.5rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 5rem 4.5rem 4rem 0;
    margin: 6rem -5rem 0 0;
  }
}

.policy__txt-wrapper h3 {
  font-size: max(16px, 2.6rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

@media (min-width: 768px) {
  .policy__txt-wrapper h3 {
    margin-top: -12rem;
  }
}

.policy__txt-wrapper h3 span {
  display: block;
  background-color: #cec7b7;
  width: max-content;
  height: max-content;
  padding: 1.5rem 1rem;
}

.policy__txt-wrapper h3 span:nth-of-type(2) {
  font-size: max(18px, 3rem);
}

@media (max-width: 767px) {
  .policy__txt-wrapper h3 span {
    padding: 1rem 1.5rem;
  }
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  margin: 0 4rem 0 5rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper p {
    margin: 4rem 0 5rem;
  }
}

.policy .common__btn {
  margin: 0;
}

@media (min-width: 768px) {
  .policy .common__btn {
    width: max(48px, 7rem);
    height: max(273px, 40rem);
  }

  .policy .common__btn a {
    background: url("../img/btn_bg-policy.png") no-repeat center / contain;
    padding: 0 0 5rem;
  }
}

.policy__deco {
  display: block;
  width: 32.7rem;
  position: absolute;
  right: -4.5rem;
  bottom: -9.5rem;
}

@media (max-width: 767px) {
  .policy__deco {
    width: 30rem;
    right: -2rem;
    bottom: -8rem;
  }
}

.policy__img {
  width: 50rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 15rem 0 13rem;
  position: relative;
}

.menu::before {
  content: "";
  background: url("../img/menu_deco.png") no-repeat center / contain;
  width: 35.8rem;
  height: 29rem;
  right: 1.6rem;
  bottom: 0;
  position: absolute;
  pointer-events: none;
}

@media (max-width: 767px) {
  .menu::before {
    width: 30rem;
    height: 24.3rem;
  }
}

.menu__txt {
  display: block;
  width: 18rem;
  position: absolute;
  top: 9rem;
  left: 1.5rem;
}

@media (max-width: 767px) {
  .menu__txt {
    width: 12rem;
    transform: rotate(-90deg);
    transform-origin: top right;
    top: 2rem;
    left: -10rem;
    z-index: 3;
  }
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
  margin: 12rem auto 7.5rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
    row-gap: 12rem;
  }
}

.menu__list-item {
  display: flex;
}

.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__food {
  background-color: rgba(0, 0, 0, 0.85);
  width: 118.5rem;
  padding: 5rem 5rem 4rem 7rem;
  margin: 23.5rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__food {
    width: 90%;
    padding: 5rem 5rem 6rem;
  }
}

.menu__food-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 4rem 5.5rem;
}

@media (max-width: 767px) {
  .menu__food-inner {
    flex-direction: column-reverse;
  }
}

.menu__food-ttl {
  display: block;
  width: 93.6rem;
  position: absolute;
  transform: translateX(-50%);
  top: -16rem;
  left: 50%;
}

@media (max-width: 767px) {
  .menu__food-ttl {
    width: 78rem;
    top: -14rem;
  }
}

.menu__takeout {
  width: 118.5rem;
  border: solid max(3px, 0.6rem) #959699;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 4rem 7rem;
  padding: 6rem 6.5rem 3rem 4rem;
  margin: 8rem auto 7rem;
  position: relative;
}

.menu__takeout.reverse {
  border: solid max(3px, 0.6rem) var(--black);
  flex-direction: row;
}

@media (max-width: 767px) {
  .menu__takeout,
  .menu__takeout.reverse {
    width: 90%;
    flex-direction: column-reverse;
    padding: 10rem 5rem 6rem;
  }
}

.menu__takeout-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: max(60px, 8rem);
}

@media (max-width: 767px) {
  .menu__takeout-inner {
    padding-bottom: 0;
  }
}

.menu__takeout-ttl {
  display: block;
  width: 67rem;
  position: absolute;
  top: 2rem;
  right: 0;
}

.menu__takeout.reverse .menu__takeout-ttl {
  width: 87.7rem;
  top: 1rem;
  left: 1rem;
  right: auto;
}

@media (max-width: 767px) {
  .menu__takeout.reverse .menu__takeout-ttl {
    width: 66rem;
    left: 0;
  }
}

.menu__txt-wrapper {
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  padding: 5rem 5rem 6rem;
}

.menu__food .menu__txt-wrapper {
  background-color: transparent;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}

.menu__takeout .menu__txt-wrapper {
  background-color: transparent;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .menu__txt-wrapper {
    height: max(500px, 50.5rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding: 5rem 5rem 4rem 0;
    margin: 6rem -5rem 0 -17.5rem;
  }

  .menu__list-item:nth-of-type(even) .menu__txt-wrapper {
    padding: 5rem 21.5rem 4rem 5rem;
    margin: 6rem -17.5rem 0 -5rem;
  }

  .menu__food .menu__txt-wrapper {
    height: max(400px, 40rem);
  }

  .menu__takeout .menu__txt-wrapper {
    height: max(350px, 35rem);
    margin-top: 2.5rem;
  }
}

.menu__txt-wrapper h3,
.menu__txt-wrapper h4 {
  font-size: max(18px, 3rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-left: 4rem;
}

.menu__takeout .menu__txt-wrapper h4 {
  font-size: max(12px, 1.8rem);
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3,
  .menu__txt-wrapper h4 {
    margin: 0 0 3rem;
  }
}

.menu__txt-wrapper h3 span,
.menu__txt-wrapper h4 span {
  display: block;
  background-color: #cec7b7;
  width: max-content;
  height: max-content;
  padding: 1.5rem 0.5rem;
}

.menu__txt-wrapper h3 span:nth-of-type(2) {
  padding: 1.5rem 1rem;
}

.menu__takeout .menu__txt-wrapper h4 span:nth-of-type(2) {
  font-size: max(14px, 2.1rem);
}

@media (max-width: 767px) {
  .menu__txt-wrapper h3 span,
  .menu__txt-wrapper h4 span {
    padding: 0.5rem 1.5rem;
  }

  .menu__txt-wrapper h3 span:nth-of-type(2) {
    padding: 1rem 1.5rem;
  }
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
}

.menu__food .menu__txt-wrapper p {
  margin-bottom: 6rem;
}

@media (max-width: 767px) {
  .menu__takeout .menu__txt-wrapper p {
    margin-bottom: 6rem;
  }
}

@media (min-width: 768px) {
  .menu__takeout .menu__txt-wrapper p {
    padding: 3rem 0;
  }

  .menu__food .common__btn {
    margin: 0;
  }

  .menu__takeout .common__btn {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .menu__takeout.reverse .common__btn {
    right: auto;
    left: 0;
  }
}

.menu__img {
  width: 62rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__img img:nth-of-type(2) {
  width: 60.4rem;
  height: auto;
  position: absolute;
  top: -8.5rem;
  left: -10rem;
}

.menu__list-item:nth-of-type(2) .menu__img img:nth-of-type(2) {
  width: 44.2rem;
  top: auto;
  left: auto;
  right: 6rem;
  bottom: -9.5rem;
}

@media (max-width: 767px) {
  .menu__img img:nth-of-type(2) {
    width: 55rem;
    left: -2rem;
  }

  .menu__list-item:nth-of-type(2) .menu__img img:nth-of-type(2) {
    width: 50rem;
    top: -10rem;
    left: -4rem;
    right: auto;
    bottom: auto;
  }
}

.food__img {
  display: block;
  width: 60.5rem;
  height: 100%;
  flex-shrink: 0;
  margin: 3.5rem 0 4.5rem;
}

@media (max-width: 767px) {
  .food__img {
    width: 100%;
    margin: 0;
  }
}

.takeout_img {
  display: block;
  width: 53rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .takeout_img {
    width: 100%;
  }
}

/*============================
	store
============================*/
.store {
  background-color: var(--white);
  padding: 8rem 0;
  position: relative;
}

.store::before {
  content: "";
  background: url("../img/store_deco.png") no-repeat center / contain;
  width: 27.4rem;
  height: 27.4rem;
  position: absolute;
  left: 1.5rem;
  bottom: -2.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .store::before {
    width: 20rem;
    height: 20rem;
  }
}

.store__contents {
  width: 90rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .store__contents {
    width: 90%;
  }
}

.store__contents a {
  background: url("../img/store_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0 7rem;
}

.store__contents h2 {
  font-size: max(16px, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1.5rem;
}

.store__contents h2 span {
  display: block;
  font-family: var(--font-en);
  font-size: max(32px, 6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-1);
  border-bottom: solid max(4px, 0.8rem) var(--green);
  padding: 21rem 0 15rem;
}

.gallery__slider {
  height: 25.6rem;
  margin: 8.5rem 0 6.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.1rem;
  margin: 0 0.6rem;
}

/*============================
	access
============================*/
.access {
  background: url("../img/access_bg.jpg") no-repeat center / cover;
  padding: 16.5rem 0 10.5rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 7.5rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 60rem;
  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 4.5rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 4.5rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 13rem);
  font-weight: 700;
}

.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;
  }
}

@media (min-width: 768px) {
  .access .common__btn {
    margin: 0;
  }
}

.top__map {
  height: 45rem;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-1);
  padding: 8.5rem 0 7.5rem;
}

.insta__contents {
  width: 87rem;
  margin: 0 auto;
  padding-top: 6rem;
}

  .insta .common__ttl{
  padding-left: 1rem;

}


@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;
  }
}

.facebook__contents {
  width: 70rem;
  margin: 6rem auto 0;
}

@media (max-width: 767px) {
  .facebook__contents {
    width: 90%;
  }
}

.facebook__contents a {
  background: url("../img/facebook_bg.jpg") no-repeat center / cover;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
}

.facebook__contents h2 {
  font-family: var(--font-en);
  font-size: max(32px, 6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.facebook__contents h2::before {
  content: "";
  display: block;
  background: url("../img/facebook.png") no-repeat center / contain;
  width: 6.5rem;
  height: 6.5rem;
}
