@charset "UTF-8";

/* トップページの style.css を先に読み込み、このファイルで売店ページだけを追加します。 */
.shop-page {
  background: var(--bg);
}

.shop-page ruby {
  ruby-position: over;
}

.shop-page rt {
  font-size: 10px;
  letter-spacing: .12em;
}

.global-nav a.current {
  color: var(--gold2);
}

.global-nav a.current::after {
  width: 100%;
}

.shop-hero {
  height: 78vh;
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

/* ==============================
   売店ヒーロー スライドショー
============================== */

.shop-hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shop-hero__slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0;

  transform: scale(1.06);

  transition:
    opacity 1.5s ease,
    transform 7s ease;
}

.shop-hero__slide.active {
  opacity: 1;
  transform: scale(1);
}


/* オーバーレイ */

/* ヒーロー画像の明るさ調整 */
.shop-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .15);
  z-index: 1;
}

/* ヒーロー文字 */

.shop-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 22px;
}


/* SCROLL文字 */

.shop-hero .scroll-sign {
  z-index: 2;
}

.shop-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 22px;
}

.shop-hero__content h1 {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .12em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, .48);
}

.shop-hero__content>p:last-child {
  margin-top: 24px;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: .12em;
  text-shadow: 0 6px 20px rgba(0, 0, 0, .5);
}


.shop-intro {
  background: var(--bg2);
}

.shop-intro__grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: start;
}

.shop-intro h2,
.shop-story h2,
.shop-online h2,
.shop-ending h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.55;
}

.shop-intro__text>p {
  color: var(--sub);
  margin-bottom: 20px;
}

.shop-hours {
  margin-top: 38px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 28px;
}

.shop-hours span {
  color: var(--sub);
  font-size: 14px;
}

.shop-hours strong {
  font-size: 28px;
  font-weight: 400;
  color: var(--green);
}

.shop-featured {
  background: var(--bg);
}

.shop-featured__grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 86px;
  align-items: center;
}

.shop-featured__photo {
  position: relative;
}

.shop-featured__photo::before {
  content: "";
  position: absolute;
  left: -35px;
  bottom: -35px;
  width: 82%;
  height: 92%;
  background: #e9deca;
  border-radius: var(--radius);
}

.shop-featured__photo img {
  position: relative;
  z-index: 1;
  height: 610px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.shop-rank-badge {
  position: absolute;
  z-index: 2;
  right: -24px;
  top: -26px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}

.shop-rank-badge span {
  font-size: 12px;
}

.shop-rank-badge strong {
  font-size: 19px;
  font-weight: 400;
}

.shop-featured__body h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--green);
  margin-bottom: 24px;
}

.shop-lead {
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.7;
  color: var(--green);
  margin-bottom: 30px;
}

.shop-featured__body>p:not(.section-kicker):not(.shop-lead) {
  color: var(--sub);
}

.shop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.shop-tags li {
  border: 1px solid var(--line);
  background: var(--bg2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--green);
}

.shop-products {
  background: #efe6d6;
}

.shop-product-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.shop-product-card {
  background: var(--bg2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, .08);
  transition: .45s;
}

.shop-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .13);
}

.shop-product-card__image {
  height: 390px;
  position: relative;
  overflow: hidden;
}
.shop-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;
  background: #fff;
  transition: transform .8s;
}


.shop-product-card:hover img {
  transform: scale(1.05);
}

.shop-product-card__image span {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(23, 56, 44, .92);
  color: #fff;
  padding: 11px 18px;
  font-size: 10px;
  letter-spacing: .2em;
}

.shop-product-card__body {
  padding: 34px 36px 40px;
}

.shop-product-type {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: .14em;
  margin-bottom: 10px;
}

.shop-product-card h3 {
  font-size: 30px;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 18px;
}

.shop-product-card__body>p:last-child {
  color: var(--sub);
}
.shop-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green);
  color: #fff;
}

.shop-story__image {
  min-height: 680px;
}

.shop-story__image img {
  height: 100%;
}

.shop-story__body {
  padding: 90px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-story__body .section-kicker {
  color: var(--gold2);
}

.shop-story__body h2 {
  margin-bottom: 34px;
}

.shop-story__body>p:not(.section-kicker) {
  color: rgba(255, 255, 255, .82);
  margin-bottom: 18px;
}

.shop-online {
  background: linear-gradient(135deg, #e8dcc6, #f8f0df);
}

.shop-online__box {
  max-width: 900px;
  margin: auto;
  padding: 74px 70px;
  text-align: center;
  background: rgba(255, 250, 241, .93);
  border: 1px solid rgba(184, 149, 84, .28);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.shop-online__box h2 {
  color: var(--green);
  margin-bottom: 24px;
}

.shop-online__box>p:not(.section-kicker) {
  max-width: 670px;
  margin: 0 auto 34px;
  color: var(--sub);
}

.shop-online__button {
  min-width: 280px;
}

.shop-info {
  background: var(--bg2);
}

.shop-info__grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.shop-info__card {
  min-height: 230px;
  padding: 42px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.shop-info__card>span {
  position: absolute;
  left: 18px;
  top: 14px;
  color: var(--gold);
  font-size: 11px;
}

.shop-info__card p {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 20px;
}

.shop-info__card strong {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 400;
  color: var(--green);
  line-height: 1.6;
}

.shop-info__note {
  text-align: center;
  color: var(--sub);
  font-size: 12px;
  margin-top: 28px;
}

.shop-ending {
  min-height: 580px;
  position: relative;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
}

.shop-ending__image,
.shop-ending__overlay {
  position: absolute;
  inset: 0;
}

.shop-ending__image {
  background-size: cover;
  background-position: center;
}

.shop-ending__overlay {
  background: rgba(12, 34, 26, .67);
}

.shop-ending__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 70px 24px;
}

.shop-ending__content .section-kicker {
  color: var(--gold2);
}

.shop-ending__content h2 {
  margin-bottom: 24px;
}

@media(max-width:980px) {

  .shop-intro__grid,
  .shop-featured__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .shop-featured__photo {
    width: calc(100% - 28px);
    margin-left: 28px;
  }

  .shop-product-grid {
    grid-template-columns: 1fr;
  }

  .shop-story {
    grid-template-columns: 1fr;
  }

  .shop-story__image {
    min-height: 480px;
  }

  .shop-info__grid {
    grid-template-columns: 1fr;
  }
}
.shop-intro__grid{
    max-width:1180px;
    margin:auto;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:90px;
    align-items:start;
}
.shop-intro__grid > div:first-child{
    max-width:700px;
}
.shop-intro h2{
    white-space: nowrap;
}
@media(max-width:560px) {
  .shop-hero {
    height: 72vh;
    min-height: 570px;
  }

  .shop-hero__content h1 {
    font-size: 38px;
  }

  .shop-intro h2,
  .shop-story h2,
  .shop-online h2,
  .shop-ending h2 {
    font-size: 29px;
  }

  .shop-hours {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .shop-featured__photo img {
    height: 420px;
  }

  .shop-rank-badge {
    width: 102px;
    height: 102px;
    right: -10px;
  }

  .shop-rank-badge strong {
    font-size: 15px;
  }

  .shop-product-card__image {
    height: 320px;
  }

  .shop-product-card__body {
    padding: 28px 24px 32px;
  }

  .shop-story__image {
    min-height: 350px;
  }

  .shop-story__body {
    padding: 64px 24px;
  }

  .shop-online__box {
    padding: 52px 22px;
  }

  .shop-online__button {
    min-width: 0;
    width: 100%;
  }
}