/* =========================================================
   FOOD GUIDE INDEX
========================================================= */

.food-guide-page {
  box-sizing: border-box;
  min-height: 100vh;
  background: #f4f2ed;
  color: #10252c;
}

/* =========================================================
   FOOD GUIDE HERO
========================================================= */

.food-guide-hero {
  width: 100%;
  margin: 0 0 90px;
  background: #e8e2d8;
  overflow: hidden;
}

.food-guide-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.25fr)
    minmax(360px, 0.75fr);
  min-height: 620px;
}

/* 左側の文字エリア */
.food-guide-hero__content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

  width: 100%;
  max-width: 900px;

  /* 右に寄りすぎないよう左余白を小さく */
  padding:
    clamp(72px, 7vw, 120px)
    clamp(30px, 4vw, 70px);

  margin: 0;
  text-align: left;
}

.food-guide-hero__en {
  margin: 0 0 38px;
  font-family: var(--font-en);
  font-size: clamp(54px, 5.4vw, 104px);
  line-height: 0.9;
  letter-spacing: 0.07em;
  font-weight: 400;
}

.food-guide-hero__en span {
  display: block;
  white-space: nowrap;
}

.food-guide-hero__en span + span {
  margin-top: 14px;
}

.food-guide-hero__title {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: clamp(27px, 2.3vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  font-weight: 400;
}

.food-guide-hero__lead {
  max-width: 720px;
  margin: 0;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.055em;
}

/* 右側の斜め写真 */
.food-guide-hero__visual {
  position: relative;
  min-width: 0;
  min-height: 620px;

  background:
    linear-gradient(
      90deg,
      rgba(232, 226, 216, 0.38) 0%,
      rgba(232, 226, 216, 0.08) 26%,
      rgba(16, 37, 44, 0.08) 100%
    ),
    url("https://snow-resort-hermitage.com/wp-content/uploads/2026/06/m5-8.jpeg")
      center / cover no-repeat;

  clip-path: polygon(21% 0, 100% 0, 100% 100%, 0 100%);
}

.food-guide-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(232, 226, 216, 0.38) 0%,
      rgba(232, 226, 216, 0.05) 32%,
      rgba(0, 0, 0, 0.08) 100%
    );
  pointer-events: none;
}

/* =========================================================
   FOOD GUIDE LIST
========================================================= */

.food-guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;

  width: min(calc(100% - 80px), 1280px);
  margin: 0 auto;
}

.food-guide-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 37, 44, 0.15);
  overflow: hidden;
}

.food-guide-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.food-guide-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.food-guide-card__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.food-guide-card:hover .food-guide-card__img {
  transform: scale(1.05);
}

.food-guide-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 93, 139, 0.08);
  font-family: var(--font-en);
  font-size: 20px;
  letter-spacing: 0.16em;
}

.food-guide-card__body {
  padding: 32px;
}

.food-guide-card__meta {
  margin: 0 0 14px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.16em;
  opacity: 0.6;
}

.food-guide-card__title {
  margin: 0 0 18px;
  font-size: clamp(25px, 2.5vw, 38px);
  line-height: 1.35;
  font-weight: 400;
}

.food-guide-card__excerpt {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.9;
}

.food-guide-card__more {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.14em;
}

/* =========================================================
   PC：左固定ドロワーを避ける
========================================================= */

@media (min-width: 1025px) {

  .food-guide-page {
    width: calc(100% - 420px);
    margin-left: 420px;
    padding: 0 0 120px;
  }

  .food-guide-hero__content {
    /*
     * メイン領域の左端から始める。
     * 以前のような中央寄せをしない。
     */
    margin-left: 0;
    margin-right: 0;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (min-width: 769px) and (max-width: 1200px) {

  .food-guide-hero__inner {
    grid-template-columns:
      minmax(0, 1.2fr)
      minmax(320px, 0.8fr);
    min-height: 560px;
  }

  .food-guide-hero__content {
    padding: 70px 34px;
  }

  .food-guide-hero__en {
    font-size: clamp(48px, 5.7vw, 78px);
  }

  .food-guide-hero__visual {
    min-height: 560px;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .food-guide-page {
    width: 100%;
    margin-left: 0;
    padding: 0 0 80px;
  }

  .food-guide-hero {
    margin-bottom: 54px;
  }

  .food-guide-hero__inner {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .food-guide-hero,
  .food-guide-hero__inner,
  .food-guide-hero__content {
    max-width: 100%;
    overflow-x: hidden;
  }

  .food-guide-hero__content {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 92px 20px 52px;
    align-items: flex-start;
    text-align: left;
  }

  .food-guide-hero__en {
    width: 100%;
    margin: 0 0 28px;
    font-size: clamp(40px, 12vw, 62px);
    line-height: 0.94;
    letter-spacing: 0.045em;
    text-align: left;
  }

  .food-guide-hero__en span {
    display: block;
    white-space: nowrap;
  }

  .food-guide-hero__en span + span {
    margin-top: 9px;
  }

  .food-guide-hero__title {
    width: 100%;
    max-width: none;
    margin: 0 0 22px;
    font-size: 24px;
    line-height: 1.6;
    letter-spacing: 0.06em;
    text-align: left;
  }

  .food-guide-hero__lead {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .food-guide-hero__lead br {
    display: none;
  }

  .food-guide-hero__visual {
    width: 100%;
    min-height: 280px;
    background-position: center;
    clip-path: polygon(0 13%, 100% 0, 100% 100%, 0 100%);
  }

  .food-guide-list {
    width: calc(100% - 40px);
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .food-guide-card__body {
    padding: 24px 20px 28px;
  }
  .food-guide-hero__lead {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;

    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.035em;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .food-guide-hero__lead br {
    display: block;
    content: "";
    margin-top: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .food-guide-hero__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .food-guide-hero__en {
    font-size: clamp(36px, 11.5vw, 48px);
  }

  .food-guide-list {
    width: calc(100% - 32px);
  }
}

.sightseeing-guide-page .food-guide-hero__visual {
    background:
        linear-gradient(
            90deg,
            rgba(232, 226, 216, 0.38) 0%,
            rgba(232, 226, 216, 0.08) 26%,
            rgba(16, 37, 44, 0.08) 100%
        ),
        url("https://snow-resort-hermitage.com/wp-content/uploads/2026/06/kjjk0-8.webp")
        center / cover no-repeat;
}

/* =========================================================
   SIGHTSEEING GUIDE
========================================================= */

.sightseeing-guide-page {
    background: #f1f4f2;
    color: #173239;
}

.sightseeing-guide-page .food-guide-hero {
    background: #dfe8e5;
}


/* 観光ガイド Hero 写真 */
.sightseeing-guide-page .food-guide-hero__visual {
    background:
        linear-gradient(
            90deg,
            rgba(223, 232, 229, 0.42) 0%,
            rgba(223, 232, 229, 0.08) 28%,
            rgba(16, 37, 44, 0.05) 100%
        ),
        url("https://snow-resort-hermitage.com/wp-content/uploads/2026/06/kjjk0-8.webp")
        center / cover no-repeat;
}


/* 写真上の薄いオーバーレイ */
.sightseeing-guide-page .food-guide-hero__visual::after {
    background:
        linear-gradient(
            90deg,
            rgba(223, 232, 229, 0.30) 0%,
            rgba(223, 232, 229, 0.03) 34%,
            rgba(0, 0, 0, 0.06) 100%
        );
}


/* カード */
.sightseeing-guide-page .food-guide-card {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(23, 50, 57, 0.14);
}


/* アイキャッチがない場合 */
.sightseeing-guide-page .food-guide-card__placeholder {
    background: rgba(67, 110, 105, 0.10);
}






/* =========================================================
   SIGHTSEEING INTRO
========================================================= */

.sightseeing-guide-intro {
    width: min(calc(100% - 80px), 1280px);
    margin: 0 auto 50px;
}

.sightseeing-guide-intro__en {
    margin: 0 0 14px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.16em;
    opacity: 0.6;
}

.sightseeing-guide-intro__title {
    margin: 0 0 18px;
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1.45;
    font-weight: 400;
}

.sightseeing-guide-intro__lead {
    max-width: 760px;
    margin: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.04em;
}




/* MOBILE
------------------------------------------ */

@media (max-width: 768px) {

    .sightseeing-guide-intro {
        width: calc(100% - 40px);
        margin-bottom: 36px;
    }

}


@media (max-width: 390px) {

    .sightseeing-guide-intro {
        width: calc(100% - 32px);
    }

}
.food-guide-card__title {
    font-weight: 600;
}