:root {
  --sub-color: #e7e6e0;
  --main-color: #220000;
  --mainfont: "Noto Sans JP", sans-serif;
  --subfont: "EB Garamond", serif;
}

/* mv */
.mv {
  position: relative;
  height: 100vh;
}

.mv::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, black, transparent, black);
  top: 0;
  left: 0;
  opacity: 0.45;
  z-index: 1;
}

.mv__inner {
  height: 100%;
}

.mv__slider {
  height: 100%;
}

.mv__slider .slick-list {
  height: 100%;
}

.mv__slider .slick-track {
  height: 100%;
}

.mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.mv__img {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

.mv__img img {
  aspect-ratio: 1440/800;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__img.slick-current img {
  animation: fadezoom 7s linear forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.mv-slider-dots {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  right: 3.375rem;
  bottom: -3rem;
  z-index: 1;
}

.mv-slider-dots li {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: 1px solid var(--blue);
}

.mv-slider-dots li.slick-active {
  background-color: var(--blue);
}

.mv-slider-dots button {
  display: none;
}

@media screen and (max-width: 1024px) {
  .mv {
    max-height: 800px;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    height: 400px;
    padding-top: 0;
  }
  .mv__inner {
    height: 100%;
  }
  .mv__slider {
    height: 100%;
  }
  .mv__slider .slick-list {
    height: 100%;
  }
  .mv__slider .slick-track {
    height: 100%;
  }
}

/* news */
.news {
  padding-block: 5.625rem;
}

.news__main {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.5);
  padding: 4rem 3.875rem;
}

.news__left {
  width: 12.5rem;
  flex-shrink: 0;
}

.news__title {
  width: 100%;
}

.news__btn a {
  width: 100%;
  height: 3.375rem;
  font-size: 1rem;
}

.news__btn a img {
  width: 2rem;
}

.news .CMS-NEWS-INDEX {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2rem;
  padding-bottom: 0;
}

.news .CMS-NEWS-ITEM {
  width: 100%;
  margin: 0;
}

.news .CMS-NEWS-LINK-CONTENT {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.news .CMS-NEWS-TIME {
  margin-top: 0;
  color: black;
  line-height: 1.5;
}

.news .CMS-NEWS-LINK {
  line-height: 1.5;
}

.news .CMS-NEWS-MORE-READ {
  display: none;
}

.news__btn {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .news__main {
    padding: 2rem 1rem;
    flex-direction: column;
    row-gap: 3rem;
  }
  .news__left {
    display: contents;
    width: 100%;
  }
  .news__title {
    width: 10rem;
  }
  .news .CMS-NEWS-INDEX {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
  .news__btn {
    order: 1;
    margin-top: 0;
  }
  .news__btn a {
    width: 20.375rem;
    height: 4.5rem;
    font-size: 0.875rem;
  }
}

/* policy */
.policy {
  background: url(../img/bg_policy.png) center center / cover no-repeat;
  padding-top: 11.25rem;
  padding-bottom: 4.875rem;
}

.policy__inner {
  position: relative;
}

.policy__title {
  position: absolute;
  width: 20.875rem;
  top: -1.75rem;
  right: calc(1.5rem + 25px);
  z-index: 1;
}

.policy__bigText {
  position: absolute;
  top: -4rem;
  left: calc(2.75rem + 25px);
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  width: fit-content;
  gap: 1rem;
  z-index: 1;
}

.policy__bigText span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 600;
  padding: 1rem;
  letter-spacing: 0.16em;
  color: #fff;
  text-shadow: 0 0 21px rgba(132, 57, 15, 1);
  position: relative;
}

.policy__bigText span::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: -0.5rem;
  width: 1px;
  height: 95%;
  background: #fff;
  box-shadow: 0 0 21px rgba(132, 57, 15, 1);
}

.policy__img {
  position: relative;
  display: block;
  width: 100%;
}

.policy__img::before {
  content: "";
  position: absolute;
  left: 3rem;
  bottom: -6.25rem;
  width: 13rem;
  height: 10rem;
  background: url(../img/policy_decoration.png) center center / contain
    no-repeat;
}

.policy__text {
  position: relative;
  width: 43.75rem;
  color: white;
  font-size: 1.125rem;
  line-height: calc(35 / 18);
  padding: 1.5rem 1.25rem;
  margin-left: auto;
  margin-top: -3.75rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .policy {
    padding-block: 5rem;
  }

  .policy__title {
    position: relative;
    right: initial;
  }

  .policy__bigText {
    position: relative;
    flex-direction: column;
    left: initial;
  }

  .policy__bigText span::after {
    top: auto;
    bottom: 0;
    right: auto;
    left: 0.5rem;
    width: 95%;
    height: 1px;
    background: #fff;
    box-shadow: 0 0 21px rgba(132, 57, 15, 1);
  }

  .policy__bigText span {
    writing-mode: initial;
    font-size: 2rem;
  }

  .policy__img::before {
    left: 1rem;
    bottom: -3rem;
    width: 8rem;
    height: 6rem;
  }

  .policy__text {
    width: 100%;
    margin-top: 2rem;
    background: unset;
  }
}

/* menu */
.menu {
}

.menu__inner {
  position: relative;
  z-index: 1;
  max-width: calc(68.75rem + 50px);
}

.menu__food {
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background: #f1e5d3;
}
/* 
.food__title {
  width: 38rem;
} */

.menu__food::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: -2rem;
  width: 22rem;
  height: 49.5rem;
  background: url(../img/food_txt.png) center right / contain no-repeat;
}

.menu__drink {
  position: relative;
  background: url(../img/bg_drink.jpg) center center / cover no-repeat;
  color: white;
}

.menu__drink .menu__inner {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.menu__wrap {
  display: flex;
  column-gap: 2.5rem;
}

.menu__content {
  width: 50%;
  padding-left: 1rem;
}

.menu__drink .menu__content {
  margin-left: auto;
}

.menu__title--reverse {
  text-align: right;
}

.menu__title--reverse::before {
  background-color: white;
  right: 19rem;
  left: initial;
}

.menu__title--reverse::after {
  position: absolute;
  content: "";
  width: 20.125rem;
  height: 15.25rem;
  top: 40%;
  transform: translateY(-50%);
  right: 25rem;
  background: url(../img/drink1.png) center center / contain no-repeat;
}

.menu__bigText {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1;
}

.menu__bigText span {
  display: inline-block;
  white-space: nowrap;
  font-family: "noto serif jp", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #202020;
  padding: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.16em;
  border-bottom: 1px solid #202020;
}

.menu__drink .menu__bigText span {
  border-bottom: 1px solid #fff;
}

.menu__bigText--reverse {
  align-items: flex-end;
}

.menu__text {
  position: relative;
  z-index: 1;
  text-align: justify;
  width: 29rem;
  font-size: 1.125rem;
  line-height: calc(35 / 18);
  letter-spacing: 0.2em;
  margin-top: 2rem;
}

.menu__text--reverse {
  margin-left: auto;
}

.menu__btn {
  margin-top: 2rem;
}

.menu__btn--reverse {
  text-align: right;
}

.menu__slider {
  width: calc(50% + (50vw - 50%));
}

.menu__slider picture img {
  aspect-ratio: 768/665;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu__slider .menu-slider-dots {
  display: flex;
  justify-content: flex-end;
  gap: 2.625rem;
  margin: 0 auto;
  margin-top: 1.875rem;
  margin-right: 10.625rem;
}

.menu__slider .menu-slider-dots li {
  list-style: none;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #87633b;
}

.menu__slider .menu-slider-dots li.slick-active {
  background-color: black;
}

.menu__slider .menu-slider-dots button {
  display: none;
}

.menu__img1 {
  position: absolute;
  width: 25rem;
  bottom: 5.65rem;
  left: 22rem;
}

.menu__img2 {
  position: absolute;
  width: 4.75rem;
  top: 18rem;
  right: 34.25rem;
}

.menu__img3 {
  position: absolute;
  width: 10.8125rem;
  right: 13.125rem;
  bottom: 6.75rem;
}

.menu__img4 {
  position: absolute;
  width: 15rem;
  right: 2.125rem;
  bottom: 45.75rem;
}

@media screen and (max-width: 768px) {
  .menu__food {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .menu__wrap {
    display: block;
  }

  .menu__content {
    width: 100%;
  }

  .menu__title {
    font-size: 4rem;
  }

  .menu__title::before {
    width: 80%;
    left: 11rem;
  }

  .menu__bigText span:nth-child(1) {
    font-size: 1.9rem;
  }

  .menu__bigText span {
    font-size: 1.5rem;
  }

  .menu__text {
    width: 100%;
    letter-spacing: 0.025em;
    margin-top: 1rem;
    line-height: 1.5;
  }

  .menu__btn {
    text-align: center;
  }

  .menu__slider {
    width: 100%;
    margin-top: 2.5rem;
  }

  .menu__slider .menu-slider-dots {
    margin-inline: auto;
    justify-content: center;
  }

  .menu__drink .menu__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .menu__title--reverse::before {
    left: initial;
    right: 11rem;
  }

  .menu__img1 {
    display: none;
  }

  .menu__img2 {
    top: -5.5rem;
  }

  .menu__img3 {
    bottom: -5.5rem;
    right: 2rem;
  }

  .menu__title--reverse::after {
    display: none;
  }
}

/* gallery */
.gallery {
  padding-top: 6.25rem;
  padding-bottom: 7.5rem;
  overflow: hidden;
  color: #fff;
  background: url(../img/bg_gallery.png) center center / cover no-repeat;
}

.gallery__title {
  width: 16rem;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .gallery__title {
    width: 12rem;
  }
}

.gallery__slider {
  max-width: 55.825rem;
  margin-inline: auto;
  margin-top: 1.75rem;
}

.gallery__slider .slick-list {
  overflow: unset;
}

.gallery__slider picture {
  display: block;
  margin-top: 1.5rem;
}

.gallery__slider img {
  aspect-ratio: 430/285;
  width: 100%;
  height: 100%;
}

.gallery__btn,
.thanx__btn {
  text-align: center;
  margin-top: 4.25rem;
}

/* access */
.access {
  padding-top: 7.825rem;
  padding-bottom: 7rem;
  background: url(../img/bg_access.png) center center / cover no-repeat;
}

.access__inner.inner {
  max-width: calc(68.75rem + 50px);
}

.access__title {
  position: relative;
  width: 18rem;
}

.access__title::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 20rem;
  height: 1px;
  width: 55vw;
  max-width: 800px;
  background-color: black;
}

.access__wrap {
  display: grid;
  grid-template-columns: 1fr 27rem;
  gap: 5.25rem;
  margin-top: 5.125rem;
}

.access__contact {
  width: fit-content;
  display: grid;
  align-items: center;
  grid-template-columns: 12.5rem 1fr;
  gap: 3.75rem;
  margin-left: auto;
}

.access__logo {
  width: 12.5rem;
}

.access__tel {
}

.access__tel p {
  font-size: 1.125rem;
  letter-spacing: 0.2em;
}

.access__tel a {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-size: 2.5rem;
  font-weight: 400;
  font-family: var(--subfont);
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

.access__tel a img {
  width: 1.8rem;
}

.access__img {
}

.access__info {
  margin-top: 3.75rem;
  border-top: 1px solid #282425;
  border-bottom: 1px solid #282425;
}

.access__info dl {
  display: grid;
  grid-template-columns: 7.25rem 1fr;
}

.access__info dl:not(:last-child) {
  border-bottom: 1px solid #282425;
}

.access__info dt {
  text-align: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: calc(20 / 16);
  background: rgba(32, 32, 32, 0.85);
  padding-block: 1.25rem;
}

.access__info dd {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: calc(30 / 16);
  padding-block: 1.25rem;
  padding-inline: 2rem;
  background: rgba(216, 206, 190, 0.66);
}

.access__btn {
  text-align: center;
  margin-top: 5rem;
}

.map iframe {
  aspect-ratio: 1450/455;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .access {
    padding-top: 5rem;
  }

  .access__wrap {
    display: contents;
  }

  .access__title {
    width: 15rem;
    margin-inline: auto;
  }

  .access__img {
    display: block;
    margin-top: 2.5rem;
  }

  .access__tel p {
    text-align: center;
  }

  .access__info {
    margin-top: 3rem;
  }

  .access__info dl {
    grid-template-columns: 4rem 1fr;
  }

  .access__info dt {
    font-size: 0.725rem;
  }

  .access__info dd {
    font-size: 0.725rem;
    letter-spacing: 0.025em;
  }

  .access__btn {
    margin-top: 3rem;
  }

  .map iframe {
    aspect-ratio: 100/100;
  }

  .access__title::before {
    display: none;
  }

  .access__logo {
    margin-inline: auto;
  }

  .access__contact {
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
}

/* instagram */
.instagram {
  position: relative;
  background: url(../img/bg_instagram.jpg) center center / cover no-repeat;
  padding-block: 7.75rem;
  overflow: hidden;
}

.instagram .CMS-INSTAGRAM-LIST {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.25rem;
  margin-inline: auto;
}

.instagram .CMS-INSTAGRAM-LIST a:nth-child(n + 7) {
  display: none;
}

.instagram .CMS-INSTAGRAM-LIST img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .instagram {
    padding-block: 5rem;
  }
  .instagram .CMS-INSTAGRAM-LIST {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

/* recruit */
.recruit {
  padding-block: 4.25rem;
}

.recruit__inner {
  position: relative;
  padding-block: 5rem;
  background: url(../img/bg_recruit_inner.jpg) center center / cover no-repeat;
  color: #fff;
}

.recruit__title-wrap {
  position: absolute;
  top: 50%;
  left: 5rem;
  transform: translateY(-50%);
}

.recruit__title {
  width: 17.5rem;
}

.recruit__text {
  text-align: center;
  color: white;
  font-size: 1rem;
  line-height: 2.1;
  letter-spacing: 0.2em;
}

.recruit__btn {
  text-align: center;
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .recruit__title-wrap {
    position: relative;
    top: auto;
    left: auto;
    transform: translateX(0);
  }

  .recruit__title {
    width: 14rem;
    margin-inline: auto;
  }

  .recruit__text {
    margin-top: 1.5rem;
    line-height: 1.5;
  }
}

/* menu */

.food__title {
  margin-bottom: 4rem;
}

.menu__drink .menu__bigText span {
  color: #fff;
}

.menu__drink .menu__bigText {
  margin-top: 4rem;
}

.menu__food .menu__bigText {
  margin-top: -2rem;
}

@media screen and (max-width: 768px) {
  .menu__drink .menu__bigText {
    margin-top: 3rem;
  }
  .menu__food .menu__bigText {
    margin-top: 3rem;
  }
  .menu__img4 {
    display: none;
  }
  .policy__bigText span:nth-child(2) {
    padding-top: 0;
  }
  .policy__bigText {
    top: -1.725rem;
  }
}
