@charset "UTF-8";
/**
 * メインエントリ
 * シティコンタクト 夏アイウェアセール LP
 */
/**
 * 変数定義
 * シティコンタクト 夏アイウェアセール LP
 * カラー・フォント・スペーシング等の共通変数
 */
/* 夏セール・ファーストビュー */
/* ファーストビュー3カラム共通ヘッダー高さ */
/* 下段ビジュアル: 上の画像と重ねるオーバーラップ量（コンテナ幅に対する%） */
/* 枠画像直下など細い隙間用（上端透明で白が見える箇所） */
/* カラー */
/* サイドバーヘッダー用グラデーション（5段階） */
/* フォント（明朝体・通常） */
/* 明朝体・太字を優先（Demibold/Bold を先に指定） */
/* ゴシック体（商品カードの品番・価格など）Roboto Condensed / Noto Sans JP + ローカル DIN 系 */
/* スペーシング */
/* ブレークポイント */
/* 992px未満1カラム時: 中央カラム幅を3カラム時と同じに保つ（992px時の中央40% ≒ 397px） */
/* トランジション */
/**
 * メインエントリ
 * シティコンタクト 夏アイウェアセール LP
 */
/**
 * ベーススタイル
 * リセット・タイポグラフィ・全体の土台
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", "MS Mincho", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

/* 太字は明朝体の Bold 系を優先 */
strong,
b,
h1, h2, h3, h4, h5, h6,
[class*=__name],
[class*=__title],
[class*=__catch] {
  font-family: "Yu Mincho Demibold", "Yu Mincho Bold", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", "MS Mincho", serif;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**
 * メインエントリ
 * シティコンタクト 夏アイウェアセール LP
 */
/**
 * レイアウト
 * ヘッダー・メイン・フッター・コンテナ
 */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .l-container {
    padding: 0 40px;
  }
}

.l-header {
  padding: 16px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.l-main {
  min-height: 60vh;
}

.l-footer {
  margin-top: 64px;
  padding: 40px 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  text-align: center;
  font-size: 0.875rem;
  color: #666666;
}

.l-section {
  padding: 64px 0;
}
@media (min-width: 768px) {
  .l-section {
    padding: 76.8px 0;
  }
}

.l-section--alt {
  background-color: #f8f9fa;
}

.l-section__title {
  margin: 0 0 40px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .l-section__title {
    font-size: 2rem;
  }
}

/* ========================================
   ファーストビュー 3カラム（中央スクロール・左右固定）
   SP: 1カラム（中央→左→右の順）
   ======================================== */
.p-fv {
  /* 992px未満: 中央の枠の横幅は変えず中央配置、両脇は白 */
}
@media (max-width: 991px) {
  .p-fv {
    background-color: #ffffff;
  }
}
@media (min-width: 992px) {
  .p-fv {
    min-height: 100vh;
  }
}

/* 中央コンテンツ用スクロールを画面右端に出すためのラッパー（PC時のみ） */
@media (min-width: 992px) {
  .p-fv__scroll-wrap {
    width: 100%;
    height: 100vh;
    overflow-y: auto;
  }
}

.p-fv__inner {
  display: grid;
  gap: 0;
  /* SP: 1カラム、表示順は order で制御 */
  grid-template-columns: 1fr;
  grid-template-areas: "center" "left" "right";
}
@media (max-width: 991px) {
  .p-fv__inner {
    max-width: 396.8px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .p-fv__inner {
    /* 中央FVを1画面に収めるため中央を狭め、左右を広げる（38:24:38） */
    grid-template-columns: 38fr 24fr 38fr;
    grid-template-areas: "left center right";
    min-height: 100vh;
  }
}

.p-fv__left {
  grid-area: left;
  order: 2;
  /* 1カラム時: 左サイドバーは非表示（店舗一覧は .p-fv__stores-sp で表示） */
}
@media (max-width: 991px) {
  .p-fv__left {
    display: none;
  }
}
@media (min-width: 992px) {
  .p-fv__left {
    order: 0;
    position: sticky;
    top: 0;
    align-self: start;
    max-height: 100vh;
    overflow-y: auto;
  }
}

.p-fv__center {
  grid-area: center;
  order: 1;
  min-width: 0;
}
@media (min-width: 992px) {
  .p-fv__center {
    order: 0;
    /* スクロールは .p-fv__scroll-wrap で行い、スクロールバーを画面右端に表示 */
    overflow: visible;
    /* 3カラム境界のサブピクセル割れによる白筋を防ぐ */
    margin-left: -1px;
    margin-right: -1px;
    width: calc(100% + 2px);
  }
}

.p-fv__right {
  grid-area: right;
  order: 3;
  /* 1カラム時: 右サイドバーは非表示（フレームは .p-fv__frames-sp で表示） */
}
@media (max-width: 991px) {
  .p-fv__right {
    display: none;
  }
}
@media (min-width: 992px) {
  .p-fv__right {
    order: 0;
    position: sticky;
    top: 0;
    align-self: start;
    max-height: 100vh;
    overflow-y: auto;
  }
}

/* SP: サイドバー相当ブロック（中央カラム内・隙間ゼロで縦並び） */
@media (max-width: 991px) {
  .p-fv__products-sp,
  .p-fv__fv-sp,
  .p-fv__stores-sp {
    margin: 0;
  }
}
@media (min-width: 992px) {
  .p-fv__products-sp,
  .p-fv__fv-sp,
  .p-fv__stores-sp {
    display: none !important;
  }
}
/* 左・右サイドバーのスクロールバーのみ非表示（中央は .p-fv__scroll-wrap でスクロールしバーは画面右端に表示） */
@media (min-width: 992px) {
  .p-fv__left,
  .p-fv__right {
    -ms-overflow-style: none;
    /* IE / Edge Legacy */
    scrollbar-width: none;
    /* Firefox */
  }
  .p-fv__left::-webkit-scrollbar,
  .p-fv__right::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
/**
 * メインエントリ
 * シティコンタクト 夏アイウェアセール LP
 */
/**
 * コンポーネント
 * 夏セール LP 共通パーツ
 */
.c-sidebar {
  background-color: #ffffff;
}

.c-sidebar__header {
  padding: 24px;
  background: linear-gradient(120deg, #35b597 0%, #a7d398 15%, #bad988 30%, #d5e7af 60%, #eaf2c7 100%);
  color: #231815;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}

.c-store-list-wrap {
  text-align: center;
}

.c-store-list {
  margin: 0;
  padding: 0;
  text-align: center;
  display: inline-block;
  max-width: 400px;
  width: 100%;
}

.c-store-list__item {
  margin-bottom: 24px;
  width: 100%;
}
.c-store-list__item:last-child {
  margin-bottom: 0;
}

.c-store-list__pref {
  display: block;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #000000;
  font-size: 1rem;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
}

.c-store-list__stores {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.5;
  text-align: center;
  word-spacing: -0.3em;
}

.c-store-list__link {
  color: inherit;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.c-store-list__link:hover, .c-store-list__link:focus, .c-store-list__link:visited {
  color: #0066cc;
  text-decoration: none !important;
}

.c-center-header {
  padding: 24px;
  text-align: center;
}

.c-center-header__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/**
 * メインエントリ
 * シティコンタクト 夏アイウェアセール LP
 */
/**
 * 夏セール LP ファーストビュー（PC 3カラム）
 * 左: 人気ブランド商品 / 中央: メインビジュアル / 右: 店舗一覧
 */
/* 夏セール用サイドバーヘッダー（青→オレンジ/黄グラデーション） */
/* ========================================
   左サイドバー: セール商品カード
   ======================================== */
.p-fv__left .c-sidebar__header {
  padding: 20px 12px;
  background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
  color: #000000;
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
  font-size: 0.9375rem;
  white-space: normal;
  padding: 20px 10px;
  flex-shrink: 0;
}

.c-sidebar__header--products {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.c-sidebar__header-title,
.c-sidebar__header-sub {
  margin: 0;
  font-weight: bold;
  line-height: 1.35;
}

.c-sidebar__header-title {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", "MS Mincho", serif;
  font-size: 1em;
}

.c-sidebar__header-sub {
  font-family: "Noto Sans JP", "DIN Next", "FF DIN", "DIN 2014", "Yu Gothic", sans-serif;
  font-weight: normal;
  font-size: 0.8125em;
}

.p-fv__left .c-sidebar__body {
  padding: 0;
}

.c-sale-card {
  padding: 16px 24px;
  border-bottom: 1px dashed #000000;
}

.c-sale-card:last-child {
  border-bottom: none;
}

.c-sale-card__inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.c-sale-card__img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 65%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.c-sale-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.c-sale-card__logo {
  display: block;
  width: auto;
  max-width: 55%;
  max-height: 36px;
  object-fit: contain;
  object-position: left top;
  flex-shrink: 0;
}

.c-sale-card__logo--katespade {
  max-width: 50%;
  max-height: 42px;
}

.c-sale-card__logo--tokyosnap {
  max-width: 58%;
  max-height: 30px;
}

.c-sale-card__info {
  flex: 1;
  min-width: 0;
  margin-left: 16px;
  padding-bottom: 2px;
  text-align: center;
}

.c-sale-card__brand {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", "MS Mincho", serif;
  font-weight: normal;
  margin: 0 0 2px;
  font-size: 0.8125rem;
  line-height: 1.3;
}

.c-sale-card__model,
.c-sale-card__regular,
.c-sale-card__off,
.c-sale-card__off-unit {
  font-family: "Noto Sans JP", "DIN Next", "FF DIN", "DIN 2014", "Yu Gothic", sans-serif;
  font-weight: normal;
}

.c-sale-card__model {
  margin: 0 0 6px;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 1.4px;
}

.c-sale-card__regular {
  margin: 0 0 6px;
  font-size: 0.6875rem;
  color: #000000;
}

.c-sale-card__off {
  display: inline-block;
  margin: 0 0 6px;
  padding: 3px 10px;
  font-size: 0.75rem;
  color: #ffffff;
  background-color: #f08500;
  line-height: 1.3;
}

.c-sale-card__off-unit {
  font-size: 0.5rem;
}

.c-sale-card__price {
  display: inline-flex;
  align-items: center;
  font-family: "Noto Sans JP", "DIN Next", "FF DIN Bold", "DIN 2014", "Yu Gothic Bold", sans-serif;
  font-weight: bold;
  margin: 0;
  font-size: 1.625rem;
  line-height: 1.1;
}

.c-sale-card__price::after {
  content: "(税込)";
  margin-left: 0.25em;
  font-size: 0.4em;
  font-weight: normal;
}

.c-sale-card__price-unit {
  font-family: inherit;
  font-weight: inherit;
  font-size: 0.72em;
  line-height: 1;
}

/* PC: 左カラム全体を中央FVと同じ高さに揃え、3商品を均等配置 */
@media (min-width: 992px) {
  .p-fv__left .c-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .p-fv__left .c-sidebar__body {
    flex: 1;
    display: grid;
    /* 2列目を残り幅で埋め、右端の空白をなくす */
    grid-template-columns: minmax(0, 65%) minmax(0, 35%);
    grid-auto-rows: 1fr;
    min-height: 0;
  }
  .p-fv__left .c-sale-card {
    position: relative;
    flex: none;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: subgrid;
    justify-content: stretch;
    margin: 0;
    padding: 16px 24px;
    border-bottom: none;
    min-height: 0;
  }
  /* 点線はコンテンツ幅に合わせて左右同じ余白 */
  .p-fv__left .c-sale-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(24px + 12px);
    right: calc(24px + 12px);
    bottom: 0;
    border-bottom: 1px dashed #000000;
  }
  .c-sale-card__inner {
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: subgrid;
    align-items: center;
    height: 100%;
  }
  .p-fv__left .c-sale-card__img-wrap {
    justify-self: stretch;
    width: 100%;
    align-self: center;
    padding: 0 clamp(6px, 1.2vw, 12px);
    box-sizing: border-box;
  }
  .p-fv__left .c-sale-card__img {
    /* 画面幅が狭まるほど小さく（SP切替前の改行防止） */
    max-height: clamp(72px, 11vw, 168px);
    width: 100%;
    object-fit: contain;
    object-position: center center;
  }
  .p-fv__left .c-sale-card__logo {
    max-height: clamp(18px, 2.6vw, 40px);
  }
  .p-fv__left .c-sale-card__logo--katespade {
    max-height: clamp(20px, 2.9vw, 46px);
  }
  .p-fv__left .c-sale-card__logo--tokyosnap {
    max-height: clamp(16px, 2.3vw, 32px);
  }
  .p-fv__left .c-sale-card__info {
    align-self: center;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    padding: 0 clamp(6px, 1.2vw, 12px);
    box-sizing: border-box;
  }
  .p-fv__left .c-sale-card__brand,
  .p-fv__left .c-sale-card__model,
  .p-fv__left .c-sale-card__regular,
  .p-fv__left .c-sale-card__price {
    white-space: nowrap;
  }
  .p-fv__left .c-sale-card__brand {
    font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  }
  .p-fv__left .c-sale-card__model {
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
  }
  .p-fv__left .c-sale-card__regular {
    font-size: clamp(0.625rem, 0.9vw, 0.75rem);
  }
  .p-fv__left .c-sale-card__off {
    font-size: clamp(0.6875rem, 1vw, 0.8125rem);
    padding: 4px clamp(8px, 2vw, 20px);
  }
  .p-fv__left .c-sale-card__price {
    font-size: clamp(1.25rem, 2.1vw, 2rem);
  }
  /* 992px付近: テキスト列を広げて眼鏡をさらに縮小 */
}
@media (min-width: 992px) and (max-width: 1150px) {
  .p-fv__left .c-sidebar__body {
    grid-template-columns: minmax(0, 56%) minmax(0, 44%);
  }
  .p-fv__left .c-sale-card__img {
    max-height: clamp(64px, 9.5vw, 120px);
  }
  .p-fv__left .c-sale-card {
    padding-left: clamp(12px, 2vw, 24px);
    padding-right: clamp(12px, 2vw, 24px);
  }
}
/* ========================================
   右サイドバー: 店舗一覧
   ======================================== */
.p-fv__right .c-sidebar__header {
  padding: 20px 12px;
  background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
  color: #000000;
  font-size: 1.05rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}

.p-fv__right .c-sidebar__body {
  padding: 24px 16px;
}

.p-fv__right .c-store-list-wrap {
  width: 100%;
  text-align: center;
}

.p-fv__right .c-store-list {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.p-fv__right .c-store-list__item {
  margin-bottom: 16px;
}

.p-fv__right .c-store-list__item:last-child {
  margin-bottom: 0;
}

.p-fv__right .c-store-list__pref {
  margin: 0;
  padding: 8px 16px;
  border: none;
  background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
  font-size: 0.9375rem;
  font-weight: bold;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.p-fv__right .c-store-list__stores {
  margin: 6px 0 0;
  font-size: 0.8125rem;
  font-weight: bold;
  line-height: 1.55;
  text-align: center;
  word-spacing: -0.3em;
}

.p-fv__right .c-store-list__stores + .c-store-list__stores {
  margin-top: 2px;
}

@media (min-width: 992px) {
  .p-fv__right .c-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  .p-fv__right .c-sidebar__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 24px;
    min-height: 0;
  }
  .p-fv__right .c-store-list-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .p-fv__right .c-store-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .p-fv__right .c-store-list__item {
    margin-bottom: 0;
  }
  .p-fv__right .c-store-list__pref {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .p-fv__right .c-store-list__stores {
    font-size: 0.875rem;
    margin-top: 8px;
  }
}
/* 中央ヘッダー: 白背景・高さ固定・スクロール時も上部に固定 */
.p-fv__center .c-center-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  padding: 0 24px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.p-fv__center .c-center-header__img {
  display: block;
  max-height: 28px;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.c-center-header__menu,
.p-mobile-menu,
.p-fv-anchor-buttons {
  display: none;
}

@media (max-width: 991px) {
  body.is-mobile-menu-open {
    overflow: hidden;
  }
  #summer-visual,
  #products,
  #stores {
    scroll-margin-top: 50px;
  }
  .p-fv__center .c-center-header {
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    padding: 0 44px;
    border-bottom: 1px solid #e0e0e0;
  }
  .p-fv__center .c-center-header__img {
    max-height: 28px;
  }
  .c-center-header__menu {
    position: absolute;
    right: 9px;
    top: 18%;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: none;
  }
  .c-center-header__menu-line {
    display: block;
    width: 26px;
    height: 3px;
    margin: 0 auto;
    background-color: #0089d3;
    border-radius: 999px;
  }
  .p-mobile-menu {
    position: fixed;
    top: 0;
    right: 50%;
    z-index: 100;
    display: block;
    width: min(100%, 396.8px);
    height: 100dvh;
    padding: 50px 12px 12px;
    box-sizing: border-box;
    overflow-y: auto;
    background-color: #ffffff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: translateX(150%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
  }
  .p-mobile-menu.is-open {
    opacity: 1;
    transform: translateX(50%);
    pointer-events: auto;
  }
  .p-mobile-menu__close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: none;
  }
  .p-mobile-menu__close-line {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 26px;
    height: 3px;
    background-color: #0089d3;
    border-radius: 999px;
    transform-origin: center;
  }
  .p-mobile-menu__close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .p-mobile-menu__close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .p-mobile-menu__links {
    display: grid;
    gap: 4px;
  }
  .p-mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 73px;
    padding: 10px 12px;
    box-sizing: border-box;
    background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
    color: #000000;
    font-family: "Yu Mincho Demibold", "Yu Mincho Bold", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", "MS Mincho", serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
    transition: none;
  }
  .p-mobile-menu__link:hover,
  .p-mobile-menu__link:focus,
  .p-mobile-menu__link:visited {
    color: #000000;
    text-decoration: none;
  }
  .p-fv-anchor-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
    padding: 2px;
    background-color: #ffffff;
  }
  .p-fv-anchor-buttons__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0.1rem;
    min-height: 60px;
    padding: 8px 4px;
    border-radius: 0;
    box-sizing: border-box;
    background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
    color: #000000;
    font-family: "Yu Mincho Demibold", "Yu Mincho Bold", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", "MS Mincho", serif;
    font-size: 0.72rem;
    font-weight: bold;
    line-height: 1.35;
    text-align: center;
    text-decoration: none;
    transition: none;
  }
  .p-fv-anchor-buttons__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .p-fv-anchor-buttons__line {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0.972rem;
    width: 100%;
    line-height: 1.35;
    text-align: center;
  }
  .p-fv-anchor-buttons__line[aria-hidden=true] {
    visibility: hidden;
    user-select: none;
  }
  .p-fv-anchor-buttons__link:hover,
  .p-fv-anchor-buttons__link:focus,
  .p-fv-anchor-buttons__link:visited {
    color: #000000;
    text-decoration: none;
  }
  .p-fv-anchor-buttons__link::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
  }
}
@media (min-width: 992px) {
  .p-fv__left .c-sidebar__header,
  .p-fv__right .c-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    padding-top: 0;
    padding-bottom: 0;
    flex-shrink: 0;
  }
  .p-fv__left .c-sidebar__header--products {
    height: auto;
    min-height: 64px;
    max-height: none;
    padding: 8px 10px;
  }
  .p-fv__left .c-sidebar__header {
    padding-left: 10px;
    padding-right: 10px;
  }
  .p-fv__right .c-sidebar__header {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* ========================================
   中央: 夏セールヒーロー
   ======================================== */
.p-fv-hero--summer {
  margin-bottom: 0;
  line-height: 0;
}

.p-fv-hero--summer .p-fv-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================
   夏セール 中央カラム下段ビジュアル
   ======================================== */
.p-summer-visual {
  margin: 0;
  line-height: 0;
}

.p-summer-visual__img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 2枚目を上に重ねる（重なれば重なるほど1枚目の下端が隠れ、2枚目は消えない） */
.p-summer-visual__img--pull-up,
.p-summer-visual__stack--pull-up {
  position: relative;
  z-index: 2;
  margin-top: calc(-12% - 5px);
}

/* 細い隙間対策（枠画像の直下: keshiki / mamoru / minna など） */
.p-summer-visual__img--pull-up-tight {
  position: relative;
  z-index: 2;
  margin-top: calc(0% - 5px);
}

.p-summer-visual__stack {
  position: relative;
  width: 100%;
  line-height: 0;
}

.p-summer-visual__waku {
  display: block;
  width: 100%;
  height: auto;
}

.p-summer-visual__megane {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 70%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* SP: 商品・fv再表示・店舗ブロック */
@media (max-width: 991px) {
  .p-fv__products-sp .c-sidebar__header,
  .p-fv__stores-sp .c-sidebar__header {
    padding: 20px 12px;
    background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
    color: #000000;
    font-size: 1.05rem;
    font-weight: bold;
    line-height: 1.45;
    text-align: center;
    font-size: 0.9rem;
    padding: 20px 10px;
  }
  .p-fv__products-sp .c-sidebar__body {
    padding: 0;
  }
  /* 上下余白あり・点線はコンテンツ幅に合わせて左右同じ余白 */
  .p-fv__products-sp .c-sale-card {
    position: relative;
    padding: 16px 24px;
    border-bottom: none;
  }
  .p-fv__products-sp .c-sale-card:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(100% - 48px, 14.75rem + 16px);
    transform: translateX(-50%);
    border-bottom: 1px dashed #000000;
  }
  .p-fv__products-sp .c-sale-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  /* 眼鏡＋テキストを実データ幅に合わせて中央配置 */
  .p-fv__products-sp .c-sale-card__img-wrap,
  .p-fv__products-sp .c-sale-card__info {
    flex: none;
    width: min(100%, 14.75rem + 16px);
    margin-left: auto;
    margin-right: auto;
  }
  .p-fv__products-sp .c-sale-card__img-wrap {
    padding: 0 12px;
    box-sizing: border-box;
  }
  .p-fv__products-sp .c-sale-card__img {
    width: 100%;
    max-width: none;
  }
  /* ロゴは枠内左上 */
  .p-fv__products-sp .c-sale-card__logo,
  .p-fv__products-sp .c-sale-card__logo--katespade,
  .p-fv__products-sp .c-sale-card__logo--tokyosnap {
    max-width: 55%;
    max-height: 36px;
    object-fit: contain;
    object-position: left top;
  }
  .p-fv__products-sp .c-sale-card__logo--katespade {
    max-width: 50%;
    max-height: 42px;
  }
  .p-fv__products-sp .c-sale-card__logo--tokyosnap {
    max-width: 58%;
    max-height: 30px;
  }
  /* 品名ブロック｜価格列（グリッド幅＝コンテナ幅） */
  .p-fv__products-sp .c-sale-card__info {
    display: grid;
    grid-template-columns: minmax(8rem, 1fr) 6.75rem;
    grid-template-rows: auto auto auto;
    row-gap: 0;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0;
    text-align: center;
  }
  .p-fv__products-sp .c-sale-card__brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    width: 100%;
    margin: 0;
    font-size: 0.8125rem;
    text-align: center;
    white-space: nowrap;
  }
  .p-fv__products-sp .c-sale-card__model {
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
    margin: 0;
    font-size: 0.75rem;
    text-align: center;
    white-space: nowrap;
  }
  .p-fv__products-sp .c-sale-card__regular {
    grid-column: 2;
    grid-row: 1/3;
    align-self: end;
    justify-self: stretch;
    margin: 0;
    font-size: 0.6875rem;
    text-align: right;
    white-space: nowrap;
  }
  .p-fv__products-sp .c-sale-card__off {
    grid-column: 1;
    grid-row: 3;
    align-self: start;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92%;
    box-sizing: border-box;
    margin: 0;
    padding: 3px 10px;
    font-size: 0.75rem;
    line-height: 1.3;
    text-align: center;
  }
  .p-fv__products-sp .c-sale-card__price {
    grid-column: 2;
    grid-row: 3;
    align-self: end;
    justify-self: stretch;
    justify-content: flex-end;
    margin: 0;
    font-size: 1.2rem;
    text-align: right;
  }
  .p-fv__fv-sp {
    line-height: 0;
  }
  .p-fv__fv-sp-img {
    display: block;
    width: 100%;
    height: auto;
  }
  .p-fv__stores-sp .c-sidebar__body {
    padding: 24px 16px;
  }
  .p-fv__stores-sp .c-store-list {
    display: block;
    max-width: none;
    width: 100%;
  }
  .p-fv__stores-sp .c-store-list__pref {
    border: none;
    padding: 0 16px;
    background: linear-gradient(90deg, #0089d3 0%, #4fc2f1 35%, #54c3f1 65%, #008ad4 100%);
    text-align: center;
  }
}
/* フッター: 白枠内に会社名を中央配置 */
.p-main-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-sizing: border-box;
  min-height: 88px;
  padding: 24px;
  background-color: #ffffff;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.p-main-footer__copyright {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.4;
  color: #000000;
  font-weight: 700;
}

.p-main-footer__links {
  margin: 16px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(40px, 10vw, 110px);
}

.p-main-footer__link {
  font-size: 0.9rem;
  line-height: 1.4;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
.p-main-footer__link:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
