@charset "utf-8";

/*
==============
contents.css
==============
*/

/* -----------------
■ html
------------------- */
html {
  scrollbar-gutter: stable;
}




/* -----------------
■ contents
------------------- */
.contents {
  padding-top: 70px;
}


@media screen and (max-width: 767px)
{
  .contents {
    padding-top: calc(70 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ mv
------------------- */
.mv {
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
}

.mv img {
  width: 100%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}




/* -----------------
■ name
------------------- */
.name {
  padding-top: 68px;
  text-align: center;
}

.name__place {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.09em;
}

.name__text {
  margin-top: 7px;
  font-size: 2.6rem;
  line-height: 1.76;
  letter-spacing: 0.09em;
}


@media screen and (max-width: 767px)
{
  .name {
    padding-top: calc(52 / var(--customW) * var(--unit));
  }

  .name__place {
    font-size: calc(12 / var(--customW) * var(--unit));
  }

  .name__text {
    margin-top: calc(7 / var(--customW) * var(--unit));
    font-size: calc(18 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ info
------------------- */
.info {
  max-width: 620px;
  margin-top: 128px;
  margin-inline: auto;
}

.info__title {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.77;
  letter-spacing: 0.16em;
  text-align: center;
}

.info__text {
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.73;
  letter-spacing: 0.02em;
}


@media screen and (max-width: 767px)
{
  .info {
    max-width: calc(290 / var(--customW) * var(--unit));
    margin-top: calc(104 / var(--customW) * var(--unit));
  }

  .info__title {
    font-size: calc(16 / var(--customW) * var(--unit));
    line-height: 1.5;
    letter-spacing: 0.11em;
  }

  .info__text {
    margin-top: calc(32 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
    line-height: 2;
  }

} /* media end */




/* -----------------
■ cuisine
------------------- */
.cuisine {
  max-width: 900px;
  margin-top: 148px;
  margin-inline: auto;
  padding: 48px 0 60px;
  background-color: #F4F2EF;
}

.cuisine__inner {
  max-width: 620px;
  margin-inline: auto;
}

.cuisine__title {
  font-size: 2.0rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  text-align: center;
}

.cuisine__body {
  margin-top: 18px;
  padding: 31px 0 0;
  border-top: 1px solid #707070;
}

.cuisine__list {
  margin-right: -15px;
}

.cuisine__list:nth-of-type(n+2) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #707070;
}

.cuisine__list-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.7rem;
  line-height: 1.88;
  letter-spacing: 0.01em;
}

.cuisine__note {
  margin-top: 27px;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}


@media screen and (max-width: 767px)
{
  .cuisine {
    max-width: calc(330 / var(--customW) * var(--unit));
    margin-top: calc(50 / var(--customW) * var(--unit));
    padding: calc(46 / var(--customW) * var(--unit)) 0 calc(40 / var(--customW) * var(--unit));
  }

  .cuisine__inner {
    max-width: calc(290 / var(--customW) * var(--unit));
  }

  .cuisine__title {
    font-size: calc(16 / var(--customW) * var(--unit));
    line-height: 1.5;
    letter-spacing: 0;
  }

  .cuisine__body {
    margin-top: calc(18 / var(--customW) * var(--unit));
    padding: calc(18 / var(--customW) * var(--unit)) 0 0;
  }

  .cuisine__list {
    margin-right: 0;
  }

  .cuisine__list-item {
    margin-right: calc(-10 / var(--customW) * var(--unit));
    padding-left: 1em;
    font-size: calc(13 / var(--customW) * var(--unit));
    line-height: 1.84;
    letter-spacing: 0;
    text-indent: -1em;
  }

  .cuisine__note {
    margin-top: calc(28 / var(--customW) * var(--unit));
    font-size: calc(10 / var(--customW) * var(--unit));
    line-height: 1.8;
    text-align: center;
  }

} /* media end */




/* -----------------
■ loop
------------------- */
.loop-dishes {
  margin-top: 170px;
}

.loop-space {
  margin-top: 66px;
}

.loop__head {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.loop__title {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.loop-dishes .loop__title {
  top: -25px;
  left: 142px;
}

.loop-space .loop__title {
  top: -32px;
  right: 16px;
}

.loop__body {
  display: flex;
  gap: 0 5px;
  overflow: hidden;
  width: 100%;
}

.loop__list {
  display: flex;
  gap: 0 5px;
  list-style: none;
}

.loop-dishes .loop__list {
  animation: infinity-loop 40s linear infinite;
}

.loop-space .loop__list {
  flex-direction: row-reverse;
  animation: infinity-loop-reverse 40s linear infinite;
}

.loop__list-item {
  width: 275px;
  flex-shrink: 0;
}

.loop__list img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 99;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.custom-cursor.is-active {
  opacity: 1;
}


@keyframes infinity-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes infinity-loop-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}


@media screen and (max-width: 767px)
{
  .loop-dishes {
    margin-top: calc(85 / var(--customW) * var(--unit));
  }

  .loop-space {
    margin-top: calc(60 / var(--customW) * var(--unit));
  }

  .loop__head {
    max-width: 900px;
  }

  .loop-dishes .loop__title {
    top: calc(-18 / var(--customW) * var(--unit));
    left: calc(32 / var(--customW) * var(--unit));
    width: calc(194 / var(--customW) * var(--unit));
  }

  .loop-space .loop__title {
    top: calc(-17 / var(--customW) * var(--unit));
    right: calc(28 / var(--customW) * var(--unit));
    width: calc(317 / var(--customW) * var(--unit));
  }

  .loop__body,
  .loop__list {
    gap: 0 calc(5 / var(--customW) * var(--unit));
  }

  .loop__list-item {
    width: calc(265 / var(--customW) * var(--unit));
  }

  .custom-cursor {
    display: none;
  }

} /* media end */




/* -----------------
■ topics
------------------- */
.topics {
  max-width: 620px;
  margin-top: 158px;
  margin-inline: auto;
}

.topics__box:nth-of-type(1) {
  margin-top: 32px;
}

.topics__box:nth-of-type(n+2) {
  margin-top: 76px;
}

.topics__box-title {
  margin-top: 26px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.topics__box-text {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.733;
  letter-spacing: 0.02em;
}


/* detail */
.topics__detail {
  margin-top: 147px;
  text-align: center;
}

.topics__detail-name {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.topics__detail-place {
  margin-top: 13px;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.topics__detail-link {
  margin-top: 20px;
}

.topics__detail-link a {
  display: block;
  width: 183px;
  margin-inline: auto;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 3.66;
  letter-spacing: 0.08em;
  border-radius: 50px;
  background-color: #000;
}

.topics__detail-link a span {
  padding-right: 20px;
  background: url(../img/common/icon_link_arrow_w.svg) no-repeat;
  background-position: right 6px;
}


@media screen and (max-width: 767px)
{
  .topics {
    max-width: calc(290 / var(--customW) * var(--unit));
    margin-top: calc(152 / var(--customW) * var(--unit));
  }

  .topics__box:nth-of-type(1) {
    margin-top: calc(10 / var(--customW) * var(--unit));
  }

  .topics__box:nth-of-type(n+2) {
    margin-top: calc(96 / var(--customW) * var(--unit));
  }

  .topics__title {
    width: calc(52 / var(--customW) * var(--unit));
  }

  .topics__box-title {
    margin-top: calc(20 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
    line-height: 1.71;
  }

  .topics__box-text {
    margin-top: calc(13 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
    line-height: 2;
  }


  /* detail */
  .topics__detail {
    margin-top: calc(118 / var(--customW) * var(--unit));
  }

  .topics__detail-name {
    font-size: calc(14 / var(--customW) * var(--unit));
  }

  .topics__detail-place {
    margin-top: calc(8 / var(--customW) * var(--unit));
    font-size: calc(10 / var(--customW) * var(--unit));
  }

  .topics__detail-link {
    margin-top: calc(18 / var(--customW) * var(--unit));
  }

  .topics__detail-link a {
    width: calc(146 / var(--customW) * var(--unit));
    font-size: calc(10 / var(--customW) * var(--unit));
    line-height: 3.5;
  }

  .topics__detail-link a span {
    padding-right: calc(16 / var(--customW) * var(--unit));
    background-position: right calc(5 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ modal
------------------- */
body.is-modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  z-index: 100;
}

.modal.is-view {
  opacity: 1;
  pointer-events: all;
}

.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #E0DDD7;
}

.modal__inner {
  position: relative;
  top: 50%;
  width: 744px;
  margin-inline: auto;
  transform: translateY(-50%);
}

.modal__close {
  position: absolute;
  top: -72px;
  right: 0;
  text-align: right;
}

.modal__close img {
  cursor: pointer;
}

.modal__slider {
  position: relative;
}

.modal__slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s;
}

.modal__slider img.is-view {
  position: relative;
  opacity: 1;
  z-index: 1;
}

.modal__thumb {
  display: flex;
  gap: 0 1px;
  margin-top: 30px;
}

.modal__thumb img {
  width: 75px;
  cursor: pointer;
}


@media screen and (max-width: 767px)
{
  .modal__inner {
    width: calc(375 / var(--customW) * var(--unit));
  }

  .modal__close {
    top: calc(-58 / var(--customW) * var(--unit));
    right: calc(22 / var(--customW) * var(--unit));
  }

  .modal__slider {
    margin-top: 0;
  }

  .modal__thumb {
    display: flex;
    flex-wrap: wrap;
    gap: calc(10 / var(--customW) * var(--unit)) calc(2 / var(--customW) * var(--unit));
    width: calc(280 / var(--customW) * var(--unit));
    margin-top: calc(42 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .modal__thumb img {
    width: calc(92 / var(--customW) * var(--unit));
  }

} /* media end */




