@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(20px, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}

.common__ttl--wt {
  color: var(--white);
}

.common__ttl span {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta .common__ttl span {
  text-transform: capitalize;
}

.common__ttl::before {
  content: "";
  display: block;
  background: url("../img/ttl_deco.png") no-repeat center / contain;
  width: max(36px, 5.6rem);
  height: max(11px, 1.7rem);
}

.common__ttl--wt::before {
  background: url("../img/ttl_deco-wt.png") no-repeat center / contain;
}

.common__btn {
  width: max(185px, 20.3rem);
  height: max(40px, 4.4rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  background: url("../img/btn_bg.png") no-repeat center / contain;
  width: 100%;
  height: 100%;
  font-weight: 500;
  color: var(--red);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.common__btn--wt a {
  background: url("../img/btn_bg-wt.png") no-repeat center / contain;
  color: var(--white);
}

/*============================
	header
============================*/
.header.top {
  height: max(88rem, 100vh);
}

@media (min-width: 768px) {
  .header.top {
    width: 34rem;
    padding-top: 10rem;
  }

  .header.top .header__logo {
    margin: 0 auto 11rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 900px) {
  .header.top {
    height: max(95rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header.top {
    height: auto;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(88rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 900px) {
  .hero {
    height: max(95rem, 100vh);
  }
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding: 0;
  }
}

.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;
}

.hero .swiper-pagination {
  width: max-content !important;
  display: flex;
  column-gap: 14px;
  transform: translate(-50%, 100%) !important;
  left: 50% !important;
  bottom: -2.5rem !important;
  z-index: 10;
}

.hero .swiper-pagination-bullet {
  background-color: var(--white);
  width: 9px !important;
  height: 9px !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 !important;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.hero .swiper-pagination-bullet-active {
  background-color: var(--red);
}

/*============================
	policy
============================*/
.policy {
  color: var(--white);
  padding: 16rem 0;
}

.policy__inner {
  width: 110rem;
  display: flex;
  flex-direction: column-reverse;
  row-gap: 8rem;
  margin: 0 auto 8rem;
}

@media (max-width: 767px) {
  .policy__inner {
    width: 90%;
    row-gap: 4rem;
  }
}

.policy__contents {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .policy__contents {
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
  position: relative;
}

@media (min-width: 768px) {
  .policy__txt-wrapper {
    height: max(330px, 33rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
    padding-right: 9rem;
  }
}

.policy__txt-wrapper::before {
  content: "";
  background: url("../img/policy_deco.png") no-repeat center / contain;
  width: 20.8rem;
  height: 27.4rem;
  position: absolute;
  right: -9.5rem;
  bottom: -13.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__txt-wrapper::before {
    width: 16rem;
    height: 21.1rem;
    right: -5rem;
    bottom: -20rem;
  }
}

.policy__txt-wrapper h2 {
  border-left: solid 1px var(--white);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
  padding-left: 4rem;
  margin-left: 4rem;
}

@media (max-width: 767px) {
  .policy__txt-wrapper h2 {
    border-left: none;
    border-bottom: solid 1px var(--white);
    padding: 0 0 3rem;
    margin: 0 0 3rem;
  }
}

.policy__txt-wrapper p {
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.5;
}

.policy__img-1 {
  width: 36rem;
  height: 100%;
  flex-shrink: 0;
}

.policy__img-2 {
  width: 100%;
}

@media (max-width: 767px) {
  .policy__img-1 {
    width: 100%;
  }
}

/*============================
	menu
============================*/
.menu {
  background: var(--bg-2);
  padding: 12rem 0;
}

.menu__list {
  width: 110rem;
  display: flex;
  flex-direction: column;
  row-gap: 10.5rem;
  margin: 9rem auto 13rem;
}

@media (max-width: 767px) {
  .menu__list {
    width: 90%;
  }
}

.menu__list-item {
  display: flex;
  gap: 4rem;
}

.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__txt-wrapper {
  width: 100%;
}

.menu__txt-wrapper h3 {
  width: max(215px, 36rem);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .menu__txt-wrapper h3 {
    margin: 0 0 4rem;
  }
}

.menu__txt-wrapper h3 span {
  display: block;
  background: url("../img/menu_ttl-bg.png") no-repeat center / cover;
  width: max(100px, 17.8rem);
  height: max(100px, 17.8rem);
  font-size: max(16px, 2.6rem);
  color: #ac854f;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 3.5rem;
}

.menu__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.25;
}

.menu__lunch {
  width: 110rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 5.5rem;
  margin: 0 auto 9rem;
}

@media (max-width: 767px) {
  .menu__lunch {
    width: 90%;
    grid-template-columns: 1fr;
  }
}

.menu__lunch-txt-wrapper {
  width: 100%;
}

@media (min-width: 768px) {
  .menu__lunch-txt-wrapper {
    padding-right: 4rem;
  }
}

.menu__lunch-txt-wrapper h3 {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 3.5rem 0 2rem;
}

.menu__lunch-txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.25;
}

.menu__img {
  width: 64rem;
  height: 100%;
  flex-shrink: 0;
}

.menu__lunch .menu__img {
  width: 100%;
  height: auto;
  position: relative;
}

@media (max-width: 767px) {
  .menu__img {
    width: 100%;
  }
}

.menu__lunch .menu__img p {
  background: url("../img/menu_lunch-ttl-bg.png") no-repeat center / contain;
  width: max(50px, 7rem);
  height: max(132px, 18.5rem);
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -1.8rem;
  right: 3rem;
}

.menu__lunch li:nth-of-type(2) .menu__img p {
  background: url("../img/menu_lunch-ttl-bg-red.png") no-repeat center / contain;
}

/*============================
	gallery
============================*/
.gallery {
  padding: 10.5rem 0 13rem;
  position: relative;
}

.gallery::before,
.gallery::after {
  content: "";
  background: url("../img/gallery_deco.png") no-repeat center / contain;
  width: 31.4rem;
  height: 10.2rem;
  position: absolute;
  top: 8rem;
  right: 11rem;
  pointer-events: none;
}

.gallery::after {
  transform: scale(-1, 1);
  top: auto;
  right: auto;
  left: 11rem;
  bottom: 7.5rem;
}

@media (max-width: 767px) {
  .gallery::before,
  .gallery::after {
    width: 24rem;
    height: 7.8rem;
    right: 3rem;
  }

  .gallery::after {
    right: auto;
    left: 2rem;
    bottom: 5rem;
  }
}

.gallery__slider {
  height: 20rem;
  margin: 6.5rem 0 9.5rem;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 28rem;
  margin: 0 0.5rem;
}

/*============================
	access
============================*/
.access {
  background: var(--bg-2);
  padding: 12.5rem 0 13.5rem;
  position: relative;
}

.access::before {
  content: "";
  background: url("../img/access_deco.png") no-repeat center / contain;
  width: 33.2rem;
  height: 24.6rem;
  position: absolute;
  top: 1.7rem;
  right: 4.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .access::before {
    width: 25rem;
    height: 18.5rem;
    right: 1rem;
  }
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 8.5rem;
  margin: 10rem auto 6.5rem;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
  }
}

.access__img {
  width: 47rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img {
    width: 100%;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .access__list {
    margin-top: -2.5rem;
  }
}

.access__list dt,
.access__list dd {
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 10rem);
  font-weight: 700;
}

.access__list dd {
  width: calc(100% - max(75px, 10rem));
}

.access__list dd:not(:last-of-type) {
  border-bottom: solid 1px var(--black);
}

@media (min-width: 768px) {
  .access__list dt:not(:last-of-type) {
    border-bottom: solid 1px var(--black);
  }
}

@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;
  }
}

.top__map {
  height: 37.2rem;
}

/*============================
	news
============================*/
.news {
  color: var(--white);
  padding: 12rem 0 14rem;
}

.CMS-NEWS-INDEX {
  width: 77rem;
  height: auto;
  margin: 5rem auto 8.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    width: 90%;
  }
}

.CMS-NEWS-ITEM:not(:last-of-type) {
  border-bottom: solid 1px var(--white);
}

.CMS-NEWS-LINK-CONTENT {
  display: flex;
  gap: 1rem 7.5rem;
  padding: 3.4rem 2.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-LINK-CONTENT {
    flex-direction: column;
  }
}

.CMS-NEWS-LINK,
.CMS-NEWS-TIME {
  font-weight: 300;
}

.CMS-NEWS-TIME {
  font-size: max(12px, 1.4rem);
  flex-shrink: 0;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	insta
============================*/
.insta {
  background: var(--bg-2);
  padding: 10.5rem 0 18rem;
}

.insta__contents {
  width: 87rem;
  margin: 8rem 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;
  }
}
