@charset "UTF-8";

/* ====================
  2026.08.21 Add
==================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

/* ---------------------------------------------------------
  food_nav
---------------------------------------------------------- */
.food_nav {
  display: grid;
  justify-content: center;
  align-items: center;
  padding: 20px 18px;
  background-color: #105e67;

  @media screen and (max-width: 767px) {
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 25px;
    margin-top: 16vw;
  }

  @media screen and (max-width: 360px) {
    gap: 5.33vw;
    padding-inline: 4.80vw;
  }

  @media screen and (min-width: 768px) {
    grid-template-columns: repeat(4, auto);
    grid-template-rows: auto;
    gap: 20px;
    padding: 20px;
  }
}

.food_nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 500;
  color: #ffffff;
  &::after {
    content: '';
    width: 14px;
    min-width: 14px;
    height: 14px;
    background: url(/saphir/assets/img/food/nav_arrow.svg) no-repeat left 50% top 50% / contain;
  }

  &:hover,
  &:visited {
    color: #ffffff;
  }

  @media screen and (max-width: 360px) {
    gap: 2.13vw;
    font-size: 1.3rem;
  }

  @media screen and (min-width: 768px) {
    font-size: 1.8rem;
  }
}

/* ---------------------------------------------------------
food_menu
---------------------------------------------------------- */
.food_menu__lead {
  margin-block: 10.67vw;

  @media screen and (min-width: 768px) {
    margin-block: 4rem;
  }
}

.food_menu__list__one {
  margin-bottom: 10.67vw;

  @media screen and (min-width: 768px) {
    margin-bottom: 30px;
  }
}

.food_menu__list__one__img {
  padding-inline: 0;
}

/* ---------------------------------------------------------
food_side-menu
---------------------------------------------------------- */
.food_side-menu__wrap {
  background-color: #ffffff;
}

.food_menu {
    background-repeat: repeat;
    background-size: 100vw auto;
}

.food_side-menu {
  margin-block: 16vw;
  @media screen and (min-width: 768px) {
    margin-block: 8rem 13rem;
  }
}

.food_side-menu__list__one {
  display: grid;
  grid-template-columns: 7.6rem 1fr;
  grid-template-areas:
    'side-menu_img side-menu_thumb'
    'menu_allergie menu_allergie';
  align-items: start;
  align-content: start;

  @media screen and (min-width: 768px) {
    grid-template-areas:
      'side-menu_img side-menu_thumb'
      'side-menu_img menu_allergie';
    padding-inline: 1.6rem
  }
}

.food_side-menu__list__one__thumb {
  margin-left: 1.5rem;
  padding-left: 1.5rem;
  &::before {
    top: 3.6rem;
  }

  @media screen and (min-width: 768px) {
    margin-left: 1.7rem;
    padding-left: 1.7rem;
  }
}

/* ---------------------------------------------------------
food_allergie
---------------------------------------------------------- */
.food_allergie {
  grid-area: menu_allergie;
  margin-top: 5.33vw;

  @media screen and (min-width: 768px) {
    margin-top: 15px;
  }
}

/* Menuの場合 */
.food_menu__list__one .food_allergie {
  @media screen and (min-width: 768px) {
    width: 305px;
    margin-inline: auto;
  }
}

/* Side Menuの場合 */
.food_side-menu__list__one .food_allergie {
  @media screen and (min-width: 768px) {
    margin-left: 3.4rem;
  }
}

.food_allergie__ttl {
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.67vw;
  padding-bottom: 1.33vw;
  border-bottom: 1px solid #2eabba;

  @media screen and (min-width: 768px) {
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}

.food_allergie__txt {
  font-size: 1.3rem;
  line-height: 1.54;
  text-align: left;

  @media screen and (min-width: 768px) {
    padding-top: 2px;
  }
}

.food_allergie__req__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.33vw;
  margin-block: 0.8vw 2.13vw;

  @media screen and (min-width: 768px) {
    gap: 4px;
    margin-block: 3px 8px;
  }
}

.food_side-menu__list__one .food_allergie__req__list {
  @media screen and (max-width: 767px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.food_allergie__req__item {
  display: grid;
  place-content: center;
  height: 4.3rem;
  padding: 5px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: center;
  background-color: #c7e7ea;
}

.en .food_allergie__req__item {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

/* ---------------------------------------------------------
chef
---------------------------------------------------------- */
.food_menu__chef {
  margin: 10.67vw 0 0;
  padding: 5.33vw;
  background: #ffffff;

  @media screen and (min-width: 768px) {
    margin: 7.5rem 0 0;
    padding: 4rem 8rem 4rem 6rem;
  }
}

.food_menu__chef__info {
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-template-areas:
    'chef_head'
    'chef_image'
    'chef_profile';
  gap: 5.33vw;

  @media screen and (min-width: 768px) {
    grid-template-columns: 260px 1fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas:
      'chef_image chef_head'
      'chef_image chef_profile';
    gap: 3rem 2.5rem;
  }
}

.food_menu__chef__info__head {
  grid-area: chef_head;

  .p-head {
    margin-bottom: 4vw;
    @media screen and (min-width: 768px) {
      margin-bottom: 2.2rem;
    }
  }

    .position {
      margin-bottom: 4vw;
      font-size: 1.2rem;
      letter-spacing: 0.03em;
      @media screen and (min-width: 768px) {
        margin-bottom: 1.5rem;
      }
    }

  .p-head__ttl {
    padding-bottom: 4vw;
    @media screen and (min-width: 768px) {
      padding-bottom: 1.0rem;
      font-size: 2.4rem;
      line-height: 1;
    }
  }

  .name {
    margin-bottom: 1.6vw;
    font-weight: 500;
    font-size: 2.6rem;
    line-height: 1;
    small {
      margin-left: .5em;
      font-size: 1.6rem;
      color: #213b40;
    }
    @media screen and (min-width: 768px) {
      margin-bottom: 0.5rem;
      font-size: 3.4rem;
    }
  }

  .kana {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.6rem;
  }
}

.food_menu__chef__info__img {
  grid-area: chef_image;
}

.food_menu__chef__info__img__small {
  @media screen and (max-width: 767px) {
    display: flex;
    justify-content: center;
    img {
      width: 53.33vw;
      margin: 0 auto;
    }
  }
}

.food_menu__chef__info__profile {
  grid-area: chef_profile;
  padding: 4vw;
  background-color: #f6f6f6;
  @media screen and (min-width: 768px) {
    padding: 3.0rem;
  }
}

.food_menu__chef__info__profile__ttl {
  font-size: 1.4rem;
  font-weight: 700;
  color: #27a9b6;
}

.food_menu__chef__info__profile__txt {
  font-size: 1.2rem;
  line-height: 2;
}

.food_menu__chef__ttl {
  margin-block: 10.67vw 5.33vw;
  font-size: 1.8rem;
  line-height: 1.56;
  text-align: center;
  @media screen and (min-width: 768px) {
    font-size: 2.4rem;
    margin-block: 6rem 3rem;
  }
}

.food_menu__chef__text {
  margin-bottom: 5.33vw;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  @media screen and (min-width: 768px) {
    margin-bottom: 2rem;
  }
}

.food_menu__chef__copy {
  margin-block: 6.4rem 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: right;
}

.food_menu__chef__sign {
  margin-left: auto;
  width: 18.7rem;
}

#food_chef_tab1 .food_menu__chef__sign {
  width: 18.7rem;
}

#food_chef_tab2 .food_menu__chef__sign {
  width: 9.4rem;
}

.food_menu__notice {
  margin-top: 10.67vw;
  li {
    position: relative;
    padding-left: 8vw;
    font-weight: 500;
    font-size: 1.4rem;
    color: #3f4a4c;
  }
  li + li {
    margin-top: 0.8rem;
  }

  @media screen and (min-width: 768px) {
    margin-top: 6rem;
    li {
      padding-left: 3.5rem;
    }
  }
}

.en .food_menu__notice li:before {
  content: "*";
}

.food_menu__notice li:before {
  content: "※";
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
}

/* style.css の追加とスタイル上書き */
.food_side-menu #side-menu_more_tab1,
.food_side-menu #side-menu_more_tab2,
.food_side-menu #drink_more_tab1,
.food_side-menu #drink_more_tab2,
.food_side-menu #souvenir_more_tab1,
.food_side-menu #souvenir_more_tab2 {
  display: none;
}


#food_menu .tab,
#food_menu .tab-bottom {
  align-items: center;
}

#food_menu .tab .tab-btn,
#food_menu .tab-bottom .tab-btn {
  height: 16.53vw;

  @media screen and (min-width: 768px) {
    height: 5.8rem;
  }
}

#food_menu .tab .tab-btn.js-cr,
#food_menu .tab-bottom .tab-btn.js-cr {
  height: 21.87vw;

  @media screen and (min-width: 768px) {
    height: 8.2rem;
  }
}

/* ---------------------------------------------------------
food_menu_slider
---------------------------------------------------------- */
.food_menu__chef__slider {
  --slide-width: calc(100vw - 32vw);
  --slide-gap: 5.33vw;
  --transition-duration: 400ms;
  --slider-color: #27a9b6;
  --slider-background: #dddddd;

  @media screen and (min-width: 768px) {
    --slide-width: min(770px, calc(100vw - 120px));
    --slide-gap: 30px;
  }
}

.food_menu__chef__slider__viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: visible;
  touch-action: pan-y;
  cursor: grab;
  &:active {
    cursor: grabbing;
  }
}

/* 画像自体のドラッグ防止 */
.food_menu__chef__slider__viewport img {
  user-select: none;
  -webkit-user-drag: none;
}

.food_menu__chef__slider__track {
  display: flex;
  gap: var(--slide-gap);
  width: max-content;
  transition:
    transform
    var(--slide-duration)
    cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.food_menu__chef__slider__track.is-no-transition {
  transition: none;
}

.food_menu__chef__slide {
  flex: 0 0 var(--slide-width);
  width: var(--slide-width);
  height: auto;
  opacity: 1;
  transition:
    opacity var(--transition-duration) ease,
    transform var(--transition-duration) ease;
}

/* 切り替え中の透明度 */
.food_menu__chef__slider__track.is-changing {
  .food_menu__chef__slide {
    opacity: 0.5;
  }
  .food_menu__chef__slide__body {
    opacity: 0.1;
  }
  .food_menu__chef__slide.is-active {
    opacity: 0.6;

    .food_menu__chef__slide__body {
      opacity: 0;
    }
  }
}

/* 現在表示中のスライド */
.food_menu__chef__slide.is-active {
  opacity: 1;

  .food_menu__chef__slide__body {
    opacity: 1;
  }
}

.food_menu__chef__slide__image {
  margin: 0;
  overflow: hidden;
}

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

.food_menu__chef__slide__body {
  opacity: 0;
  padding-top: 5.33vw;
  transition: opacity var(--transition-duration) ease;

  @media screen and (min-width: 768px) {
    padding-top: 20px;
  }
}

.food_menu__chef__slide__title {
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 1.5;

  @media screen and (min-width: 768px) {
    font-size: 1.8rem;
  }
}

.food_menu__chef__slide__text {
  margin: 0;
  line-height: 1.8;
}

.food_menu__chef__slider__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4vw;
  margin-top: 10.67vw;

  @media screen and (min-width: 768px) {
    gap: 20px;
    margin-top: 40px;
  }
}

.food_menu__chef__slider__pagination {
  position: static;
  display: flex;
  gap: 4vw;
  width: auto;
  transform: none;

  @media screen and (min-width: 768px) {
    gap: 20px;
  }
}

.food_menu__chef__slider__pagination__item {
  position: relative;
  width: min(60px, 10.67vw);
  height: 10px;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--slider-background);
  opacity: 1;
}

.food_menu__chef__slider__pagination__fill {
  position: absolute;
  inset: 0;
  display: block;
  background: var(--slider-color);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
