@charset "UTF-8";

/*============================
	common
============================*/
.common__ttl {
  font-size: max(21px, 3.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.common__ttl span {
  font-size: max(14px, 2rem);
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.common__btn {
  width: max-content;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.common__btn a {
  width: 100%;
  height: 100%;
  border-bottom: solid 1px var(--brown);
  font-size: max(12px, 1.8rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.5rem;
  padding: 0 4px 1.5rem 1.5rem;
  position: relative;
}

.menu .common__btn a {
  gap: 2rem;
}

.common__btn a::after {
  content: "";
  display: block;
  background: url("../img/btn_arw.png") no-repeat center / contain;
  width: max(13px, 1.8rem);
  height: max(17.5px, 2.5rem);
}

.common__btn--insta a::before {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(18px, 2.6rem);
  height: max(18px, 2.6rem);
}

/*============================
	header
============================*/
@media (min-width: 768px) {
  .header.top {
    width: 34rem;
    height: max(76.5rem, 100vh);
    padding-top: 6rem;
  }

  .header.top .header__logo {
    margin: 0 auto 10rem;
    position: static;
  }

  .header.top .header__contents {
    flex-direction: column;
    position: static;
  }

  .header.top .header__nav-list {
    flex-direction: column;
    padding-left: 4rem;
  }

  .header__nav-list li::before {
    width: 11rem;
    height: 1px;
    transform: translate(-100%, -50%);
    top: 50%;
    left: -1rem;
  }
}

/*============================
	hero
============================*/
.hero {
  width: 100%;
  height: max(76.5rem, 100vh);
  padding-left: 34rem;
  position: relative;
}

@media (max-width: 767px) {
  .hero {
    height: max(300px, 44rem);
    padding-left: 15%;
  }
}

.hero__ttl {
  width: max-content;
  height: max-content;
  font-size: 17.7rem;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: upright;
  opacity: 0.06;
  position: absolute;
  top: 0;
  left: -4rem;
}

@media (max-width: 767px) {
  .hero__ttl {
    font-size: 12rem;
    top: max(60px, 8rem);
    left: -2.5rem;
  }
}

.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(14px, 2rem);
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: -4rem;
  z-index: 10;
}

@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}

.hero__scroll::after {
  content: "";
  display: block;
  background-color: var(--red);
  width: 1px;
  height: max(32px, 5rem);
  animation: scroll 2.5s infinite;
}

/*============================
	news
============================*/
.news {
  padding: 16rem 0 15.5rem;
}

.news__inner {
  width: 110rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem 8rem;
  margin: 0 auto;
}

@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: 8.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .news .common__btn {
    margin: 0;
  }

  .news .common__btn.sp {
    display: none;
  }
}

.CMS-NEWS-INDEX {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 3.2rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-INDEX {
    grid-template-columns: 1fr;
  }
}

.CMS-NEWS-LINK-CONTENT {
  display: block;
}

.CMS-NEWS-THUMBNAIL {
  width: 100%;
  height: 15rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 767px) {
  .CMS-NEWS-THUMBNAIL {
    height: 36rem;
  }
}

.CMS-NEWS-TIME {
  font-weight: 900;
  color: #695005;
  margin-bottom: 1rem;
}

.CMS-NEWS-MORE-READ {
  display: none;
}

/*============================
	policy
============================*/
.policy {
  padding-bottom: 16.5rem;
  position: relative;
}

.policy__contents {
  width: 110rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 8rem 6rem;
  margin: 0 auto 3rem;
}

@media (max-width: 767px) {
  .policy__contents {
    width: 90%;
    flex-direction: column-reverse;
  }
}

.policy__txt-wrapper {
  width: 100%;
}

.policy__txt-wrapper h2 {
  font-size: max(16px, 2.5rem);
  font-weight: 400;
  margin-bottom: 4.5rem;
}

.policy__txt-wrapper h2 strong {
  font-size: max(21px, 3.4rem);
  font-weight: 700;
}

.policy__txt-wrapper h2 strong:nth-of-type(1) {
  color: var(--red);
}

.policy__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2.5;
}

@media (min-width: 768px) {
  .policy__txt-wrapper p {
    width: 100%;
    height: max(320px, 39rem);
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
}

.policy__img {
  width: 66.5rem;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}

@media (max-width: 767px) {
  .policy__img {
    width: 100%;
  }
}

.policy__img figcaption {
  width: max-content;
  height: max-content;
  font-size: 17.7rem;
  font-weight: 400;
  line-height: 1;
  opacity: 0.06;
  position: absolute;
  transform: translate(-50%, 100%);
  left: 60%;
  bottom: 5.5rem;
  pointer-events: none;
}

@media (max-width: 767px) {
  .policy__img figcaption {
    font-size: 12rem;
    left: 50%;
  }
}

/*============================
	menu
============================*/
.menu {
  background-color: var(--gray);
  padding: 12.5rem 0 9rem;
}

.menu__inner {
  width: 110rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .menu__inner {
    width: 90%;
  }
}

.menu__contents {
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .menu__contents {
    flex-direction: column;
  }
}

.menu__ttl {
  font-size: max(18px, 3rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media (min-width: 768px) {
  .menu__ttl {
    writing-mode: vertical-rl;
    text-orientation: upright;
    order: 2;
    margin: 0 4rem 0 3rem;
  }
}

.menu__ttl span {
  display: block;
}

.menu__ttl span:nth-of-type(2) {
  margin-bottom: -8.5rem;
}

@media (max-width: 767px) {
  .menu__ttl span:nth-of-type(2) {
    margin: 0 -8rem 0 0;
  }
}

.menu__ttl strong {
  font-size: max(24px, 4.1rem);
  font-weight: 700;
}

.menu__ttl strong:first-of-type {
  color: var(--red);
}

.menu__food {
  width: 47rem;
  order: 1;
}

.menu__course {
  width: 44.5rem;
  order: 3;
  position: relative;
}

@media (max-width: 767px) {
  .menu__food,
  .menu__course {
    width: 100%;
  }

  .menu__food {
    margin: 6rem 0 8rem;
  }
}

.menu__txt-wrapper {
  width: 100%;
}

.food__ttl {
  font-size: max(24px, 5.4rem);
  font-weight: 700;
  opacity: 0.06;
  margin: 6rem 0 1.5rem;
}

.course__ttl {
  width: max-content;
  font-size: 17.7rem;
  font-weight: 400;
  line-height: 1;
  text-transform: capitalize;
  opacity: 0.06;
  margin-bottom: -5rem;
  position: relative;
  z-index: 1;
}

.menu__txt-wrapper p {
  letter-spacing: 0.05em;
  line-height: 2;
}

.menu__course .menu__txt-wrapper > p {
  margin: 3rem 0;
}

.menu__txt-wrapper p a {
  text-decoration: underline;
}

.food__img {
  width: 60rem;
  margin-left: calc(50% - 50vw);
  margin-left: -17rem;
  margin-right: 4rem;
}

.course__img {
  width: 40rem;
  margin-left: auto;
}

@media (max-width: 767px) {
  .food__img,
  .course__img {
    width: 100%;
    margin: 0;
  }
}

.course__reserve {
  background-color: var(--black);
  width: 100%;
  border: solid 1px var(--white);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2rem 2rem;
}

.course__reserve p span {
  display: block;
  font-size: max(10px, 1.2rem);
  letter-spacing: 0.1em;
}

.menu__btn-wrapper {
  width: max-content;
  display: flex;
  gap: 6rem 9rem;
  margin: 4.5rem 0 0 auto;
}

@media (max-width: 767px) {
  .menu__btn-wrapper {
    flex-direction: column;
    margin: 6rem auto 0;
  }
}

/*============================
	gallery
============================*/
.gallery {
  background: var(--bg-2);
  padding: 12rem 0 7rem;
}

.gallery__ttl-wrapper {
  width: 110rem;
  display: flex;
  align-items: flex-start;
  gap: 4rem 16.5rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .gallery__ttl-wrapper {
    width: 90%;
    flex-direction: column;
    align-items: center;
  }
}

.gallery__ttl {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.gallery__txt {
  width: max-content;
  font-size: max(18px, 3.3rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.gallery__txt:nth-of-type(1) {
  align-items: flex-end;
}

.gallery__txt span {
  font-size: max(14px, 2rem);
  font-weight: 400;
  color: var(--red);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery__icon {
  width: max(30px, 4.5rem);
  height: max(30px, 4.5rem);
  transform: rotate(45deg);
  position: relative;
}

.gallery__icon::before,
.gallery__icon::after {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: 1px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  pointer-events: none;
}

.gallery__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery__txt-wrapper p {
  letter-spacing: 0.1em;
  line-height: 2;
  padding-right: 10rem;
  margin-bottom: 3.5rem;
}

@media (max-width: 767px) {
  .gallery__txt-wrapper p {
    padding: 0;
  }
}

.gallery .common__btn {
  margin: 0 0 0 auto;
}

.gallery__slider-wrapper {
  height: 55.4rem;
  margin-top: 7rem;
}

.gallery__slider {
  width: 100%;
}

.gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.gallery__slider .swiper-slide {
  width: 31.5rem;
  height: 27.7rem;
}

/*============================
	access
============================*/
.access {
  padding: 10rem 0 9rem;
}

.access__contents {
  width: 110rem;
  display: flex;
  gap: 2rem 9rem;
  padding-left: 3rem;
  margin: 8rem auto 0;
}

@media (max-width: 767px) {
  .access__contents {
    width: 90%;
    flex-direction: column;
    padding: 0;
  }
}

.access__img-wrapper {
  width: 46rem;
  height: 100%;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .access__img-wrapper {
    width: 100%;
  }
}

.access .common__ttl {
  margin: 0 0 5.5rem 3rem;
}

.access__img {
  width: 100%;
}

@media (min-width: 768px) {
  .access__txt-wrapper {
    margin-right: -6.5rem;
  }
}

.access__list {
  display: flex;
  flex-wrap: wrap;
  margin: 5rem 0 7rem;
}

@media (max-width: 767px) {
  .access__list {
    margin: 0 0 7rem;
  }
}

.access__list dt,
.access__list dd {
  letter-spacing: 0.05em;
  padding: 2.7rem 1.6rem;
}

.access__list dt {
  width: max(75px, 14.5rem);
  font-weight: 400;
}

.access__list dd {
  width: calc(100% - max(75px, 14.5rem));
  border-bottom: solid 1px #f8e8f0;
}

@media (min-width: 768px) {
  .access__list dt {
    border-bottom: solid 1px #f8e8f0;
  }
}

@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 .common__btn {
  margin: 0 0 0 auto;
}

.access__reserve {
  width: 81.5rem;
  border: solid 1px var(--white);
  padding: 4.5rem 4rem 3.5rem;
  margin: 7rem auto 0;
  position: relative;
}

@media (max-width: 767px) {
  .access__reserve {
    width: 90%;
  }
}

.access__reserve h3 {
  font-size: max(24px, 4.6rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.1;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.access__tel {
  font-size: max(24px, 3.7rem);
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.access__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(24px, 3.6rem);
  height: max(24px, 3.6rem);
}

.access__reserve p {
  font-size: max(12px, 1.4rem);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}

.top__map {
  height: 37.2rem;
}
