@charset "utf-8";

body.enter-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 179, 0, .18), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(247, 11, 114, .18), transparent 30%),
    linear-gradient(180deg, #fff7fb 0%, #ffffff 54%, #fff2f7 100%);
}

.enter {
  min-height: calc(100vh - 108px);
  padding: 42px 0 54px;
}

.enter__container {
  width: min(100% - 44px, 1080px);
  margin-inline: auto;
}

.enter__panel {
  overflow: hidden;
  border: 1px solid #ffd0e2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(247, 11, 114, .14);
}

.enter__hero {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  padding: 48px 22px;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(247, 11, 114, .18), rgba(174, 0, 72, .62)),
    url("../../img/index.jpg") center/cover;
}

.enter__hero::before,
.enter__hero::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  pointer-events: none;
}

.enter__hero::after {
  inset: 25px;
  border-color: rgba(255, 255, 255, .22);
}

.enter__content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
}

.enter__logo {
  display: block;
  width: min(420px, 82vw);
  margin: 0 auto 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.enter__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  padding: 6px 18px;
  background: rgba(255, 255, 255, .18);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
}

.enter__copy {
  margin: 0 0 10px;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.28;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .28);
}

.enter__lead {
  margin: 0 auto;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.enter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 62px;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 12px 36px;
  color: var(--color-primary);
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .18);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.enter__button:hover {
  transform: translateY(-2px);
  background: #fff7fb;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.enter__notice {
  margin: 18px 0 0;
  font-size: 12px;
  font-weight: 700;
  opacity: .95;
}

.enter__area,
.enter__ads {
  padding: 24px 22px;
  background: #fff;
}

.enter__area {
  border-bottom: 1px solid #ffe4ee;
}

.enter__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.enter__section-title::before,
.enter__section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #ffd0e2;
}

.enter__area-lead {
  margin: -4px 0 18px;
  color: #555;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.enter__area-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.enter__area-card {
  display: grid;
  min-height: 104px;
  align-content: start;
  border: 2px solid #ffd0e2;
  border-radius: 12px;
  padding: 16px 12px;
  color: #333;
  background: linear-gradient(135deg, #fff, #fff4f8);
  box-shadow: 0 4px 12px rgba(247, 11, 114, .08);
  text-align: center;
}

.enter__area-card h3 {
  margin: 0 0 10px;
  color: #777;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
}

.enter__area-card nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 6px;
}

.enter__area-card a {
  display: inline-flex;
  width: 84px;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffc1d8;
  border-radius: 8px;
  padding: 7px 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.enter__area-card a:hover {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 4px 10px rgba(247, 11, 114, .18);
}

.enter__ad-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.enter__ad {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px solid #ffd0e2;
  border-radius: 8px;
  padding: 18px 14px;
  overflow: hidden;
  color: var(--color-primary);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 242, 247, .92)),
    url("../../img/top03.jpg") center/cover;
  text-align: center;
}

.enter__ad:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 242, 247, .9)),
    url("../../img/shop_noimage.png") center/cover;
}

.enter__ad:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 242, 247, .9)),
    url("../../img/recruit-girl.jpg") center/cover;
}

.enter__ad .enter__ad-text {
  display: inline-block;
  margin-bottom: 7px;
  border-radius: 999px;
  padding: 3px 10px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.enter__ad strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
}

.enter__ad small {
  display: block;
  margin-top: 4px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
}

.enter__ad-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.enter__footer-copy {
  margin: 18px 0 0;
  color: #999;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 1200px) {
  .enter__area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .enter {
    padding: 26px 0 36px;
  }

  .enter__container {
    width: min(100% - 28px, 1080px);
  }

  .enter__hero {
    min-height: 390px;
    padding: 38px 18px;
  }

  .enter__button {
    min-width: 230px;
    font-size: 20px;
  }

  .enter__area,
  .enter__ads {
    padding: 20px 14px;
  }

  .enter__area-card {
    min-height: 92px;
  }

  .enter__ad-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --color-primary: var(--premium-pink);
  --color-primary-dark: #dc0060;
  --color-accent: #ffb300;
  --color-success: #00a532;
  --color-text: #191919;
  --color-muted: #747474;
  --color-line: #dddddd;
  --color-panel: #ffffff;
  --color-soft: #fff2f7;
  --font-base: "Zen Maru Gothic", sans-serif;
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.07);
  --radius: 6px;
  --container: 1200px;
  --premium-pink: #f70b72;
  --premium-pink-soft: #fff8fb;
  --premium-border: #ffd1e2;
  --premium-blue: #1a57e8;
  --premium-orange: #ff6d14;
  --premium-green: #2aa85a;
}

.page--top {
  background: #fff;
}

.top-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 550px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-radius: var(--radius);
  padding: 42px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 238, 248, .16) 100%),
    var(--top-hero-bg, url("../../img/top-hero-yamagata-bg.png?v=20260722-001")) center / cover no-repeat;
  isolation: isolate;
}

.top-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 34%, rgba(255, 255, 255, .74) 0 22%, rgba(255, 255, 255, .18) 52%, transparent 72%);
  content: "";
}

.top-hero__content {
  width: min(100%, 660px);
  margin-inline: auto;
  color: #ed1980;
  text-align: center;
  text-shadow: 0 1px 0 #fff, 0 0 12px rgba(255, 255, 255, .92);
}

.top-hero__eyebrow {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .42em;
}

.top-hero__title {
  margin: 4px 0 8px;
  color: #ec2587;
  font-size: clamp(64px, 8vw, 104px);
  font-weight: 500;
  letter-spacing: .2em;
  line-height: 1;
  text-indent: .2em;
}

.top-hero__ribbon {
  width: min(100%, 500px);
  margin: 0 auto 16px;
  clip-path: polygon(0 0, 100% 0, 94% 50%, 100% 100%, 0 100%, 6% 50%);
  padding: 7px 42px 9px;
  color: #fff;
  background: linear-gradient(180deg, #f62c91 0%, #e91879 100%);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: .26em;
  line-height: 1.2;
  text-indent: .26em;
  text-shadow: 0 1px 2px rgba(135, 0, 61, .22);
}

.top-hero__ribbon-text--mobile {
  display: none;
}

.top-hero__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.top-hero__categories .top-hero__categories-text {
  color: #f59ac3;
}

.top-hero__lead {
  margin: 12px 0 0;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .06em;
}

.top-hero__accordion-toggle {
  display: none;
}

.top-hero__search {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(128px, .82fr);
  align-items: end;
  gap: 10px;
  border: 2px solid #f483b6;
  border-radius: 28px;
  padding: 15px 18px 17px;
  background: rgba(255, 255, 255, .94);
  box-shadow: inset 0 0 0 1px #fff, 0 8px 18px rgba(224, 20, 116, .2);
  backdrop-filter: blur(5px);
}

.top-hero__field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.top-hero__field--mobile {
  display: none;
}

.top-hero__field > .top-hero__field-text:first-child {
  color: #ed1980;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.top-hero__select-wrap {
  position: relative;
  display: block;
  min-width: 0;
}

.top-hero__select-wrap::after {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ef3d91;
  border-bottom: 2px solid #ef3d91;
  content: "";
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

.top-hero__field select {
  width: 100%;
  min-width: 0;
  height: 48px;
  appearance: none;
  border: 1px solid #f1a2c7;
  border-radius: 6px;
  padding: 0 30px 0 11px;
  color: #555;
  background: rgba(255, 255, 255, .96);
  font-size: 12px;
}

.top-hero__submit {
  display: inline-flex;
  min-width: 0;
  height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(180deg, #f82a91 0%, #eb0b7a 100%);
  box-shadow: 0 0 0 2px #ef3d91, 0 6px 12px rgba(224, 20, 116, .28);
  font-size: 18px;
  cursor: pointer;
}

.top-hero__submit svg {
  width: 23px;
  height: 23px;
  flex: 0 0 23px;
}

/* エリアトップ: ヒーロー画像と新人情報の間に常時表示するメニュー一覧 (スマホ幅のみ、ハンバーガーメニューの代替) */
.top__inline-nav {
  display: none;
}

@media (max-width: 1100px) {
  .top-hero {
    min-height: 520px;
    padding: 34px 20px 24px;
  }

  .top-hero__search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-hero__submit {
    grid-column: 1 / -1;
  }

  .page--top .page__search-sidebar {
    display: none;
  }

  .top__inline-nav {
    display: block !important;
    overflow: hidden;
    margin: 14px 0;
    border: 1px solid #ffcfe1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(233, 20, 99, .08);
  }

  .top__inline-nav .nav__scroll {
    max-height: none;
  }
}

@media (max-width: 640px) {
  .top-hero {
    min-height: 320px;
    justify-content: flex-start;
    gap: 0;
    border: 2px solid #f8d9e8;
    border-radius: 24px;
    padding: 68px 18px 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .04) 0%, rgba(255, 230, 244, .12) 100%),
      var(--top-hero-bg, url("../../img/top-hero-yamagata-mobile-bg.png?v=20260722-001")) center top / max(100%, 510px) auto no-repeat;
    background-color: #fbeaf3;
    box-shadow: inset 0 0 0 1px #fff;
  }

  .top-hero__content {
    width: 100%;
  }

  .top-hero__eyebrow {
    font-size: 16px;
    letter-spacing: .28em;
  }

  .top-hero__title {
    margin-top: 6px;
    font-size: clamp(68px, 18vw, 88px);
  }

  .top-hero__ribbon {
    width: min(100%, 300px);
    margin-bottom: 0;
    padding: 7px 22px 8px;
    font-size: 20px;
    letter-spacing: .04em;
    text-indent: 0;
  }

  .top-hero__ribbon-text--desktop {
    display: none;
  }

  .top-hero__ribbon-text--mobile {
    display: inline;
  }

  .top-hero__categories {
    display: none;
  }

  .top-hero__lead {
    display: none;
  }

  .top-hero__accordion-toggle {
    display: flex;
    width: 100%;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border: 1px solid rgba(236, 22, 136, .38);
    border-radius: 999px;
    padding: 8px 18px;
    color: #ed1980;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 8px 18px rgba(185, 18, 102, .18);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .top-hero__accordion-toggle[aria-expanded="true"] {
    color: #fff;
    background: linear-gradient(90deg, #ec1688, #ff4ca9);
  }

  .top-hero__search {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
    max-height: 520px;
    margin-top: 12px;
    border-radius: 28px;
    padding: 14px;
    opacity: 1;
    overflow: hidden;
    transition: max-height .42s ease, margin .42s ease, padding .42s ease, border-width .42s ease, opacity .2s ease;
  }

  .top-hero__search--closed {
    max-height: 0;
    margin: -22px 0 0;
    border-width: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    visibility: hidden;
  }

  .top-hero--search-open {
    padding-bottom: 20px;
  }

  .top-hero__field {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0;
  }

  .top-hero__field--mobile {
    display: grid;
  }

  .top-hero__field > .top-hero__field-text:first-child {
    display: flex;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid #f1a2c7;
    border-radius: 7px 0 0 7px;
    background: rgba(255, 255, 255, .96);
    font-size: 12px;
  }

  .top-hero__field select {
    height: 42px;
    border-left: 0;
    border-radius: 0 7px 7px 0;
    font-size: 11px;
  }

  .top-hero__submit {
    grid-column: 1 / -1;
    height: 45px;
    margin-top: 2px;
    font-size: 18px;
  }

  .top-hero__submit svg {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
  }
}

.top__shop-grid button,
.top__guide-grid button {
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-primary);
  font-weight: 400;
  text-align: center;
}

.top__section,
.top__rank-box,
.top__guide-grid a {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.top__rank-box[data-card-href] {
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.top__rank-box[data-card-href]:hover {
  border-color: #ff9cc4;
  box-shadow: 0 4px 12px rgba(225, 0, 105, .08);
}

.ranking__panel[data-card-href] {
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.ranking__panel[data-card-href]:hover {
  border-color: #ff9cc4;
  box-shadow: 0 4px 12px rgba(225, 0, 105, .08);
}

.shop-review-page__panel[data-card-href] {
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.shop-review-page__panel[data-card-href]:hover {
  border-color: #ff9cc4;
  box-shadow: 0 4px 12px rgba(225, 0, 105, .08);
}

.shop-ranking-page__list li[data-card-href] {
  cursor: pointer;
  transition: background-color .2s ease;
}

.shop-ranking-page__list li[data-card-href]:hover {
  background-color: #fff5f9;
}

.top__section[data-card-href] {
  cursor: pointer;
}

.top-coupon[data-card-href] {
  cursor: pointer;
}

.top__section {
  margin-top: 18px;
  padding: 18px;
}

.top__search-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 0;
}

.top__main-content .top__section:first-child {
  margin-top: 0;
}

.top__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  border-bottom: 1px solid #ffd0e2;
  padding-bottom: 10px;
}

.top__section-head h2,
.top__rank-box h2,
.top__guide-grid h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 20px;
}

.top__rank-box h2 a {
  color: inherit;
  text-decoration: none;
}

.top__rank-box h2 a:hover {
  text-decoration: underline;
}

.top__section-head p {
  margin: 4px 0 0;
  color: var(--color-muted);
}

.top__section-head a {
  color: var(--color-primary);
  font-weight: 900;
  white-space: nowrap;
}

.top-coupon {
  margin-top: 16px;
  border: 1px solid #f7bfd4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff8fc;
}

.top-coupon__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #ffd6e5;
  padding: 13px 18px 10px;
}

.top-coupon__head h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.top-coupon__head p {
  margin: 4px 0 0;
  color: #555;
  font-size: 13px;
  font-weight: 700;
}

.top-coupon__head a {
  color: var(--color-primary);
  font-weight: 900;
  white-space: nowrap;
}

.top-coupon__viewport {
  padding: 8px 10px 10px;
}

.top-coupon__layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.top-coupon__card {
  --top-coupon-color: var(--color-primary);
  --top-coupon-border: #ffd1e3;
  --top-coupon-background: #fff8fc;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--top-coupon-border);
  border-radius: 6px;
  padding: 6px;
  color: inherit;
  background: linear-gradient(180deg, var(--top-coupon-background) 0%, #fff 100%);
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .8);
  overflow: hidden;
}

.top-coupon__card--newcomer {
  --top-coupon-color: #258a5c;
  --top-coupon-border: #9bd5bb;
  --top-coupon-background: #f1fbf6;
}

.top-coupon__card--first {
  --top-coupon-color: #bd7b0d;
  --top-coupon-border: #e9cc7e;
  --top-coupon-background: #fff9e9;
}

.top-coupon__card--early {
  --top-coupon-color: #e06c18;
  --top-coupon-border: #f2bd91;
  --top-coupon-background: #fff6ed;
}

.top-coupon__card--night {
  --top-coupon-color: #5143a6;
  --top-coupon-border: #bdb4e8;
  --top-coupon-background: #f4f2ff;
}

.top-coupon__card--rain {
  --top-coupon-color: #268cc8;
  --top-coupon-border: #a8d9ef;
  --top-coupon-background: #f5fcff;
}

.top-coupon__card--site {
  --top-coupon-color: var(--color-primary);
  --top-coupon-border: #f5b6d5;
  --top-coupon-background: #fff5fa;
}

.top-coupon__ribbon {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0 0 5px;
  border-radius: 3px;
  padding: 5px 6px;
  color: #fff;
  background: var(--top-coupon-color);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.top-coupon__card p {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.top-coupon__card em,
.top-coupon__card small {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--top-coupon-border);
  border-radius: 4px;
  padding: 4px 6px;
  color: var(--top-coupon-color);
  background: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.top-coupon__card small {
  margin-top: 8px;
  color: #444;
  font-weight: 800;
}

@media (min-width: 1101px) {
  .page--top .top-coupon__card,
  .page--coupon .coupon-category .top-coupon__card {
    min-height: 150px;
    padding: 12px;
  }

  .page--top .top-coupon__ribbon,
  .page--coupon .coupon-category .top-coupon__ribbon {
    margin-bottom: 10px;
    padding: 7px 8px;
    font-size: 15px;
  }

  .page--top .top-coupon__card p,
  .page--coupon .coupon-category .top-coupon__card p {
    margin-bottom: 4px;
    line-height: 1.5;
  }

  .page--top .top-coupon__card em,
  .page--coupon .coupon-category .top-coupon__card em {
    padding: 6px 8px;
  }
}

.page--coupon .coupon-category {
  margin-top: 18px;
}

.page--coupon .coupon-category .top-coupon__layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .page--coupon .coupon-category {
    display: none;
  }
}

.top-coupon__notice {
  margin: 0;
  padding: 10px 16px;
  color: var(--color-primary);
  background: #ffddeb;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
}

.top__cast-grid,
.top__blog-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.top__blog-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.top__shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.top__shop-grid.is-compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.top-news {
  margin-top: 18px;
}

.top-news__head h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-news__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.top-news__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 9px 9px 28px;
  color: inherit;
  background: #fff;
  text-decoration: none;
}

.top-news__shop {
  display: inline-block;
  min-width: 0;
  max-width: 100%;
  width: max-content;
  margin: 0 0 7px;
  border-radius: 3px;
  padding: 3px 8px;
  overflow: hidden;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-news__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 7px 0 6px;
}

.top-news__meta time {
  color: #555;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.top-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 86px;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-news__tag--notice {
  color: #b88a00;
  background: #fff3b8;
}

.top-news__tag--event {
  color: #cf2f7e;
  background: #ffe0ef;
}

.top-news__tag--deal {
  color: #007faf;
  background: #dff6ff;
}

.top-news__tag--media {
  color: #6a35c8;
  background: #ece1ff;
}

.top-news__thumb {
  display: grid;
  min-height: 104px;
  aspect-ratio: 5 / 3;
  border-radius: 4px;
  place-items: center;
  overflow: hidden;
  background: #fff6fa;
}

.top-news__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.top-news__thumb--text,
.top-news__thumb--coupon,
.top-news__thumb--media {
  align-content: center;
  gap: 6px;
  padding: 10px;
  text-align: center;
}

.top-news__thumb--text {
  color: var(--color-primary);
  background: linear-gradient(135deg, #fff3f8 0%, #ffe3ef 100%);
}

.top-news__thumb--coupon {
  color: #1689c7;
  background: linear-gradient(135deg, #eff9ff 0%, #dff3ff 100%);
}

.top-news__thumb--media {
  color: #7a36cc;
  background: linear-gradient(135deg, #f5efff 0%, #eadcff 100%);
}

.top-news__thumb strong {
  font-size: 18px;
  line-height: 1.25;
}

.top-news__thumb .top-news__thumb-text {
  font-size: 13px;
  font-weight: 900;
}

.top-news__card h3 {
  margin: 8px 0 5px;
  color: #111;
  font-size: 13px;
  line-height: 1.35;
}

.top-news__card p {
  margin: 0;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.top-news__card em {
  position: absolute;
  right: 12px;
  bottom: 8px;
  color: var(--color-primary);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.top__cast-card,
.top__shop-grid article,
.top__blog-grid article {
  position: relative;
  min-width: 0;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
}

.top__cast-card img,
.top__shop-grid img,
.top__blog-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  object-fit: cover;
}

.top__cast-card .top__cast-card-text,
.top__shop-grid article>span,
.top__blog-grid article>span {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.top__cast-card h3,
.top__shop-grid h3,
.top__blog-grid h3 {
  margin: 8px 0 4px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__cast-card p,
.top__shop-grid p,
.top__blog-grid p {
  margin: 0 0 7px;
  overflow: hidden;
  color: #333;
  font-size: 13px;
  text-overflow: ellipsis;
}

.top__blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
}

.top__blog-meta strong {
  display: inline-block;
  max-width: 100%;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.top__blog-meta em {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__blog-meta time {
  display: block;
  flex-basis: 100%;
  overflow: hidden;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__shop-grid em {
  display: inline-block;
  margin: 0 4px 6px 0;
  border: 1px solid #ffd0e2;
  border-radius: 3px;
  padding: 2px 6px;
  color: var(--color-primary);
  font-style: normal;
  font-size: 12px;
}

.top__shop-grid b,
.top__shop-grid strong,
.top__rank-box .top__rank-box-text {
  display: block;
  color: #e3a000;
}

.top__shop-grid button {
  width: 100%;
  min-height: 32px;
  cursor: pointer;
}

.top__shop-grid article .top__shop-grid-item {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.top__shop-grid.is-compact article .is-compact-item {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.top__shop-grid.is-compact article div a,
.top__shop-grid.is-compact article .is-compact-item button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 7px 14px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}

.top__shop-grid.is-compact article div a:first-child {
  color: #fff;
  background: var(--color-primary);
}

.top__shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.top__shop-actions .button-link--detail,
.top__shop-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.top__shop-actions .button-link--detail {
  color: #fff;
  background: var(--color-primary);
  white-space: nowrap;
}

.top__shop-actions button {
  color: var(--color-primary);
  background: #fff;
}

.top__coupon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.top__coupon-row a {
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  padding: 14px;
  background: #fff7fb;
  text-align: center;
}

.top__coupon-row span,
.top__coupon-row small {
  display: block;
}

.top__coupon-row strong {
  display: block;
  color: var(--color-primary);
  font-size: 24px;
}

.top__ranking-grid {
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.top__rank-box {
  padding: 18px;
}

.top__rank-box ol {
  display: grid;
  gap: 5px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.top__rank-box li {
  display: grid;
  grid-template-columns: 28px 58px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.top__rank-box b {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 0;
  color: #df6e15;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.top__rank-box li:nth-child(2) b {
  color: #9c9c9c;
}

.top__rank-box img {
  width: 58px;
  height: 58px;
  border-radius: 3px;
  object-fit: cover;
}

.top__rank-box strong,
.top__rank-box small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__rank-box b small {
  color: inherit;
  font-size: 11px;
}

.top__blog-rank-box h3 {
  margin: 0 0 3px;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__blog-rank-box h3 a {
  color: #111;
}

.top__blog-rank-box h3 a:hover {
  color: var(--color-primary);
}

.top__blog-rank-box strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 3px 0 2px;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.35;
}

.top__blog-rank-box em {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 3px 0 0;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__blog-rank-box time {
  display: block;
  overflow: hidden;
  color: #555;
  font-size: 11px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__rank-body {
  min-width: 0;
}

.top__guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.top__guide-grid a {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px;
}

.top__guide-grid img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.top__guide-grid h2 {
  font-size: 16px;
}

.top__guide-grid p {
  margin: 6px 0 10px;
  font-size: 12px;
}

.top__guide-grid button {
  min-height: 32px;
  padding: 0 12px;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width:1100px) {
  .top__search-layout {
    grid-template-columns: 1fr;
  }

  .top__cast-grid,
.top__shop-grid,
.top__blog-grid,
.top-news__grid,
.top__shop-grid.is-compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .top__ranking-grid,
.top__guide-grid {
    grid-template-columns: 1fr;
  }

  .top__guide-grid a {
    grid-template-columns: 80px minmax(0, 1fr);
  }
}

@media (max-width:900px) {
  .top__coupon-row {
    grid-template-columns: 1fr 1fr;
  }

  .top__cast-grid,
.top__shop-grid,
.top__blog-grid,
.top-news__grid,
.top__shop-grid.is-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top__section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width:480px) {
  .top__coupon-row,
.top__cast-grid,
.top__shop-grid,
.top__blog-grid,
.top-news__grid,
.top__shop-grid.is-compact {
    grid-template-columns: 1fr;
  }

  .top__guide-grid a {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .top__guide-grid img {
    margin: auto;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.5;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.layout__container {
  width: min(100% - 44px, var(--container));
  margin-inline: auto;
}

/* ===== 会員ページ上部「登録地域」案内バー (views/layouts/portal.php) ===== */
.member-area-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px auto;
  padding: 12px 16px;
  border: 1px solid var(--color-primary);
  border-radius: 12px;
  background: var(--color-soft, #fff5f9);
}

/* 会員ページは member.css で .header を常に非表示にしており、代わりに固定表示の
   .member-utility バーの高さぶんだけ後続要素にマージンを付けて避けている
   (.member-utility + .header + .page-main 等と同じ仕組みをこのバーにも適用する)。 */
.member-utility + .header + .member-area-bar {
  margin-top: 54px;
}

.member-area-bar__icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  color: var(--color-primary);
}

.member-area-bar__icon svg {
  width: 100%;
  height: 100%;
}

.member-area-bar__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1 1 auto;
}

.member-area-bar__label {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 700;
}

.member-area-bar__link {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.member-area-bar__change {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .member-area-bar {
    margin: 10px auto;
    padding: 10px 12px;
  }

  .member-area-bar__link {
    font-size: 13px;
  }

  .member-area-bar__change {
    height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--color-primary);
  background: #fff;
}

.header__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 8px 0 0;
}

.header__ad {
  display: block;
  max-width: 100%;
}

.header__ad img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.header__ad-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: var(--radius);
  color: #999;
  background: #eee;
  font-size: 13px;
  font-weight: 800;
}

.header__brand {
  flex: 0 0 200px;
  width: 200px;
  max-width: 100%;
  margin-bottom: 8px;
  line-height: 1.2;
}

.header__copy {
  margin: 0;
  width: 200px;
  max-width: 100%;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  text-align-last: center;
}

.header__copy::after {
  content: none;
  display: none;
}

.header__copy .header__copy-text {
  display: inline;
}

.header__copy span + span::before {
  content: none;
}

.header__logo {
  display: inline-block;
  width: 200px;
  max-width: 100%;
}

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

.header__copy {
  font-size: 10px;
  height: 15px;
}

.header__actions {
  display: flex;
  flex: 0 0 200px;
  flex-direction: column;
  width: 200px;
  gap: 8px;
  margin-left: 0;
  margin-bottom: 8px;
}

.header__contact,
.header__favorite {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 10px;
  min-height: 45px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.header__contact {
  color: var(--color-primary);
}

.header__contact-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
}

.header__contact-icon--login {
  position: relative;
}

.header__contact-icon--login::before,
.header__contact-icon--login::after {
  position: absolute;
  left: 50%;
  box-sizing: border-box;
  content: "";
  transform: translateX(-50%);
}

.header__contact-icon--login::before {
  top: 6px;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.header__contact-icon--login::after {
  bottom: 6px;
  width: 15px;
  height: 8px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.header__favorite {
  color: #f2a500;
}

.header__contact.header__member-top,
.header__favorite.header__logout,
.header__favorite.header__signup {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff;
  text-decoration: none;
}

.header__logout-icon,
.header__signup-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.page--shop-subpage > .header {
  display: none;
}

main.page--shop-detail,
main.page--shop-cast,
main.page--shop-now,
main.page--shop-schedule,
main.page--shop-news,
main.page--shop-news-detail,
main.page--shop-event,
main.page--shop-blog,
main.page--shop-system,
main.page--shop-recruit,
main.page--shop-ranking,
main.page--shop-review {
  padding-top: 10px;
}

.footer {
  margin-top: 34px;
  border-top: 1px solid #ffd0e2;
  background: #fff7fb;
}

.footer__inner {
  display: grid;
  grid-template-columns: 220px max-content 500px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 0;
}

.footer__brand {
  position: relative;
  padding-left: 16px;
  text-align: left;
}

.footer__brand::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f70b72, #ff9bc4);
  content: "";
}

.footer__brand-kicker {
  margin: 0;
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.4;
}

.footer__brand-name {
  margin: 4px 0 0;
  color: #a90049;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
}

.footer__brand-name strong {
  color: var(--color-primary);
  font-size: 20px;
  letter-spacing: .01em;
  white-space: nowrap;
}

.footer__brand-description {
  margin: 7px 0 0;
  color: #6f5963;
  font-size: 11px;
  font-weight: 700;
}

.footer__links {
  display: grid;
  justify-self: center;
  width: fit-content;
  gap: 10px;
}

.footer__link-list {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 2px 26px;
}

.footer__links h2 {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 13px;
}

.footer__links a {
  display: block;
  padding: 4px 0;
  font-weight: 700;
}

.footer__contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label link"
    "title link"
    "description link";
  align-content: center;
  column-gap: 16px;
  row-gap: 3px;
  min-height: 126px;
  overflow: hidden;
  border: 2px solid #cf0057;
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 96% 4%, rgba(255, 255, 255, .22) 0 46px, transparent 47px),
    radial-gradient(circle at 78% 116%, rgba(255, 255, 255, .13) 0 62px, transparent 63px),
    linear-gradient(135deg, #d9005c 0%, #f41f73 58%, #ff619a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42), 0 8px 20px rgba(190, 0, 77, .18);
}

.footer__contact .footer__contact-text {
  grid-area: label;
  color: rgba(255, 255, 255, .84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.footer__contact strong {
  grid-area: title;
  color: #fff;
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(110, 0, 45, .22);
}

.footer__contact p {
  grid-area: description;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  font-weight: 700;
}

.footer__contact a {
  grid-area: link;
  align-self: center;
  min-width: 140px;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--color-primary);
  background: #fff;
  box-shadow: 0 5px 14px rgba(113, 0, 46, .2);
  font-weight: 900;
  text-align: center;
}

.footer__contact a::after {
  content: "  ›";
}

.footer__copy {
  margin: 0;
  border-top: 1px solid #ffd0e2;
  padding: 12px 20px;
  color: #777;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  box-sizing: border-box;
  padding: 0;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 4px 12px rgba(247, 11, 114, 0.24);
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.back-to-top::before {
  content: "▲";
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transform: translateY(3px);
}

.nav {
  align-self: end;
  width: auto;
  min-width: 0;
  text-align: center;
}

.nav__scroll {
  display: flex;
  justify-content: center;
  gap: 5px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav a {
  display: grid;
  grid-template-rows: 23px auto auto;
  min-width: 79px;
  min-height: 55px;
  place-items: center;
  align-content: center;
  gap: 1px;
  color: #111;
  border-bottom: 3px solid transparent;
  font-size: 12px;
  font-weight: 800;
}

.nav a.is-active {
  background: linear-gradient(180deg, #fff, #fff0f6);
  border-bottom-color: var(--color-primary);
}

.nav__icon {
  display: block;
  width: 27px;
  height: 27px;
  margin-top: 0;
  flex: 0 0 23px;
  opacity: 1;
  object-fit: contain;
  object-position: center;
}

.nav small {
  color: var(--color-primary);
  font-size: 10px;
  font-weight: 800;
}

.header__menu-toggle {
  display: none;
}

/* エリアトップ: ハンバーガーメニューの代わりにメニュー一覧を常時表示するため、トグル自体を隠す */
.header--no-mobile-toggle .header__menu-toggle {
  display: none !important;
}

.page {
  padding: 10px 0 28px;
}

.page--shop-cast,
.page--shop-now,
.page--shop-schedule,
.page--shop-event,
.page--shop-news,
.page--shop-news-detail,
.page--shop-blog,
.page--shop-system,
.page--shop-recruit,
.page--shop-ranking,
.page--shop-review {
  padding-top: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  color: #7f7f7f;
  font-size: 13px;
}

.breadcrumb__trail {
  min-width: 0;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 11px;
}

.breadcrumb__trail > a,
.breadcrumb__trail > span {
  color: #7f7f7f;
}

.breadcrumb__trail > span.breadcrumb__current,
.breadcrumb__trail > a.breadcrumb__current {
  color: var(--color-primary);
}

.breadcrumb__member-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.breadcrumb__member-action {
  box-sizing: border-box;
  min-width: 112px;
  min-height: 34px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.breadcrumb__member-action-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-right: 7px;
}

@media (max-width: 640px) {
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
  }

  .breadcrumb__member-actions {
    width: 100%;
    flex: 0 0 100%;
    margin-top: 4px;
    margin-left: 0;
    gap: 8px;
  }

  .breadcrumb__member-action {
    min-width: 104px;
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }
}

.layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
}

.panel {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-panel);
}

.panel__title {
  margin: 0;
  padding: 10px 16px;
  color: #fff;
  font-size: 15px;
  background: linear-gradient(180deg, #fb1a82, var(--color-primary));
}

.recruit__banner-stack {
  display: grid;
  gap: 10px;
}

.recruit__card {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: center;
  overflow: hidden;
  padding: 18px 16px;
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  color: var(--color-primary);
  background: linear-gradient(90deg, rgba(255, 247, 251, 0.98) 0 56%, rgba(255, 247, 251, 0.5) 72%, rgba(255, 247, 251, 0.18));
  font-weight: 900;
}

.recruit__card> :not(.recruit__card-image) {
  position: relative;
  z-index: 1;
}

.recruit__card-image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

.recruit__card--main {
  min-height: 160px;
}

.recruit__card--night,
.recruit__card--support {
  background: linear-gradient(90deg, rgba(255, 247, 251, 0.98) 0 58%, rgba(255, 247, 251, 0.48) 74%, rgba(255, 247, 251, 0.16));
}

.recruit__card--night .recruit__card-image,
.recruit__card--support .recruit__card-image {
  top: 50%;
  bottom: auto;
  height: 115%;
  object-position: right center;
  transform: translateY(-50%);
}

.shop__search-sidebar .recruit__card {
  display: grid;
  min-height: 118px;
  align-content: center;
  justify-content: initial;
  padding: 14px 14px;
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  color: var(--color-primary);
  font-weight: 900;
}

.shop__search-sidebar .recruit__card--main {
  min-height: 136px;
}

.shop__search-sidebar .recruit__card strong {
  margin-bottom: 10px;
}

.shop__search-sidebar .recruit__card b {
  line-height: 1.35;
}

.sidebar-ad {
  display: grid;
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.sidebar-ad h2 {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.sidebar-ad__card {
  position: relative;
  display: block;
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 900;
}

.sidebar-ad__image {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.sidebar-ad__card--main {
}
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.sidebar-ad__label {
  width: max-content;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  line-height: 1;
}

.sidebar-ad__card strong {
  margin-bottom: 4px;
  color: #222;
  font-size: 17px;
  line-height: 1.3;
}

.sidebar-ad__sub {
  margin-bottom: 8px;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.sidebar-ad__card b {
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.35;
}

.shop__search-sidebar .sidebar-ad__card,
.page__search-sidebar .sidebar-ad__card,
.blog__left-column .sidebar-ad__card {
  position: relative;
  display: block;
  width: auto;
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.recruit__card span {
  font-size: 18px;
}

.recruit__card strong {
  margin: 3px 0 18px;
  font-size: 14px;
}

.recruit__card b {
  font-size: 16px;
}

.layout__content {
  min-width: 0;
}

.page-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 8px;
}

.page-heading h1 {
  display: inline;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
}

.page-heading .page-heading-text {
  margin-left: 16px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.last__update {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #555;
  white-space: nowrap;
}

.last__update .last__update-text {
  margin: 0;
  color: #555;
  font-size: 13px;
}

.last__update button {
  border: 1px solid #bdbdbd;
  border-radius: var(--radius);
  padding: 7px 14px;
  color: #4b4b4b;
  background: #fff;
  cursor: pointer;
}

.lead-text {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
}

.schedule__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}

.schedule__summary {
  display: grid;
  gap: 0;
  min-width: 0;
}

.schedule__section {
  margin-top: 22px;
}

.now__section {
  margin-top: 22px;
  padding: 0;
  background: transparent;
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 26px;
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 19px;
}

.section-heading p {
  margin: 0;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 700;
}

.cast__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.cast-card {
  min-width: 0;
  border: 1px solid #dedede;
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.card__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.card__status .card__status-text {
  border-radius: 3px;
  padding: 3px 3px;
  color: #fff;
  background: var(--color-success);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.card__status.status--work .status--work-text {
  background: var(--color-primary);
}

.card__status time {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.page--cast-list .card__status {
  min-height: 22px;
}

.page--cast-list .card__status:empty {
  visibility: hidden;
}

.page--cast-list .cast-card:not(:has(.card__status))::before {
  content: "";
  display: block;
  min-height: 22px;
  margin-bottom: 6px;
}

.page--shop-now .card__status {
  align-items: flex-end;
  justify-content: flex-end;
}

.page--shop-schedule .card__status {
  justify-content: space-between;
  gap: 5px;
  flex-wrap: nowrap;
}

.page--shop-schedule .card__status .card__status-text,
.page--shop-schedule .card__status time {
  flex: 0 0 auto;
}

.page--shop-schedule .card__status time {
  margin-left: auto;
  text-align: right;
}

.cast-card__photo {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  overflow: hidden;
  color: inherit;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  text-decoration: none;
}

.top__cast-card .top__cast-photo,
.top__shop-grid.is-compact article > img,
.page--cast-list .cast-card__photo,
.page--sokuhime .cast-card__photo,
.page--attendance .cast-card__photo,
.page--shop-now .cast-card__photo,
.page--shop-schedule .cast-card__photo,
.waiting__card img,
.shop__cast-list img,
.shop__attendance-list img {
  aspect-ratio: 3 / 4;
}

.cast-card__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center top;
}

.girl-photo-link {
  display: block;
  position: relative;
  z-index: 2;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.top__shop-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.cast-card__badge {
  position: absolute;
  z-index: 2;
  display: block;
  width: auto;
  height: var(--corner-icon-size, clamp(32px, 24%, 52px));
  max-width: calc(50% - 8px);
  object-fit: contain;
  pointer-events: none;
}

.cast-card__badge--new {
  top: 4px;
  left: 4px;
  height: calc(var(--corner-icon-size, clamp(32px, 24%, 52px)) * 0.85);
  animation: cast-card-badge-blink 1.6s ease-in-out infinite;
}

@keyframes cast-card-badge-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.cast-card__badge--attendance {
  bottom: 4px;
  left: 4px;
}

.cast-card__badge--now {
  top: 4px;
  right: 4px;
  height: calc(var(--corner-icon-size, clamp(32px, 24%, 52px)) * 0.85);
  animation: cast-card-badge-blink 1.6s ease-in-out infinite;
}

.cast-card__badge--blog {
  right: 4px;
  bottom: 4px;
}

.cast-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.cast-card__info h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cast-card__info .cast-card__info-text {
  font-size: 13px;
}

.cast-card>p {
  margin: 2px 0 8px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 4px;
  align-items: center;
}

.card__actions .card__actions-text,
.card__actions button {
  min-height: 24px;
  border-radius: 3px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card__actions .card__actions-text {
  display: block;
  min-width: 0;
  width: 100%;
  padding: 3px 5px;
  color: #fff;
  background: var(--color-primary);
  line-height: 18px;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-sizing: border-box;
}

.card__actions button {
  min-width: 0;
  width: 28px;
  border: 1px solid #dcdcdc;
  padding: 3px 0;
  color: #e3a000;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 24px;
}

.pagination a {
  display: inline-flex;
  min-width: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
}

.pagination .is-current {
  color: #fff;
  background: var(--color-primary);
}

.pagination .pagination__previous,
.pagination .pagination__next {
  width: auto;
  padding-inline: 8px;
}

@media (max-width: 520px) {
  .review__pagination {
    gap: 6px;
    flex-wrap: wrap;
  }

  .review__pagination a {
    min-width: 34px;
    min-height: 34px;
    font-size: 12px;
  }
}

.notice {
  margin: -30px 0 0;
  color: #333;
  text-align: right;
  font-size: 13px;
}

.cast__heading {
  align-items: center;
}

.cast__total {
  margin: 0;
  color: #555;
  white-space: nowrap;
}

.cast__total strong {
  color: var(--color-primary);
}

.cast__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 14px;
}

.cast__summary {
  display: grid;
  gap: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.sort__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-left: 0;
  margin-top: 0;
  flex: 1 1 auto;
}

.sort__tabs .sort__tabs-text {
  color: #555;
  font-size: 13px;
}

.sort__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7d7d7;
  border-radius: var(--radius);
  padding: 7px 12px;
  color: #222;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.sort__tabs .is-selected {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.page--cast-list .sort__tabs {
  gap: 10px;
}

.sort__tabs a[data-key] {
  flex-direction: column;
  gap: 2px;
  min-width: 90px;
  min-height: 44px;
  border-width: 2px;
  border-radius: 10px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.15;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .04);
}

.sort__tabs a[data-key].is-selected {
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary) 0%, #f50069 100%);
  box-shadow: 0 6px 15px rgba(245, 0, 105, .22);
}

.sort__direction {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 900;
}

.sort__tabs a[data-key].is-selected .sort__direction {
  color: #fff;
}

.schedule__toolbar .schedule__sort-tabs {
  justify-content: flex-end;
  margin-left: auto;
  margin-top: 8px;
}

.cast__toolbar .sort__tabs {
  justify-content: flex-end;
  margin-left: auto;
  margin-top: 8px;
}

.page--cast-list .section-heading h2 {
  color: var(--color-primary);
}

.page--cast-list .cast__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page--cast-list .cast__other {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.page--cast-list .cast__other .cast__grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.page--cast-list .cast-card {
  padding: 8px;
}

.page--cast-list .cast-card__photo {
  position: relative;
}

.page--cast-list .cast-card__photo::after {
  content: none;
}

.detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 14px;
  align-items: stretch;
}

.profile__main {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}

.photo__profile,
.profile__card,
.side__card,
.manager__comment,
.info__panel,
.review__panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.page--girl-detail .photo__profile {
  display: flex;
  flex-direction: column;
  height: auto;
  border: 0;
  background: transparent;
}

.page--girl-detail .profile__card {
  height: 628px;
}

.page--girl-detail .main__photo {
  flex: none;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* 女の子詳細ページ: 店舗ヒーロー/メニューと写真の間に表示する、写メブログへの導線バナー (docs/plans/uploads/blog_banner.html 準拠、スマホ版のみ表示) */
.girl-blog-teaser {
  display: none;
  width: 100%;
  margin: 14px 0;
}

.girl-blog-teaser__card {
  display: flex;
  position: relative;
  align-items: center;
  overflow: hidden;
  height: 80px;
  border: 2px solid #f47aad;
  border-radius: 14px;
  padding: 9px 13px;
  color: #202024;
  background: linear-gradient(105deg, #fff0f6, #fff);
  box-shadow: 0 4px 11px rgba(225, 52, 121, .14);
  text-decoration: none;
}

.girl-blog-teaser__card::before {
  position: absolute;
  top: 0;
  left: -45%;
  width: 27%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: skewX(-22deg);
  content: "";
  animation: girl-blog-teaser-shine 3.8s ease-in-out infinite;
}

.girl-blog-teaser__card::after {
  position: absolute;
  top: 5px;
  right: 8px;
  color: #f49bbf;
  font-size: 13px;
  letter-spacing: 4px;
  content: "♡  ♡";
  animation: girl-blog-teaser-float-heart 2.1s ease-in-out infinite;
}

.girl-blog-teaser__icon {
  display: grid;
  flex: none;
  z-index: 1;
  place-items: center;
  width: 55px;
  height: 55px;
  border-radius: 19px;
  color: #fff;
  background: linear-gradient(145deg, #ff5b9a, #df1e6b);
  box-shadow: 0 4px 0 #bd1354, 0 7px 10px rgba(222, 49, 112, .27);
  transform: rotate(-4deg);
  font-size: 28px;
  animation: girl-blog-teaser-pop 2.1s ease-in-out infinite;
}

.girl-blog-teaser__icon span {
  line-height: .72;
  text-align: center;
  transform: rotate(4deg);
}

.girl-blog-teaser__copy {
  z-index: 1;
  margin-left: 13px;
  min-width: 0;
}

.girl-blog-teaser__copy small {
  display: inline-block;
  margin-bottom: 3px;
  border-radius: 20px;
  padding: 2px 6px;
  color: #df2770;
  background: #fff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .07em;
}

.girl-blog-teaser__copy strong {
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  line-height: 1;
  letter-spacing: .03em;
  white-space: nowrap;
}

.girl-blog-teaser__copy strong span {
  overflow: hidden;
  color: #d91b66;
  font-size: 19px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-shadow: 0 1px 0 #fff, 0 2px 0 #ffc2da;
}

.girl-blog-teaser__copy strong b {
  flex: none;
  border-radius: 20px;
  padding: 5px 6px 5px 8px;
  color: #fff;
  background: var(--color-primary);
  box-shadow: 0 2px 0 #c91e61;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

.girl-blog-teaser__copy em {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  color: #777;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.girl-blog-teaser__arrow {
  display: grid;
  flex: none;
  z-index: 1;
  place-items: center;
  margin-left: auto;
  width: 25px;
  height: 25px;
  border: 1px solid #f5c9dc;
  border-radius: 50%;
  padding: 0 0 2px 1px;
  color: var(--color-primary);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  animation: girl-blog-teaser-arrow-nudge 1.4s ease-in-out infinite;
}

@keyframes girl-blog-teaser-pop {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-4px) scale(1.04); }
}

@keyframes girl-blog-teaser-float-heart {
  0%, 100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(-5px); opacity: 1; }
}

@keyframes girl-blog-teaser-arrow-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes girl-blog-teaser-shine {
  0%, 68% { left: -45%; }
  88%, 100% { left: 122%; }
}

@media (prefers-reduced-motion: reduce) {
  .girl-blog-teaser__card::before,
  .girl-blog-teaser__card::after,
  .girl-blog-teaser__icon,
  .girl-blog-teaser__arrow {
    animation: none;
  }
}

.girl-photo-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}


.girl-photo-slider__track {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.girl-photo-slider__track::-webkit-scrollbar {
  display: none;
}

.girl-photo-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.girl-photo-slider__slide .main__photo {
  width: 100%;
  max-width: 100%;
  max-height: 500px;
}

.girl-photo-slider__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  padding: 0;
  color: transparent;
  background: var(--color-primary);
  font-size: 0;
  font-weight: 900;
  transform: translateY(-50%);
}

.girl-photo-slider__button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}

.girl-photo-slider__button--prev {
  left: 8px;
}

.girl-photo-slider__button--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.girl-photo-slider__button--next {
  right: 8px;
}

.girl-photo-slider__button--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.girl-photo-slider__dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
}

.girl-photo-slider__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #ffd1e3;
}

.girl-photo-slider__dots button.is-current {
  background: var(--color-primary);
}

.main__photo,
.comment__body img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
}

.thumb__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 10px;
}

.thumb__list img {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1 / 1.25;
  border: 2px solid #ffd2e4;
  border-radius: 3px;
  object-fit: cover;
}

.thumb__list img.is-active,
.thumb__list img:hover {
  border-color: var(--color-primary);
}

.favorite__wide,
.outline__button {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  padding: 11px;
  color: var(--color-primary);
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.page--girl-detail .photo__profile .favorite__wide {
  margin-top: 8px;
}

.profile__card,
.side__card,
.manager__comment,
.info__panel,
.review__panel {
  padding: 18px;
}

.page--girl-detail .profile__card,
.page--girl-detail .side__card {
  padding: 14px;
}

.page--girl-detail .profile__card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.profile__labels {
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile__labels .profile__labels-text {
  border-radius: 3px;
  padding: 5px 12px;
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.profile__labels small,
.profile__card h1 small,
.side__card h2 small,
.manager__comment small,
.info__panel small,
.review__panel small {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 800;
}

.profile__card h1 {
  margin: 12px 0 6px;
  font-size: 26px;
  font-weight: 500;
}

.profile__card h1 small {
  margin-left: 18px;
}

.profile__meta {
  margin: 0 0 10px;
  font-size: 16px;
}

.profile__copy {
  margin: 0 0 10px;
}

.profile__table,
.price__card dl {
  margin: 0;
}

.page--girl-detail .profile__table {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}

.profile__table .profile__table-item,
.price__card dl .price__card-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  border-bottom: 1px solid #e8e8e8;
  padding: 6px 0;
}

.page--girl-detail .profile__table .profile__table-item {
  padding: 5px 0;
}

.profile__table dt {
  color: var(--color-primary);
  font-weight: 900;
}

.profile__table dd,
.price__card dd {
  margin: 0;
}

.profile__actions,
.sticky__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.page--girl-detail .profile__card .profile__actions {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 10px;
}

.profile__actions a,
.sticky__actions a,
.profile__actions button,
.sticky__actions button {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
}

.profile__actions .action--tel,
.sticky__actions .action--tel {
  background: var(--color-primary);
}

.profile__actions .action--line,
.sticky__actions .action--line {
  background: #00b721;
}

.profile__actions .action--reserve,
.sticky__actions .action--reserve {
  background: #f2a500;
}

.profile__actions .action--talk,
.sticky__actions .action--talk {
  grid-column: 1 / -1;
  border: 0;
  background: #f00083;
  font: inherit;
  cursor: pointer;
}

.detail__side {
  display: contents;
}

.detail__side .side__card {
  grid-column: 2;
}

.detail__side .side__card:nth-child(1) {
  grid-row: 1;
}

.detail__side .side__card:nth-child(2) {
  grid-row: 2;
}

.detail__side .price__card {
  grid-row: 3;
}

.side__card h2,
.manager__comment h2,
.info__panel h2,
.review__panel h2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 18px;
  border-bottom: 1px solid #ffd0e2;
  padding-bottom: 8px;
}

.side__card h3 {
  margin: 10px 0 6px;
  font-size: 15px;
}

.today__work {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff7fb;
  padding: 10px;
}

.today__work .today__work-text,
.schedule__list b {
  border-radius: 3px;
  padding: 4px 12px;
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
}

.schedule__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule__list li {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) 46px;
  gap: 5px;
  align-items: center;
  border-bottom: 1px solid #ececec;
  padding: 5px 0;
}

.schedule__list li .schedule__list-text,
.schedule__list li time,
.schedule__list b {
  white-space: nowrap;
}

.side__more {
  display: block;
  margin-top: 12px;
  color: var(--color-primary);
  font-weight: 900;
  text-align: right;
}

.calendar__head {
  margin-bottom: 8px;
  text-align: center;
}

.mini__calendar {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  text-align: center;
}

.mini__calendar th {
  color: var(--color-primary);
  font-size: 12px;
}

.mini__calendar td {
  padding: 4px;
  border-radius: 3px;
}

.mini__calendar .status--work {
  color: #fff;
  background: #f18ab7;
}

.mini__calendar .status--off {
  background: #d8d8d8;
}

.calendar__legend {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 10px;
  font-size: 12px;
}

.calendar__legend .calendar__legend-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.calendar__legend i {
  display: inline-block;
  width: 22px;
  height: 10px;
}

.calendar__legend .status--work {
  background: #f18ab7;
}

.calendar__legend .status--off {
  background: #d8d8d8;
}

.calendar__search {
  display: block;
  margin-top: 16px;
  color: var(--color-text);
  font-weight: 700;
  text-align: right;
}

.price__card dl .price__card-item {
  grid-template-columns: 1fr auto;
}

.price__card .fees {
  margin-top: 18px;
}

.layout__main--full {
  grid-column: 1 / 2;
}

.manager__comment {
  grid-row: 2;
}

.girl-detail__comment-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-row: 2;
  gap: 10px;
}

.girl-detail__comment-row > .manager__comment {
  grid-row: auto;
}

.review-summary {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.review-summary h2 {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  border-bottom: 1px solid #ffd0e2;
  padding-bottom: 8px;
  color: var(--color-primary);
  font-size: 18px;
}

.review-summary h2 small {
  font-size: 10px;
}

.review-summary__score {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin: 10px 0;
  font-size: 13px;
}

.review-summary__score strong,
.review-summary__list strong {
  color: var(--color-primary);
}

.review-summary__list article {
  border-top: 1px solid #eee;
  padding: 10px 0;
}

.review-summary__list article p {
  margin: 5px 0 0;
  font-size: 12px;
  line-height: 1.7;
}

.review-summary__more,
.review-summary__write {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 900;
  text-decoration: none;
}

.review-summary__more {
  min-height: 34px;
  font-size: 13px;
}

.review-summary__write {
  min-height: 45px;
  margin-top: 8px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  font-size: 14px;
}

.girl-detail__info-row {
  grid-row: 3;
}

.girl-detail__options-row {
  grid-row: 4;
}

.is-full-width {
  grid-column: 1 / -1;
}

.comment__body {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.comment__body--text-only {
  grid-template-columns: minmax(0, 1fr);
}

.manager__comment-image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.signature {
  text-align: right;
}

.girl-detail__info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog__list li a {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: inherit;
  text-decoration: none;
}

.blog__list img {
  width: 70px;
  height: 44px;
  object-fit: cover;
}

.blog__list time {
  margin-right: 14px;
}

.blog__list strong,
.blog__list p {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog__list p {
  margin: 5px 0 0;
  color: #555;
  font-size: 12px;
}

.option__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option__grid .option__grid-text {
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  padding: 8px;
  color: var(--color-primary);
  font-weight: 900;
  text-align: center;
}

.review__grid {
  display: grid;
  grid-template-columns: 230px repeat(3, 1fr);
  gap: 22px;
}

.review__grid article {
  border-left: 1px solid #e8e8e8;
  padding-left: 18px;
}

.review__grid .total__review {
  border: 1px solid #ffd0e2;
  border-radius: var(--radius);
  padding: 18px;
}

.review__grid strong {
  color: #f2a500;
  font-size: 22px;
}

.review__grid strong .review__grid-text {
  font-weight: 500;
}

.review__grid time {
  display: block;
  color: #555;
  text-align: right;
}

.sticky__actions {
  position: sticky;
  bottom: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100% - 44px, var(--container));
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 0 6px;
}

.sticky__actions .action--favorite {
  border: 1px solid #ffd0e2;
  color: var(--color-primary);
  background: #fff;
}

@media (max-width: 1400px) {
  .layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 22px;
  }

  .cast__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page--cast-list .cast__grid,
.page--cast-list .cast__other .cast__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .header__top {
    align-items: flex-end;
  }

  .detail__layout {
    grid-template-columns: 1fr;
  }

  .detail__side,
.layout__main--full,
.is-full-width {
    grid-column: 1 / -1;
  }

  .detail__side {
    display: grid;
    gap: 10px;
    grid-row: auto;
    grid-template-rows: auto;
  }

  .detail__side .side__card,
.manager__comment,
.info__panel,
.girl-detail__info-row,
.girl-detail__options-row {
    grid-row: auto;
  }
}

@media (max-width: 1100px) {
  .girl-detail__comment-row {
    grid-column: 1 / -1;
  }

  .page--schedule .schedule__toolbar,
  .page--schedule .schedule__summary,
  .page--schedule .schedule__section,
  .page--schedule .cast__other,
  .page--schedule .cast__grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .layout__container {
    width: min(100% - 28px, var(--container));
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links {
    justify-self: start;
    grid-template-columns: 1fr;
  }

  .footer__link-list {
    grid-template-columns: repeat(4, max-content);
  }

  .footer__contact {
    justify-self: end;
    width: min(100%, 500px);
    box-sizing: border-box;
  }

  .page-heading {
    flex-direction: column;
  }

  .header__top {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
  }

  .header__actions,
.schedule__sort-tabs {
    width: 100%;
  }

  .header__actions {
    order: 2;
    flex: 0 0 200px;
    width: 200px;
    margin-left: auto;
  }

  .schedule__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .schedule__sort-tabs {
    margin-left: 0;
  }

  .header__contact,
.header__favorite,
.schedule__sort-tabs a {
    flex: 1;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .recruit__banner-stack,
.recruit__card {
    grid-column: 1 / -1;
  }

  .cast__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .last__update {
    white-space: normal;
  }

  .notice {
    margin-top: 16px;
    text-align: left;
  }

  .cast__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .sort__tabs {
    justify-content: center;
    margin-left: 0;
    overflow-x: auto;
  }

  .page--cast-list .sort__tabs {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .profile__main,
.girl-detail__info-row,
.review__grid {
    grid-template-columns: 1fr;
  }

  .info__panel {
    min-height: 0;
  }

  .page--girl-detail .photo__profile,
.page--girl-detail .profile__card {
    height: auto;
    min-height: auto;
  }

  .page--girl-detail .main__photo {
    flex: none;
  }

  .girl-blog-teaser {
    display: block;
  }

  .sticky__actions {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .girl-detail__comment-row,
.girl-detail__info-row {
    grid-template-columns: minmax(0, 1fr);
  }

  body {
    font-size: 14px;
  }

  .footer__links {
    width: 100%;
    gap: 10px;
  }

  .footer__link-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 6px;
  }

  .footer__contact {
    justify-self: stretch;
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-areas:
      "label"
      "title"
      "description"
      "link";
    min-height: 0;
    padding: 18px;
  }

  .footer__contact a {
    width: 100%;
    margin-top: 8px;
    box-sizing: border-box;
  }

  .footer__links h2 {
    font-size: 11px;
  }

  .footer__links a {
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }

  .header__actions,
.section-heading {
    flex-direction: column;
    display: flex;
  }

  .header__brand {
    flex-basis: 200px;
    width: 200px;
  }

  .header__actions {
    flex-basis: 100%;
    width: 100%;
    margin-left: 0;
  }

  .nav__scroll {
    justify-content: flex-start;
    scroll-padding-left: 0;
  }

  .nav a {
    min-width: 82px;
    min-height: 54px;
    flex: 0 0 82px;
    grid-template-rows: 22px auto auto;
  }

  .nav__icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .breadcrumb {
    flex-wrap: wrap;
  }

  .page-heading .page-heading-text {
    display: block;
    margin: 4px 0 0;
  }

  .cast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page--cast-list .cast__grid,
.page--cast-list .cast__other .cast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cast-card {
    padding: 8px;
  }

  .card__status {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
  }

  .page--cast-list .card__status,
  .page--cast-list .cast-card:not(:has(.card__status))::before {
    min-height: 24px;
  }

  .page--shop-schedule .card__status {
    align-items: center;
    flex-direction: row;
    gap: 3px;
    flex-wrap: nowrap;
  }

  .card__actions {
    align-items: center;
    flex-direction: column;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
  }

  .cast-card>p {
    font-size: 11px;
  }

  .comment__body {
    grid-template-columns: 1fr;
  }

  /*
   * 女の子詳細ページのアクション(電話/LINE/予約/姫トーク)をスマホ幅では
   * 「電話をかける」を大きな塗りつぶし全幅ボタン、その下に「ネットで予約する」/
   * 「姫トークを始める」を縁取り(アウトライン)の2列ボタンとして表示する
   */
  .profile__actions,
  .sticky__actions {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .profile__actions a,
  .sticky__actions a,
  .profile__actions button,
  .sticky__actions button {
    min-height: 54px;
    border-radius: 10px;
    font-size: 15px;
  }

  .profile__actions .action--tel,
  .sticky__actions .action--tel,
  .profile__actions .action--line,
  .sticky__actions .action--line {
    grid-column: 1 / -1;
  }

  .profile__actions .action--reserve,
  .sticky__actions .action--reserve {
    grid-column: auto;
    border: 2px solid #d8a300;
    color: #d8a300;
    background: #fffaf0;
  }

  .profile__actions .action--talk,
  .sticky__actions .action--talk {
    grid-column: auto;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: #fff;
  }

  .page--girl-detail .comment__body {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
  }

  .page--girl-detail .comment__body.comment__body--text-only {
    grid-template-columns: 1fr;
  }

  .profile__card h1 {
    font-size: 25px;
  }
}

@media (max-width: 420px) {
  .cast__grid {
    grid-template-columns: 1fr;
  }

  .page--cast-list .cast__grid,
.page--cast-list .cast__other .cast__grid {
    grid-template-columns: 1fr;
  }

  .cast-card__photo {
    aspect-ratio: 1 / 1;
  }

  .page--cast-list .cast-card__photo,
  .page--sokuhime .cast-card__photo,
  .page--attendance .cast-card__photo,
  .page--shop-now .cast-card__photo,
  .page--shop-schedule .cast-card__photo {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 360px) {
  .card__status {
    gap: 4px;
  }

  .card__status .card__status-text {
    padding: 2px 4px;
    font-size: 11px;
  }

  .card__status time {
    font-size: 12px;
  }

  .page--cast-list .card__status,
  .page--cast-list .cast-card:not(:has(.card__status))::before {
    min-height: 22px;
  }
}

.blog__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 375px;
  gap: 44px;
  align-items: start;
}

.blog__page-title {
  align-items: start;
  gap: 18px;
  margin: 0 0 16px;
}

.blog__page-title h1 {
  display: inline;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
}

.blog__page-title h1 .blog__page-title-text {
  margin-left: 16px;
}

.blog__page-title p {
  margin: 6px 0 0;
  color: #444;
  font-size: 14px;
  font-weight: 400;
}

.blog__tabs {
  display: flex;
  margin-bottom: 9px;
}

.blog__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  border: 1px solid #d5d5d5;
  border-left: 0;
  padding: 9px 20px;
  background: #fff;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.blog__tabs a:first-child {
  border-left: 1px solid #d5d5d5;
  border-radius: 4px 0 0 4px;
}

.blog__tabs a:last-child {
  border-radius: 0 4px 4px 0;
}

.blog__tabs .is-selected {
  color: #fff;
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.blog__post-list {
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}

.blog__post-card {
  position: relative;
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  column-gap: 28px;
  row-gap: 10px;
  min-height: 156px;
  align-items: center;
  padding: 13px 16px 13px 14px;
  border-bottom: 1px solid #e2e2e2;
}

.blog__post-card .blog__thumb {
  grid-row: 1 / span 2;
}

.blog__post-card:last-child {
  border-bottom: 0;
}

.blog__thumb img,
.ranking__thumb img,
.banner__girl img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.blog__thumb {
  position: relative;
  width: 136px;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
}

.blog__thumb .blog__thumb-text {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 4px 0;
  padding: 4px 8px;
  color: #fff;
  background: var(--color-primary);
  font-weight: 900;
}

.blog__post-body h2 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.blog__meta {
  margin: 0 0 11px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.blog__meta .blog__meta-text,
.blog__ranking strong {
  display: inline-block;
  border-radius: 3px;
  max-width: 100%;
  margin-left: 8px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.blog__girl-name,
.blog__ranking em {
  display: inline-block;
  border-radius: 3px;
  max-width: 100%;
  margin-left: 6px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.blog__post-body>p:last-child {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.link--read-more {
  grid-column: 2;
  justify-self: end;
}

.blog__sidebar {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.blog__ranking {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog__ranking li {
  display: grid;
  grid-template-columns: 39px 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 91px;
  padding: 8px 10px;
  border-bottom: 1px solid #e5e5e5;
}

.blog__ranking b {
  display: grid;
  place-items: center;
  color: #c8c8c8;
  font-size: 26px;
  line-height: 1;
  text-align: center;
}

.blog__ranking li:nth-child(1) b,
.blog__ranking li:nth-child(3) b {
  color: #df6e15;
}

.blog__ranking li:nth-child(2) b {
  color: #9c9c9c;
}

.blog__ranking small {
  display: block;
  color: inherit;
  font-size: 12px;
}

.ranking__thumb {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 4px;
  overflow: hidden;
}

.ranking__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.blog__ranking h3 {
  margin: 0 0 3px;
  font-size: 13px;
  line-height: 1.35;
}

.ranking__panel--single-line-titles .blog__ranking li > .blog__ranking-item:last-child,
.ranking__panel--single-line-titles .blog__ranking h3,
.ranking__panel--single-line-titles .blog__ranking h3 a {
  min-width: 0;
}

.ranking__panel--single-line-titles .blog__ranking h3,
.ranking__panel--single-line-titles .blog__ranking h3 a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog__ranking strong {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 3px 0 2px;
  font-size: 10px;
}

.blog__ranking em {
  border-radius: 0;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 900;
}

.blog__ranking time,
.blog__ranking em {
  display: block;
  font-size: 11px;
}

.blog__ranking time {
  color: #555;
}

.blog__ranking em {
  width: fit-content;
  max-width: 100%;
  margin: 3px 0 0;
}

.side__more-button {
  display: flex;
  width: calc(100% - 80px);
  min-height: 31px;
  align-items: center;
  justify-content: center;
  margin: 10px auto 12px;
  border: 1px solid #dedede;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.archive__panel {
  position: relative;
  padding-bottom: 14px;
}

.archive__panel button {
  margin: 10px 15px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 7px 42px 7px 12px;
  color: #444;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.archive__panel i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  color: #777;
  font-style: normal;
}

.blog__banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 142px;
  min-height: 141px;
  overflow: hidden;
  border: 1px solid #ff84b6;
  border-radius: 4px;
  background: linear-gradient(90deg, #fff3f8, #fff);
}

.blog__banner .blog__banner-item:first-child {
  padding: 18px 0 14px 18px;
  font-weight: 900;
}

.blog__banner strong {
  display: block;
  color: var(--color-primary);
  font-size: 20px;
}

.blog__banner .blog__banner-text {
  display: block;
  margin: 8px 0 14px;
  color: #111;
  font-size: 14px;
}

.blog__banner b {
  display: inline-flex;
  min-width: 148px;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
}

.banner__girl {
  min-height: 141px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .blog__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog__sidebar {
    margin-top: 0;
  }
}

@media (max-width: 1100px) {
  .blog__page-title {
    align-items: flex-start;
  }

  .blog__post-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog__post-card .blog__thumb {
    grid-row: auto;
  }

  .link--read-more {
    grid-column: 1;
  }

  .blog__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .blog__tabs {
    overflow-x: auto;
  }

  .blog__tabs a {
    flex: 0 0 auto;
  }

  .blog__ranking li {
    grid-template-columns: 32px 76px minmax(0, 1fr);
  }

  .ranking__thumb {
    width: 76px;
    height: 76px;
  }
}

@media (max-width: 520px) {
  .blog__page-title {
    display: block;
  }

  .blog__page-title h1 .blog__page-title-text {
    display: block;
    margin: 4px 0 0;
  }

  .blog__banner {
    grid-template-columns: 1fr;
  }

  .banner__girl {
    min-height: 180px;
  }
}

.page--shop-detail {
  background: #fff;
}

.shop__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 24px;
  border-radius: 8px;
  padding: 20px;
  overflow: hidden;
  background-color: #fff5f8;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 店舗ごとのヘッダー画像が未設定の場合は背景画像なし (店舗プロフィールカードの白背景のみ表示) */
.shop__hero--no-image {
  background-image: none;
}

/* ヘッダー画像未設定時は、汎用バナー(::before/::after)も含めてヘッダー領域自体を非表示にする */
.shop__hero--no-image::before,
.shop__hero--no-image::after {
  content: none !important;
  display: none !important;
}

.shop__profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.area__pill {
  display: inline-flex;
  min-width: 56px;
  justify-content: center;
  border-radius: 4px;
  padding: 4px 13px;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.shop__meta-block h1,
.shop__meta-block .shop__name {
  margin: 10px 0 10px;
  font-size: 26px;
  line-height: 1.25;
}

.shop__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.shop__badges .shop__badges-text {
  border: 1px solid #ff7fb1;
  border-radius: 4px;
  padding: 4px 9px;
  color: var(--color-primary);
  background: rgba(255, 255, 255, .8);
  font-size: 12px;
  font-weight: 900;
}

.shop__meta-block p {
  margin: 0 0 10px;
  font-size: 13px;
}

.shop__meta-block .shop__hero-tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  border: 1px solid #ff7fb1;
  border-radius: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 4px 12px rgba(233, 20, 99, .12);
}

.shop__hero-tel .shop__hero-tel-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 4px 7px;
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.shop__hero-tel strong {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.shop__meta-block p b {
  color: var(--color-primary);
}

.shop__meta-list {
  margin: 0 0 6px;
}

.shop__meta-list .shop__meta-list-item {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.shop__meta-list dt {
  font-weight: 900;
}

.shop__meta-list dd {
  margin: 0;
}

.rating__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating__row b {
  color: #ffb300;
  letter-spacing: 1px;
}

.rating__row strong {
  font-size: 20px;
}

.rating__row em {
  color: #555;
  font-style: normal;
}

.shop__actions {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.shop__actions a,
.shop__actions .shop__action {
  display: inline-block;
  min-width: 132px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 7px 12px;
  color: #333;
  background: rgba(255, 255, 255, .8);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.shop__actions a:first-child,
.shop__actions .shop__action--favorite {
  color: var(--color-primary);
}

.call__panel {
  display: grid;
  gap: 14px;
}

.call__main {
  display: grid;
  min-height: 138px;
  place-items: center;
  border: 1px solid #ffc1d9;
  border-radius: 6px;
  padding: 14px;
  background: linear-gradient(100deg, rgba(255, 246, 250, .6), rgba(255, 255, 255, .6));
  text-align: center;
}

.call__main p {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.call__main strong {
  color: var(--color-primary);
  font-size: 35px;
  line-height: 1.15;
  letter-spacing: 1px;
}

.call__main span {
  display: inline-flex;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 14px;
  background: #fff;
  font-size: 14px;
}

.shop__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  border: 1px solid #ffc1d9;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff6fa, #fff);
}

.shop__stats div {
  display: grid;
  min-height: 100px;
  padding: 10px 0;
  place-items: center;
  align-content: center;
  gap: 3px;
  text-align: center;
}

.shop__stats div+div {
  border-left: 1px solid #ffd1e3;
}

.shop__stats b {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1;
}

.shop__stats span {
  font-size: 13px;
  font-weight: 900;
}

.shop__stats strong {
  color: var(--color-primary);
  font-size: 28px;
  line-height: 1.2;
}

.shop__stats small {
  color: #555;
}

.shop__stats--call {
  margin-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 246, 250, .6), rgba(255, 255, 255, .6));
}

.shop__stats--call div {
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-areas:
    "icon label"
    "value value"
    "note note";
  justify-content: center;
  min-height: 0;
  padding: 3px 4px;
  place-items: center;
  align-content: center;
  column-gap: 4px;
  row-gap: 1px;
}

.shop__stats--call b {
  grid-area: icon;
  font-size: 17px;
}

.shop__stats--call span {
  grid-area: label;
  font-size: 11px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shop__stats--call strong {
  grid-area: value;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.shop__stats--call small {
  grid-area: note;
  font-size: 10px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.shop__menu-wrap {
  margin: -8px 0 24px;
  padding: 0 18px;
}

.shop__menu-wrap.is-fixed {
  min-height: var(--shop-menu-height, 70px);
}

.shop__menu-toggle {
  display: none;
}

.shop__menu {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  position: relative;
  min-height: 70px;
  border: 2px solid #f7c995;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff6fa 48%, #ffdce8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    inset 0 -2px 8px rgba(244, 142, 168, .22),
    0 2px 6px rgba(188, 115, 62, .16);
}

.shop__menu.is-fixed {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1100;
  width: min(100% - 80px, calc(var(--container) - 36px));
  transform: translateX(-50%);
}

.shop__menu-link {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 68px;
  padding: 8px 6px 9px;
  border-right: 1px solid rgba(238, 161, 184, .48);
  color: #282828;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .9);
  transition: color .2s ease, background .2s ease;
}

.shop__menu-link:first-child {
  border-radius: 22px 0 0 22px;
}

.shop__menu-link:last-child {
  border-radius: 0 22px 22px 0;
}

.shop__menu-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin-bottom: 4px;
  object-fit: contain;
  transform-origin: center;
  transition: filter .2s ease, transform .2s ease;
}

.shop__menu-link:last-child {
  border-right: 0;
}

.shop__menu-link:hover,
.shop__menu-link.is-current {
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
  text-shadow: 0 1px 1px rgba(126, 0, 62, .35);
}

.shop__menu-link:hover .shop__menu-icon,
.shop__menu-link.is-current .shop__menu-icon {
  filter: brightness(0) invert(1);
}

.shop__menu-bottom-wrap {
  display: none;
}

.shop__anchor {
  scroll-margin-top: 16px;
}

.waiting__section {
  position: relative;
  border-top: 1px solid #ffd6e5;
  padding-top: 14px;
}

.waiting__section-link,
.shop__schedule-section-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.waiting__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.waiting__head--clickable {
  position: relative;
}

.waiting__head h2 {
  display: block;
  margin: 0;
  color: var(--color-primary);
  font-size: 20px;
}

.waiting__head p {
  display: block;
  margin: 1px 0 0;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-align: left;
}

.waiting__head h2 span {
  font-size: 13px;
}

.waiting__head .waiting__head-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #444;
  font-size: 12px;
}

.waiting__head .waiting__head-item a {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.waiting__head > .waiting__head-item:first-of-type {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.waiting__head button {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 7px 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.waiting__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.waiting__card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

.wait__status {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 6px;
  font-size: 12px;
  font-weight: 900;
}

.wait__status span {
  border-radius: 3px;
  padding: 2px 6px;
  color: #fff;
  background: #04a532;
}

.wait__status b {
  color: var(--color-primary);
}

.waiting__card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.girl__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px 0;
}

.girl__title h3 {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.girl__title h3 a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.girl__title .girl__title-text {
  font-size: 12px;
  font-weight: 900;
}

.waiting__card p {
  margin: 2px 10px 7px;
  font-size: 12px;
  white-space: nowrap;
}

.waiting__card em {
  display: inline-block;
  margin: 0 10px 8px;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: #ff5a98;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.waiting__card>a:not(.waiting__photo-link):not(.waiting__card-link) {
  display: block;
  margin: 0 10px 8px;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 4px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.waiting__photo-link {
  position: relative;
  z-index: 3;
  display: block;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.waiting__card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.shop__info-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 18px;
}

.info__box {
  border: 1px solid #ffc6dc;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.info__box h2 {
  margin: 0;
  padding: 12px 20px;
  color: var(--color-primary);
  background: #fff5fa;
  font-size: 18px;
}

.info__box p,
.info__box dl,
.info__box ol,
.info__box ul {
  margin: 12px 20px;
}

.shop__guide img {
  display: block;
  width: calc(100% - 40px);
  height: 90px;
  margin: 12px auto 0;
  border-radius: 3px;
  object-fit: cover;
}

.shop__guide p {
  font-size: 12px;
}

.shop__guide dl .shop__guide-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  font-size: 12px;
}

.shop__guide dt {
  background: #f7f7f7;
  font-weight: 900;
  text-align: center;
}

.shop__guide dd {
  margin: 0;
  padding-left: 8px;
}

.shop__guide dd a {
  display: inline;
  width: auto;
  min-height: 0;
  margin: 0;
  border: 0;
  color: var(--color-primary);
  font-weight: 900;
  text-decoration: none;
}

.flow__box ol {
  padding: 0;
  list-style: none;
}

.flow__box li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.flow__box li b {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
}

.flow__box strong {
  color: #333;
}

.flow__box p {
  margin: 2px 0 0;
  color: #555;
  font-size: 12px;
}

.info__box a {
  display: flex;
  width: calc(100% - 60px);
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 12px auto 16px;
  border: 1px solid #ff72a8;
  border-radius: 4px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.caution__box ul {
  padding: 0;
  list-style: none;
}

.caution__box li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 12px;
}

.caution__box li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  content: none;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
}

@media (max-width: 1100px) {
  .shop__hero {
    grid-template-columns: 1fr;
    background-position: center top;
    background-size: cover;
  }

  .waiting__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop__info-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .page--shop-cast .shop__hero,
  .page--shop-now .shop__hero,
  .page--shop-schedule .shop__hero,
  .page--shop-news .shop__hero,
  .page--shop-news-detail .shop__hero,
  .page--shop-event .shop__hero,
  .page--shop-blog .shop__hero,
  .page--shop-system .shop__hero,
  .page--shop-recruit .shop__hero,
  .page--shop-ranking .shop__hero,
  .page--shop-review .shop__hero {
    display: none;
  }

  .shop__hero {
    background: #fff7fb;
  }

  .shop__hero::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    background: url("../../img/hero.png") center center / cover no-repeat;
  }

  .shop__profile-card {
    grid-template-columns: 1fr;
  }

  .call__panel {
    display: none;
  }

  .shop__meta-block .shop__hero-tel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: 100%;
    box-sizing: border-box;
  }

  .shop__hero-tel strong {
    font-size: 23px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .shop__stats {
    grid-template-columns: 1fr 1fr;
  }

  .shop__stats--call {
    display: none;
  }

  .shop__stats div:nth-child(odd) {
    border-left: 0;
  }

  .shop__menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 0;
    overflow: hidden;
  }

  .shop__menu.is-fixed {
    width: min(100% - 58px, calc(var(--container) - 36px));
  }

  .shop__menu-link {
    min-height: 64px;
    border-right: 1px solid rgba(238, 161, 184, .48);
    border-bottom: 1px solid rgba(238, 161, 184, .48);
  }

  .shop__menu-link:nth-child(3n) {
    border-right: 0;
  }

  .shop__menu-link:nth-last-child(-n+3) {
    border-bottom: 0;
  }

  .waiting__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .waiting__head {
    align-items: center;
  }

  .call__main strong {
    font-size: 30px;
  }
}

.page--shop-detail .area__pill {
  background: var(--color-primary);
  color: #fff;
}

.page--shop-detail .waiting__card em {
  background: var(--color-primary);
  color: #fff;
}

.page--shop-detail .waiting__card>a:not(.waiting__photo-link):not(.waiting__card-link),
.page--shop-detail .shop__actions a:first-child,
.page--shop-detail .shop__actions .shop__action--favorite {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, .8);
}

.page--shop-detail .waiting__card>a:not(.waiting__photo-link):not(.waiting__card-link):hover,
.page--shop-detail .shop__actions a:first-child:hover,
.page--shop-detail .shop__actions .shop__action--favorite:hover {
  background: var(--color-primary);
  color: #fff;
}

.page--cast-list .card__actions,
.page--schedule .card__actions,
.page--shop-now .card__actions,
.page--shop-schedule .card__actions,
.page--top .card__actions {
  display: block;
  min-width: 0;
}

.page--cast-list .card__actions .card__actions-text,
.page--schedule .card__actions .card__actions-text,
.page--shop-now .card__actions span,
.page--shop-schedule .card__actions span,
.page--top .card__actions .card__actions-text {
  display: inline-block;
  width: auto;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 0 4px 0;
  border: 0;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
}

.page--cast-list .card__actions button,
.page--schedule .card__actions button,
.page--shop-now .card__actions button,
.page--shop-schedule .card__actions button,
.page--top .card__actions button {
  display: block;
  width: 100%;
  max-width: none;
  min-width: 0;
  min-height: 0;
  box-sizing: border-box;
  overflow: visible;
  white-space: nowrap;
  text-overflow: clip;
  margin: 0;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  padding: 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.page--girl-blog .breadcrumb {
  margin-bottom: 18px;
}

.girl-blog__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr)300px;
  gap: 36px;
  align-items: start;
}

.girl-blog__left,
.girl-blog__right {
  display: grid;
  gap: 18px;
}

.girl__profile-box,
.girl-blog__side-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.girl__profile-box img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  margin: 16px 0 12px;
}

.girl__profile-box {
  text-align: center;
}

.girl__profile-box .profile__labels {
  justify-content: flex-start;
}

.girl__profile-box h2 {
  margin: 0;
  color: #111;
  font-size: 30px;
  font-weight: 500;
}

.girl__profile-box>small {
  display: block;
  color: var(--color-primary);
  font-weight: 900;
}

.girl__profile-box p {
  margin: 12px 0 6px;
  font-size: 15px;
}

.girl__side-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.girl__side-actions a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  font-weight: 900;
}

.girl__side-actions .action--tel {
  background: var(--color-primary);
}

.girl__side-actions .action--line {
  background: #00b721;
}

.girl__side-actions .action--reserve {
  background: #f2a500;
}

.girl-blog__recruit {
  min-height: 150px;
  background: linear-gradient(90deg, rgba(255, 247, 251, .98) 0 56%, rgba(255, 247, 251, .55) 72%, rgba(255, 247, 251, .2)), url("../../img/id_678_01.jpg") right bottom/auto 100% no-repeat;
}

.girl-blog__recruit.recruit__card--main {
  min-height: 160px;
  background: linear-gradient(90deg, rgba(255, 247, 251, .98) 0 56%, rgba(255, 247, 251, .55) 72%, rgba(255, 247, 251, .2)), url("../../img/recruit-girl.jpg") right bottom/auto 100% no-repeat;
}

.girl-blog__recruit.recruit__card--night {
  background: linear-gradient(90deg, rgba(255, 247, 251, .98) 0 58%, rgba(255, 247, 251, .48) 74%, rgba(255, 247, 251, .16)), url("../../img/id_678_01.jpg") right center/auto 115% no-repeat;
}

.girl-blog__recruit.recruit__card--support {
  background: linear-gradient(90deg, rgba(255, 247, 251, .98) 0 58%, rgba(255, 247, 251, .48) 74%, rgba(255, 247, 251, .16)), url("../../img/id_643_01.jpg") right center/auto 115% no-repeat;
}

.girl-blog__heading {
  border-bottom: 1px solid #cfcfcf;
  margin: 0 0 18px;
  padding-bottom: 8px;
}

.girl-blog__heading h1 {
  display: inline;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
}

.girl-blog__heading h1 .girl-blog__heading-text {
  margin-left: 16px;
  font-size: 13px;
  font-weight: 800;
}

.girl-blog__heading p {
  margin: 6px 0 0;
  color: #444;
  font-size: 14px;
  font-weight: 400;
}

.girl__post-list {
  display: grid;
  gap: 0;
}

.girl__post {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr)74px;
  gap: 20px;
  align-items: start;
  border-bottom: 1px solid #e2e2e2;
  padding: 0 0 26px;
  margin-bottom: 26px;
}

.girl__post img {
  width: 170px;
  height: 124px;
  object-fit: cover;
  border-radius: 4px;
}

.girl__post h2 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.girl__post p {
  margin: 0;
  color: #222;
  line-height: 1.65;
}

.girl__post p:first-child {
  color: #444;
  font-size: 12px;
  font-weight: 800;
}

.girl__post em {
  display: inline-block;
  margin-left: 8px;
  border-radius: 3px;
  padding: 2px 8px;
  color: #fff;
  background: #ff74ab;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.girl__post>a {
  align-self: end;
  justify-self: end;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.girl-blog__pager {
  margin-top: 0;
}

.girl-blog__side-panel h2 {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 16px;
  font-size: 20px;
}

.girl-blog__side-panel h2 small {
  color: var(--color-primary);
  font-size: 11px;
}

.girl-blog__side-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.girl-blog__side-panel li a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7e7;
  padding: 12px 0;
  font-weight: 800;
}

.girl-blog__side-panel li:last-child a {
  border-bottom: 0;
}

.popular__articles ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular__articles li {
  display: grid;
  grid-template-columns: 25px 58px 1fr;
  gap: 8px;
  align-items: start;
  border-bottom: 1px solid #e7e7e7;
  padding: 10px 0;
}

.popular__articles li:last-child {
  border-bottom: 0;
}

.popular__articles .popular__articles-text {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  background: #ffb300;
  font-weight: 900;
}

.popular__articles img {
  width: 58px;
  height: 58px;
  object-fit: cover;
}

.popular__articles p {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.popular__articles small {
  color: #555;
  font-weight: 500;
}

.sns__panel {
  text-align: center;
}

.sns__panel h2 {
  text-align: left;
}

.sns__panel p {
  font-weight: 800;
  line-height: 1.8;
}

.sns__panel a {
  display: block;
  margin-top: 14px;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  padding: 11px;
  color: var(--color-primary);
  font-weight: 900;
}

.girl-blog__review {
  margin-top: 40px;
}

.girl-blog__review h2 a {
  margin-left: auto;
  color: #111;
  font-size: 13px;
}

.girl-blog__review.review__panel {
  padding: 16px;
}

.page--girl-blog .sticky__actions {
  z-index: 5;
}

.page--girl-blog .sticky__actions .action--favorite {
  border-color: #ffd0e2;
  color: var(--color-primary);
  background: #fff;
}

@media (max-width:1300px) {
  .girl-blog__layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }

  .girl-blog__right {
    grid-column: 1/-1;
    grid-template-columns: repeat(4, 1fr);
  }

  .girl-blog__side-panel {
    min-width: 0;
  }
}

@media (max-width:900px) {
  .girl-blog__layout {
    grid-template-columns: 1fr;
  }

  .girl-blog__right {
    grid-template-columns: 1fr;
  }

  .girl__post {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
  }

  .girl__post img {
    width: 120px;
    height: 92px;
  }

  .girl__post a {
    grid-column: 2;
  }

  .review__grid {
    grid-template-columns: 1fr;
  }

  .sticky__actions {
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width:560px) {
  .girl__post {
    grid-template-columns: 1fr;
  }

  .girl__post img {
    width: 100%;
    height: 220px;
  }

  .girl__post a {
    grid-column: auto;
  }
}

.page--girl-blog-detail {
  padding-bottom: 78px;
  background: #fff;
}

.gb__three-column {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr)360px;
  gap: 26px;
  align-items: stretch;
}

.gb__right {
  display: grid;
  gap: 18px;
}

.gb__side-box,
.gb__article,
.gb__comment-box,
.gb__comment-form,
.gb__review {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.gb__status,
.gb__other-blogs .gb__other-blogs-text {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  padding: 4px 9px;
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.gb__title small,
.gb__side-box small,
.gb__comment-box small,
.gb__comment-form small,
.gb__review small {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.gb__side-box {
  padding: 16px;
}

.gb__side-box h3,
.gb__review h2,
.gb__comment-box h3,
.gb__comment-form h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 14px;
  color: #111;
  font-size: 19px;
}

.gb__more {
  display: block;
  margin-top: 10px;
  color: var(--color-primary);
  font-weight: 900;
  text-align: right;
}

.gb__title {
  border-bottom: 1px solid #cfcfcf;
  margin: 0 0 12px;
  padding-bottom: 8px;
}

.gb__title h1 {
  display: inline;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
}

.page--blog-detail .gb__title > p {
  display: inline;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.25;
}

.gb__title small {
  margin-left: 16px;
  font-size: 13px;
  font-weight: 800;
}

.gb__article {
  padding: 18px;
}

.gb__back {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-primary);
  font-weight: 900;
}

.gb__article-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 8px;
}

.gb__article-head h2,
.page--blog-detail .gb__article-head h1 {
  display: inline;
  margin: 0 0 0 14px;
  font-size: 22px;
}

.gb__article-head time {
  font-size: 13px;
}

.gb__main-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.gb__body {
  padding: 18px 0 10px;
  border-bottom: 1px solid #e7e7e7;
  font-size: 15px;
  line-height: 1.9;
}

.gb__body p {
  margin: 0 0 8px;
}

.gb__tags {
  font-weight: 700;
}

.gb__gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 18px;
}

.gb__prevnext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 14px;
}

.gb__prevnext a {
  display: grid;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 900;
}

.gb__prevnext a:last-child {
  text-align: right;
}

.gb__prevnext .gb__prevnext-text {
  color: #333;
  font-weight: 700;
}

.gb__comment-box,
.gb__comment-form {
  margin-top: 18px;
  padding: 16px;
}

.gb__comment {
  display: grid;
  grid-template-columns: 54px 1fr auto auto;
  gap: 14px;
  align-items: start;
  border-top: 1px solid #eee;
  padding: 14px 0;
}

.gb__comment:first-of-type {
  border-top: 0;
}

.gb__avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #bbb;
  background: #eee;
}

.gb__comment p {
  margin: 4px 0 0;
}

.gb__comment time {
  color: #555;
  font-size: 13px;
}

.gb__comment a {
  color: var(--color-primary);
  font-weight: 900;
}

.gb__comment-form textarea {
  width: 100%;
  min-height: 72px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 14px;
  resize: vertical;
}

.gb__comment-form button {
  display: block;
  width: 260px;
  margin: 12px 0 0 auto;
  border: 0;
  border-radius: 4px;
  padding: 13px;
  color: #fff;
  background: var(--color-primary);
  font-weight: 900;
}

.gb__other-blogs article {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 12px;
  border-top: 1px solid #eee;
  padding: 12px 0;
}

.gb__other-blogs article.is-current {
  margin: -2px -2px 4px;
  padding: 14px;
  border: 1px solid var(--color-primary);
  background: #fff1f7;
}

.gb__other-blogs img {
  width: 72px;
  height: 86px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
}

.gb__other-blogs time {
  font-size: 12px;
}

.gb__other-blogs strong {
  display: block;
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.35;
}

.gb__other-blogs b {
  height: 24px;
  border-radius: 3px;
  padding: 4px 8px;
  background: #eee;
  color: #777;
  font-size: 11px;
}

.gb__other-blogs .is-current b {
  background: var(--color-primary);
  color: #fff;
}

.gb__guide p {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 8px 0;
}

.gb__guide b {
  min-width: 70px;
  border-radius: 3px;
  padding: 5px 8px;
  color: #fff;
  background: var(--color-primary);
  text-align: center;
}

.gb__guide .status--done {
  background: #eee;
  color: #777;
}

.gb__guide .state--unread {
  background: #fff;
  color: #333;
  border: 1px solid #ccc;
}

.gb__sns {
  text-align: center;
}

.gb__sns h3 {
  text-align: left;
}

.gb__sns a {
  display: block;
  margin-top: 12px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 11px;
  color: var(--color-primary);
  font-weight: 900;
}

.gb__review {
  margin-top: 18px;
  padding: 14px;
}

.gb__review header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffd0e2;
  padding-bottom: 8px;
}

.gb__review header a {
  font-weight: 900;
}

.gb__review-grid {
  display: grid;
  grid-template-columns: 250px repeat(3, 1fr);
  gap: 0;
  margin-top: 14px;
}

.gb__review-grid>.gb__review-grid-item,
.gb__review-grid>article {
  padding: 20px 24px;
  border-left: 1px solid #eee;
}

.gb__review-grid>.gb__review-grid-item:first-child {
  border-left: 0;
  border: 1px solid #ffd0e2;
}

.gb__review strong {
  display: block;
  color: #ffb300;
  font-size: 22px;
}

.gb__review b {
  color: #f2a500;
}

.gb__review time {
  display: block;
  text-align: right;
  color: #777;
}

@media (max-width:1200px) {
  .gb__three-column {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .gb__right {
    grid-column: 1/-1;
    grid-template-columns: repeat(3, 1fr);
  }

  .gb__review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:900px) {
  .gb__three-column {
    grid-template-columns: 1fr;
  }

  .gb__right {
    grid-template-columns: 1fr;
  }

  .gb__review-grid {
    grid-template-columns: 1fr;
  }

  .gb__comment {
    grid-template-columns: 42px 1fr;
  }

  .gb__comment time,
.gb__comment a {
    grid-column: 2;
  }

  .gb__prevnext {
    grid-template-columns: 1fr;
  }
}

.blog__left-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.blog__left-column {
  width: 280px;
}

.blog__left-column>* {
  width: 280px;
  max-width: 280px;
  min-width: 280px;
  box-sizing: border-box;
}

.girl-blog__recruit {
  width: 280px;
  max-width: 280px;
  min-width: 280px;
  box-sizing: border-box;
}

.blog__review-box {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.blog__review-box header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffd0e2;
  padding-bottom: 8px;
}

.blog__review-box h2 {
  margin: 0;
  font-size: 20px;
}

.blog__review-box h2 small {
  margin-left: 10px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.blog__review-box header a {
  color: var(--color-primary);
  font-weight: 900;
}

.blog__review-grid {
  display: grid;
  grid-template-columns: 250px repeat(3, 1fr);
  gap: 0;
}

.blog__review-grid>.blog__review-grid-item,
.blog__review-grid>article {
  padding: 20px 24px;
  border-left: 1px solid #eee;
  box-sizing: border-box;
}

.blog__review-grid>.blog__review-grid-item:first-child {
  border-left: 0;
  border: 1px solid #ffd0e2;
  border-radius: 4px;
}

.blog__review-box strong {
  display: block;
  color: #ffb300;
  font-size: 22px;
}

.blog__review-box b {
  color: #f2a500;
}

.blog__review-box p {
  margin: 8px 0;
}

.blog__review-box time {
  display: block;
  color: #777;
  text-align: right;
  font-size: 13px;
}

.blog__review-score .blog__review-score-text {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

@media (max-width:1200px) {
  .blog__review-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:900px) {
  .blog__review-box header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .blog__review-grid {
    grid-template-columns: 1fr;
  }

  .blog__review-grid>.blog__review-grid-item,
.blog__review-grid>article {
    border-left: 0;
    border-top: 1px solid #eee;
  }

  .blog__review-grid>.blog__review-grid-item:first-child {
    border-top: 0;
  }
}

.blog__right-column {
  width: 360px;
  max-width: 360px;
  min-width: 360px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.blog__right-column>.blog__other-list-box,
.blog__right-column>.gb__guide,
.blog__right-column>.gb__sns {
  width: 100%;
  max-width: 360px;
  min-width: 360px;
  margin: 0;
  box-sizing: border-box;
}

.blog__other-list-box {
  width: 100%;
  box-sizing: border-box;
}

.blog__other-list-box article {
  box-sizing: border-box;
}

@media (max-width:1200px) {
  .blog__right-column {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .blog__right-column>.blog__other-list-box,
.blog__right-column>.gb__guide,
.blog__right-column>.gb__sns {
    max-width: none;
    min-width: 0;
  }
}

html {
  scroll-padding-top: 135px;
}

.girl-blog__layout,
.gb__three-column {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: stretch;
}

.gb__three-column > .blog__left-column,
.gb__three-column > .gb__main,
.gb__three-column > .blog__right-column {
  height: 100%;
}

.page--blog-detail .gb__three-column > .blog__left-column,
.page--blog-detail .gb__three-column > .gb__main,
.page--blog-detail .gb__three-column > .blog__right-column {
  display: flex;
  flex-direction: column;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__schedule-card,
.page--blog-detail .gb__three-column > .gb__main .gb__article,
.page--blog-detail .gb__three-column > .blog__right-column .gb__other-blogs {
  flex: 1 1 auto;
}

.girl-blog__left.blog__left-column,
.gb__three-column>.blog__left-column {
  width: 280px;
  max-width: 280px;
  min-width: 280px;
}

.girl-blog__left.blog__left-column>*,
.gb__three-column>.blog__left-column>*,
.girl__profile-box,
.girl__schedule-card,
.girl-blog__recruit {
  width: 280px;
  max-width: 280px;
  min-width: 280px;
  box-sizing: border-box;
}

.page--blog-detail .gb__three-column {
  grid-template-columns: 200px minmax(0, 1fr) 360px;
}

.page--blog-detail .gb__three-column > .blog__left-column,
.page--blog-detail .gb__three-column > .blog__left-column > * {
  width: 200px;
  max-width: 200px;
  min-width: 200px;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__profile-box,
.page--blog-detail .gb__three-column > .blog__left-column .girl__schedule-card {
  padding: 12px;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__profile-box img {
  height: auto;
  aspect-ratio: 4 / 5;
}

.page--blog-detail .gb__three-column > .blog__left-column .profile__labels-text {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 5px 8px;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  text-align: center;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__profile-box h2 {
  font-size: 20px;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__profile-box p {
  font-size: 13px;
  line-height: 1.6;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__side-actions a {
  min-height: 42px;
  padding: 7px;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
}

.page--blog-detail .gb__three-column > .blog__left-column .today__work {
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
}

.page--blog-detail .gb__three-column > .blog__left-column .girl__schedule-title {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.page--blog-detail .gb__three-column > .blog__left-column .schedule__list li {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3px 6px;
  padding: 7px 0;
}

.page--blog-detail .gb__three-column > .blog__left-column .schedule__list-text {
  grid-column: 1;
  grid-row: 1;
}

.page--blog-detail .gb__three-column > .blog__left-column .schedule__list time {
  grid-column: 1 / -1;
  grid-row: 2;
}

.page--blog-detail .gb__three-column > .blog__left-column .schedule__list b {
  grid-column: 2;
  grid-row: 1;
  padding: 3px 7px;
}

.page--blog-detail .gb__three-column > .blog__left-column .side__more {
  font-size: 11px;
  white-space: nowrap;
}

.girl-blog__right.blog__right-column,
.gb__right.blog__right-column {
  width: 360px;
  max-width: 360px;
  min-width: 360px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.girl-blog__right.blog__right-column>*,
.gb__right.blog__right-column>*,
.girl-blog__side-panel,
.blog__other-list-box {
  width: 360px;
  max-width: 360px;
  min-width: 360px;
  box-sizing: border-box;
}

.girl-blog__main,
.gb__main {
  min-width: 0;
}

.girl-blog__review.is-full-width,
.gb__review.blog__review-box {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width:1200px) {
  .girl-blog__layout,
  .gb__three-column {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .page--blog-detail .gb__three-column {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .girl-blog__right.blog__right-column,
.gb__right.blog__right-column {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .girl-blog__right.blog__right-column>*,
.gb__right.blog__right-column>*,
.girl-blog__side-panel,
.blog__other-list-box {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

@media (max-width:900px) {
  .girl-blog__layout,
  .gb__three-column {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page--blog-detail .gb__three-column {
    grid-template-columns: 1fr;
  }

  .gb__three-column > .blog__left-column,
  .gb__three-column > .gb__main,
  .gb__three-column > .blog__right-column {
    height: auto;
  }

  .page--blog-detail .gb__three-column > .blog__left-column,
  .page--blog-detail .gb__three-column > .gb__main,
  .page--blog-detail .gb__three-column > .blog__right-column {
    display: grid;
  }

  /* ブログ本文を先に表示し、女の子プロフィール/週間スケジュールは下に回す */
  .page--blog-detail .gb__three-column > .blog__left-column {
    order: 2;
  }

  .page--blog-detail .gb__three-column > .gb__main {
    order: 1;
  }

  .page--blog-detail .gb__three-column > .blog__right-column {
    order: 3;
  }

  .page--blog-detail .gb__three-column > .blog__left-column,
  .page--blog-detail .gb__three-column > .blog__left-column > * {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .page--blog-detail .gb__three-column > .blog__left-column .girl__profile-box,
  .page--blog-detail .gb__three-column > .blog__left-column .girl__schedule-card {
    padding: 16px;
  }

  .page--blog-detail .gb__three-column > .blog__left-column .girl__profile-box img {
    height: 340px;
    aspect-ratio: auto;
  }

  .page--blog-detail .gb__three-column > .blog__left-column .today__work {
    align-items: center;
    flex-direction: row;
    gap: 16px;
  }

  .page--blog-detail .gb__three-column > .blog__left-column .schedule__list li {
    grid-template-columns: 94px minmax(0, 1fr) 46px;
    gap: 5px;
    padding: 5px 0;
  }

  .page--blog-detail .gb__three-column > .blog__left-column .schedule__list-text,
  .page--blog-detail .gb__three-column > .blog__left-column .schedule__list time,
  .page--blog-detail .gb__three-column > .blog__left-column .schedule__list b {
    grid-column: auto;
    grid-row: auto;
  }

  .page--blog-detail .gb__three-column > .blog__left-column .girl__schedule-card,
  .page--blog-detail .gb__three-column > .gb__main .gb__article,
  .page--blog-detail .gb__three-column > .blog__right-column .gb__other-blogs {
    flex: none;
  }

  .girl-blog__left.blog__left-column,
.gb__three-column>.blog__left-column,
.girl-blog__left.blog__left-column>*,
.gb__three-column>.blog__left-column>*,
.girl__profile-box,
.girl__schedule-card,
.girl-blog__recruit,
.girl-blog__right.blog__right-column,
.gb__right.blog__right-column,
.girl-blog__right.blog__right-column>*,
.gb__right.blog__right-column>*,
.girl-blog__side-panel,
.blog__other-list-box {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .girl-blog__right.blog__right-column,
.gb__right.blog__right-column {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

.page--top .top__cast-grid {
  align-items: stretch;
}

.page--top .top__cast-card.cast-card {
  position: relative;
  min-width: 0;
  border: 1px solid #dedede;
  border-radius: var(--radius);
  padding: 10px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.page--top .top__cast-card .card__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.page--top .top__cast-card .card__status span {
  position: static;
  top: auto;
  left: auto;
  border-radius: 3px;
  padding: 3px 6px;
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.page--top .top__cast-card .card__status time {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.page--top .top__cast-card .top__cast-photo {
  display: block;
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
  object-position: center top;
}

.page--top .top__cast-photo-link {
  display: block;
  border-radius: 3px;
}

.page--top .top__cast-card .cast-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
}

.page--top .top__cast-card .cast-card__info h3 {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page--cast-list .cast-card__info h3,
.page--sokuhime .cast-card__info h3,
.page--attendance .cast-card__info h3,
.page--shop-now .cast-card__info h3,
.page--shop-schedule .cast-card__info h3 {
  font-size: 14px;
}

.page--top .top__cast-card .cast-card__info .cast-card__info-text {
  position: static;
  top: auto;
  left: auto;
  flex-shrink: 0;
  border-radius: 0;
  padding: 0;
  color: var(--color-text);
  background: transparent;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.page--top .top__cast-card>p {
  margin: 2px 0 8px;
  overflow: hidden;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .top-coupon__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-coupon__layout {
    grid-template-columns: 1fr;
  }

  .top-coupon__card {
    min-height: 0;
  }

  .page--top .top__cast-card.cast-card {
    padding: 8px;
  }

  .page--top .top__cast-card .card__status {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .page--top .top__cast-card>p {
    font-size: 11px;
  }
}

.page--top .top__cast-card .card__actions {
  margin: 4px 0 6px;
}

.page--top .top__cast-card .card__actions .card__actions-text {
  position: static;
  top: auto;
  left: auto;
  vertical-align: baseline;
}

.page--top .top__cast-card>p {
  margin-top: 0;
}

.page--top .top__shop-grid article>h3,
.page--top .top__shop-grid.is-compact article>h3 {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  margin: 8px 0 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.page--top .top__shop-grid article h3.top__shop-title,
.page--top .top__shop-grid.is-compact article h3.top__shop-title {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  margin: 8px 0 4px;
  padding: 0 0 0 8px;
  border: 0;
  border-left: 4px solid var(--color-primary);
  background: transparent;
  color: #111;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

.page--top .top__shop-grid article>h3.top__shop-title,
.page--top .top__shop-grid.is-compact article>h3.top__shop-title {
  display: inline-block;
  width: auto;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 8px 0 4px 0;
  border: 0;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.4;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shop__block-head p {
  margin: 0;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.shop__cast-section,
.shop__system-section,
.shop__blog-section,
.shop__ranking-section,
.shop__review-section {
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  padding: 14px;
  background: #fff;
}

.shop__system-section,
.shop__blog-section,
.shop__ranking-section,
.shop__review-section {
  position: relative;
}

.shop__system-section {
  margin-top: 16px;
}

.shop__system-link,
.shop__section-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.shop__block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #ffd6e5;
  padding-bottom: 8px;
}

.shop__block-head--clickable {
  position: relative;
}

.shop__block-head-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 6px;
}

.shop__block-head.is-compact {
  align-items: center;
}

.shop__block-head h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 19px;
}

.shop__block-head a {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.shop__discount-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
  gap: 14px;
  margin: 18px 0 8px;
  border: 0;
  padding: 0;
  background: transparent;
}

.discount__panel,
.shop-news__panel {
  position: relative;
  min-width: 0;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop__panel-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.discount__head,
.shop-news__head {
  align-items: flex-start;
  margin-bottom: 12px;
  border-bottom: 0;
  padding-bottom: 0;
}

.discount__head h3,
.shop-news__head h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  line-height: 1.2;
}

.discount__head h3 span,
.shop-news__head h3 span {
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1;
}

.discount__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page--shop-detail .discount__grid > :nth-child(n+3) {
  display: none;
}

.discount__card {
  --discount-accent: var(--color-primary);
  --discount-soft: #fff3f8;
  --discount-border: #ffd1e3;
  display: block;
  min-width: 0;
  border: 1px solid var(--discount-border);
  border-top: 4px solid var(--discount-accent);
  border-radius: 8px;
  padding: 13px 14px 14px;
  color: inherit;
  background: linear-gradient(155deg, var(--discount-soft) 0%, #fff 58%);
  box-shadow: 0 5px 14px rgba(34, 34, 34, .05);
  text-decoration: none;
}

.discount__card--newcomer {
  --discount-accent: #21865c;
  --discount-soft: #eaf8f1;
  --discount-border: #b9e4cf;
}

.discount__card--first {
  --discount-accent: #b87905;
  --discount-soft: #fff8df;
  --discount-border: #efd995;
}

.discount__card--early {
  --discount-accent: #dc6418;
  --discount-soft: #fff1e5;
  --discount-border: #f3c49e;
}

.discount__card--night {
  --discount-accent: #6250b5;
  --discount-soft: #f1efff;
  --discount-border: #ccc5f3;
}

.discount__card--rain {
  --discount-accent: #147dad;
  --discount-soft: #eaf7fc;
  --discount-border: #b9deee;
}

.discount__card--site {
  --discount-accent: #d7196c;
  --discount-soft: #fff0f7;
  --discount-border: #f4bdd4;
}

.discount__card h4 {
  margin: 8px 0 3px;
  color: #111;
  font-size: 17px;
  line-height: 1.25;
}

.discount__card strong {
  display: block;
  color: var(--discount-accent);
  font-size: 17px;
  line-height: 1.35;
}

.discount__card p {
  margin: 7px 0 12px;
  color: #555;
  font-size: 12px;
  line-height: 1.6;
}

.discount__card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 30px;
  border: 1px solid var(--discount-accent);
  border-radius: 4px;
  padding: 6px 14px;
  color: var(--discount-accent);
  background: #fff;
  cursor: pointer;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon-modal__visual .discount__card {
  min-height: 180px;
  padding: 22px;
}

.coupon-modal__visual .discount__card p,
.coupon-modal__visual .discount__card-action {
  display: none;
}

.coupon-modal__visual .discount__card h4 {
  font-size: 24px;
}

.coupon-modal__visual .discount__card strong {
  font-size: 30px;
}

.discount__card:hover .discount__card-action {
  color: #fff;
  background: var(--discount-accent);
}

.shop-news__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-news__list li {
  display: block;
  border: 1px solid #ffe0ec;
  border-bottom: 0;
  background: #fff;
}

.shop-news__item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 0 12px;
  color: inherit;
  text-decoration: none;
}

.shop-news__list li:first-child {
  border-radius: 5px 5px 0 0;
}

.shop-news__list li:last-child {
  border-bottom: 1px solid #ffe0ec;
  border-radius: 0 0 5px 5px;
}

.shop-news__list time {
  color: #555;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.shop-news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.shop-news__tag--notice {
  color: #d89a00;
  background: #fff2c7;
}

.shop-news__tag--event {
  color: var(--color-primary);
  background: #ffe5f0;
}

.shop-news__tag--deal {
  color: #ef5796;
  background: #ffeaf4;
}

.shop-news__title {
  position: relative;
  min-width: 0;
  padding-right: 18px;
  overflow: hidden;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-news__title::after {
  position: absolute;
  right: 0;
  color: var(--color-primary);
  content: "＞";
}

.shop-news__item:hover .shop-news__title {
  color: var(--color-primary);
}

.shop-event__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-event__head,
.shop-news-page__head,
.shop-blog-page__head {
  margin-bottom: 18px;
}

.shop-cast__head > .shop-cast__head-item:first-child > p:first-of-type,
.shop-event__head > p:first-of-type,
.shop-news-page__head > p:first-of-type,
.shop-news-detail__head > p:first-of-type,
.shop-blog-page__head > p:first-of-type,
.shop-system-page__head > p:first-of-type,
.shop-recruit-page__head > p:first-of-type,
.shop-ranking-page__head > p:first-of-type,
.shop-review-page__head > p:first-of-type {
  margin-left: 0;
  color: var(--color-primary);
  text-align: left;
}

.shop-event__head h1,
.shop-event__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-event__head h1 span,
.shop-event__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-event__head p {
  margin: 2px 0 0 34px;
  color: #666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.shop-event__lead {
  margin: 0 0 18px;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.page--coupon .shop-event__head p,
.page--coupon .shop-event__head .lead-text {
  margin-left: 0;
}

.page--coupon .shop-event__layout {
  grid-template-columns: 1fr;
}

.page--coupon .shop-event__coupon-list {
  border-left: 0;
  padding-left: 0;
}

.page--news .shop-news-page__head p,
.page--news .shop-news-page__head .lead-text {
  margin-left: 0;
}

.shop-event__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 26px;
}

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

.shop-event__layout--single .shop-event__coupon-list {
  border-left: 0;
  padding-left: 0;
}

.shop-event__sidebar {
  min-width: 0;
}

.shop-event__coupon-nav {
  overflow: hidden;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  background: #fff;
}

.shop-event__coupon-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 50px;
  border-bottom: 1px solid #ffe1ec;
  padding: 0 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.shop-event__coupon-nav a::after {
  color: #ff9bc1;
  content: "＞";
}

.shop-event__coupon-nav a:last-child {
  border-bottom: 0;
}

.shop-event__coupon-nav a.is-current {
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-event__coupon-nav a.is-current::after {
  color: #fff;
}

.shop-event__coupon-nav span {
  flex: 0 0 auto;
}

.shop-event__contact {
  margin-top: 42px;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  padding: 22px 16px;
  background: #fff;
  text-align: center;
}

.shop-event__contact p {
  margin: 0 0 14px;
  color: #555;
  font-size: 12px;
  line-height: 1.7;
}

.shop-event__contact strong {
  display: block;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.2;
}

.shop-event__contact span {
  display: block;
  margin: 8px 0 16px;
  color: #333;
  font-size: 11px;
  font-weight: 900;
}

.shop-event__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 0 16px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.shop-event__coupon-list {
  display: grid;
  gap: 20px;
  min-width: 0;
  border-left: 1px solid #ffdce9;
  padding-left: 16px;
}

.page--shop-event .shop-event__coupon-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-event__coupon-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  border: 1px solid #ffd6e5;
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.shop-event__coupon-visual {
  display: grid;
  min-height: 170px;
  align-content: center;
  justify-items: center;
  border-radius: 6px;
  padding: 18px;
  color: var(--color-primary);
  text-align: center;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .75);
}

.shop-event__coupon-visual--pink {
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(135deg, #ffe5ef, #ffd2e4);
}

.shop-event__coupon-visual--blue {
  color: #0288d1;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(135deg, #e5f7ff, #cfeeff);
}

.shop-event__coupon-visual--purple {
  color: #4d8be8;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(135deg, #edf3ff, #f7e2ff);
}

.shop-event__coupon-visual--green {
  background: linear-gradient(135deg, #258a5c, #53b887);
}

.shop-event__coupon-visual--orange {
  background: linear-gradient(135deg, #d95f12, #f5a548);
}

.shop-event__coupon-visual--newcomer {
  border: 1px solid #b9e4cf;
  border-top: 5px solid #21865c;
  color: #21865c;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(155deg, #eaf8f1, #fff 72%);
}

.shop-event__coupon-visual--newcomer .shop-event__coupon-visual-text {
  white-space: nowrap;
}

.shop-event__coupon-visual--first {
  border: 1px solid #efd995;
  border-top: 5px solid #b87905;
  color: #b87905;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(155deg, #fff8df, #fff 72%);
}

.shop-event__coupon-visual--early {
  border: 1px solid #f3c49e;
  border-top: 5px solid #dc6418;
  color: #dc6418;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(155deg, #fff1e5, #fff 72%);
}

.shop-event__coupon-visual--night {
  border: 1px solid #ccc5f3;
  border-top: 5px solid #6250b5;
  color: #6250b5;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(155deg, #f1efff, #fff 72%);
}

.shop-event__coupon-visual--rain {
  border: 1px solid #b9deee;
  border-top: 5px solid #147dad;
  color: #147dad;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(155deg, #eaf7fc, #fff 72%);
}

.shop-event__coupon-visual--site {
  border: 1px solid #f4bdd4;
  border-top: 5px solid #d7196c;
  color: #d7196c;
  background: radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .9), transparent 34%), linear-gradient(155deg, #fff0f7, #fff 72%);
}

.shop-event__coupon-visual b {
  font-size: 22px;
  line-height: 1.2;
}

.shop-event__coupon-visual strong {
  font-size: 38px;
  line-height: 1.15;
}

.shop-event__coupon-visual strong small {
  margin-left: 2px;
  font-size: .48em;
  font-weight: 900;
}

.shop-event__coupon-visual .shop-event__coupon-visual-text {
  font-size: 18px;
  font-weight: 900;
}

.shop-event__coupon-body {
  min-width: 0;
}

.shop-event__shop-badge,
.shop-news-page__shop-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 8px;
  border: 0;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-event__shop-badge a,
.shop-news-page__shop-badge a {
  color: #fff;
  text-decoration: none;
}

.shop-news-page__body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-ranking__layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.blog-ranking__title {
  margin-top: 0;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 14px;
}

.blog-ranking__title h1 {
  display: inline;
  margin: 0;
  color: #111;
  font-size: 32px;
  line-height: 1.25;
}

.blog-ranking__title h1 .blog-ranking__title-text {
  margin-left: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.blog-ranking__list {
  margin: 18px 0 18px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  background: #fff;
  list-style: none;
}

.blog-ranking__item {
  display: grid;
  grid-template-columns: 48px 88px minmax(0, 1fr) 112px;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 20px;
}

.blog-ranking__item:last-child {
  border-bottom: 0;
}

.blog-ranking__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.blog-ranking__thumb {
  display: block;
  width: 88px;
  height: 72px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-ranking__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-ranking__body {
  min-width: 0;
}

.blog-ranking__body h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: 18px;
  line-height: 1.35;
}

.blog-ranking__body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-ranking__body h2 a:hover {
  color: var(--color-primary);
}

.blog-ranking__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  margin: 0;
  color: #333;
  font-size: 11px;
  font-weight: 800;
}

.blog-ranking__meta time::before {
  content: "◉";
  margin-right: 4px;
  color: #4060b8;
}

.blog-ranking__meta .blog-ranking__meta-text,
.blog-ranking__meta em {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-style: normal;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.3;
}

.blog-ranking__meta em {
  padding: 0;
  color: var(--color-primary);
  background: transparent;
}

.blog-ranking__meta .blog-ranking__meta-text a {
  color: #fff;
  text-decoration: none;
}

.blog-ranking__meta em a {
  color: var(--color-primary);
  text-decoration: none;
}

.blog-ranking__read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.blog-ranking__side {
  display: grid;
  gap: 16px;
}

.top__blog-photo-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.top__blog-photo-link img {
  display: block;
  width: 100%;
}

.page--top .top__shop-grid.is-compact > :nth-child(n+6),
.page--top .top-news__grid > :nth-child(n+6),
.page--top .top__blog-grid > :nth-child(n+6) {
  display: none;
}

.access-ranking__layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.access-ranking__title {
  margin-top: 0;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 14px;
}

.access-ranking__title h1 {
  display: inline;
  margin: 0;
  color: #111;
  font-size: 32px;
  line-height: 1.25;
}

.access-ranking__title h1 .access-ranking__title-text {
  margin-left: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.access-ranking__list {
  margin: 18px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  background: #fff;
  list-style: none;
}

.access-ranking__item {
  display: grid;
  grid-template-columns: 48px 104px minmax(0, 1fr) 112px;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid #e6e6e6;
  padding: 14px 18px;
}

.access-ranking__item:last-child {
  border-bottom: 0;
}

.access-ranking__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.access-ranking__thumb {
  display: block;
  width: 104px;
  height: 76px;
  overflow: hidden;
  border-radius: 4px;
}

.access-ranking__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-ranking__body {
  min-width: 0;
}

.access-ranking__body h2 {
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  line-height: 1.3;
}

.access-ranking__body h2 a {
  color: inherit;
  text-decoration: none;
}

.access-ranking__body h2 a:hover {
  color: var(--color-primary);
}

.access-ranking__body p {
  margin: 0 0 8px;
  color: #333;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
}

.access-ranking__body dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  color: #333;
  font-size: 11px;
  font-weight: 800;
}

.access-ranking__body dl .access-ranking__body-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.access-ranking__body dt {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #555;
}

.access-ranking__body dt::before {
  content: "○";
  color: #555;
  font-size: 10px;
}

.access-ranking__body dd {
  margin: 0;
}

.access-ranking__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.access-ranking__side {
  display: grid;
  gap: 16px;
}

.girl-ranking__layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.girl-ranking__title {
  margin-top: 0;
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 14px;
}

.girl-ranking__title h1 {
  display: inline;
  margin: 0;
  color: #111;
  font-size: 32px;
  line-height: 1.25;
}

.girl-ranking__title h1 .girl-ranking__title-text {
  margin-left: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.girl-ranking__list {
  margin: 18px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  background: #fff;
  list-style: none;
}

.girl-ranking__item {
  display: grid;
  grid-template-columns: 48px 96px minmax(0, 1fr) 118px;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  border-bottom: 1px solid #e6e6e6;
  padding: 12px 18px;
}

.girl-ranking__item:last-child {
  border-bottom: 0;
}

.girl-ranking__rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.girl-ranking__thumb {
  display: block;
  width: 96px;
  height: 92px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
}

.girl-ranking__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.girl-ranking__body {
  min-width: 0;
}

.girl-ranking__body h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  margin: 0 0 7px;
  color: #111;
  font-size: 18px;
  line-height: 1.3;
}

.girl-ranking__body h2 a {
  color: inherit;
  text-decoration: none;
}

.girl-ranking__body h2 a:hover {
  color: var(--color-primary);
}

.girl-ranking__body h2 .girl-ranking__body-text {
  font-size: 12px;
  font-weight: 800;
}

.girl-ranking__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
}

.girl-ranking__badges a,
.girl-ranking__badges em {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  border-radius: 3px;
  padding: 0 7px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.girl-ranking__badges em {
  padding: 0 5px;
}

.girl-ranking__comment {
  margin: 0 0 8px;
  color: #333;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.65;
}

.girl-ranking__spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  color: #333;
  font-size: 11px;
  font-weight: 800;
}

.girl-ranking__spec::before {
  content: "○";
  color: #555;
  font-size: 10px;
}

.girl-ranking__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.girl-ranking__side {
  display: grid;
  gap: 16px;
}

.access-ranking__side .blog__banner,
.blog-ranking__side .blog__banner,
.girl-ranking__side .blog__banner {
  grid-template-columns: minmax(0, 1fr) 112px;
  width: 100%;
}

.access-ranking__side .blog__banner .blog__banner-item:first-child,
.blog-ranking__side .blog__banner .blog__banner-item:first-child,
.girl-ranking__side .blog__banner .blog__banner-item:first-child {
  min-width: 0;
  padding-right: 10px;
}

.access-ranking__side .blog__banner b,
.blog-ranking__side .blog__banner b,
.girl-ranking__side .blog__banner b {
  min-width: 0;
  width: 100%;
  max-width: 148px;
}

.access-ranking__side .banner__girl,
.blog-ranking__side .banner__girl,
.girl-ranking__side .banner__girl {
  width: 112px;
}

@media (max-width: 1180px) {
  .access-ranking__layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .access-ranking__side {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .girl-ranking__layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .girl-ranking__side {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .access-ranking__layout {
    grid-template-columns: 1fr;
  }

  .access-ranking__side {
    grid-template-columns: 1fr;
  }

  .girl-ranking__layout {
    grid-template-columns: 1fr;
  }

  .girl-ranking__side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .access-ranking__title h1 {
    font-size: 26px;
  }

  .access-ranking__item {
    grid-template-columns: 42px 78px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .access-ranking__thumb {
    width: 78px;
    height: 62px;
  }

  .access-ranking__body h2 {
    font-size: 16px;
  }

  .access-ranking__body p {
    font-size: 11px;
  }

  .access-ranking__link {
    grid-column: 3;
    justify-self: start;
    min-height: 32px;
  }

  .girl-ranking__title h1 {
    font-size: 26px;
  }

  .girl-ranking__item {
    grid-template-columns: 42px 76px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .girl-ranking__thumb {
    width: 76px;
    height: 86px;
  }

  .girl-ranking__body h2 {
    font-size: 16px;
  }

  .girl-ranking__comment {
    font-size: 11px;
  }

  .girl-ranking__link {
    grid-column: 3;
    justify-self: start;
    min-height: 32px;
  }

  .access-ranking__side .blog__banner,
  .blog-ranking__side .blog__banner,
  .girl-ranking__side .blog__banner {
    grid-template-columns: 1fr;
  }

  .access-ranking__side .banner__girl,
  .blog-ranking__side .banner__girl,
  .girl-ranking__side .banner__girl {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .blog-ranking__layout {
    grid-template-columns: 200px minmax(0, 1fr);
  }

  .blog-ranking__side {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 1100px) {
  .blog-ranking__layout {
    grid-template-columns: 1fr;
  }

  .blog-ranking__side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .blog-ranking__title h1 {
    font-size: 26px;
  }

  .blog-ranking__item {
    grid-template-columns: 42px 76px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .blog-ranking__read {
    grid-column: 3;
    justify-self: start;
    min-height: 32px;
  }

  .blog-ranking__thumb {
    width: 76px;
    height: 64px;
  }
}

.shop-event__coupon-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #ffdce9;
  padding-bottom: 12px;
}

.shop-event__coupon-title h2,
.shop-event__coupon-title h3 {
  margin: 0;
  color: #222;
  font-size: 20px;
  line-height: 1.35;
}

.shop-event__coupon-title em {
  flex: 0 0 auto;
  border-radius: 4px;
  padding: 4px 12px;
  color: #fff;
  background: #ff7fb4;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.shop-event__coupon-body dl {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
}

.shop-event__coupon-details summary {
  display: none;
}

.shop-event__coupon-card--accordion {
  display: block;
}

.shop-event__coupon-details--card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: 100%;
}

.shop-event__coupon-details--card > .shop-event__coupon-summary {
  display: block;
  grid-column: 1;
  min-width: 0;
  list-style: none;
}

.shop-event__coupon-details--card > .shop-event__coupon-body,
.shop-event__coupon-body--conditions {
  grid-column: 2;
  min-width: 0;
}

.shop-event__coupon-body--conditions dl {
  margin-top: 12px;
}

.shop-event__coupon-details--card > .shop-event__coupon-summary::-webkit-details-marker {
  display: none;
}

.shop-event__coupon-body dl .shop-event__coupon-body-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid #ffe4ee;
  padding: 9px 0;
}

.shop-event__coupon-body dl .shop-event__coupon-body-item:last-child {
  border-bottom: 0;
}

.shop-event__coupon-body dt {
  align-self: start;
  border-radius: 4px;
  padding: 4px 8px;
  color: #555;
  background: #fff0f6;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.shop-event__coupon-body dd {
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.page--coupon .shop-event__coupon-card,
.page--shop-event .shop-event__coupon-card {
  padding: 14px;
}

.page--coupon .shop-event__coupon-card[hidden] {
  display: none;
}

.page--coupon .shop-event__coupon-details--card,
.page--shop-event .shop-event__coupon-details--card {
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
}

.page--shop-event .shop-event__coupon-details--card {
  align-items: start;
}

.page--shop-event .shop-event__coupon-body dd {
  font-size: 11px;
}

.page--coupon .shop-event__coupon-visual,
.page--shop-event .shop-event__coupon-visual {
  min-height: 138px;
  padding: 14px;
}

.page--shop-event .shop-event__coupon-visual {
  min-height: 110px;
}

.page--coupon .shop-event__coupon-visual strong,
.page--shop-event .shop-event__coupon-visual strong {
  display: block;
  width: 100%;
  max-width: 100%;
  padding-inline: 8px;
  box-sizing: border-box;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -.02em;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.page--coupon .shop-event__coupon-shop-name--mobile {
  display: none;
  width: 100%;
  margin: 7px 0 0;
  border-top: 1px solid currentColor;
  padding-top: 6px;
  color: inherit;
  font-size: 16px;
  line-height: 1.35;
  text-align: center;
}

.page--coupon .shop-event__coupon-shop-name--mobile a {
  color: inherit;
  text-decoration: none;
}

.page--coupon .shop-event__coupon-shop-name--mobile a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.page--coupon .shop-event__coupon-title {
  padding-bottom: 8px;
}

.page--coupon .shop-event__coupon-body dl,
.page--shop-event .shop-event__coupon-body dl {
  margin-top: 8px;
}

.page--coupon .shop-event__coupon-body dl .shop-event__coupon-body-item,
.page--shop-event .shop-event__coupon-body dl .shop-event__coupon-body-item {
  padding: 6px 0;
}

.page--shop-event:not(.page--coupon) .shop-event__coupon-visual {
  cursor: pointer;
}

.coupon-quick-filter {
  margin-bottom: 20px;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 18px 20px;
  background: #fff9fb;
}

.coupon-quick-filter__title {
  margin: 0 0 12px;
  color: #333;
  font-size: 14px;
  font-weight: 900;
}

.coupon-quick-filter__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.coupon-quick-filter__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 0 12px;
  color: var(--color-primary);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.coupon-quick-filter__button.is-current {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.coupon-count-heading {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 4px 0 16px;
}

.coupon-count-heading h2 {
  margin: 0;
  color: #333;
  font-size: 16px;
  font-weight: 900;
}

.coupon-count-heading__count {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 900;
}

.coupon-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.coupon-card-grid__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ffd6e5;
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.coupon-card-grid__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.coupon-card-grid__badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 4px;
  padding: 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.coupon-card-grid__badge--first    { background: #b87905; }
.coupon-card-grid__badge--newcomer { background: #21865c; }
.coupon-card-grid__badge--early    { background: #dc6418; }
.coupon-card-grid__badge--night    { background: #6250b5; }
.coupon-card-grid__badge--rain     { background: #147dad; }
.coupon-card-grid__badge--site     { background: #d7196c; }

.coupon-card-grid__shop {
  overflow: hidden;
  color: #777;
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coupon-card-grid__price {
  margin: 4px 0;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.coupon-card-grid__price--first    { color: #b87905; }
.coupon-card-grid__price--newcomer { color: #21865c; }
.coupon-card-grid__price--early    { color: #dc6418; }
.coupon-card-grid__price--night    { color: #6250b5; }
.coupon-card-grid__price--rain     { color: #147dad; }
.coupon-card-grid__price--site     { color: #d7196c; }

.coupon-card-grid__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.coupon-card-grid__meta-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 13px;
}

.coupon-card-grid__meta-row dt {
  border-radius: 4px;
  padding: 4px 8px;
  color: #555;
  background: #fff0f6;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.coupon-card-grid__meta-row dd {
  margin: 0;
  color: #444;
  line-height: 1.6;
}

.coupon-card-grid__cta {
  display: flex;
  align-self: center;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 40px;
  margin-top: 4px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 0 24px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.coupon-card-grid__cta:hover {
  color: #fff;
  background: var(--color-primary);
}

@media (max-width: 640px) {
  .coupon-quick-filter__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coupon-card-grid {
    grid-template-columns: 1fr;
  }
}

.coupon-modal {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  margin: auto;
  border: 0;
  border-radius: 14px;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.coupon-modal::backdrop {
  background: rgba(20, 10, 16, .7);
  backdrop-filter: blur(3px);
}

.coupon-modal__panel {
  max-height: calc(100vh - 40px);
  border: 1px solid #ffd2e3;
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(30, 8, 20, .28);
  box-sizing: border-box;
  overflow-y: auto;
}

.coupon-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ffdce9;
  padding-bottom: 10px;
}

.coupon-modal__header h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 21px;
}

.coupon-modal__close {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: var(--color-primary);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.coupon-modal__visual .shop-event__coupon-visual {
  min-height: 210px;
  cursor: default;
}

.coupon-modal__body {
  margin-top: 16px;
}

.coupon-modal__body .shop-event__coupon-body dl {
  margin: 0;
}

.coupon-modal__body .shop-event__coupon-body-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 14px;
  border-bottom: 1px solid #ffe4ee;
  padding: 10px 0;
}

.coupon-modal__body .shop-event__coupon-body-item:last-child {
  border-bottom: 0;
}

@media (max-width: 560px) {
  .coupon-modal {
    width: calc(100% - 20px);
  }

  .coupon-modal__panel {
    padding: 14px;
  }

  .coupon-modal__visual .shop-event__coupon-visual {
    min-height: 160px;
  }

  .coupon-modal__body .shop-event__coupon-body-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.shop-event__notes {
  position: relative;
  margin: 26px 16px 0;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 18px 22px;
  overflow: hidden;
  background: #fff;
}

.page--coupon .shop-event__notes {
  width: 100%;
  margin: 18px 0 0;
  box-sizing: border-box;
}

.page--shop-event .shop-event__notes {
  width: 100%;
  margin: 26px 0 0;
  box-sizing: border-box;
}

.shop-event__notes::after {
  position: absolute;
  right: 34px;
  bottom: -28px;
  color: rgba(233, 20, 99, .12);
  font-size: 120px;
  line-height: 1;
  content: "✿";
}

.shop-event__notes h2,
.shop-event__notes h3 {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 17px;
}

.shop-event__notes ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-left: 18px;
  color: #444;
  font-size: 13px;
  line-height: 1.8;
}

.shop-system-page__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-system-page__head {
  margin-bottom: 18px;
}

.shop-system-page__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-system-page__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-system-page__head p {
  margin: 3px 0 0;
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.shop-system-page__head .lead-text {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
}

.shop-system-page__price-board {
  display: grid;
  gap: 14px;
}

.shop-system-page__row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #f5cfc0;
  border-radius: 7px;
  background: #fff;
}

.shop-system-page__label {
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #f7ded5;
  padding: 24px;
  background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
}

.shop-system-page__icon {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 44px;
  line-height: 1;
}

.shop-system-page__label h3 {
  margin: 0;
  color: #221111;
  font-size: 22px;
  line-height: 1.45;
  word-break: keep-all;
  overflow-wrap: normal;
}

.shop-system-page__label h3 .shop-system-page__label-text {
  display: block;
  color: #6d5555;
  font-size: 13px;
  font-weight: 900;
}

.shop-system-page__join-list,
.shop-system-page__course-list,
.shop-system-page__tile-list,
.shop-system-page__change-list,
.shop-system-page__option-grid {
  min-width: 0;
  padding: 20px 22px;
}

.shop-system-page__join-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  align-items: center;
}

.shop-system-page__join-list dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.shop-system-page__join-list dl .shop-system-page__join-list-item,
.shop-system-page__tile-list dl .shop-system-page__tile-list-item {
  display: grid;
  min-width: 0;
  justify-items: center;
  border: 1px solid #f4d8d1;
  border-radius: 6px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
}

.shop-system-page__join-list dt,
.shop-system-page__tile-list dt {
  color: #171717;
  font-size: 14px;
  font-weight: 900;
}

.shop-system-page__join-list dd,
.shop-system-page__tile-list dd {
  margin: 4px 0 0;
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.shop-system-page__join-list ul,
.shop-system-page__course-list p,
.shop-system-page__tile-list p,
.shop-system-page__change-list p,
.shop-system-page__option-grid p {
  margin: 0;
  padding-left: 18px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.9;
}

.shop-system-page__course-list {
  max-width: none;
}

.shop-system-page__course-list dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0 0 12px;
}

.shop-system-page__course-list dl .shop-system-page__course-list-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 130px;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid #ffe1e8;
  padding: 4px 0;
}

.shop-system-page__course-list dl .shop-system-page__course-list-item::before {
  display: block;
  grid-column: 2;
  grid-row: 1;
  height: 1px;
  border-bottom: 2px dotted #ffc3d7;
  content: "";
}

.shop-system-page__course-list dt {
  grid-column: 1;
  grid-row: 1;
  color: #111;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
}

.shop-system-page__course-list dd {
  grid-column: 3;
  grid-row: 1;
  margin: 0;
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
  white-space: nowrap;
}

.shop-system-page__course-list .shop-system-page__course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 12px;
}

.shop-system-page__course-card {
  border: 1px solid #f4d8d1;
  border-radius: 8px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
}

.shop-system-page__course-card h4 {
  margin: 0;
  color: var(--color-primary);
  font-size: 24px;
}

.shop-system-page__course-card .shop-system-page__course-description {
  margin: 4px 0 10px;
  padding: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.shop-system-page__course-card dl {
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.shop-system-page__course-card dl .shop-system-page__course-list-item {
  grid-template-columns: 110px minmax(0, 1fr) auto;
}

.shop-system-page__tile-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 24px;
  align-items: center;
}

.shop-system-page__tile-list dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.shop-system-page__tile-list--fare dl {
  display: block;
  border: 1px solid #f4d8d1;
  border-radius: 6px;
  overflow: hidden;
}

.shop-system-page__tile-list--fare dl .shop-system-page__tile-list-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  gap: 16px;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #f4d8d1;
  padding: 14px 18px;
  background: #fff;
}

.shop-system-page__tile-list--fare dl .shop-system-page__tile-list-item:nth-child(odd) {
  background: #fff6f4;
}

.shop-system-page__tile-list--fare dl .shop-system-page__tile-list-item:last-child {
  border-bottom: 0;
}

.shop-system-page__tile-list--fare dt {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.shop-system-page__tile-list--fare dd {
  margin: 0;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
  text-align: left;
  white-space: normal;
}

.shop-system-page__change-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .65fr) 260px;
  gap: 22px;
  align-items: start;
}

.shop-system-page__change-list h4 {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 14px;
}

.shop-system-page__change-list dl,
.shop-system-page__option-grid dl {
  margin: 0;
}

.shop-system-page__change-list dl .shop-system-page__change-list-item,
.shop-system-page__option-grid dl .shop-system-page__option-grid-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #f4d8d1;
  border-bottom: 0;
  padding: 8px 12px;
}

.shop-system-page__change-list dl .shop-system-page__change-list-item:first-child,
.shop-system-page__option-grid dl .shop-system-page__option-grid-item:first-child {
  border-radius: 5px 5px 0 0;
}

.shop-system-page__change-list dl .shop-system-page__change-list-item:last-child,
.shop-system-page__option-grid dl .shop-system-page__option-grid-item:last-child {
  border-bottom: 1px solid #f4d8d1;
  border-radius: 0 0 5px 5px;
}

.shop-system-page__change-list dt,
.shop-system-page__option-grid dt {
  min-width: 0;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.shop-system-page__change-list dd,
.shop-system-page__option-grid dd {
  margin: 0;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.shop-system-page__option-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.shop-system-page__option-grid p {
  grid-column: 1 / -1;
}

@media (max-width: 1100px) {
  .page--shop-system,
  .page--shop-system .shop-system-page__section,
  .page--shop-system .shop-system-page__price-board,
  .page--shop-system .shop-system-page__row,
  .page--shop-system .shop-system-page__join-list,
  .page--shop-system .shop-system-page__course-list,
  .page--shop-system .shop-system-page__tile-list,
  .page--shop-system .shop-system-page__change-list,
  .page--shop-system .shop-system-page__option-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

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

  .shop-system-page__label {
    border-right: 0;
    border-bottom: 1px solid #f7ded5;
    padding: 18px 20px;
  }

  .shop-system-page__join-list,
  .shop-system-page__tile-list,
  .shop-system-page__change-list {
    grid-template-columns: 1fr;
  }

  .shop-system-page__option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .shop-system-page__section {
    padding: 16px;
  }

  .shop-system-page__head p,
  .shop-system-page__head .lead-text {
    margin-left: 0;
  }

  .shop-system-page__course-list {
    max-width: none;
  }

  .shop-system-page__course-list .shop-system-page__course-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .shop-system-page__course-list dl {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shop-system-page__course-list dl .shop-system-page__course-list-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .shop-system-page__course-list dl .shop-system-page__course-list-item::before {
    display: none;
  }

  .shop-system-page__course-list dt {
    font-size: 20px;
  }

  .shop-system-page__course-list dd {
    font-size: 22px;
  }

  .shop-system-page__tile-list dl,
  .shop-system-page__option-grid,
  .shop-system-page__join-list dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-system-page__tile-list--fare dl .shop-system-page__tile-list-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

@media (max-width: 420px) {
  .shop-system-page__tile-list dl,
  .shop-system-page__option-grid,
  .shop-system-page__join-list dl {
    grid-template-columns: 1fr;
  }
}

.shop-news-page__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-news-page__head h1,
.shop-news-page__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-news-page__head h1 span,
.shop-news-page__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-news-page__head p {
  margin: 3px 0 0 34px;
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.shop-news-page__head small {
  display: block;
  margin: 10px 0 0 34px;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.shop-news-page__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 0 36px 22px;
}

.shop-news-page__filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  min-height: 34px;
  border: 1px solid #ffe1ec;
  border-radius: 6px;
  padding: 0 18px;
  color: var(--color-primary);
  background: #fff0f6;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.shop-news-page__filters a.is-current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
  box-shadow: 0 5px 12px rgba(233, 20, 99, .18);
}

.shop-news-page__filters .shop-news-page__filter--notice {
  color: #d89a00;
  background: #fff6df;
}

.shop-news-page__filters .shop-news-page__filter--event {
  color: var(--color-primary);
  background: #ffeaf4;
}

.shop-news-page__filters .shop-news-page__filter--deal {
  color: #ef5796;
  background: #fff0f6;
}

.shop-news-page__filters .shop-news-page__filter--media {
  color: #676de8;
  background: #eff0ff;
}

.shop-news-page__list {
  border-top: 1px solid #ffdce9;
}

.shop-news-page__item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 160px 28px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ffdce9;
  padding: 20px 12px 20px 28px;
}

.shop-news-page__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 28px;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.shop-news-page__tag--notice {
  color: #d89a00;
  background: #fff2c7;
}

.shop-news-page__tag--event {
  color: var(--color-primary);
  background: #ffe5f0;
}

.shop-news-page__tag--deal {
  color: #ef5796;
  background: #ffeaf4;
}

.shop-news-page__tag--media {
  color: #676de8;
  background: #eff0ff;
}

.shop-news-page__body {
  min-width: 0;
  color: #222;
  text-decoration: none;
}

.shop-news-page__body h2,
.shop-news-page__body h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.shop-news-page__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shop-news-page__body:hover h2,
.shop-news-page__body:hover h3 {
  color: var(--color-primary);
}

.shop-news-page__thumb {
  display: block;
  width: 160px;
  height: 88px;
  border: 1px solid #ffcfe1;
  border-radius: 5px;
  object-fit: cover;
  overflow: hidden;
}

.shop-news-page__thumb--coupon,
.shop-news-page__thumb--rain {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 10px;
  color: var(--color-primary);
  background: radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .9), transparent 35%), linear-gradient(135deg, #ffe3ee, #ffcadd);
  text-align: center;
}

.shop-news-page__thumb--rain {
  color: #0a8ed0;
  background: radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .9), transparent 35%), linear-gradient(135deg, #e4f7ff, #cfeeff);
}

.shop-news-page__thumb--coupon b,
.shop-news-page__thumb--rain b {
  font-size: 18px;
  line-height: 1.2;
}

.shop-news-page__thumb--rain strong {
  font-size: 32px;
  line-height: 1;
}

.shop-news-page__thumb--coupon .shop-news-page__thumb--coupon-text,
.shop-news-page__thumb--rain .shop-news-page__thumb--rain-text {
  font-size: 14px;
  font-weight: 900;
}

.shop-news-page__arrow {
  color: var(--color-primary);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.shop-news-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.shop-news-page__pagination a,
.shop-news-page__pagination .shop-news-page__pagination-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  color: #222;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.shop-news-page__pagination a.is-current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-news-page__pagination .shop-news-page__pagination-text {
  border-color: transparent;
  color: #555;
  background: transparent;
}

.shop-news-page__note {
  margin: 20px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.shop-news-detail__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 24px 28px 22px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-news-detail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.shop-news-detail__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-news-detail__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-news-detail__head a {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.shop-news-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: 28px;
}

.shop-news-detail__main {
  min-width: 0;
}

.shop-news-detail__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
}

.shop-news-detail__meta time {
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.shop-news-detail__main h1 {
  margin: 0 0 16px;
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1.45;
}

.shop-news-detail__lead {
  margin: 0 0 22px;
  color: #222;
  font-size: 15px;
  line-height: 2;
}

.shop-news-detail__share {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #ffcfe1;
  padding-bottom: 28px;
  margin-bottom: 26px;
}

.shop-news-detail__share .shop-news-detail__share-text {
  margin-right: 4px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
}

.shop-news-detail__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.shop-news-detail__share-link--x {
  background: #2aa7df;
}

.shop-news-detail__share-link--line {
  background: #42d86a;
}

.shop-news-detail__share-link--copy {
  color: #555;
  background: #f4eceb;
}

.shop-news-detail__share-link--like {
  color: var(--color-primary);
  background: #ffe9f2;
}

.shop-news-detail__body {
  margin-bottom: 42px;
  color: #222;
  font-size: 15px;
  line-height: 2;
}

.shop-news-detail__body p {
  margin: 0 0 12px;
}

.shop-news-detail__profile {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid #ffcfe1;
  border-radius: 5px;
  background: #fff;
}

.shop-news-detail__profile th,
.shop-news-detail__profile td {
  border-bottom: 1px solid #ffdce9;
  padding: 11px 16px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
  vertical-align: top;
}

.shop-news-detail__profile tr:last-child th,
.shop-news-detail__profile tr:last-child td {
  border-bottom: 0;
}

.shop-news-detail__profile th {
  width: 150px;
  background: #fff0f6;
  font-weight: 900;
}

.shop-news-detail__side {
  min-width: 0;
}

.shop-news-detail__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.shop-news-detail__gallery {
  display: grid;
  grid-template-columns: 34px repeat(4, minmax(0, 1fr)) 34px;
  gap: 10px;
  align-items: center;
  margin: 20px 0 48px;
}

.shop-news-detail__gallery img {
  display: block;
  width: 100%;
  height: 72px;
  border: 1px solid #ffcfe1;
  border-radius: 5px;
  object-fit: cover;
}

.shop-news-detail__gallery button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #ffcfe1;
  border-radius: 50%;
  color: var(--color-primary);
  background: #fff;
  font-size: 32px;
  line-height: 1;
}

.shop-news-detail__coupon {
  display: grid;
  justify-items: center;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 28px 24px 30px;
  color: var(--color-primary);
  background: radial-gradient(circle at 25% 22%, rgba(255, 255, 255, .95), transparent 30%), linear-gradient(135deg, #ffe5ef 0%, #ffd5e8 100%);
  text-align: center;
}

.shop-news-detail__coupon b {
  font-size: 24px;
  line-height: 1.3;
}

.shop-news-detail__coupon .shop-news-detail__coupon-text {
  margin-top: 18px;
  color: #222;
  font-size: 18px;
  font-weight: 900;
}

.shop-news-detail__coupon strong {
  font-size: 48px;
  line-height: 1.15;
}

.shop-news-detail__coupon p {
  margin: 8px 0 20px;
  color: #222;
  font-size: 15px;
  font-weight: 900;
}

.shop-news-detail__coupon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  min-height: 44px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.shop-news-detail__pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 34px 0 20px;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(90deg, #fff2f7 0%, #fff 50%, #fff2f7 100%);
}

.shop-news-detail__pager a {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
  color: #222;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.shop-news-detail__pager a + a {
  grid-template-columns: minmax(0, 1fr) 64px auto;
  border-left: 1px solid #ffdce9;
  text-align: right;
}

.shop-news-detail__pager .shop-news-detail__pager-text {
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.shop-news-detail__pager img {
  width: 64px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.shop-news-detail__pager b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-news-detail__note {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.shop-news-detail__contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  margin-top: 16px;
  border-radius: 8px;
  padding: 24px 44px;
  background: linear-gradient(90deg, #fff7fb 0%, #fff 52%, #fff7fb 100%);
}

.shop-news-detail__contact > div + div {
  border-left: 1px solid #ffdce9;
  padding-left: 28px;
}

.shop-news-detail__contact h2 {
  margin: 0 0 12px;
  color: #222;
  font-size: 20px;
}

.shop-news-detail__contact p {
  margin: 0;
  color: #222;
  font-size: 13px;
  line-height: 1.7;
}

.shop-news-detail__contact strong {
  display: block;
  color: var(--color-primary);
  font-size: 30px;
  line-height: 1.2;
}

.shop-news-detail__contact .shop-news-detail__contact-text {
  display: inline-flex;
  margin-top: 6px;
  border-radius: 4px;
  padding: 4px 10px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.shop-news-detail__contact .shop-news-detail__contact-item:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shop-news-detail__contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #d39a00;
  border-radius: 6px;
  color: #9a6b00;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.shop-news-detail__contact a:first-child {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-blog-page__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-blog-page__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-blog-page__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-blog-page__head p {
  margin: 2px 0 0 34px;
  color: #666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.shop-blog-page__lead {
  margin: 0 0 18px;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.shop-news-page__head h1,
.shop-news-page__head h2,
.shop-news-detail__head h2,
.shop-event__head h1,
.shop-event__head h2,
.shop-blog-page__head h2,
.shop-ranking-page__head h2,
.shop-review-page__head h2 {
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-news-page__head h1 span,
.shop-news-page__head h2 span,
.shop-news-detail__head h2 span,
.shop-event__head h1 span,
.shop-event__head h2 span,
.shop-blog-page__head h2 span,
.shop-ranking-page__head h2 span,
.shop-review-page__head h2 span {
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
}

.shop-news-page__head p,
.shop-news-detail__head p,
.shop-event__head p,
.shop-blog-page__head p,
.shop-ranking-page__head p,
.shop-review-page__head p {
  margin: 2px 0 0;
  color: #666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.shop-news-page__head .lead-text,
.shop-news-detail__head .lead-text,
.shop-event__head .lead-text,
.shop-blog-page__head .lead-text,
.shop-ranking-page__head .lead-text,
.shop-review-page__head .lead-text,
.shop-cast__head .lead-text {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 1.7;
}

.shop-blog-page__tabs {
  margin-top: 0;
}

.shop-event__layout {
  margin-top: 0;
}

.shop-blog-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.shop-blog-page__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 34px;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.shop-blog-page__tabs a.is-selected {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-blog-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.shop-blog-page__post-list {
  overflow: hidden;
  border: 1px solid #ffd6e5;
  border-radius: 7px;
  background: #fff;
}

.shop-blog-page__post-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #ffe1ec;
  padding: 16px;
}

.shop-blog-page__post-card:last-child {
  border-bottom: 0;
}

.shop-blog-page__thumb {
  position: relative;
  width: 150px;
  height: 104px;
  overflow: hidden;
  border-radius: 6px;
}

.shop-blog-page__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-blog-page__thumb .shop-blog-page__thumb-text {
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 999px;
  padding: 3px 9px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-weight: 900;
}

.shop-blog-page__post-body {
  min-width: 0;
}

.shop-blog-page__post-body h3 {
  margin: 0 0 8px;
  color: #222;
  font-size: 19px;
  line-height: 1.35;
}

.shop-blog-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin: 0 0 10px;
  color: #666;
  font-size: 12px;
  font-weight: 800;
}

.shop-blog-page__meta em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--color-primary);
  background: #fff0f6;
  font-style: normal;
  font-weight: 900;
}

.shop-blog-page__post-body > p:last-child {
  margin: 0;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
}

.shop-blog-page__read-more {
  align-self: end;
  justify-self: end;
  white-space: nowrap;
}

.shop-blog-page__side {
  display: grid;
  gap: 14px;
}

.shop-blog-page__panel {
  border: 1px solid #ffcfe1;
  border-radius: 7px;
  padding: 16px;
  background: #fff;
}

.shop-blog-page__panel h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 16px;
}

.monthly-archive,
.shop-blog-page__ranking-panel {
  overflow: hidden;
  padding: 0;
}

.shop-blog-page__panel .monthly-archive__title,
.shop-blog-page__panel .shop-blog-page__panel-title {
  margin: 0;
  padding: 12px 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
}

.monthly-archive__list {
  padding: 4px 16px;
}

.monthly-archive__link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ffe1ec;
  padding: 12px 2px;
  color: #555;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.monthly-archive__link:last-child {
  border-bottom: 0;
}

.monthly-archive__link::after {
  content: "›";
  margin-left: auto;
  color: var(--color-primary);
  font-size: 18px;
  line-height: 1;
}

.monthly-archive__count {
  border-radius: 999px;
  padding: 2px 8px;
  background: #fff0f6;
  color: var(--color-primary);
  font-size: 11px;
  line-height: 1.4;
}

.shop-blog-page__ranking {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  list-style: none;
}

.shop-blog-page__ranking li {
  display: grid;
  grid-template-columns: 28px 62px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.shop-blog-page__ranking b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
}

.shop-blog-page__ranking img {
  width: 62px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.shop-blog-page__ranking strong,
.shop-blog-page__ranking em,
.shop-blog-page__ranking time {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-blog-page__ranking strong {
  color: #222;
  font-size: 13px;
}

.shop-blog-page__ranking em,
.shop-blog-page__ranking time,
.shop-blog-page__panel a {
  color: #666;
  font-size: 11px;
  font-style: normal;
}

.shop-blog-page__panel a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffe1ec;
  padding: 10px 0;
  font-weight: 900;
  text-decoration: none;
}

.shop-blog-page__panel a:last-child {
  border-bottom: 0;
}

.shop-blog-page__pagination {
  margin-top: 22px;
}

.shop-ranking-page__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-ranking-page__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-ranking-page__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-ranking-page__head p {
  margin: 2px 0 0;
  color: #666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.shop-ranking-page__lead {
  margin: 18px 0;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.shop-ranking-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.shop-ranking-page__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 34px;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.shop-ranking-page__tabs a.is-current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-ranking-page__layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-ranking-page__panel {
  min-width: 0;
  border: 1px solid #ffd6e5;
  border-radius: 7px;
  padding: 16px;
  background: #fff;
}

.shop-ranking-page__panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.shop-ranking-page__panel-head h3 {
  margin: 0;
  color: var(--color-primary);
  font-size: 17px;
}

.shop-ranking-page__panel-head .shop-ranking-page__panel-head-text {
  color: #666;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .06em;
  white-space: nowrap;
}

.shop-ranking-page__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-ranking-page__list li {
  display: grid;
  grid-template-columns: 32px 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #ffe1ec;
  padding-bottom: 12px;
}

.shop-ranking-page__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.shop-ranking-page__list > li > b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
}

.shop-ranking-page__thumb {
  display: block;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border-radius: 6px;
}

.shop-ranking-page__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-ranking-page__list h4 {
  margin: 0 0 5px;
  font-size: 15px;
  line-height: 1.35;
}

.shop-ranking-page__list h4 a {
  color: #222;
  text-decoration: none;
}

.shop-ranking-page__list h4 a:hover {
  color: var(--color-primary);
}

.shop-ranking-page__list em,
.shop-ranking-page__list p {
  display: block;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-ranking-page__list em {
  color: var(--color-primary);
}

.shop-review-page__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-review-page__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-review-page__head h2 span {
  color: #ffb300;
  font-size: 24px;
  line-height: 1;
}

.shop-review-page__head p {
  margin: 2px 0 0;
  color: #666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.shop-review-page__summary {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin: 20px 0;
}

.shop-review-page__score {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 132px;
  border: 1px solid #ffd1e3;
  border-radius: 8px;
  background: #fff7fb;
}

.shop-review-page__score strong {
  color: var(--color-primary);
  font-size: 42px;
  line-height: 1;
}

.shop-review-page__score .shop-review-page__score-text {
  color: #ffb300;
  font-size: 15px;
  font-weight: 900;
}

.shop-review-page__score p {
  margin: 4px 0 0;
  color: #555;
  font-size: 12px;
  font-weight: 900;
}

.shop-review-page__summary-body p {
  margin: 0 0 14px;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.shop-review-page__summary-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.shop-review-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.shop-review-page__tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  min-height: 34px;
  border: 1px solid #ffcfe1;
  border-radius: 6px;
  padding: 0 16px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.shop-review-page__tabs a.is-current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-review-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.shop-review-page__list {
  display: grid;
  gap: 14px;
}

.shop-review-page__card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid #ffd6e5;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

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

.shop-review-page__photo {
  display: block;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 7px;
}

.shop-review-page__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-review-page__body {
  min-width: 0;
}

.shop-review-page__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-review-page__card-head strong {
  color: #ffb300;
  font-size: 15px;
}

.shop-review-page__card-head time,
.shop-review-page__card small {
  color: #666;
  font-size: 12px;
}

.shop-review-page__card h3 {
  margin: 8px 0 6px;
  color: #111;
  font-size: 18px;
  line-height: 1.4;
}

.shop-review-page__card p {
  margin: 0 0 10px;
  color: #333;
  font-size: 13px;
  line-height: 1.7;
}

.shop-review-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.shop-review-page__links a,
.shop-review-page__links .shop-review-page__links-text {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--color-primary);
  background: #fff0f6;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.shop-review-page__side {
  display: grid;
  gap: 14px;
}

.shop-review-page__panel {
  border: 1px solid #ffcfe1;
  border-radius: 7px;
  padding: 16px;
  background: #fff;
}

.shop-review-page__panel h3 {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-size: 16px;
}

.shop-review-page__ranking {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-review-page__ranking li {
  display: grid;
  grid-template-columns: 28px 62px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.shop-review-page__ranking b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
}

.shop-review-page__ranking img {
  width: 62px;
  height: 48px;
  border-radius: 4px;
  object-fit: cover;
}

.shop-review-page__ranking strong,
.shop-review-page__ranking em,
.shop-review-page__ranking time {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop-review-page__ranking strong {
  color: #222;
  font-size: 13px;
}

.shop-review-page__ranking em,
.shop-review-page__ranking time,
.shop-review-page__panel a {
  color: #666;
  font-size: 11px;
  font-style: normal;
}

.shop-review-page__panel a {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffe1ec;
  padding: 10px 0;
  font-weight: 900;
  text-decoration: none;
}

.shop-review-page__panel a:last-child {
  border-bottom: 0;
}

.shop-review-page__pagination {
  margin-top: 22px;
}

.discount__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 12px 0 0;
  padding: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  list-style: none;
}

.discount__notes li {
  position: relative;
  padding-left: 12px;
}

.discount__notes li::before {
  position: absolute;
  left: 0;
  color: var(--color-primary);
  content: none;
}

.shop__cast-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.shop__cast-list article {
  min-width: 0;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 8px;
  background: #fff;
}

.shop__cast-list img {
  display: block;
  width: 100%;
  border-radius: 3px;
  object-fit: cover;
}

.shop__cast-list .girl__title {
  padding: 7px 0 0;
}

.shop__cast-list h4 {
  margin: 0;
  overflow: hidden;
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__cast-list p {
  margin: 2px 0 6px;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__cast-list em {
  display: inline-block;
  max-width: 100%;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.system__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.system__card,
.system__grid article {
  position: relative;
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  padding: 16px;
  color: inherit;
  background: #fff9fc;
  text-align: center;
  text-decoration: none;
}

.system__grid .system__grid-text {
  display: inline-block;
  border-radius: 999px;
  padding: 3px 10px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

/* コースラベル未設定時: 高さは確保したまま見た目だけ非表示にする(下のコース名の位置がズレないように) */
.system__grid .system__grid-text--empty {
  color: transparent;
  background: transparent;
}

.system__grid h4 {
  margin: 9px 0 2px;
  font-size: 24px;
}

.system__grid strong {
  display: block;
  color: var(--color-primary);
  font-size: 23px;
  line-height: 1.2;
}

.system__price-list {
  display: grid;
  gap: 0;
  margin: 0 0 8px;
}

.system__price-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  border-bottom: 1px solid #ffd9e7;
  padding: 1px 4px 4px;
}

.system__price-item dt {
  color: #222;
  font-size: 16px;
  font-weight: 900;
}

.system__price-item dd {
  margin: 0;
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.system__grid p,
.system__notes {
  color: #555;
  font-size: 12px;
}

.shop__system-more > summary,
.system__grid--more {
  display: none;
}

.shop__system-fees {
  margin-top: 14px;
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  padding: 12px 14px;
  background: #fff;
}

.shop__system-fees h4 {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 16px;
}

.shop__system-fees dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 22px;
  margin: 0;
}

.shop__system-fees dl .shop__system-fees-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
}

.shop__system-fees dl .shop__system-fees-item::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -11px;
  bottom: 7px;
  width: 1px;
  border-radius: 2px;
  background: #ffb6d2;
}

.shop__system-fees dl .shop__system-fees-item:nth-child(4n)::after,
.shop__system-fees dl .shop__system-fees-item:last-child::after {
  display: none;
}

.shop__system-fees dt {
  color: #333;
  font-size: 13px;
  font-weight: 900;
}

.shop__system-fees dd {
  margin: 0;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
  white-space: nowrap;
}

.page--shop-detail .shop__system-fees h4 {
  font-size: 18px;
}

.page--shop-detail .shop__system-fees dt,
.page--shop-detail .shop__system-fees dd {
  font-size: 15px;
}

.system__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 10px 0 0;
  padding-left: 18px;
}

.shop__content-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.shop__blog-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.shop__blog-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.shop__blog-card img,
.shop__ranking-list img {
  width: 78px;
  height: 58px;
  border-radius: 3px;
  object-fit: cover;
}

.shop__blog-card img {
  height: 78px;
  aspect-ratio: 1 / 1;
}

.shop__blog-card time {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.shop__blog-card h4,
.shop__review-card h4 {
  margin: 2px 0 4px;
  overflow: hidden;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__blog-card p,
.shop__review-card small,
.shop__ranking-list small {
  margin: 0;
  color: #555;
  font-size: 12px;
}

.shop__review-card p {
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.shop__ranking-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop__ranking-list li {
  display: grid;
  grid-template-columns: 28px 58px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
}

.shop__ranking-list b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
}

.shop__ranking-list img {
  width: 58px;
  height: 58px;
}

.shop__ranking-list strong,
.shop__ranking-list .shop__ranking-list-text,
.shop__ranking-list small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__ranking-list .shop__ranking-list-text,
.review__score-box .review__score-box-text {
  color: #ffb300;
  font-size: 12px;
  font-weight: 900;
}

.review__score-box {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 95px;
  margin-bottom: 10px;
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  background: #fff7fb;
}

.review__score-box strong {
  color: var(--color-primary);
  font-size: 34px;
  line-height: 1;
}

.review__score-box p {
  margin: 0;
  color: #555;
  font-size: 12px;
  font-weight: 900;
}

.shop__review-card {
  border-top: 1px solid #eee;
  padding: 10px 0 0;
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .shop__discount-section {
    grid-template-columns: 1fr;
  }

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

  .shop-event__sidebar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 14px;
  }

  .shop-event__contact {
    margin-top: 0;
  }

  .shop-event__coupon-list {
    border-left: 0;
    padding-left: 0;
  }

  .shop-news-page__item {
    grid-template-columns: 90px minmax(0, 1fr) 132px 24px;
    gap: 14px;
    padding-left: 16px;
  }

  .shop-news-page__thumb {
    width: 132px;
    height: 74px;
  }

  .shop-news-detail__layout,
  .shop-news-detail__contact {
    grid-template-columns: 1fr;
  }

  .shop-news-detail__contact > div + div {
    border-top: 1px solid #ffdce9;
    border-left: 0;
    padding-top: 18px;
    padding-left: 0;
  }

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

  .shop-blog-page__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .shop-review-page__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .discount__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop__cast-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop__content-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .shop__discount-section {
    gap: 12px;
  }

  .shop-event__section {
    padding: 16px;
  }

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

  .shop-event__coupon-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /*
   * カード自体は1100px以下でブロック表示に切り替わる一方、外側の一覧は
   * 従来420px以下でしか1列にならず、421〜1100pxの幅(iPhone Pro Max等の
   * 428/430px含む多くのスマホ)ではカードが半分幅に押し込まれ、
   * 「利用条件」等のテキストが1文字ずつ縦に折り返されるレイアウト崩れが発生していた。
   */
  .page--shop-event .shop-event__coupon-list {
    grid-template-columns: 1fr;
  }

  .shop-event__coupon-card--accordion {
    overflow: hidden;
    border-radius: 16px;
    padding: 0;
    background: #fff7fb;
    box-shadow: 0 4px 14px rgba(214, 38, 118, .12);
  }

  .shop-event__coupon-details--card {
    display: block;
  }

  .shop-event__coupon-visual {
    position: relative;
    min-height: 128px;
    border: 1px solid rgba(230, 0, 116, .22);
    border-radius: 14px;
    padding: 18px 18px 30px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .7), 0 2px 8px rgba(214, 38, 118, .1);
  }

  .shop-event__coupon-visual::before {
    content: "＋";
    position: absolute;
    top: 22px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 2px solid currentColor;
    border-radius: 50%;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 2px 7px rgba(214, 38, 118, .16);
    font-size: 20px;
    font-weight: 700;
    line-height: 0;
    padding-bottom: 1px;
  }

  .shop-event__coupon-visual::after {
    content: "タップで詳細を見る ▼";
    position: absolute;
    right: 18px;
    bottom: 14px;
    color: currentColor;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
  }

  .shop-event__coupon-details--card[open] .shop-event__coupon-visual::before {
    content: "－";
  }

  .shop-event__coupon-details--card[open] .shop-event__coupon-visual::after {
    content: "タップで閉じる ▲";
  }

  .shop-event__coupon-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-event__coupon-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    border: 1px solid #ff9ac5;
    padding: 10px 12px;
    color: #e60074;
    background: #fff7fb;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
  }

  .shop-event__coupon-details--card .shop-event__coupon-summary {
    display: block;
    margin-top: 0;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .shop-event__coupon-details--card .shop-event__coupon-summary .shop-event__coupon-visual {
    cursor: pointer;
  }

  .shop-event__coupon-details--card .shop-event__coupon-summary::after {
    content: none;
    display: none;
  }

  .shop-event__coupon-details summary::-webkit-details-marker {
    display: none;
  }

  .shop-event__coupon-details summary::after {
    content: "＋";
    color: #e60074;
    font-size: 16px;
    line-height: 1;
  }

  .shop-event__coupon-details[open] summary::after {
    content: "－";
  }

  .shop-event__coupon-details--card .shop-event__coupon-summary::after,
  .shop-event__coupon-details--card[open] .shop-event__coupon-summary::after {
    content: none;
    display: none;
  }

  .shop-event__coupon-details dl {
    margin-top: 0;
    border: 1px solid #ffdce9;
    border-top: 0;
    padding: 0 12px 4px;
  }

  .shop-event__coupon-details--card .shop-event__coupon-body--conditions {
    border-top: 1px solid #ffdce9;
    padding: 0 16px 12px;
  }

  .shop-event__coupon-details--card > .shop-event__coupon-body {
    margin: 0 14px 14px;
    border: 1px solid #ffdce9;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(214, 38, 118, .08);
  }

  .page--coupon .shop-event__coupon-visual,
  .page--shop-event .shop-event__coupon-visual {
    min-height: 110px;
    padding: 14px 16px;
  }

  .page--shop-event .shop-event__coupon-visual {
    min-height: 90px;
  }

  .page--coupon .shop-event__coupon-visual::after,
  .page--coupon .shop-event__coupon-details--card[open] .shop-event__coupon-visual::after,
  .page--shop-event .shop-event__coupon-visual::after,
  .page--shop-event .shop-event__coupon-details--card[open] .shop-event__coupon-visual::after {
    content: none;
    display: none;
  }

  .page--coupon .shop-event__coupon-visual::before,
  .page--shop-event .shop-event__coupon-visual::before {
    top: auto;
    right: 12px;
    bottom: 10px;
  }

  .page--shop-event:not(.page--coupon) .shop-event__coupon-visual::before {
    content: none;
    display: none;
  }

  .page--coupon .shop-event__coupon-visual strong,
  .page--shop-event .shop-event__coupon-visual strong {
    padding-inline: 10px;
    font-size: clamp(25px, 7.5vw, 30px);
  }

  .page--coupon .shop-event__coupon-shop-name--mobile {
    display: block;
    width: calc(100% - 92px);
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 5px;
    padding: 5px 8px 0;
    background: transparent;
    font-size: 15px;
    text-align: center;
  }

  .page--coupon .shop-event__coupon-shop-name--desktop {
    display: none;
  }

  .page--coupon .shop-event__coupon-details--card > .shop-event__coupon-body {
    margin: 0 10px 10px;
    padding: 12px;
  }

  .shop-news-page__section {
    padding: 16px;
  }

  .shop-news-detail__section {
    padding: 16px;
  }

  .shop-news-detail__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .shop-news-detail__main h1 {
    font-size: 21px;
  }

  .shop-news-detail__gallery {
    grid-template-columns: 30px repeat(4, minmax(0, 1fr)) 30px;
    gap: 7px;
    margin-bottom: 25px;
  }

  .shop-news-detail__gallery img {
    height: 54px;
  }

  .shop-news-detail__coupon a {
    min-width: 0;
    width: 100%;
  }

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

  .shop-news-detail__pager a + a {
    border-top: 1px solid #ffdce9;
    border-left: 0;
  }

  .shop-news-detail__contact {
    padding: 18px;
  }

  .shop-blog-page__section {
    padding: 16px;
  }

  .shop-blog-page__post-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 12px;
  }

  .shop-blog-page__thumb {
    width: 120px;
    height: 92px;
  }

  .shop-blog-page__read-more {
    grid-column: 2;
  }

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

  .shop-ranking-page__section {
    padding: 16px;
  }

  .shop-ranking-page__tabs a {
    flex: 1 1 120px;
  }

  .shop-review-page__section {
    padding: 16px;
  }

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

  .shop-review-page__tabs a {
    flex: 1 1 120px;
  }

  .shop-review-page__card {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 12px;
  }

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

  .shop-review-page__photo {
    width: 90px;
    height: 90px;
  }

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

  .shop-news-page__filters {
    gap: 10px;
    margin: 18px 0;
  }

  .shop-news-page__filters a {
    min-width: 0;
    flex: 1 1 120px;
  }

  .shop-news-page__item {
    grid-template-columns: minmax(0, 1fr) 120px 22px;
    gap: 10px;
    padding: 16px 6px;
  }

  .shop-news-page__tag {
    grid-column: 1;
    justify-self: start;
  }

  .shop-news-page__body {
    grid-column: 1;
  }

  .shop-news-page__thumb {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 120px;
    height: 68px;
  }

  .shop-news-page__arrow {
    grid-column: 3;
    grid-row: 1 / 4;
  }

  .shop__block-head {
    align-items: center;
  }

  .page--shop-detail .shop__content-columns .shop__block-head.is-compact {
    align-items: center;
    flex-direction: row;
  }

  .shop__cast-list,
.system__grid,
.discount__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-news__item {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 8px;
    padding: 0 10px;
  }
}

@media (max-width: 420px) {
  .page--shop-event .shop-event__coupon-list {
    grid-template-columns: 1fr;
  }

  .shop__cast-list,
.system__grid,
.discount__grid {
    grid-template-columns: 1fr;
  }

  .shop-event__coupon-body dl .shop-event__coupon-body-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .shop-event__notes {
    margin-inline: 0;
  }

  .shop-news-page__item {
    grid-template-columns: 1fr 34px;
  }

  .shop-news-page__tag,
  .shop-news-page__body,
  .shop-news-page__thumb {
    grid-column: 1;
  }

  .shop-news-page__arrow {
    grid-column: 2;
    grid-row: 1 / 5;
    align-self: center;
  }

  .shop-news-page__thumb {
    grid-row: auto;
    width: min(100%, 180px);
    height: 92px;
  }

  .shop-news-detail__profile th,
  .shop-news-detail__profile td {
    display: block;
    width: 100%;
  }

  .shop-news-detail__profile th {
    border-bottom: 0;
    padding-bottom: 4px;
  }

  .shop-news-detail__profile td {
    padding-top: 4px;
  }

  .shop-news-detail__coupon strong {
    font-size: 38px;
  }

  .shop-news-detail__contact .shop-news-detail__contact-item:last-child {
    grid-template-columns: 1fr;
  }

  .shop-blog-page__tabs a {
    flex: 1 1 100%;
  }

  .shop-blog-page__post-card {
    grid-template-columns: 1fr;
  }

  .shop-blog-page__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .shop-blog-page__read-more {
    grid-column: auto;
  }

  .shop-ranking-page__panel {
    padding: 14px;
  }

  .shop-ranking-page__panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-ranking-page__list li {
    grid-template-columns: 30px 64px minmax(0, 1fr);
  }

  .shop-ranking-page__thumb {
    width: 64px;
    height: 64px;
  }

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

  .shop-review-page__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .shop-review-page__card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-news-page__body h2,
  .shop-news-page__body h3 {
    font-size: 17px;
  }

  .shop-news-page__pagination {
    flex-wrap: wrap;
    gap: 8px;
  }

  .shop-news__item {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 9px 10px;
  }

  .shop-news__title {
    white-space: normal;
  }
}

.shop__cast-section {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 40px;
}

.shop__cast-section {
  margin-top: 0;
}

.shop__cast-section .section-heading {
  margin-top: 0;
}

.page--shop-detail .waiting__section,
.page--shop-detail .shop__schedule-section,
.page--shop-detail .shop__system-section,
.page--shop-detail .shop__blog-section,
.page--shop-detail .shop__ranking-section,
.page--shop-detail .shop__review-section,
.page--shop-detail .discount__panel,
.page--shop-detail .shop-news__panel,
.page--shop-detail .shop__guide,
.page--shop-detail .flow__box {
  position: relative;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.page--shop-detail .shop__guide h2,
.page--shop-detail .flow__box h2 {
  margin: -22px -24px 0;
  padding: 12px 24px;
}

.page--shop-detail .shop__guide img {
  width: 100%;
  margin: 12px 0 0;
}

.page--shop-detail .shop__guide dl,
.page--shop-detail .flow__box ol {
  margin: 12px 0;
}

.page--shop-detail .flow__box > a {
  width: 100%;
  margin: 12px 0 0;
}

.page--shop-detail .waiting__section,
.page--shop-detail .shop__schedule-section,
.page--shop-detail .shop__cast-section,
.page--shop-detail .shop__system-section {
  margin: 16px 0 0;
}

.page--shop-detail .shop__content-columns {
  margin-top: 16px;
}

.page--shop-detail .waiting__card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px;
  box-shadow: none;
}

.page--shop-detail .wait__status {
  top: 12px;
  right: 12px;
  left: 12px;
  justify-content: flex-end;
}

.page--shop-detail .waiting__card img {
  border-radius: 4px;
}

.page--shop-detail .waiting__card .girl__title {
  padding: 8px 0 0;
}

.page--shop-detail .waiting__card p,
.page--shop-detail .waiting__card>a:not(.waiting__photo-link):not(.waiting__card-link) {
  margin-right: 0;
  margin-left: 0;
}

.page--shop-detail .shop__attendance-media {
  display: block;
}

.page--shop-detail .shop__attendance-photo-link {
  display: block;
  width: 100%;
}

.page--shop-detail .shop__attendance-time {
  display: block;
  margin-top: 6px;
  text-align: left;
}

.page--shop-list {
  background: #fff;
}

.page-title__row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #cfcfcf;
  margin: 0 0 12px;
  padding-bottom: 8px;
}

.page-title__row h1 {
  display: inline;
  margin: 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.25;
}

.page-title__row div>span,
.page-title__row h1 .page-title__row-text,
.blog__page-title h1 .blog__page-title-text,
.girl-blog__heading h1 .girl-blog__heading-text,
.gb__title small {
  margin-left: 16px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 800;
}

.page-title__row p {
  margin: 6px 0 0;
  color: #444;
  font-size: 14px;
}

.page-title__lead {
  margin: -6px 0 14px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

.page-title__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  margin-left: 14px;
  color: #555;
  white-space: nowrap;
}

.page-title__meta strong {
  color: var(--color-primary);
  font-weight: 800;
}

.result__count {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin: 0;
  color: #555;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}

.result__count .result__count-text {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.result__count strong {
  color: var(--color-primary);
  font-size: inherit;
  font-weight: 800;
}

.shop__search-sidebar {
  display: grid;
  gap: 14px;
}

.shop__search-sidebar section {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

.shop__search-sidebar .top-side-flyout {
  position: relative;
  overflow: visible;
  z-index: 5;
}

.shop__search-sidebar h2 {
  margin: 0;
  padding: 11px 14px;
  color: #333;
  background: #f4f5f5;
  font-size: 15px;
}

.top-side-flyout h2 {
  cursor: default;
}

.top-side-flyout__panel {
  position: absolute;
  top: -1px;
  left: calc(100% + 10px);
  z-index: 20;
  display: grid;
  min-width: 180px;
  overflow: hidden;
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(233, 20, 99, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.top-side-flyout:hover .top-side-flyout__panel,
.top-side-flyout:focus-within .top-side-flyout__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.shop__search-sidebar a,
.shop__search-sidebar label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding: 11px 14px;
  color: #222;
  font-size: 13px;
  font-weight: 900;
}

.shop__search-sidebar a:last-of-type,
.shop__search-sidebar label:last-of-type {
  border-bottom: 0;
}

.shop__search-sidebar small {
  color: var(--color-primary);
  font-size: 10px;
}

.shop__search-sidebar .is-current {
  color: var(--color-primary);
  background: #fff7fb;
}

.shop__search-sidebar input {
  accent-color: var(--color-primary);
}

.shop__search-sidebar button {
  width: calc(100% - 28px);
  margin: 10px 14px 14px;
  border: 0;
  border-radius: 4px;
  padding: 10px;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
}

.shop__list-main {
  min-width: 0;
}

.shop__list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.shop__list-toolbar p {
  margin: 0;
  color: #444;
  font-size: 13px;
}

.shop__list-toolbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.shop__list-toolbar button {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
}

.shop__list-toolbar .is-active {
  border-color: var(--color-primary);
  color: #fff;
  background: var(--color-primary);
}

.shop__list-grid {
  display: grid;
  gap: 14px;
}

.listing__plan-section {
  margin-top: 16px;
}

.listing__plan-section:first-of-type {
  margin-top: 0;
}

.listing__plan-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ffd6e5;
  padding-bottom: 8px;
}

.listing__plan-head h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 19px;
  line-height: 1.3;
}

.listing__plan-head p {
  margin: 0;
  color: #555;
  font-size: 12px;
  font-weight: 900;
}

.gold__listing-section .shop__list-card {
  border-width: 2px;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 110px);
}

.gold__listing-section .shop__list-card>img {
  min-height: 0;
}

.regular__listing-section .shop__list-card {
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 12px;
  border-color: #e5e5e5;
}

.regular__listing-section .shop__list-card>img {
  min-height: 0;
}

.regular__listing-section .shop__list-card h2 {
  font-size: 19px;
}

.regular__listing-section .shop__list-card p {
  display: none;
  margin-bottom: 8px;
  font-size: 12px;
}

.regular__listing-section .shop__list-card dl {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.regular__listing-section .shop__card-tags,
.regular__listing-section .shop__card-actions button {
  display: none;
}

.regular__listing-section .shop__list-card dl div:nth-child(n

  +3) {
  display: none;
}

.regular__listing-section .shop__card-actions {
  margin-top: 10px;
}

.free__listing-grid {
  gap: 8px;
}

.free__listing-section .shop__list-card {
  display: block;
  border-color: #e5e5e5;
  border-radius: 4px;
  padding: 10px 12px;
  background: #fff;
}

.free__listing-section .shop__list-card>img,
.free__listing-section .shop__card-tags,
.free__listing-section .shop__list-card dl,
.free__listing-section .shop__card-actions {
  display: none;
}

.free__listing-section .shop__card-head {
  justify-content: flex-start;
  gap: 8px;
}

.free__listing-section .shop__card-head .shop__card-head-text {
  padding: 2px 7px;
  font-size: 10px;
}

.free__listing-section .shop__list-card h2 {
  margin: 6px 0 3px;
  font-size: 16px;
}

.free__listing-section .shop__list-card p {
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 12px;
  line-height: 1.5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.free__listing-section .shop__list-card p.shop__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  overflow: visible;
  margin: 4px 0 0;
  color: #333;
  font-size: 12px;
  font-weight: 700;
  white-space: normal;
}

.free__listing-section .shop__list-card p.shop__card-meta a {
  color: inherit;
  text-decoration: none;
}

.shop__list-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  border: 1px solid #ffd1e3;
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.shop__list-card>img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  object-fit: cover;
}

.shop__list-card-body {
  min-width: 0;
}

.shop__card-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.shop__card-head .shop__card-head-text {
  display: none;
}

.shop__card-head strong {
  min-width: 0;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__list-card h2 {
  margin: 10px 0 5px;
  overflow: hidden;
  color: #111;
  font-size: 22px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__list-card p {
  margin: 0 0 10px;
  color: #444;
  font-size: 13px;
  line-height: 1.65;
}

.shop__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.shop__card-tags em {
  border-radius: 3px;
  padding: 4px 8px;
  color: var(--color-primary);
  background: #fff0f6;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.shop__list-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 12px;
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
}

.shop__list-card dl .shop__list-card-item {
  min-width: 0;
  border-left: 1px solid #eee;
  padding: 8px;
  background: #fff;
}

.shop__list-card dl .shop__list-card-item:first-child {
  border-left: 0;
}

.shop__list-card dt {
  color: #777;
  font-size: 11px;
  font-weight: 900;
}

.shop__list-card dd {
  margin: 3px 0 0;
  overflow: hidden;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop__card-actions a,
.shop__card-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 7px 14px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.shop__card-actions a:first-child {
  color: #fff;
  background: var(--color-primary);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 24px 0 0;
}

.pagination a {
  display: grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  border-radius: 4px;
  color: #111;
  font-weight: 900;
}

.pagination .is-active {
  color: #fff;
  background: var(--color-primary);
}

@media (max-width: 1100px) {
  .shop__search-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .page-title__row,
.shop__list-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop__search-sidebar {
    grid-template-columns: 1fr;
  }

  .shop__list-card {
    grid-template-columns: 1fr;
  }

  .regular__listing-section .shop__list-card {
    grid-template-columns: 1fr;
  }

  .shop__list-card>img {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .regular__listing-section .shop__list-card>img {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .shop__list-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .shop__list-card dl {
    grid-template-columns: 1fr;
  }

  .shop__list-card dl .shop__list-card-item {
    border-left: 0;
    border-top: 1px solid #eee;
  }

  .shop__list-card dl .shop__list-card-item:first-child {
    border-top: 0;
  }
}

.shop__schedule-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.shop__attendance-list {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
}

.shop__attendance-list article {
  position: relative;
  display: block;
  min-width: 0;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 8px;
  background: #fff;
}

.shop__attendance-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.shop__attendance-list img {
  display: block;
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.shop__attendance-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px 6px;
  align-items: center;
}

.shop__attendance-photo-link {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 2;
  display: block;
}

.shop__attendance-media img {
  display: block;
  width: 100%;
}

.shop__attendance-time {
  padding: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__attendance-time {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  max-width: 100%;
  color: var(--color-primary);
}

.shop__attendance-list b {
  display: inline-block;
  max-width: 100%;
  margin-top: 8px;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shop__attendance-list h4 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin: 3px 0 4px;
  font-size: 16px;
  line-height: 1.3;
}

.shop__attendance-list h4 .girl-link {
  display: -webkit-box;
  overflow: hidden;
  flex: 1;
  min-width: 0;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shop__attendance-list h4 .shop__attendance-list-text {
  flex-shrink: 0;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.shop__attendance-list p {
  margin: 0;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.shop__attendance-list .shop__attendance-size {
  overflow: hidden;
  color: #111;
  font-size: 11px;
  font-weight: 800;
  text-overflow: ellipsis;
}

.page--girl-detail .main__photo {
  width: 390px;
  height: 520px;
  aspect-ratio: 390 / 520;
  object-fit: cover;
}

.page--girl-detail .photo__profile {
  width: 390px;
  max-width: 390px;
  flex: 0 0 390px;
}

.page--girl-detail {
  --girl-detail-top-height: 560px;
}

.page--girl-detail .photo__profile,
.page--girl-detail .profile__card,
.page--girl-detail .detail__side .side__card:first-child {
  box-sizing: border-box;
  height: var(--girl-detail-top-height);
}

@media (max-width: 1100px) {
  .page--girl-detail .profile__main,
  .page--girl-detail .detail__side,
  .page--girl-detail .layout__main--full,
  .page--girl-detail .is-full-width {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .page--girl-detail .detail__side {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: stretch;
  }

  .page--girl-detail .detail__side .side__card,
  .page--girl-detail .side__card,
  .page--girl-detail .manager__comment,
  .page--girl-detail .info__panel,
  .page--girl-detail .review__panel {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .page--girl-detail .photo__profile {
    width: 100%;
    max-width: 100%;
    flex: 0 1 auto;
    height: auto;
  }

  .page--girl-detail .main__photo {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .page--girl-detail .girl-photo-slider {
    width: 100%;
  }

  .page--girl-detail .profile__card,
  .page--girl-detail .detail__side .side__card:first-child {
    height: auto;
  }

  .page--girl-detail .thumb__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .page--girl-detail .thumb__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.shop__calendar-box {
  min-width: 0;
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  padding: 12px;
  background: #fff7fb;
}

@media (max-width: 1100px) {
  .shop__schedule-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page--shop-detail .system__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--shop-detail .system__grid .system__card:nth-child(n + 3),
  .page--shop-detail .system__grid article:nth-child(n + 3) {
    display: none;
  }

  .shop__attendance-list {
    grid-template-columns: 1fr;
  }

  .page--shop-detail .shop__system-fees,
  .page--shop-detail .system__notes {
    display: none;
  }

  .shop__system-fees dl {
    grid-template-columns: 1fr;
  }

  .shop__system-fees dl .shop__system-fees-item {
    border-bottom: 1px solid #eee;
  }

  .shop__system-fees dl .shop__system-fees-item::after {
    display: none;
  }
}

.ranking__layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.ranking__panel,
.review__list-card {
  border: 1px solid #ffd1e3;
  border-radius: 8px;
  background: #fff;
}

.ranking__panel {
  padding: 16px;
}

.ranking__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #ffd6e5;
  padding-bottom: 9px;
  margin-bottom: 12px;
}

.ranking__head h2 {
  margin: 0;
  color: var(--color-primary);
  font-size: 21px;
}

.ranking__head .ranking__head-text {
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
}

.review__girl-photo img,
.review__shop-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 5px;
  object-fit: cover;
}

.page-title__body {
  min-width: 0;
}

.ranking__shop-name {
  display: inline-block;
  max-width: 100%;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.blog__meta .blog__meta-text {
  display: inline-block;
  max-width: 100%;
  margin-left: 8px;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.blog__meta .blog__girl-name {
  display: inline;
  margin-left: 6px;
  border-radius: 0;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.blog__ranking em {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 3px 0 2px;
  border-radius: 0;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blog__ranking em {
  margin-top: 3px;
  font-size: 11px;
  font-style: normal;
}

.ranking__blog-list li {
  grid-template-columns: 30px 72px minmax(0, 1fr);
  column-gap: 18px;
  padding-right: 0;
  padding-left: 0;
}

.ranking__blog-body {
  min-width: 0;
  padding-left: 4px;
}

.ranking__blog-body h3 a {
  color: #111;
}

.ranking__blog-body h3 a:hover {
  color: var(--color-primary);
}

.ranking__girl-name {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review__card-head strong {
  display: block;
  color: #ffb300;
  font-size: 13px;
}

.review__list {
  display: grid;
  gap: 14px;
}

.review__list-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
}

.review__list-card[hidden] {
  display: none;
}

.review__list-body {
  min-width: 0;
}

.review__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review__card-head time,
.review__list-card small {
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.review__more-link,
.link--read-more,
.shop-blog-page__read-more {
  display: flex;
  width: fit-content;
  margin: 12px 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  text-decoration: none;
}

.review__more-link::after,
.link--read-more::after,
.shop-blog-page__read-more::after {
  margin-left: 6px;
  content: "›";
}

.review__more-link:hover,
.link--read-more:hover,
.shop-blog-page__read-more:hover {
  opacity: .82;
}

.review__list-card h2 {
  margin: 8px 0 6px;
  color: #111;
  font-size: 19px;
  line-height: 1.35;
}

.review__title-link {
  color: inherit;
  text-decoration: none;
}

.review__title-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.review__list-card p {
  margin: 0 0 10px;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}

.review-detail__main {
  min-width: 0;
}

.review-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.review-detail__article,
.review-detail__profile,
.review-detail__shop {
  border: 1px solid #ffd1e3;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(178, 29, 86, .08);
}

.review-detail__article {
  padding: 24px;
}

.review-detail__back {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid #ffc7dc;
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--color-primary);
  background: #fff5f9;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.review-detail__header {
  border: 1px solid #ffd8e6;
  border-radius: 10px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #fff3f8 0%, #fff 75%);
}

.review-detail__header time,
.review-detail__author {
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.review-detail__header time {
  display: block;
  margin-top: 6px;
  text-align: right;
}

.review-detail__header h2 {
  margin: 14px 0 8px;
  border-left: 5px solid var(--color-primary);
  padding-left: 13px;
  color: #111;
  font-size: 28px;
  line-height: 1.45;
}

.review-detail__score {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  border: 1px solid #ffd48a;
  border-radius: 999px;
  padding: 5px 12px;
  color: #ffb300;
  background: #fffaf0;
  box-shadow: 0 3px 10px rgba(255, 179, 0, .1);
}

.review-detail__score span {
  font-size: 20px;
  letter-spacing: 2px;
}

.review-detail__score strong {
  font-size: 26px;
}

.review-detail__body {
  position: relative;
  margin-top: 20px;
  border-left: 3px solid #ffc7dc;
  padding: 4px 0 4px 20px;
}

.review-detail__body p {
  margin: 0 0 1.2em;
  color: #333;
  font-size: 15px;
  line-height: 2;
}

.review-detail__summary {
  margin: 12px 0 24px;
  overflow: hidden;
  border: 1px solid #f2d4df;
  border-radius: 9px;
}

.review-detail__summary-item {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  border-bottom: 1px solid #eee;
}

.review-detail__summary dt,
.review-detail__summary dd {
  margin: 0;
  padding: 12px 14px;
}

.review-detail__summary dt {
  background: #fff0f6;
  color: #a5164d;
  font-weight: 900;
}

.review-detail__summary dd {
  color: #ff9c00;
  font-weight: 900;
}

.review-detail__summary a {
  color: var(--color-primary);
}

.review-detail__navigation {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 2px;
}

.review-detail__navigation a {
  border: 1px solid #ffc7dc;
  border-radius: 6px;
  padding: 9px 14px;
  color: var(--color-primary);
  background: #fff7fa;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.review-detail__sidebar {
  display: grid;
  gap: 16px;
}

.review-detail__profile,
.review-detail__shop {
  overflow: hidden;
  padding: 18px;
  text-align: center;
}

.review-detail__profile h2,
.review-detail__shop h2 {
  margin: -18px -18px 18px;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #ff5c9b);
  font-size: 17px;
  text-shadow: 0 1px 2px rgba(126, 0, 48, .18);
}

.review-detail__profile-photo {
  display: block;
  max-width: 180px;
  margin: 0 auto;
}

.review-detail__profile-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 4px solid #fff;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px #ffc7dc, 0 8px 18px rgba(178, 29, 86, .12);
}

.review-detail__profile h3,
.review-detail__shop h3 {
  margin: 13px 0 6px;
  font-size: 19px;
}

.review-detail__profile h3 a,
.review-detail__shop h3 a {
  color: #111;
}

.review-detail__profile p,
.review-detail__shop p {
  margin: 0 0 14px;
  color: #666;
  font-size: 13px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .review-detail__layout {
    grid-template-columns: 1fr;
  }

  .review-detail__sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .review-detail__article {
    padding: 16px;
  }

  .review-detail__header h2 {
    font-size: 22px;
  }

  .review-detail__summary-item,
  .review-detail__sidebar {
    grid-template-columns: 1fr;
  }

  .review-detail__summary dt,
  .review-detail__summary dd {
    padding: 10px 12px;
  }

  .review-detail__navigation {
    align-items: flex-start;
    flex-direction: column;
  }
}

.review__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.page--with-left-search {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.ranking__main,
.review__main {
  min-width: 0;
}

.shop__list-main>.page-title__row,
.ranking__main>.page-title__row,
.review__main>.page-title__row,
.blog__main>.blog__page-title {
  margin-top: 0;
}

.blog__layout.layout--with-left-search {
  grid-template-columns: 200px minmax(0, 1fr) 375px;
  gap: 22px;
}

.layout--review-right-search {
  grid-template-columns: 200px minmax(0, 1fr) 375px;
}

.review__sidebar {
  margin-top: 0;
}

.review__sidebar .blog__banner {
  display: block;
  width: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.review__sidebar .blog__banner div:first-child {
  min-width: 0;
  padding: 16px;
}

.review__sidebar .blog__banner strong {
  font-size: 18px;
  line-height: 1.35;
}

.review__sidebar .blog__banner span {
  margin: 6px 0 12px;
  font-size: 13px;
  line-height: 1.55;
}

.review__sidebar .blog__banner b {
  width: 100%;
  min-width: 0;
  min-height: 34px;
}

.review__sidebar .banner__girl {
  display: none;
}

.page__search-sidebar input[type="text"] {
  width: 100%;
  min-width: 0;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 9px 10px;
  font: inherit;
  font-size: 13px;
  box-sizing: border-box;
}

.page__search-sidebar label:has(input[type="text"]) {
  display: block;
  border-bottom: 0;
}

@media (max-width: 1200px) {
  .ranking__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .ranking__layout {
    grid-template-columns: 1fr;
  }

  .page--with-left-search,
.blog__layout.layout--with-left-search {
    grid-template-columns: 1fr;
  }

  .page__search-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .review__list-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .review__card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .page__search-sidebar {
    grid-template-columns: 1fr;
  }

}

.girl-link,
.shop-link {
  color: inherit;
  text-decoration: none;
}

.girl-link:hover,
.shop-link:hover {
  text-decoration: none;
}

.button-link--detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: #ff6b9f;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.top__shop-grid.is-compact article div .button-link--detail,
.top__shop-grid.is-compact article .is-compact-item button,
.top__shop-actions .button-link--detail,
.top__shop-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 7px 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.top__shop-grid.is-compact article div .button-link--detail,
.top__shop-actions .button-link--detail {
  color: #fff;
  background: var(--color-primary);
  white-space: nowrap;
}

.top__shop-grid.is-compact article .is-compact-item button,
.top__shop-actions button {
  color: var(--color-primary);
  background: #fff;
  white-space: nowrap;
}

a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none;
}

.waiting__card .girl__title a,
.waiting__card .girl__title a:hover,
.waiting__card .girl__title a:focus,
.waiting__card .girl__title a:active,
.waiting__card .girl__title a:visited {
  display: inline;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: inherit;
  text-decoration: none;
}

.thumb__list img {
  cursor: pointer;
  transition: opacity .2s;
}

.top__blog-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.top__blog-meta strong,
.top__blog-meta em,
.top__blog-meta time {
  display: block;
  margin-left: 0;
  max-width: 100%;
}

.top__blog-meta strong,
.top__blog-meta em {
  width: fit-content;
}

.blog__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.blog__meta .blog__meta-text,
.blog__meta .blog__girl-name {
  display: block;
  margin-left: 0;
  width: fit-content;
  max-width: 100%;
}

.blog__meta .blog__girl-name {
  border-radius: 0;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__blog-meta,
.blog__meta,
.girl__post-meta,
.gb__article-meta,
.gb__other-blog-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  min-width: 0;
}

.top__blog-meta strong,
.blog__meta .blog__meta-text,
.girl__post-meta .girl__post-meta-text,
.gb__article-meta .gb__article-meta-text,
.gb__other-blog-meta .gb__other-blog-meta-text {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: 0;
  border-radius: 3px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__blog-meta em,
.blog__meta .blog__girl-name,
.girl__post-meta .blog__girl-name,
.gb__article-meta .blog__girl-name,
.gb__other-blog-meta .blog__girl-name {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--color-primary);
  background: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top__blog-meta time,
.blog__meta time,
.girl__post-meta time,
.gb__article-meta time,
.gb__other-blog-meta time {
  display: block;
  max-width: 100%;
  color: #555;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.girl__post-body,
.gb__article-title-body,
.gb__other-blog-body {
  min-width: 0;
}

.gb__article-meta {
  margin: 8px 0 0;
}

.gb__other-blog-meta {
  margin: 6px 0 0;
}

.html__feature-shop {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .9fr);
  gap: 18px;
  min-height: 520px;
  margin: 18px 0 22px;
  border: 2px solid #ffb8d4;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(135deg, #fff 0%, #fff7fb 58%, #fff 100%);
  box-shadow: 0 10px 30px rgba(230, 0, 85, .08);
}

.html__feature-shop h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

@media (max-width: 1100px) {
  .html__feature-shop {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .html__feature-shop {
    padding: 12px;
  }
}

.html__feature-shop {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, .95fr);
  gap: 12px;
  min-height: 0;
  margin: 12px 0 18px;
  border: 1px solid #ffd3e4;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
}

.html__feature-shop h2 {
  margin: 0 0 10px;
  color: #050505;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.08;
  letter-spacing: -.05em;
}

@media (max-width: 1100px) {
  .html__feature-shop {
    grid-template-columns: 1fr;
  }
}

.html__feature-shop.premium__listing-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(280px, .78fr) minmax(320px, .9fr);
  gap: 14px;
  margin: 14px 0 18px;
  padding: 18px;
  border: 1px solid #ffd3e4;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .04);
  color: #111;
}

.premium__left {
  min-width: 0;
}

.premium__left h2 {
  margin: 0 0 12px;
  color: #050505;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.06em;
}

.premium__visual-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 16px;
  align-items: stretch;
}

.premium__gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.premium__gallery img {
  display: block;
  width: 100%;
  height: 186px;
  border-radius: 5px;
  object-fit: cover;
}

.premium__gallery button {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 1px solid #ffd3e4;
  border-radius: 50%;
  color: #f50057;
  background: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.premium__gallery button:first-child {
  left: -9px;
}

.premium__gallery button:last-child {
  right: -9px;
}

.premium__info-card {
  display: grid;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.premium__info-card .premium__info-card-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid #e4e4e4;
}

.premium__info-card div:last-child {
  border-bottom: 0;
}

.premium__info-card b {
  color: #f50057;
  font-size: 30px;
  line-height: 1;
  text-align: center;
}

.premium__info-card p {
  margin: 0;
}

.premium__info-card .premium__info-card-text {
  display: block;
  font-size: 12px;
  font-weight: 900;
}

.premium__info-card strong {
  display: block;
  color: #000;
  font-size: 22px;
  line-height: 1.25;
}

.premium__info-card em {
  color: #f50057;
  font-size: 15px;
  font-style: normal;
}

.premium__panel {
  min-width: 0;
  border: 1px solid #ffd3e4;
  border-radius: 10px;
  padding: 14px;
  background: #fff;
}

.premium__panel header {
  margin: 0 0 10px;
}

.premium__panel header .premium__panel-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium__panel header b {
  color: #f50057;
  font-size: 26px;
}

.premium__panel h3 {
  margin: 0;
  color: #f50057;
  font-size: 20px;
}

.premium__panel header p,
.blog__lead {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 900;
}

.premium__panel header.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.premium__panel header.panel__head .panel__head-text {
  color: #f50057;
}

.premium__girls ul {
  display: grid;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

.premium__girls li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 14px;
  gap: 10px;
  align-items: center;
  min-height: 67px;
  border-radius: 8px;
  padding: 7px 8px;
  background: var(--premium-pink-soft);
}

.premium__girls i,
.premium__blog-grid i {
  display: block;
  background: linear-gradient(180deg, #ff9ec8, #ff70aa);
  border-radius: 18px 18px 8px 8px;
}

.premium__girls i {
  width: 52px;
  height: 52px;
}

.premium__girls strong,
.premium__girls .premium__girls-text,
.premium__girls time {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.premium__girls strong {
  font-size: 14px;
}

.premium__girls .premium__girls-text {
  font-size: 12px;
}

.premium__girls em {
  display: inline-block;
  margin-right: 6px;
  border-radius: 3px;
  padding: 2px 5px;
  color: #fff;
  background: #f50057;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.premium__girls time {
  display: inline;
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

.premium__girls li>b {
  color: #f50057;
  font-size: 24px;
}

.premium__girls>a,
.premium__panel .outline__green {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: 6px;
  color: #fff;
  background: #f50057;
  font-size: 17px;
  font-weight: 900;
}

.premium__blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.premium__blog-grid article {
  position: relative;
  min-height: 122px;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px 26px 8px 10px;
  background: #fff;
}

.premium__blog-grid i {
  width: 54px;
  height: 54px;
  margin: 0 auto 8px;
}

.premium__blog-grid strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.premium__blog-grid time {
  display: block;
  color: #777;
  font-size: 12px;
  font-weight: 800;
}

.premium__blog-grid b {
  position: absolute;
  right: 10px;
  top: 58%;
  color: #f50057;
  font-size: 23px;
}

.premium__panel .outline__green {
  margin: 26px auto 0;
  max-width: 280px;
  border: 1px solid #27a400;
  color: #27a400;
  background: #fff;
}

.premium__coupon,
.premium__event {
  border: 1px solid #ffd3e4;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}

.premium__coupon {
  grid-column: 1/3;
}

.premium__event {
  grid-column: 3/4;
}

.premium__coupon h3,
.premium__event h3 {
  margin: 0 0 10px;
  color: #f50057;
  font-size: 19px;
}

.premium__coupon>.premium__coupon-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.premium__coupon p {
  margin: 0;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  background: #fff4f8;
  font-weight: 800;
}

.premium__coupon .premium__coupon-text,
.premium__event .premium__event-text {
  display: inline-block;
  margin-right: 8px;
  border-radius: 4px;
  padding: 4px 9px;
  color: #f50057;
  background: #fff;
  border: 1px solid #f50057;
  font-weight: 900;
}

.premium__coupon strong {
  display: block;
  margin-top: 8px;
  color: #f50057;
  font-size: 28px;
}

.premium__coupon small {
  display: block;
  margin-top: 10px;
  text-align: center;
}

.premium__event .premium__event-item {
  position: relative;
  min-height: 110px;
  padding-right: 90px;
}

.premium__event strong {
  display: block;
  margin: 4px 0 8px;
  color: #f50057;
  font-size: 19px;
}

.premium__event b {
  display: block;
  font-size: 20px;
}

.premium__event em {
  color: #f50057;
  font-size: 30px;
  font-style: normal;
}

.premium__event small {
  display: inline-block;
  margin-top: 8px;
  border-radius: 4px;
  padding: 5px 10px;
  color: #fff;
  background: #f50057;
  font-weight: 900;
}

.premium__event i {
  position: absolute;
  right: 14px;
  top: 18px;
  font-style: normal;
  font-size: 72px;
}

.premium__banners {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}

.premium__banners>.premium__banners-item {
  position: relative;
  border-radius: 8px;
  padding: 18px 22px;
  border: 1px solid #ff8db8;
  background: #fff7fb;
}

.premium__banners strong {
  font-size: 30px;
  color: #f50057;
}

.premium__banners b {
  font-size: 58px;
  line-height: 1;
}

.premium__banners .premium__banners-text {
  display: block;
  font-size: 22px;
}

.premium__banners p {
  position: absolute;
  left: 175px;
  top: 16px;
  margin: 0;
  font-weight: 900;
}

.premium__banners a {
  position: absolute;
  right: 16px;
  bottom: 20px;
  border-radius: 6px;
  padding: 12px 24px;
  color: #fff;
  background: #f50057;
  font-weight: 900;
}

@media (max-width:1200px) {
  .html__feature-shop.premium__listing-frame {
    grid-template-columns: 1fr;
  }

  .premium__coupon,
.premium__event,
.premium__banners {
    grid-column: auto;
  }

  .premium__banners {
    grid-template-columns: 1fr;
  }

  .premium__visual-row {
    grid-template-columns: 1fr 240px;
  }
}

@media (max-width:900px) {
  .premium__visual-row,
.premium__coupon>.premium__coupon-item {
    grid-template-columns: 1fr;
  }

  .premium__gallery img {
    height: 130px;
  }

  .premium__banners p,
.premium__banners a {
    position: static;
    display: inline-flex;
    margin-top: 10px;
  }

  .premium__left h2 {
    font-size: 34px;
  }
}

.html__feature-shop.premium__listing-frame {
  gap: 12px;
  padding: 16px;
}

.premium__left h2 {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.premium__visual-row {
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
}

.premium__gallery img {
  height: 170px;
}

.premium__gallery button {
  width: 32px;
  height: 32px;
  font-size: 26px;
}

.premium__info-card .premium__info-card-item {
  grid-template-columns: 34px 1fr;
  gap: 7px;
  padding: 11px 12px;
}

.premium__info-card b {
  font-size: 26px;
}

.premium__info-card .premium__info-card-text {
  font-size: 11px;
}

.premium__info-card strong {
  font-size: 20px;
}

.premium__info-card em {
  font-size: 13px;
}

.premium__panel {
  padding: 12px;
}

.premium__panel header {
  margin-bottom: 8px;
}

.premium__panel header b {
  font-size: 22px;
}

.premium__panel h3 {
  font-size: 18px;
}

.premium__panel header p,
.blog__lead {
  font-size: 12px;
}

.premium__girls ul {
  gap: 6px;
}

.premium__girls li {
  grid-template-columns: 46px minmax(0, 1fr) 12px;
  gap: 8px;
  min-height: 59px;
  padding: 6px 7px;
}

.premium__girls i {
  width: 46px;
  height: 46px;
}

.premium__girls strong {
  font-size: 13px;
}

.premium__girls .premium__girls-text {
  font-size: 11px;
}

.premium__girls em {
  padding: 1px 5px;
  font-size: 10px;
}

.premium__girls time {
  font-size: 12px;
}

.premium__girls li>b {
  font-size: 21px;
}

.premium__girls>a,
.premium__panel .outline__green {
  min-height: 39px;
  font-size: 15px;
}

.premium__blog-grid {
  gap: 7px;
}

.premium__blog-grid article {
  min-height: 112px;
  padding: 9px 24px 7px 9px;
}

.premium__blog-grid i {
  width: 48px;
  height: 48px;
  margin-bottom: 7px;
}

.premium__blog-grid strong {
  font-size: 12px;
}

.premium__blog-grid time {
  font-size: 11px;
}

.premium__blog-grid b {
  font-size: 20px;
}

.premium__panel .outline__green {
  margin-top: 22px;
  max-width: 260px;
}

.premium__coupon,
.premium__event {
  padding: 12px 14px;
}

.premium__coupon h3,
.premium__event h3 {
  font-size: 17px;
  margin-bottom: 9px;
}

.premium__coupon p {
  padding: 10px;
  font-size: 12px;
}

.premium__coupon .premium__coupon-text,
.premium__event .premium__event-text {
  padding: 3px 8px;
  font-size: 12px;
}

.premium__coupon strong {
  font-size: 25px;
}

.premium__coupon small {
  font-size: 12px;
}

.premium__event .premium__event-item {
  min-height: 96px;
  padding-right: 80px;
}

.premium__event strong {
  font-size: 17px;
}

.premium__event b {
  font-size: 18px;
}

.premium__event em {
  font-size: 27px;
}

.premium__event small {
  font-size: 12px;
}

.premium__event i {
  right: 12px;
  top: 15px;
  font-size: 62px;
}

.premium__banners {
  gap: 12px;
}

.premium__banners>.premium__banners-item {
  padding: 16px 20px;
}

.premium__banners strong {
  font-size: 26px;
}

.premium__banners b {
  font-size: 20px;
}

.premium__banners .premium__banners-text {
  font-size: 19px;
}

.premium__banners p {
  left: 160px;
  top: 15px;
  font-size: 13px;
}

.premium__banners a {
  bottom: 18px;
  padding: 10px 22px;
  font-size: 14px;
}

.html__feature-shop.premium__listing-frame {
  grid-template-columns: max-content minmax(312px, .8fr) minmax(312px, .8fr);
  grid-template-rows: 235px 159px auto auto;
  gap: 10px;
  margin: 14px 0 18px;
  padding: 16px 18px 10px;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff 0%, #fffafc 54%, #fbfff9 100%);
  box-shadow: 0 4px 18px rgba(245, 0, 87, .05);
}

.premium__left h2 {
  font-size: 24px;
  line-height: 1.06;
  letter-spacing: 0;
  margin-bottom: 5px;
}

.premium__left {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 490px;
  max-width: 100%;
}

.premium__visual-row {
  grid-template-columns: minmax(0, 300px) 180px;
  gap: 10px;
  max-width: 100%;
}

.premium__media-stack {
  display: grid;
  gap: 10px;
  justify-self: start;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.premium__gallery {
  grid-template-columns: 1fr;
  gap: 0;
}

.premium__gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 6px;
}

.premium__gallery button {
  width: 34px;
  height: 34px;
  color: #f50057;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.premium__info-card {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  gap: 4px;
  align-self: start;
  height: 342px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.premium__info-card>div:last-child {
  border-bottom: 1px solid var(--premium-border);
}

.premium__info-card>div>b {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #f50057;
  background: #fff;
  font-size: 15px;
  line-height: 1;
}

.premium__info-card>div>span {
  grid-area: label;
  color: #555;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.premium__info-card>div>strong {
  grid-area: value;
  color: #111;
  font-size: 17px;
  line-height: 1.2;
  white-space: nowrap;
}

.premium__panel,
.premium__coupon,
.premium__event,
.premium__banners>.premium__banners-item {
  border-color: var(--premium-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, .82);
}

.premium__panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-self: stretch;
  height: auto;
  min-height: 0;
  padding: 10px;
  overflow: hidden;
}

.premium__blog {
  grid-column: 3;
  grid-row: 1;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.premium__girls {
  grid-column: 2;
  grid-row: 1;
}

.premium__panel header b {
  font-size: 20px;
}

.premium__panel h3 {
  font-size: 16px;
}

.premium__panel header p,
.blog__lead {
  color: #111;
  font-size: 11px;
}

.premium__girls ul {
  gap: 6px;
  margin-bottom: 7px;
}

.premium__girls li {
  grid-template-columns: 42px minmax(0, 1fr) 12px;
  min-height: 54px;
  padding: 5px 7px;
  background: linear-gradient(90deg, #fff6fa, #fff);
}

.premium__girls i,
.premium__blog-grid i {
  background: linear-gradient(180deg, #ff9ac7, #ff6aa7);
}

.premium__girls i {
  width: 42px;
  height: 42px;
}

.premium__girls strong {
  display: inline;
  color: #111;
  font-size: 12px;
  white-space: nowrap;
}

.premium__girls .premium__girls-text {
  display: inline;
  margin-left: 6px;
  color: #111;
  font-size: 10px;
  white-space: nowrap;
}

.premium__girls em {
  background: #f50057;
  font-size: 8px;
}

.premium__girls time {
  font-size: 11px;
}

.premium__girls li>b,
.premium__blog-grid b {
  color: #f50057;
}

.premium__girls>a {
  background: linear-gradient(180deg, #ff0a68, #ec0050);
}

.premium__girls>a,
.premium__panel .outline__green {
  min-height: 32px;
  border-radius: 5px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 13px;
}

.premium__blog-grid {
  gap: 6px;
  margin-top: 8px;
}

.premium__blog-grid article {
  min-height: 88px;
  border-color: #e5e5e5;
  border-radius: 5px;
  padding: 7px 22px 7px 7px;
}

.premium__blog-grid i {
  width: 38px;
  height: 38px;
}

.premium__blog-grid strong {
  color: #111;
  font-size: 11px;
}

.premium__blog-grid time {
  color: #6b7280;
  font-size: 10px;
}

.premium__panel .outline__green {
  margin-top: 10px;
  border-color: #31a800;
  color: #249000;
}

.premium__blog .blog__lead {
  margin-bottom: 0;
}

.premium__coupon {
  grid-column: 2/3;
  grid-row: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-self: stretch;
  height: auto;
  min-height: 0;
  overflow: hidden;
  padding: 10px;
}

.premium__event {
  grid-column: 3/4;
  grid-row: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  align-self: stretch;
  height: auto;
  min-height: 0;
  overflow: hidden;
  padding: 10px;
}

.premium__coupon h3,
.premium__event h3 {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1.15;
}

.premium__coupon>.premium__coupon-item {
  grid-template-columns: 1fr;
  gap: 4px;
  min-height: 0;
}

.premium__coupon p {
  border-radius: 5px;
  padding: 4px 7px;
  background: #fff2f7;
  font-size: 10px;
  text-align: left;
  line-height: 1.15;
}

.premium__coupon p:nth-child(2) {
  background: #fff8ef;
}

.premium__coupon p:nth-child(3) {
  background: #f0f8ff;
}

.premium__coupon .premium__coupon-text {
  background: #fff;
  font-size: 9px;
  padding: 2px 5px;
}

.premium__coupon p:nth-child(2) .premium__coupon-text,
.premium__coupon p:nth-child(2) strong {
  border-color: #ff7900;
  color: #ff7900;
}

.premium__coupon p:nth-child(3) span,
.premium__coupon p:nth-child(3) strong {
  border-color: #0b7de3;
  color: #0b7de3;
}

.premium__coupon strong {
  color: #f50057;
  display: inline;
  margin-left: 4px;
  font-size: 13px;
}

.premium__coupon small {
  display: none;
}

.premium__event .premium__event-item {
  min-height: 0;
  padding: 0 34px 0 0;
}

.premium__event strong {
  margin: 2px 0 4px;
  font-size: 11px;
  line-height: 1.25;
}

.premium__event b {
  font-size: 12px;
  line-height: 1.2;
}

.premium__event em {
  color: #f50057;
  font-size: 15px;
}

.premium__event small {
  margin-top: 4px;
  padding: 3px 6px;
  font-size: 10px;
}

.premium__event i {
  right: 4px;
  top: 20px;
  font-size: 26px;
}

.premium__banners {
  grid-column: 1/-1;
  grid-row: 3;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.premium__banners>.premium__banners-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 46px;
  padding: 7px 10px;
}

.premium__banners strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 15px;
  line-height: 1;
}

.premium__banners b {
  font-size: 24px;
}

.premium__banners .premium__banners-text {
  display: inline;
  font-size: 12px;
}

.premium__banners p {
  display: none;
}

.premium__banners a {
  position: static;
  border-radius: 5px;
  padding: 7px 10px;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width:1200px) {
  .html__feature-shop.premium__listing-frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .premium__left {
    grid-row: auto;
    width: auto;
  }

  .premium__coupon,
.premium__event,
.premium__banners {
    grid-row: auto;
    grid-column: auto;
  }

  .premium__girls,
.premium__blog {
    grid-row: auto;
    grid-column: auto;
  }

  .premium__visual-row {
    grid-template-columns: minmax(0, 300px) 180px;
  }

  .premium__panel {
    height: auto;
  }

  .premium__coupon,
.premium__event {
    height: auto;
  }

  .premium__event .premium__event-item {
    padding-left: 0;
  }
}

@media (max-width:900px) {
  .html__feature-shop.premium__listing-frame {
    padding: 14px 12px 10px;
  }

  .premium__left h2 {
    font-size: 32px;
  }

  .premium__event .premium__event-item {
    padding-right: 0;
  }

  .premium__event i {
    display: none;
  }
}

@media (min-width:1201px) {
  .html__feature-shop.premium__listing-frame {
    grid-template-rows: 250px 190px auto auto;
    gap: 12px;
    align-items: stretch;
  }

  .premium__left {
    grid-row: 1 / 3;
    align-self: stretch;
    overflow: visible;
  }

  .premium__visual-row {
    align-items: stretch;
  }

  .premium__media-stack,
.premium__info-card {
    align-self: stretch;
  }

  .premium__coupon,
.premium__event {
    grid-row: 2;
    align-self: stretch;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  .premium__coupon {
    grid-column: 2 / 3;
  }

  .premium__event {
    grid-column: 3 / 4;
  }

  .premium__coupon>.premium__coupon-item,
.premium__event>.premium__event-item {
    min-height: 0;
  }

  .premium__banners {
    grid-row: 3;
    margin-top: 4px;
    align-self: start;
    position: relative;
    z-index: 1;
  }
}

@media (min-width:1201px) {
  .html__feature-shop.premium__listing-frame {
    grid-template-rows: 235px 235px auto auto;
    gap: 10px;
    align-items: stretch;
  }

  .premium__left {
    grid-row: 1 / 3;
    align-self: stretch;
  }

  .premium__coupon,
.premium__event {
    grid-row: 2;
    align-self: stretch;
    height: 100%;
    min-height: 0;
    padding: 14px 14px 12px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .premium__coupon h3,
.premium__event h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.2;
  }

  .premium__coupon>.premium__coupon-item {
    gap: 8px;
    height: calc(100% - 34px);
  }

  .premium__coupon p {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    min-height: 45px;
    padding: 8px 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .premium__coupon .premium__coupon-text {
    margin: 0;
    padding: 3px 7px;
    font-size: 11px;
    white-space: nowrap;
  }

  .premium__coupon strong {
    display: block;
    margin: 0;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    text-align: right;
  }

  .premium__coupon strong small {
    display: inline;
    margin: 0 0 0 2px;
    font-size: 11px;
  }

  .premium__event>.premium__event-item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto 1fr;
    align-content: center;
    min-height: 0;
    height: calc(100% - 34px);
    padding: 8px 70px 8px 0;
  }

  .premium__event .premium__event-text {
    justify-self: start;
    margin: 0 0 8px;
    padding: 4px 9px;
    font-size: 12px;
  }

  .premium__event strong {
    margin: 0 0 7px;
    font-size: 15px;
    line-height: 1.25;
  }

  .premium__event b {
    font-size: 17px;
    line-height: 1.25;
  }

  .premium__event em {
    font-size: 26px;
    line-height: 1;
  }

  .premium__event small {
    justify-self: start;
    margin-top: 10px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .premium__event i {
    right: 8px;
    top: 50%;
    transform: translateY(-35%);
    font-size: 54px;
  }

  .premium__banners {
    grid-row: 3;
    margin-top: 0;
  }
}

.html__feature-shop.premium__listing-frame {
  grid-template-rows: 235px 104px auto auto;
}

.premium__coupon,
.premium__event {
  padding: 8px 10px;
  overflow: hidden;
}

.premium__coupon h3,
.premium__event h3 {
  margin: 0 0 4px;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0;
}

.premium__coupon>.premium__coupon-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}

.premium__coupon p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 20px;
  padding: 3px 6px;
  font-size: 12px;
  line-height: 1.05;
  white-space: normal;
}

.premium__coupon .premium__coupon-text {
  flex: 0 0 auto;
  margin-right: 2px;
  padding: 2px 5px;
  font-size: 11px;
  line-height: 1;
}

.premium__coupon strong {
  flex: 0 0 auto;
  display: inline-block;
  margin: 0;
  font-size: 18px;
  line-height: 1;
}

.premium__event .premium__event-item {
  position: relative;
  min-height: 0;
  padding: 0 38px 0 0;
}

.premium__event .premium__event-text {
  padding: 2px 6px;
  font-size: 12px;
  line-height: 1;
}

.premium__event strong {
  margin: 1px 0 2px;
  font-size: 12px;
  line-height: 1.08;
}

.premium__event b {
  font-size: 17px;
  line-height: 1.05;
}

.premium__event em {
  font-size: 22px;
  line-height: 1;
}

.premium__event small {
  margin-top: 3px;
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1;
}

.premium__event i {
  right: 2px;
  top: 28px;
  font-size: 30px;
}

@media (min-width:1201px) {
  .html__feature-shop.premium__listing-frame {
    display: grid;
    grid-template-columns: minmax(460px, 1.25fr) minmax(300px, .8fr) minmax(300px, .8fr);
    grid-template-rows: auto auto auto auto;
    align-items: stretch;
    gap: 12px;
    padding: 16px 18px 14px;
    overflow: visible;
  }

  .premium__left {
    grid-column: 1;
    grid-row: 1 / 3;
    width: auto;
    align-self: stretch;
    overflow: visible;
  }

  .premium__blog {
    grid-column: 3;
    grid-row: 1;
  }

  .premium__coupon {
    grid-column: 2;
    grid-row: 2;
  }

  .premium__event {
    grid-column: 3;
    grid-row: 2;
  }

  .premium__coupon,
.premium__event {
    height: auto;
    min-height: 162px;
    overflow: visible;
    align-self: stretch;
    padding: 12px 14px;
    box-sizing: border-box;
  }

  .premium__coupon h3,
.premium__event h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.15;
  }

  .premium__coupon>.premium__coupon-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    height: auto;
  }

  .premium__coupon p {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 9px;
    font-size: 13px;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
  }

  .premium__coupon .premium__coupon-text {
    margin: 0;
    padding: 3px 7px;
    font-size: 11px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .premium__coupon>small {
    display: block;
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.25;
  }

  .premium__event .premium__event-item {
    position: relative;
    min-height: 138px;
    padding: 4px 62px 2px 0;
  }

  .premium__event .premium__event-text {
    margin: 0 0 6px;
    padding: 3px 8px;
    font-size: 12px;
    line-height: 1.1;
  }

  .premium__event strong {
    margin: 0 0 6px;
    font-size: 17px;
    line-height: 1.25;
  }

  .premium__event b {
    font-size: 18px;
    line-height: 1.2;
  }

  .premium__event em {
    font-size: 25px;
    line-height: 1;
  }

  .premium__event small {
    margin-top: 8px;
    padding: 4px 9px;
    font-size: 11px;
    line-height: 1.1;
  }

  .premium__event i {
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 48px;
  }

  .premium__banners {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
    clear: both;
    position: relative;
    z-index: 0;
  }
}

.premium__event {
  position: relative;
  isolation: isolate;
  border: 1px solid #ff74a9;
  background: radial-gradient(circle at 92% 20%, rgba(255, 198, 220, .55) 0 28px, transparent 29px), linear-gradient(135deg, #fff 0%, #fff4f8 56%, #fff9ef 100%);
  box-shadow: 0 6px 18px rgba(245, 0, 87, .10);
}

.premium__event::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -36px;
  z-index: -1;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 122, 172, .13);
}

.premium__event h3 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 7px;
  padding: 3px 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #ff2b7b, #f50057);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 3px 8px rgba(245, 0, 87, .18);
}

.premium__event .premium__event-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  grid-template-areas: "badge icon""title icon""price icon""date icon";
  column-gap: 8px;
  align-items: center;
  min-height: 0;
  padding: 0;
}

.premium__event .premium__event-text {
  grid-area: badge;
  justify-self: start;
  margin: 0 0 3px;
  border: 1px solid #ff8db8;
  border-radius: 999px;
  padding: 2px 8px;
  color: #f50057;
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
}

.premium__event strong {
  grid-area: title;
  display: block;
  margin: 0 0 4px;
  color: #111;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.premium__event b {
  grid-area: price;
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.premium__event em {
  display: inline-block;
  margin-left: 2px;
  color: #f50057;
  font-size: 22px;
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  letter-spacing: -.03em;
}

.premium__event small {
  grid-area: date;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #fff;
  background: #111;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
}

.premium__event i {
  grid-area: icon;
  position: static;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px var(--premium-border), 0 4px 10px rgba(245, 0, 87, .12);
  font-size: 24px;
  font-style: normal;
  line-height: 1;
}

@media (max-width:1200px) {
  .premium__event .premium__event-item {
    grid-template-columns: minmax(0, 1fr) 54px;
  }

  .premium__event i {
    width: 48px;
    height: 48px;
    font-size: 28px;
  }
}

@media (max-width:900px) {
  .premium__event h3 {
    font-size: 14px;
  }

  .premium__event .premium__event-item {
    grid-template-columns: 1fr;
    grid-template-areas: "badge""title""price""date";
  }
}

.premium__event {
  border: 1px solid #ffd3e4;
  background: #fff;
  padding: 16px;
  box-shadow: none;
}

.premium__event::before,
.premium__event::after {
  display: none;
}

.premium__event h3 {
  display: block;
  margin: 0 0 8px;
  padding: 0;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.premium__event>.premium__event-item {
  display: block;
  min-height: auto;
  padding-right: 0;
}

.premium__event .premium__event-text,
.premium__event i {
  display: none;
}

.premium__event strong {
  display: block;
  font-size: 18px;
  margin: 4px 0;
  color: #111;
}

.premium__event b {
  display: block;
  font-size: 18px;
}

.premium__event small {
  display: block;
  margin-top: 8px;
  color: #666;
  background: none;
  padding: 0;
}

.premium__event h3 {
  margin: 0 0 12px;
  padding: 0;
  background: none;
  border: none;
  color: #f50057;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.premium__blog>a.outline__green {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 0;
  border-radius: 5px;
  padding-right: 10px;
  padding-left: 10px;
  color: #fff;
  background: linear-gradient(180deg, #ff0a68, #ec0050);
  font-size: 13px;
  font-weight: 900;
  max-width: none;
  width: 100%;
  margin: 10px 0 0;
}

.gold__html-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.gold__listing-section .gold__shop-card {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  gap: 18px 22px;
  border: 1px solid #ffcfe1;
  border-radius: 10px;
  padding: 14px;
  background: linear-gradient(180deg, #fff 0%, #fffafd 100%);
  box-shadow: 0 5px 18px rgba(245, 0, 87, .06);
  overflow: hidden;
}

.gold__shop-photo img {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 7px;
  object-fit: cover;
}

.gold__shop-content {
  min-width: 0;
}

.gold__shop-kicker {
  margin: 4px 0 8px;
  color: #f50057;
  font-size: 14px;
  font-weight: 900;
}

.gold__shop-card h2 {
  margin: 0 0 10px;
  color: #050505;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.05em;
}

.gold__shop-card h2 a {
  color: inherit;
  text-decoration: none;
}

.gold__shop-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 12px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.gold__shop-stats .gold__shop-stats-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  min-height: 94px;
  border-left: 1px solid #e8e8e8;
  padding: 12px 14px;
  text-align: center;
}

.gold__shop-stats .gold__shop-stats-item:first-child {
  border-left: 0;
}

.gold__shop-stats b {
  grid-row: 1 / 4;
  color: #f50057;
  font-size: 26px;
  line-height: 1;
}

.gold__shop-stats .gold__shop-stats-text {
  display: block;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.gold__shop-stats strong {
  display: block;
  color: #070707;
  font-size: 26px;
  line-height: 1.15;
  white-space: nowrap;
}

.gold__shop-stats small {
  display: block;
  color: #f50057;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.gold__shop-actions {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 12px;
}

.gold__shop-actions a,
.gold__shop-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid #f50057;
  border-radius: 6px;
  color: #f50057;
  background: #fff;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
}

.gold__shop-actions .is-primary {
  color: #fff;
  background: #f50057;
  box-shadow: 0 7px 14px rgba(245, 0, 87, .18);
}

.gold__shop-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 10px;
}

.gold__coupon,
.gold__event {
  border: 1px solid #ffd3e4;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
}

.gold__coupon h3,
.gold__event h3 {
  margin: 0 0 12px;
  color: #f50057;
  font-size: 20px;
  line-height: 1;
}

.gold__coupon h3::before {
  content: none;
}

.gold__event h3::before {
  content: none;
}

.gold__coupon>.gold__coupon-item {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.gold__coupon p {
  margin: 0;
  border-radius: 7px;
  padding: 12px;
  background: transparent;
  font-weight: 900;
}

.gold__coupon p:nth-child(2) {
  background: transparent;
}

.gold__coupon p:nth-child(3) {
  background: transparent;
}

.gold__coupon .gold__coupon-text {
  display: inline-block;
  margin-bottom: 8px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 3px 7px;
  color: #f50057;
  font-size: 13px;
}

.gold__coupon strong {
  display: block;
  color: #f50057;
  font-size: 28px;
  line-height: 1;
}

.gold__coupon small {
  display: block;
  margin-top: 10px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.gold__event {
  position: relative;
  background: radial-gradient(circle at 92% 28%, rgba(245, 0, 87, .14), transparent 18%), #fff;
}

.gold__event .gold__event-item {
  font-weight: 900;
}

.gold__event .gold__event-text {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-right: 12px;
  border-radius: 5px;
  padding: 4px 14px;
  color: #fff;
  background: #f50057;
}

.gold__event strong {
  color: #f50057;
  font-size: 22px;
}

.gold__event b {
  display: block;
  margin-top: 10px;
  color: #111;
  font-size: 18px;
}

.gold__event em {
  color: #f50057;
  font-size: 28px;
  font-style: normal;
}

.gold__event small {
  display: inline-block;
  margin-top: 8px;
  border-radius: 5px;
  padding: 5px 14px;
  color: #fff;
  background: #f50057;
}

.gold__shop-bottom.is-compact .gold__coupon>div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .gold__listing-section .gold__shop-card {
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 12px;
  }

  .gold__shop-photo img {
    height: 210px;
  }

  .gold__shop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gold__shop-stats .gold__shop-stats-item:nth-child(odd) {
    border-left: 0;
  }

  .gold__shop-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .gold__listing-section .gold__shop-card {
    display: block;
    padding: 12px;
  }

  .gold__shop-photo img {
    height: 220px;
    margin-bottom: 12px;
  }

  .gold__shop-card h2 {
    font-size: 30px;
  }

  .gold__shop-actions {
    grid-template-columns: 1fr;
  }

  .gold__coupon>.gold__coupon-item {
    grid-template-columns: 1fr;
  }
}

.gold__listing-section .gold__shop-card {
  grid-template-columns: 220px minmax(0, 1fr) 320px;
  align-items: start;
  border-color: #d39a00;
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  box-shadow: 0 8px 22px rgba(184, 129, 0, .10);
}

.gold__listing-section .gold__shop-card::before {
  content: "Gold";
  position: absolute;
  top: 18px;
  left: -42px;
  z-index: 2;
  width: 170px;
  padding: 7px 0;
  transform: rotate(-38deg);
  color: #fff;
  background: linear-gradient(135deg, #b57a00, #ffd45a, #b57a00);
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(165, 113, 0, .25);
}

.gold__shop-content {
  grid-column: 2;
}

.gold__shop-bottom {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-self: start;
}

.gold__coupon,
.gold__event {
  border-color: #f1d89a;
  background: #fff;
}

.gold__coupon h3,
.gold__event h3 {
  color: #b57a00;
}

.gold__coupon h3::before {
  content: none;
  color: #b57a00;
}

.gold__event h3::before {
  content: none;
  color: #b57a00;
}

.gold__coupon p {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 10px;
  min-height: 64px;
}

.gold__coupon p strong {
  text-align: right;
}

.gold__event {
  background: radial-gradient(circle at 92% 58%, rgba(211, 154, 0, .14), transparent 24%), #fff;
}

.gold__event .gold__event-text,
.gold__event small {
  background: linear-gradient(135deg, #b57a00, #d9a300);
}

.gold__event strong {
  color: #b57a00;
}

.gold__shop-stats b {
  color: #c58b00;
}

.gold__shop-actions .is-primary {
  background: linear-gradient(180deg, #f50057, #e0004f);
}

@media (max-width: 1180px) {
  .gold__listing-section .gold__shop-card {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .gold__shop-bottom {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1fr 1fr;
  }

  .gold__coupon>.gold__coupon-item {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gold__coupon p {
    display: block;
    min-height: 0;
  }

  .gold__coupon p strong {
    text-align: left;
  }
}

.gold__listing-section .gold__shop-card {
  position: relative;
}

.gold__listing-section .gold__coupon,
.gold__listing-section .gold__event {
  border: 1px solid #ffd3e4;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3 {
  margin: 0 0 12px;
  padding: 0;
  color: #f50057;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.gold__listing-section .gold__coupon h3::before {
  content: none;
  color: #f50057;
}

.gold__listing-section .gold__event h3::before {
  content: none;
  color: #f50057;
}

.gold__listing-section .gold__coupon>.gold__coupon-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.gold__listing-section .gold__coupon p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 34px;
  margin: 0;
  border-radius: 7px;
  padding: 7px 9px;
  background: transparent;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
}

.gold__listing-section .gold__coupon p:nth-child(2) {
  background: transparent;
}

.gold__listing-section .gold__coupon p:nth-child(3) {
  background: transparent;
}

.gold__listing-section .gold__coupon .gold__coupon-text {
  flex: 0 0 auto;
  margin: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 3px 7px;
  color: #f50057;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.gold__listing-section .gold__coupon strong {
  flex: 0 0 auto;
  display: block;
  margin: 0;
  color: #f50057;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-align: right;
}

.gold__listing-section .gold__coupon strong small {
  display: inline;
  margin: 0 0 0 2px;
  color: inherit;
  font-size: 11px;
}

.gold__listing-section .gold__coupon>small {
  display: block;
  margin-top: 7px;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
}

.gold__listing-section .gold__event {
  position: relative;
  background: #fff;
}

.gold__listing-section .gold__event::before,
.gold__listing-section .gold__event::after {
  display: none;
}

.gold__listing-section .gold__event>.gold__event-item {
  display: block;
  min-height: auto;
  padding: 0;
  font-weight: 900;
}

.gold__listing-section .gold__event .gold__event-text,
.gold__listing-section .gold__event i {
  display: none;
}

.gold__listing-section .gold__event strong {
  display: block;
  margin: 4px 0;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.gold__listing-section .gold__event b {
  display: block;
  margin: 0;
  color: #111;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.gold__listing-section .gold__event em {
  color: #f50057;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.gold__listing-section .gold__event small {
  display: block;
  margin-top: 8px;
  padding: 0;
  color: #666;
  background: none;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .gold__listing-section .gold__coupon p {
    display: flex;
    min-height: 34px;
  }

  .gold__listing-section .gold__coupon p strong {
    text-align: right;
  }
}

.gold__listing-section .gold__shop-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 2px 8px;
  min-height: 76px;
  border: 0;
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff0f6;
  text-align: left;
  box-sizing: border-box;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:first-child,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(odd) {
  border-left: 0;
}

.gold__listing-section .gold__shop-stats b {
  grid-row: 1 / 4;
  color: #f50057;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-text {
  display: block;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats strong {
  display: block;
  color: #f50057;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats small {
  display: block;
  color: #f50057;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .gold__listing-section .gold__shop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gold__listing-section .gold__shop-stats {
    grid-template-columns: 1fr;
  }
}

.gold__listing-section .gold__shop-card {
  border-color: #ffcfe1;
  background: linear-gradient(180deg, #fff 0%, #fffafd 100%);
  box-shadow: 0 5px 18px rgba(245, 0, 87, .06);
}

.gold__listing-section .gold__shop-card::before {
  content: none;
  display: none;
}

.gold__listing-section .gold__shop-photo::before,
.gold__listing-section .gold__shop-photo::after {
  content: none;
  display: none;
}

.gold__listing-section .gold__shop-kicker,
.gold__listing-section .gold__shop-stats b,
.gold__listing-section .gold__shop-stats strong,
.gold__listing-section .gold__shop-stats small,
.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3,
.gold__listing-section .gold__coupon h3::before,
.gold__listing-section .gold__event h3::before,
.gold__listing-section .gold__coupon .gold__coupon-text,
.gold__listing-section .gold__coupon strong,
.gold__listing-section .gold__event em,
.gold__listing-section .gold__event strong {
  color: #f50057;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  background: #fff0f6;
  border-color: #ffd3e4;
}

.gold__listing-section .gold__coupon,
.gold__listing-section .gold__event {
  border-color: #ffd3e4;
  background: #fff;
}

.gold__listing-section .gold__event .gold__event-text,
.gold__listing-section .gold__event small {
  background: #f50057;
}

.gold__listing-section .gold__shop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gold__listing-section .gold__shop-actions a,
.gold__listing-section .gold__shop-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 7px 14px;
  color: var(--color-primary);
  background: #fff;
  box-shadow: none;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
}

.gold__listing-section .gold__shop-actions a:first-child,
.gold__listing-section .gold__shop-actions .is-primary {
  color: #fff;
  background: var(--color-primary);
}

.premium__coupon>small,
.premium__listing-frame .premium__coupon>small,
.gold__listing-section .gold__coupon>small {
  text-align: left;
}

.gold__listing-section .gold__shop-photo img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.gold__listing-section .gold__shop-stats {
  gap: 8px;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  grid-template-columns: 24px minmax(0, 1fr);
  min-height: 62px;
  padding: 7px 8px;
}

.gold__listing-section .gold__shop-stats b {
  font-size: 20px;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-text {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
}

.gold__listing-section .gold__shop-stats strong {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 17px;
}

.gold__listing-section .gold__shop-stats small {
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
}

.gold__listing-section .gold__shop-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gold__listing-section .gold__coupon h3::before,
.gold__listing-section .gold__event h3::before {
  content: none;
}

.gold__listing-section .gold__shop-card {
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  align-items: start;
}

.gold__listing-section .gold__shop-photo {
  grid-column: 1;
  grid-row: 1;
}

.gold__listing-section .gold__shop-content {
  grid-column: 2;
  grid-row: 1;
}

.gold__listing-section .gold__shop-bottom {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-self: start;
}

.gold__listing-section .gold__coupon,
.gold__listing-section .gold__event {
  min-width: 0;
  padding: 9px;
  border-radius: 7px;
}

.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3 {
  margin-bottom: 7px;
  font-size: 14px;
}

.gold__listing-section .gold__coupon p {
  display: block;
  min-height: 0;
  padding: 7px;
  font-size: 11px;
}

.gold__listing-section .gold__coupon p strong {
  display: block;
  margin-top: 4px;
  text-align: left;
  font-size: 16px;
}

.gold__listing-section .gold__event strong,
.gold__listing-section .gold__event b {
  font-size: 12px;
}

.gold__listing-section .gold__event em {
  font-size: 18px;
}

.gold__listing-section .gold__event small {
  font-size: 10px;
}

.gold__listing-section .gold__shop-card {
  grid-template-columns: 220px minmax(0, 1fr) 420px;
  grid-template-rows: auto auto;
}

.gold__listing-section .gold__shop-bottom {
  grid-column: 3;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-self: start;
}

.gold__listing-section .gold__shop-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  grid-template-columns: 20px minmax(0, 1fr);
  min-height: 58px;
  padding: 6px 7px;
  gap: 1px 5px;
}

.gold__listing-section .gold__shop-stats b {
  font-size: 17px;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-text,
.gold__listing-section .gold__shop-stats strong,
.gold__listing-section .gold__shop-stats small {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-text {
  font-size: 10px;
  line-height: 1.15;
}

.gold__listing-section .gold__shop-stats strong {
  font-size: 15px;
  line-height: 1.1;
}

.gold__listing-section .gold__shop-stats small {
  font-size: 9px;
  line-height: 1.1;
}

.gold__listing-section .gold__shop-bottom {
  height: 220px;
  align-self: start;
}

.gold__listing-section .gold__coupon,
.gold__listing-section .gold__event {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: 100%;
  padding: 12px;
}

.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 900;
}

.gold__listing-section .gold__coupon>.gold__coupon-item {
  display: grid;
  align-content: start;
  gap: 8px;
}

.gold__listing-section .gold__coupon p {
  padding: 10px;
  font-size: 12px;
  line-height: 1.25;
}

.gold__listing-section .gold__coupon p strong {
  margin-top: 8px;
  font-size: 20px;
}

.gold__listing-section .gold__coupon>small {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.25;
}

.gold__listing-section .gold__event>.gold__event-item {
  display: grid;
  align-content: center;
}

.gold__listing-section .gold__event strong,
.gold__listing-section .gold__event b {
  font-size: 15px;
  line-height: 1.3;
}

.gold__listing-section .gold__event em {
  font-size: 24px;
}

.gold__listing-section .gold__event small {
  margin-top: 10px;
  font-size: 11px;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 1px 6px;
}

.gold__listing-section .gold__shop-stats b {
  width: 28px;
  font-size: 21px;
  line-height: 1;
  text-align: center;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  grid-template-columns: minmax(0, 1fr);
}

.gold__listing-section .gold__shop-stats b {
  display: none;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3),
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) {
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  justify-content: start;
  column-gap: 5px;
}

.gold__listing-section .gold__shop-stats div:nth-child(3) span,
.gold__listing-section .gold__shop-stats div:nth-child(4) span {
  grid-column: 1 / -1;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3) strong,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3) small,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) strong,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) small {
  grid-row: 2;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3) small,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) small {
  align-self: center;
}

.gold__listing-section .gold__event small {
  background: transparent;
  color: #666;
  padding: 0;
}

.gold__listing-section .gold__shop-card {
  row-gap: 8px;
}

.premium__event,
.gold__listing-section .gold__coupon,
.gold__listing-section .gold__event {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background: transparent;
}

.premium__event {
  padding: 0;
  border: 1px solid #ffd0e3;
  border-radius: 7px;
}

.premium__event h3,
.premium__coupon h3,
.premium__panel header h3,
.premium__panel h3,
.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3 {
  display: block;
  margin: 0;
  padding: 9px 12px;
  color: #fff;
  background: linear-gradient(180deg, #ff4f96, #f50057);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: none;
}

.premium__event>.premium__event-item,
.gold__listing-section .gold__coupon>.gold__coupon-item,
.gold__listing-section .gold__event>.gold__event-item,
.gold__listing-section .gold__coupon>small {
  min-height: 0;
  background: transparent;
}

.premium__event>.premium__event-item {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 12px;
}

.premium__event strong,
.premium__event b {
  margin: 0;
  line-height: 1.25;
}

.premium__event small,
.gold__listing-section .gold__event small {
  margin-top: 4px;
  padding: 0;
  color: #666;
  background: transparent;
}

.gold__listing-section .gold__shop-card {
  grid-template-columns: 220px 190px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  row-gap: 8px;
  column-gap: 8px;
  border-color: #ffd6e6;
  background: #fff;
  box-shadow: 0 10px 28px rgba(233, 20, 99, .08);
}

.gold__listing-section .gold__shop-photo {
  position: relative;
  grid-column: 1;
  grid-row: 2 / 4;
}

.gold__listing-section .gold__photo-caption {
  grid-column: 3 / 5;
  grid-row: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 -6px;
  border: 0;
  border-radius: 6px;
  padding: 4px 12px 2px;
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: none;
}

.gold__listing-section .gold__photo-caption::before,
.gold__listing-section .gold__photo-caption::after {
  content: none;
  display: none;
}

.gold__listing-section .gold__shop-bottom {
  grid-column: 3 / 5;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  height: auto;
  align-self: start;
}

.gold__listing-section .gold__shop-content {
  grid-column: 2;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 0 0 3px 2px;
  box-sizing: border-box;
  overflow: visible;
}

.gold__listing-section .gold__shop-card h2 {
  position: relative;
  display: block;
  grid-column: 1 / -1;
  grid-row: 1;
  margin: -14px -14px 6px;
  min-height: 0;
  border-radius: 8px 8px 0 0;
  padding: 10px 190px 12px 12px;
  color: #e91463;
  background: #fff3f8;
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.gold__listing-section .gold__shop-kicker {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  border: 1px solid #ff9abe;
  border-radius: 999px;
  padding: 4px 12px;
  color: #e91463;
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  text-transform: lowercase;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 6px;
  margin: 0;
  align-items: stretch;
  align-content: stretch;
  height: auto;
  min-height: 0;
  box-sizing: border-box;
  border: 0;
  background: transparent;
  overflow: visible;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-self: stretch;
  align-items: center;
  justify-content: stretch;
  gap: 4px 6px;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  padding: 7px 10px;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  text-align: left;
  overflow: visible;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  border-radius: 8px 0 0 8px;
  background: var(--premium-border);
  content: "";
  pointer-events: none;
}

.gold__listing-section .gold__shop-stats b {
  display: block;
  grid-column: 1;
  grid-row: 1;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--color-primary);
  background: transparent;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-text {
  display: block;
  grid-column: 2;
  grid-row: 1;
  width: auto;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats strong {
  display: block;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats small {
  display: inline;
  margin-left: 2px;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(1),
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(2) {
  grid-template-columns: 22px minmax(0, 1fr) auto;
  grid-template-rows: auto;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(1) b,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(2) b,
.gold__listing-section .gold__shop-stats div:nth-child(1) span,
.gold__listing-section .gold__shop-stats div:nth-child(2) span,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(1) strong,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(2) strong {
  grid-row: 1;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(1) strong,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(2) strong {
  grid-column: 3;
  width: auto;
  font-size: 14px;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3),
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  gap: 2px;
  min-height: 0;
  padding: 7px 10px;
  background: #fff;
  text-align: left;
}

.gold__listing-section .gold__shop-stats div:nth-child(3) span,
.gold__listing-section .gold__shop-stats div:nth-child(4) span {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  color: #111;
  font-size: 12px;
  text-align: left;
}

.gold__listing-section .gold__shop-stats div:nth-child(4) span {
  color: var(--premium-orange);
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3) strong,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) strong {
  grid-column: 2;
  grid-row: 1;
  width: max-content;
  max-width: 100%;
  color: var(--color-primary);
  font-size: 20px;
  text-align: left;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) strong {
  color: var(--premium-orange);
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(3) strong small,
.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) strong small {
  margin-left: 3px;
  color: #111;
  font-size: 12px;
}

.gold__listing-section .gold__shop-stats em {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  color: #e91463;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  grid-row: 2;
  align-self: center;
  justify-self: start;
  min-height: 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}

.gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(4) a {
  color: var(--premium-orange);
}

.gold__listing-section .gold__shop-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.gold__listing-section .gold__shop-actions a,
.gold__listing-section .gold__shop-actions button {
  width: 100%;
  min-width: 0;
  min-height: 28px;
  padding: 5px 10px;
  font-size: 11px;
}

.gold__listing-section .gold__coupon,
.gold__listing-section .gold__event {
  height: auto;
  min-height: 210px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(45, 45, 45, .04);
}

.gold__listing-section .gold__coupon {
  overflow: hidden;
  border-color: #ffd6e6;
  border-radius: 8px;
  padding: 10px 12px 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.gold__listing-section .gold__event {
  border-color: #d8f0de;
  padding: 10px 12px 8px;
}

.gold__listing-section .gold__coupon {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  margin: -10px -12px 6px;
  padding: 13px 18px;
  font-size: 19px;
  line-height: 1.2;
}

.gold__listing-section .gold__coupon h3 {
  color: #ff6b00;
  background: #fff1db;
}

.gold__listing-section .gold__event h3 {
  color: #25a55a;
  background: linear-gradient(180deg, #e5f8eb, #f5fff7);
}

.gold__listing-section .gold__coupon>.gold__coupon-item,
.gold__listing-section .gold__event>.gold__event-item {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 126px;
  gap: 3px;
  padding: 0;
}

.gold__listing-section .gold__coupon>.gold__coupon-item {
  display: grid;
  align-content: stretch;
  min-height: 0;
  gap: 3px;
  padding: 0;
}

.gold__listing-section .gold__coupon p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #f0e5eb;
  border-radius: 0;
  padding: 1px 0;
  color: #111;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.gold__listing-section .gold__coupon h3::before {
  content: none;
  display: none;
}

.gold__listing-section .gold__coupon p strong {
  min-width: 0;
  color: #e91463;
  font-size: 22px;
  line-height: 1;
  justify-self: stretch;
  text-align: right;
  white-space: nowrap;
}

.gold__listing-section .gold__coupon p:nth-child(2) .gold__coupon-text,
.gold__listing-section .gold__coupon p:nth-child(2) strong {
  color: #ff6b00;
}

.gold__listing-section .gold__coupon p:nth-child(2) .gold__coupon-text {
  background: transparent;
}

.gold__listing-section .gold__coupon strong small {
  display: inline;
  margin-left: 2px;
  font-size: 14px;
}

.gold__listing-section .gold__coupon>small {
  display: block;
  padding: 0 18px 16px;
  color: #555;
  font-size: 11px;
  line-height: 1.15;
}

.gold__listing-section .gold__event>.gold__event-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(96px, 34%);
  grid-template-areas: "title image""price image""period image";
  align-content: center;
  column-gap: 8px;
  padding: 10px 0;
}

.gold__listing-section .gold__event>.gold__event-item::after {
  content: none;
  display: none;
}

.gold__listing-section .gold__coupon .gold__coupon-text,
.gold__listing-section .gold__event .gold__event-text {
  font-size: 11px;
  line-height: 1.2;
}

.gold__listing-section .gold__coupon .gold__coupon-text {
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 4px 8px;
  color: #e91463;
  background: var(--premium-pink-soft);
  font-size: 11px;
}

.gold__listing-section .gold__event .gold__event-text {
  display: none;
}

.gold__listing-section .gold__event strong,
.gold__listing-section .gold__event b {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.1;
}

.gold__listing-section .gold__event strong {
  grid-area: title;
  margin-top: 5px;
}

.gold__listing-section .gold__event b {
  grid-area: price;
}

.gold__listing-section .gold__event em {
  color: #e91463;
  font-size: 25px;
  line-height: 1;
}

.gold__listing-section .gold__event small {
  grid-area: period;
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-top: 10px;
  border: 1px solid #22b45f;
  border-radius: 7px;
  color: #111;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
}

.gold__listing-section .gold__event-box {
  grid-area: image;
  align-self: center;
  justify-self: end;
  width: min(150px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.gold__listing-section .gold__event small .gold__event-text {
  display: flex;
  min-width: 0;
  align-self: stretch;
  align-items: center;
}

.gold__listing-section .gold__event .event__period-label {
  flex: 0 0 58px;
  justify-content: center;
  border-radius: 6px 0 0 6px;
  color: #fff;
  background: linear-gradient(180deg, #36c56f, #1fb257);
  font-size: 15px;
  font-weight: 900;
}

.gold__listing-section .gold__event .event__period-date {
  flex: 1 1 auto;
  padding: 0 4px;
  color: #111;
  background: #fff;
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-card {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .gold__listing-section .gold__shop-card h2,
.gold__listing-section .gold__shop-photo,
.gold__listing-section .gold__photo-caption,
.gold__listing-section .gold__shop-content,
.gold__listing-section .gold__shop-bottom {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gold__listing-section .gold__shop-card h2 {
    margin: -12px -12px 10px;
    padding: 8px 10px 10px;
  }

  .gold__listing-section .gold__shop-kicker {
    position: static;
    transform: none;
    margin-top: 8px;
  }

  .gold__listing-section .gold__shop-content,
  .gold__listing-section .gold__shop-stats {
    height: auto;
  }

  .gold__listing-section .gold__shop-content {
    padding: 0;
  }

  .gold__listing-section .gold__shop-stats {
    grid-template-rows: none;
  }

  .gold__listing-section .gold__shop-bottom {
    grid-template-columns: 1fr;
  }

  .gold__listing-section .gold__event>.gold__event-item {
    grid-template-columns: 1fr;
    grid-template-areas: "title""price""image""period";
  }

  .gold__listing-section .gold__event-box {
    justify-self: center;
    width: min(180px, 70%);
  }
}

.premium__panel {
  overflow: hidden;
}

.premium__panel header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: -10px -10px 8px;
  padding: 0;
  border-radius: 7px 7px 0 0;
  background: #fff;
}

.premium__panel header.panel__head {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.premium__panel header .premium__panel-item {
  display: block;
  width: 100%;
}

.premium__panel header h3 {
  width: 100%;
  color: #fff;
}

.premium__panel header p {
  margin: 0;
  padding: 7px 12px 0;
  color: #666;
  background: #fff;
  font-size: 11px;
  line-height: 1.25;
}

.premium__panel header b {
  display: none;
}

.premium__coupon {
  overflow: hidden;
  padding: 0;
}

.premium__coupon>.premium__coupon-item {
  padding: 10px 10px 0;
}

.premium__coupon>small {
  padding: 0 10px 10px;
}

.premium__girls i,
.premium__blog-grid i {
  flex: 0 0 auto;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.premium__girls i {
  border-radius: 50%;
}

.premium__blog-grid i {
  width: 44px;
  height: 44px;
  border-radius: 5px;
}

.premium__girls i img,
.premium__blog-grid i img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.premium__left,
.gold__listing-section .gold__shop-content,
.regular__listing-section .shop__list-card-body,
.free__listing-section .shop__list-card-body {
  display: flex;
  flex-direction: column;
}

.premium__left h2,
.regular__listing-section .shop__list-card h2,
.free__listing-section .shop__list-card h2 {
  order: 1;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  border-radius: 5px;
  padding: 7px 10px;
  color: #fff;
  background: linear-gradient(180deg, #ff4f96, #f50057);
}

.premium__left h2 a,
.regular__listing-section .shop__list-card h2 a,
.free__listing-section .shop__list-card h2 a {
  color: inherit;
}

.regular__listing-section .shop__card-head,
.free__listing-section .shop__card-head {
  order: 2;
  margin: 0 0 8px;
}

.regular__listing-section .shop__card-head strong,
.free__listing-section .shop__card-head strong {
  width: auto;
  border-radius: 0;
  padding: 0;
  color: #f50057;
  background: transparent;
}

.regular__listing-section .shop__list-card p,
.free__listing-section .shop__list-card p {
  order: 3;
}

.premium__visual-row,
.premium__info-card,
.gold__listing-section .gold__shop-stats,
.gold__listing-section .gold__shop-actions,
.regular__listing-section .shop__card-tags,
.regular__listing-section .shop__list-card dl,
.regular__listing-section .shop__card-actions,
.free__listing-section .shop__card-tags,
.free__listing-section .shop__list-card dl,
.free__listing-section .shop__card-actions {
  order: 4;
}

.page--shop-list .shop__list-main>.listing__plan-head:first-of-type h2 {
  font-size: 0;
}

.page--shop-list .shop__list-main>.listing__plan-head:first-of-type h2::before {
  content: "platinum";
  color: #e91463;
  font-size: 19px;
}

.page--shop-list .shop__list-main>.listing__plan-head:first-of-type p {
  color: #6b5560;
}

.page--shop-list .html__feature-shop.premium__listing-frame {
  position: relative;
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border: 1px solid #ffd6e6;
  border-radius: 8px;
  padding: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(233, 20, 99, .08);
}

.page--shop-list .premium__left {
  position: relative;
  grid-column: 1;
  grid-row: 2 / 4;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #ffd9e8;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.page--shop-list .premium__left>h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.page--shop-list .platinum__hero-copy {
  position: relative;
  z-index: 3;
  grid-column: 1 / -1;
  grid-row: 1;
  margin: -16px -16px 0;
  width: calc(100% + 32px);
  border-radius: 8px 8px 0 0;
  padding: 10px 12px 12px;
  color: #1d1d1d;
  background: #fff3f8;
  text-align: left;
}

.page--shop-list .platinum__hero-copy .platinum__hero-copy-text {
  display: inline-flex;
  margin-bottom: 10px;
  border: 1px solid #ff9abe;
  border-radius: 999px;
  padding: 4px 12px;
  color: #e91463;
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: lowercase;
}

.page--shop-list .platinum__hero-copy h2 {
  display: block;
  margin: 0;
  padding: 0;
  color: #e91463;
  background: transparent;
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.page--shop-list .platinum__hero-copy h2 small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-base);
  font-size: 15px;
  letter-spacing: 0;
}

.page--shop-list .platinum__hero-copy p {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75;
}

.page--shop-list .premium__visual-row {
  display: block;
}

.page--shop-list .premium__media-stack {
  display: grid;
  gap: 10px;
}

.page--shop-list .premium__gallery {
  display: block;
  width: 100%;
  min-height: 0;
}

.page--shop-list .premium__gallery img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
}

.page--shop-list .premium__left::after {
  display: none;
}

.page--shop-list .premium__info-card {
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  gap: 10px;
  height: auto;
  margin: 12px 0 0;
}

.page--shop-list .premium__info-card i,
.page--shop-list .premium__info-card b {
  color: #e91463;
  font-size: 24px;
  font-style: normal;
}

.page--shop-list .premium__info-card .premium__info-card-text {
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.page--shop-list .premium__info-card strong {
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.page--shop-list .premium__info-card small {
  margin-left: 2px;
  font-size: 12px;
}

.page--shop-list .premium__girls>a,
.page--shop-list .premium__panel .outline__green {
  min-height: 48px;
  border: 1px solid #e91463;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 900;
}

.page--shop-list .premium__girls>a {
  color: #fff;
  background: linear-gradient(180deg, #f72773, #e91463);
}

.page--shop-list .premium__panel .outline__green {
  color: #e91463;
  background: #fff;
}

.page--shop-list .premium__panel,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event,
.page--shop-list .premium__banners>.premium__banners-item {
  overflow: hidden;
  border: 1px solid #ffd6e6;
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.page--shop-list .premium__girls {
  grid-column: 2;
  grid-row: 2;
}

.page--shop-list .premium__blog {
  grid-column: 3;
  grid-row: 2;
}

.page--shop-list .premium__panel {
  min-height: 258px;
  padding: 0 14px 14px;
}

.page--shop-list .premium__panel header {
  margin: 0 -14px 10px;
  background: transparent;
}

.page--shop-list .premium__panel header h3,
.page--shop-list .premium__coupon h3,
.page--shop-list .premium__event h3 {
  display: block;
  margin: 0;
  padding: 14px 18px;
  color: #e91463;
  background: linear-gradient(180deg, #ffe4ef, #fff4f8);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.page--shop-list .premium__blog header h3 {
  color: var(--premium-blue);
  background: linear-gradient(180deg, #eaf2ff, #f8fbff);
}

.page--shop-list .premium__coupon h3 {
  color: #ff6b00;
  background: linear-gradient(180deg, #fff0d9, #fff9ef);
}

.page--shop-list .premium__event h3 {
  color: #25a55a;
  background: linear-gradient(180deg, #e5f8eb, #f5fff7);
}

.page--shop-list .premium__panel header p,
.page--shop-list .premium__blog .blog__lead {
  margin: 0;
  padding: 0;
  color: #555;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
}

.page--shop-list .premium__blog header.panel__head {
  grid-template-columns: 1fr auto;
}

.page--shop-list .premium__blog header.panel__head p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
  color: #005ad6;
}

.page--shop-list .premium__girls ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 12px;
}

.page--shop-list .premium__girls li,
.page--shop-list .premium__blog-grid article {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 14px;
  min-height: 82px;
  border-bottom: 1px solid #f0e5eb;
  padding: 8px 0;
  background: transparent;
}

.page--shop-list .premium__girls i {
  width: 66px;
  height: 66px;
}

.page--shop-list .premium__girls strong {
  font-size: 17px;
}

.page--shop-list .premium__girls .premium__girls-text {
  font-size: 13px;
}

.page--shop-list .premium__girls em {
  border-radius: 0;
  padding: 0;
  color: #e91463;
  background: transparent;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.page--shop-list .premium__girls time {
  margin-left: 4px;
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.page--shop-list .premium__girls li>b,
.page--shop-list .premium__blog-grid b {
  color: #e91463;
  font-size: 30px;
  font-weight: 400;
}

.page--shop-list .premium__blog-grid {
  display: grid;
  gap: 0;
  margin-top: 10px;
}

.page--shop-list .premium__blog-grid article {
  grid-template-columns: 82px minmax(0, 1fr) 18px;
  min-height: 86px;
  padding: 8px 0;
}

.page--shop-list .premium__blog-grid i {
  width: 82px;
  height: 64px;
  border-radius: 5px;
}

.page--shop-list .premium__blog-grid strong {
  color: #111;
  font-size: 15px;
}

.page--shop-list .premium__blog-grid time {
  display: block;
  margin-top: 8px;
  color: #555;
  font-size: 13px;
}

.page--shop-list .premium__coupon {
  grid-column: 2;
  grid-row: 3;
  padding: 0;
}

.page--shop-list .premium__coupon>.premium__coupon-item {
  display: grid;
  gap: 0;
  padding: 14px 18px 4px;
}

.page--shop-list .premium__coupon p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #f0e5eb;
  border-radius: 0;
  padding: 7px 0;
  color: #111;
  background: transparent;
  font-size: 15px;
  font-weight: 900;
}

.page--shop-list .premium__coupon .premium__coupon-text {
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 4px 8px;
  color: #e91463;
  background: var(--premium-pink-soft);
  font-size: 12px;
}

.page--shop-list .premium__coupon p:nth-child(2) .premium__coupon-text,
.page--shop-list .premium__coupon p:nth-child(2) strong {
  color: #ff6b00;
}

.page--shop-list .premium__coupon strong {
  color: #e91463;
  font-size: 24px;
  white-space: nowrap;
}

.page--shop-list .premium__coupon strong small {
  display: inline;
  margin-left: 2px;
  font-size: 12px;
}

.page--shop-list .premium__coupon>small {
  display: block;
  padding: 0 18px 16px;
  color: #555;
  font-size: 12px;
  line-height: 1.45;
}

.page--shop-list .premium__event {
  grid-column: 3;
  grid-row: 3;
  padding: 0;
  background: rgba(255, 255, 255, .94);
}

.page--shop-list .premium__event::before,
.page--shop-list .premium__event::after {
  display: none;
}

.page--shop-list .premium__event>.premium__event-item {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 160px;
  padding: 24px 100px 22px 22px;
}

.page--shop-list .premium__event>.premium__event-item::after {
  content: none;
  position: absolute;
  right: 28px;
  top: 50%;
  color: #ff8fba;
  font-size: 58px;
  transform: translateY(-50%) rotate(-18deg);
}

.page--shop-list .premium__event .premium__event-text {
  display: none;
}

.page--shop-list .premium__event strong {
  margin: 0 0 16px;
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.page--shop-list .premium__event b {
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.page--shop-list .premium__event em {
  margin: 0 4px;
  color: #e91463;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
}

.page--shop-list .premium__event small {
  margin-top: 20px;
  color: #444;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.page--shop-list .premium__banners {
  grid-column: 2 / 4;
  grid-row: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.page--shop-list .premium__banners>.premium__banners-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 84px;
  border-radius: 8px 0 0 8px;
  padding: 18px 22px;
}

.page--shop-list .premium__banners>div+div {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.page--shop-list .premium__banners strong {
  color: #e91463;
  font-size: 18px;
}

.page--shop-list .premium__banners b {
  font-size: 30px;
}

.page--shop-list .premium__banners .premium__banners-text {
  font-size: 14px;
}

.page--shop-list .premium__banners p {
  display: none;
}

.page--shop-list .premium__banners a {
  align-self: center;
  color: #e91463;
  font-size: 24px;
}

@media (max-width: 1240px) {
  .page--shop-list .html__feature-shop.premium__listing-frame {
    grid-template-columns: 1fr 1fr;
  }

  .page--shop-list .premium__left {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .page--shop-list .premium__girls,
.page--shop-list .premium__blog,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event,
.page--shop-list .premium__banners {
    grid-column: auto;
    grid-row: auto;
  }

  .page--shop-list .premium__banners {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1100px) {
  .page--shop-list .html__feature-shop.premium__listing-frame {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .page--shop-list .premium__left {
    min-height: 680px;
  }

  .page--shop-list .platinum__hero-copy {
    top: auto;
    right: auto;
    margin: -10px -10px 0;
    width: calc(100% + 20px);
    padding: 8px 6px 10px;
  }

  .page--shop-list .platinum__hero-copy h2 {
    font-size: 24px;
  }

  .page--shop-list .platinum__hero-copy p {
    font-size: 16px;
  }

  .page--shop-list .premium__info-card {
    margin-right: 0;
    margin-left: 0;
  }

  .page--shop-list .premium__info-card,
.page--shop-list .premium__banners {
    grid-template-columns: 1fr;
  }

  .page--shop-list .premium__blog,
.page--shop-list .premium__girls,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event,
.page--shop-list .premium__banners {
    grid-column: 1;
  }

  .page--shop-list .premium__event>.premium__event-item {
    padding-right: 22px;
  }

  .page--shop-list .premium__event>.premium__event-item::after {
    display: none;
  }

  .page--shop-list .premium__banners>.premium__banners-item,
.page--shop-list .premium__banners>div+div {
    border-left: 1px solid #ffd6e6;
    border-radius: 8px;
  }
}

.page--shop-list .premium__girls,
.page--shop-list .premium__blog,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(45, 45, 45, .04);
}

.page--shop-list .premium__girls {
  border-color: #ffd1e3;
}

.page--shop-list .premium__blog {
  border-color: #d8e6ff;
}

.page--shop-list .premium__coupon {
  border-color: #ffe2bd;
}

.page--shop-list .premium__event {
  border-color: #d8f0de;
}

.page--shop-list .premium__panel header,
.page--shop-list .premium__blog header.panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 0 -14px 12px;
  padding: 0;
}

.page--shop-list .premium__panel header .premium__panel-item {
  min-width: 0;
}

.page--shop-list .premium__panel header h3,
.page--shop-list .premium__coupon h3,
.page--shop-list .premium__event h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  border-radius: 8px 8px 0 0;
  padding: 13px 18px;
  font-size: 19px;
  line-height: 1.2;
}

.page--shop-list .premium__panel header h3::before,
.page--shop-list .premium__coupon h3::before,
.page--shop-list .premium__event h3::before {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 2px solid currentColor;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
}

.page--shop-list .premium__girls header h3 {
  color: #e91463;
  background: #ffe7f0;
}

.page--shop-list .premium__girls header h3::before {
  content: none;
}

.page--shop-list .premium__blog header h3 {
  color: #174ee8;
  background: #edf5ff;
}

.page--shop-list .premium__blog header h3::before {
  content: none;
}

.page--shop-list .premium__coupon h3 {
  color: #ff6b00;
  background: #fff1db;
}

.page--shop-list .premium__coupon h3::before {
  content: none;
}

.page--shop-list .premium__event h3 {
  color: var(--premium-green);
  background: #eaf8ed;
}

.page--shop-list .premium__event h3::before {
  content: none;
}

.page--shop-list .premium__panel header p,
.page--shop-list .premium__blog .blog__lead {
  padding: 0 18px;
  color: #555;
  font-size: 13px;
  font-weight: 800;
}

.page--shop-list .premium__blog header.panel__head p {
  align-self: stretch;
  padding: 0 18px 0 0;
  color: #005ad6;
  font-size: 13px;
}

.page--shop-list .premium__girls ul,
.page--shop-list .premium__blog-grid {
  margin: 8px 0 12px;
}

.page--shop-list .premium__girls li,
.page--shop-list .premium__blog-grid article {
  min-height: 86px;
  border-bottom: 1px solid #f1e8ed;
  padding: 10px 0;
}

.page--shop-list .premium__girls li:last-child,
.page--shop-list .premium__blog-grid article:last-child {
  border-bottom: 0;
}

.page--shop-list .premium__girls i {
  width: 68px;
  height: 68px;
}

.page--shop-list .premium__blog-grid i {
  width: 88px;
  height: 68px;
}

.page--shop-list .premium__girls strong,
.page--shop-list .premium__blog-grid strong {
  color: #111;
  font-size: 16px;
  font-weight: 900;
}

.page--shop-list .premium__girls .premium__girls-text,
.page--shop-list .premium__blog-grid time {
  color: #444;
  font-size: 13px;
}

.page--shop-list .premium__girls li>b,
.page--shop-list .premium__blog-grid b {
  color: #e91463;
  font-size: 28px;
}

.page--shop-list .premium__blog-grid b {
  color: var(--premium-blue);
}

.page--shop-list .premium__coupon>.premium__coupon-item {
  padding: 14px 20px 4px;
}

.page--shop-list .premium__coupon p {
  min-height: 54px;
  border-bottom-color: #f3e6d8;
  padding: 8px 0;
  font-size: 15px;
}

.page--shop-list .premium__coupon .premium__coupon-text {
  border-color: #ff9abb;
  color: #e91463;
  background: var(--premium-pink-soft);
}

.page--shop-list .premium__coupon p:nth-child(2) .premium__coupon-text {
  border-color: #ffc27f;
  background: #fff8ef;
}

.page--shop-list .premium__coupon>small {
  padding: 2px 20px 16px;
}

.page--shop-list .premium__event>.premium__event-item {
  min-height: 166px;
  padding: 26px 102px 22px 28px;
  background: #fff;
}

.page--shop-list .premium__event>.premium__event-item::after {
  color: #ff96be;
  opacity: .9;
}

.page--shop-list .premium__event strong {
  margin-bottom: 15px;
  font-size: 18px;
}

.page--shop-list .premium__event em {
  color: #e91463;
}

.page--shop-list .premium__banners>.premium__banners-item {
  background: #fff7fb;
}

.page--shop-list .premium__girls header,
.page--shop-list .premium__blog header.panel__head {
  position: relative;
  display: block;
  margin: 0 -14px 12px;
}

.page--shop-list .premium__girls header h3,
.page--shop-list .premium__blog header h3 {
  width: 100%;
  border-radius: 8px 8px 0 0;
}

.page--shop-list .premium__blog header h3 {
  padding-right: 140px;
}

.page--shop-list .premium__blog header.panel__head p {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 54px;
  margin: 0;
  padding: 0 18px;
  color: #005ad6;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.page--shop-list .premium__girls header p,
.page--shop-list .premium__girls .schedule__lead,
.page--shop-list .premium__blog .blog__lead {
  display: block;
  margin: 8px 0 0;
  padding: 0 18px;
  color: #555;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.platinum__hero-copy h2 {
  position: relative;
}

.platinum__hero-copy h2 .platinum__hero-copy-text {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  white-space: nowrap;
}

.premium__blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.shop__list-main,
.html__feature-shop.premium__listing-frame,
.premium__left,
.premium__panel,
.premium__info-card,
.premium__girls,
.premium__blog,
.premium__coupon,
.premium__event,
.premium__shop-catch,
.premium__banners,
.premium__banners>.premium__banners-item,
.shop__search-sidebar,
.shop__search-sidebar section {
  min-width: 0;
  box-sizing: border-box;
}

.shop__search-sidebar section {
  overflow: hidden;
  border: 1px solid #dddddd;
  border-radius: 6px;
  background: #fff;
}

.shop__search-sidebar h2 {
  margin: 0;
  padding: 11px 14px;
  color: #333;
  background: #f4f5f5;
  font-size: 15px;
  line-height: 1.35;
}

.shop__search-sidebar a,
.shop__search-sidebar label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border-bottom: 1px solid #eeeeee;
  background: #fff;
  color: #222;
  line-height: 1.35;
}

.shop__search-sidebar button {
  display: block;
  width: calc(100% - 28px);
  margin: 10px 14px 14px;
  border: 0;
  border-radius: 4px;
  padding: 10px;
  color: #fff;
  background: var(--color-primary);
  font-weight: 900;
}

.html__feature-shop.premium__listing-frame {
  align-items: stretch;
  grid-template-columns: 380px minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.premium__left {
  width: auto;
  max-width: 100%;
}

.premium__visual-row {
  grid-template-columns: minmax(0, 1fr) 190px;
  align-items: start;
}

.premium__info-card {
  display: grid;
  grid-template-rows: repeat(6, minmax(48px, auto));
  gap: 6px;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.premium__info-card>a,
.premium__info-card>button {
  display: grid;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--premium-border);
  border-radius: 6px;
  padding: 7px 9px;
  background: var(--premium-pink-soft);
  box-sizing: border-box;
}

.premium__info-card>div>b {
  grid-area: icon;
}

.premium__info-card>div>span {
  grid-area: label;
  color: #555;
}

.premium__info-card>div>strong {
  grid-area: value;
  color: #111;
  font-size: 16px;
}

.premium__info-card>a,
.premium__info-card>button {
  display: flex;
  justify-content: center;
  border-color: #f50057;
  color: #f50057;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.premium__info-card>a {
  color: #fff;
  background: #f50057;
}

.premium__panel header.panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.premium__panel header.panel__head>.panel__head-item {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.premium__blog .blog__update {
  margin: 0;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.premium__blog .blog__update .blog__update-text,
.premium__panel header.panel__head .panel__head-text {
  color: #111;
}

.premium__blog .blog__lead {
  flex: 0 0 auto;
  margin: 4px 0 0;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.premium__blog-grid article {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 14px;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  min-height: 74px;
  padding: 8px;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  background: #fff;
}

.premium__blog-grid i {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  margin: 0;
  overflow: hidden;
}

.premium__blog-grid img,
.premium__girls img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.premium__blog-grid strong {
  min-width: 0;
}

.premium__blog-grid time {
  grid-column: 2;
}

.premium__blog-grid b {
  position: static;
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

@media (max-width: 1200px) {
  .premium__left {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .premium__visual-row,
.premium__blog-grid {
    grid-template-columns: 1fr;
  }

  .premium__panel header.panel__head {
    display: block;
  }

  .premium__blog .blog__lead {
    text-align: left;
    white-space: normal;
  }
}

.page--shop-list .premium__blog header.panel__head {
  display: block;
  margin-bottom: 0;
}

.page--shop-list .premium__blog header.panel__head>.panel__head-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.page--shop-list .premium__blog .blog__update {
  flex: 0 0 auto;
  margin: 0;
  padding: 14px 16px 14px 0;
  color: #111;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.page--shop-list .premium__blog .blog__update .blog__update-text {
  color: #111;
}

.page--shop-list .premium__blog .blog__lead {
  display: block;
  margin: 8px 0 10px;
  padding: 0;
  color: #555;
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-align: left;
}

.page--shop-list .html__feature-shop.premium__listing-frame {
  grid-template-columns: 380px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
  align-items: stretch;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.page--shop-list .premium__left {
  grid-column: 1;
  grid-row: 2;
  display: block;
  align-self: start;
  width: 380px;
  min-width: 0;
  max-width: 100%;
  height: auto;
  overflow: visible;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  padding: 14px 14px 6px;
  background: transparent;
  box-shadow: none;
}

.page--shop-list .premium__left .premium__visual-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  align-items: start;
}

.page--shop-list .premium__left .premium__media-stack {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
  box-sizing: border-box;
  justify-self: stretch;
}

.page--shop-list .premium__left .premium__media-stack {
  display: grid;
  gap: 10px;
}

.page--shop-list .premium__left .premium__gallery {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #fff7fb;
}

.page--shop-list .premium__left .premium__gallery img {
  display: block;
  width: 350px;
  max-width: 100%;
  height: 350px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  max-height: none;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.page--shop-list .premium__left .premium__info-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  gap: 5px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: auto;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.page--shop-list .premium__left .premium__info-card>.premium__info-card-item {
  grid-column: 1 / -1;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card,
.page--shop-list .premium__info-card .premium__summary-card {
  display: flex;
  flex-direction: column;
  grid-column: auto;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 96px;
  height: auto;
  margin: 0;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  padding: 10px 6px;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  filter: none;
  text-align: center;
  overflow: hidden;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card::before,
.page--shop-list .premium__left .premium__info-card .premium__summary-card::after,
.page--shop-list .premium__info-card .premium__summary-card::before,
.page--shop-list .premium__info-card .premium__summary-card::after {
  content: none;
  display: none;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card i,
.page--shop-list .premium__info-card .premium__summary-card i {
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  color: var(--color-primary);
  background: transparent;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card span,
.page--shop-list .premium__info-card .premium__summary-card span {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card strong,
.page--shop-list .premium__info-card .premium__summary-card strong {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card strong small,
.page--shop-list .premium__info-card .premium__summary-card strong small {
  margin-left: 2px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card:nth-child(3),
.page--shop-list .premium__info-card .premium__summary-card:nth-child(3) {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  align-content: center;
  justify-content: center;
  row-gap: 6px;
  width: 100%;
  max-width: none;
  text-align: center;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card:nth-child(3) i,
.page--shop-list .premium__info-card .premium__summary-card:nth-child(3) i {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card:nth-child(3) span,
.page--shop-list .premium__info-card .premium__summary-card:nth-child(3) span {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  width: 100%;
  text-align: center;
}

.page--shop-list .premium__left .premium__info-card .premium__summary-card:nth-child(3) strong,
.page--shop-list .premium__info-card .premium__summary-card:nth-child(3) strong {
  grid-column: 1;
  grid-row: 3;
  width: 100%;
  margin: 0;
  color: var(--color-primary);
  font-size: 18px;
  text-align: center;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card,
.page--shop-list .premium__info-card .premium__price-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-items: stretch;
  gap: 12px;
  min-height: 72px;
  border: 1px solid #ffd1e2;
  border-left: 1px solid #ffd1e2;
  border-radius: 7px;
  padding: 9px 38px 9px 14px;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card::before,
.page--shop-list .premium__info-card .premium__price-card::before {
  content: none;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card::after,
.page--shop-list .premium__info-card .premium__price-card::after {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 10px;
  border-right: 3px solid var(--color-primary);
  border-bottom: 3px solid var(--color-primary);
  content: "";
  transform: translateY(-50%) rotate(-45deg);
}

.page--shop-list .premium__left .premium__info-card .premium__price-main,
.page--shop-list .premium__info-card .premium__price-main {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 40px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  align-self: center;
  column-gap: 8px;
  row-gap: 0;
  min-width: 0;
  border: 0;
  padding: 0;
}

.page--shop-list .premium__left .premium__info-card .premium__price-main>div,
.page--shop-list .premium__info-card .premium__price-main>div {
  display: block;
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  border: 0;
  padding: 0;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card b,
.page--shop-list .premium__info-card .premium__price-card b {
  display: flex;
  grid-column: 1;
  grid-row: 1 / 3;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 0;
  color: var(--color-primary);
  background: transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card b::before,
.page--shop-list .premium__info-card .premium__price-card b::before {
  content: none;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card .premium__price-card-text,
.page--shop-list .premium__info-card .premium__price-card .premium__price-card-text {
  display: block;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  padding: 0;
  color: #111;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card strong,
.page--shop-list .premium__info-card .premium__price-card strong {
  display: block;
  grid-column: 2;
  grid-row: 2;
  color: #202020;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card .premium__price-card-text,
.page--shop-list .premium__info-card .premium__price-card .premium__price-card-text,
.page--shop-list .premium__left .premium__info-card .premium__price-card strong,
.page--shop-list .premium__info-card .premium__price-card strong,
.page--shop-list .premium__left .premium__info-card .premium__price-message,
.page--shop-list .premium__info-card .premium__price-message {
  border-bottom: 0;
  text-decoration: none;
}

.page--shop-list .premium__price-card strong.listing-price__value {
  font-size: 24px;
}

.page--shop-list .premium__price-card strong.listing-price__value>.listing-price__unit {
  display: inline;
  margin-left: 2px;
  font-size: 12px;
}

.page--shop-list .premium__left .premium__info-card .premium__price-message,
.page--shop-list .premium__info-card .premium__price-message {
  display: flex;
  flex: 1 1 auto;
  align-self: center;
  align-items: center;
  min-width: 0;
  max-width: none;
  margin: 0;
  border-top: 0;
  border-left: 0;
  padding: 0;
  color: #222;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  overflow-wrap: normal;
}

.page--shop-list .premium__left .premium__info-card .premium__price-card,
.page--shop-list .premium__info-card .premium__price-card {
  margin-bottom: 6px;
}

.page--shop-list .premium__left .premium__info-card>a,
.page--shop-list .premium__left .premium__info-card>button,
.page--shop-list .premium__info-card>a,
.page--shop-list .premium__info-card>button {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.page--shop-list .premium__girls>a,
.page--shop-list .premium__panel .outline__green,
.page--shop-list .premium__info-card>a,
.page--shop-list .premium__info-card>button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  padding: 10px 14px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.page--shop-list .premium__girls>a,
.page--shop-list .premium__panel .outline__green,
.page--shop-list .premium__info-card>a {
  color: #fff;
  background: var(--color-primary);
}

.page--shop-list .premium__info-card>button {
  color: var(--color-primary);
  background: #fff;
}

.page--shop-list .premium__left .premium__info-card>a,
.page--shop-list .premium__left .premium__info-card>button,
.page--shop-list .premium__info-card>a,
.page--shop-list .premium__info-card>button {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 13px;
}

.page--shop-list .premium__banners {
  grid-column: 1;
  grid-row: 4;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.page--shop-list .premium__banners>.premium__banners-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  gap: 3px 12px;
  min-height: 51px;
  border: 1px solid #ffd5e4;
  border-radius: 8px;
  padding: 7px 14px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(247, 11, 114, .06);
  overflow: hidden;
}

.page--shop-list .premium__banners>.premium__banners-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-primary);
  content: "";
}

.page--shop-list .premium__banners>div+div {
  border-left: 1px solid #ffd5e4;
  border-radius: 8px;
}

.page--shop-list .premium__banners strong {
  display: flex;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  color: #111;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.05;
  white-space: nowrap;
}

.page--shop-list .premium__banners b {
  color: var(--color-primary);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.page--shop-list .premium__banners .premium__banners-text {
  display: inline;
  color: #555;
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.page--shop-list .premium__banners p {
  display: block;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.page--shop-list .premium__banners a {
  display: flex;
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 30px;
  border: 1px solid var(--color-primary);
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.page--shop-list .premium__banners .premium__summary-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 51px;
  padding: 7px 6px;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  background: transparent;
  text-align: center;
}

.page--shop-list .premium__banners .premium__summary-card i {
  display: inline-block;
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.page--shop-list .premium__banners .premium__summary-card .premium__summary-card-text {
  display: inline-block;
  width: auto;
  min-width: 0;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.15;
  text-align: left;
  white-space: nowrap;
}

.page--shop-list .premium__banners .premium__summary-card strong {
  display: inline-block;
  width: auto;
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
  text-align: left;
  white-space: nowrap;
}

.page--shop-list .premium__banners .premium__summary-card small {
  color: #111;
  font-size: 10px;
  font-weight: 900;
}

.page--shop-list .premium__girls li,
.page--shop-list .premium__blog-grid article {
  border: 0;
  border-bottom: 1px solid #f1e8ed;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.page--shop-list .premium__girls header h3::before,
.page--shop-list .premium__blog header h3::before,
.page--shop-list .premium__coupon h3::before,
.page--shop-list .premium__event h3::before {
  content: none;
  display: none;
}

.page--shop-list .premium__girls,
.page--shop-list .premium__blog {
  padding: 8px 12px;
}

.page--shop-list .premium__girls header,
.page--shop-list .premium__blog header.panel__head {
  margin: -8px -12px 4px;
}

.page--shop-list .premium__blog header.panel__head {
  position: relative;
  margin-bottom: 0;
}

.page--shop-list .premium__blog header.panel__head>.panel__head-item {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  border: 0;
  padding: 0;
  overflow: hidden;
}

.page--shop-list .premium__girls header h3,
.page--shop-list .premium__blog header h3 {
  min-width: 0;
  min-height: 54px;
  padding: 13px 18px;
  font-size: 19px;
  line-height: 1.2;
}

.page--shop-list .premium__blog header h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.page--shop-list .premium__blog .blog__update {
  position: static;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  max-width: none;
  min-height: 0;
  height: auto;
  margin: 0;
  transform: none;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}

.page--shop-list .premium__blog .blog__update .blog__update-text {
  display: inline;
  padding: 0;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.page--shop-list .premium__blog header.panel__head h3 {
  border-radius: 8px 8px 0 0;
}

.page--shop-list .premium__girls header p,
.page--shop-list .premium__girls .schedule__lead,
.page--shop-list .premium__blog .blog__lead {
  margin: 8px 10px 0;
  padding: 0;
  font-size: 11px;
  line-height: 1.25;
}

.page--shop-list .premium__blog .blog__lead {
  margin-right: 0;
  margin-left: 0;
}

.page--shop-list .premium__girls ul,
.page--shop-list .premium__blog-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin: 2px 0 2px;
}

.page--shop-list .premium__girls li,
.page--shop-list .premium__blog-grid article {
  row-gap: 2px;
  min-height: 60px;
  padding: 4px 0;
}

.page--shop-list .premium__blog-grid article {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: min-content min-content;
  align-content: center;
  align-items: center;
  column-gap: 9px;
  padding-right: 18px;
}

.page--shop-list .premium__blog-grid article::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--premium-blue);
  content: "›";
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.page--shop-list .premium__blog-grid strong {
  grid-column: 2;
  grid-row: 1;
  font-size: 14px;
  line-height: 1.2;
}

.page--shop-list .premium__blog-grid time {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  line-height: 1.2;
}

.page--shop-list .premium__blog-grid b {
  display: none;
}

.page--shop-list .premium__girls i,
.page--shop-list .premium__blog-grid i {
  width: 56px;
  height: 56px;
  aspect-ratio: 1 / 1;
}

.page--shop-list .premium__girls>a,
.page--shop-list .premium__blog>a.outline__green {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-color: var(--color-primary);
  padding: 5px 34px 5px 10px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  line-height: 1.2;
}

.page--shop-list .premium__girls>a::after,
.page--shop-list .premium__blog>a.outline__green::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: var(--color-primary);
  content: "›";
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-1px);
}

.page--shop-list .premium__girls>a .premium__girls-text,
.page--shop-list .premium__blog>a.outline__green .outline__green-text {
  display: block;
  line-height: 1.2;
}

.page--shop-list .premium__panel.premium__girls>a,
.page--shop-list .premium__panel.premium__blog>a.outline__green {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: #fff;
}

.page--shop-list .premium__panel.premium__girls>a .premium__girls-text,
.page--shop-list .premium__panel.premium__girls>a::after {
  color: var(--color-primary);
}

.page--shop-list .premium__coupon,
.page--shop-list .premium__event {
  padding: 10px 12px 8px;
}

.page--shop-list .premium__coupon h3,
.page--shop-list .premium__event h3 {
  min-height: 54px;
  margin: -10px -12px 6px;
  padding: 13px 18px;
  font-size: 19px;
  line-height: 1.2;
}

.page--shop-list .premium__coupon>.premium__coupon-item {
  min-height: 0;
  gap: 3px;
  padding: 0;
}

.page--shop-list .premium__event>.premium__event-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(78px, 28%);
  grid-template-areas: "title image""price image""period image";
  align-content: center;
  gap: 3px;
  column-gap: 8px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 126px;
  padding: 18px 0 0;
  background-color: #fff;
  background-image: url("../../img/box.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: min(104px, 28%) auto;
}

.page--shop-list .premium__event>.premium__event-item::after {
  content: none;
  display: none;
}

.page--shop-list .premium__coupon p {
  min-height: 0;
  margin: 0;
  padding: 1px 0;
  font-size: 12px;
  line-height: 1.15;
}

.page--shop-list .premium__coupon .premium__coupon-text,
.page--shop-list .premium__event .premium__event-text {
  font-size: 11px;
  line-height: 1.2;
}

.page--shop-list .premium__event>div>span {
  display: none;
}

.page--shop-list .premium__coupon strong {
  font-size: 22px;
  line-height: 1;
}

.page--shop-list .premium__coupon strong small {
  font-size: 10px;
}

.page--shop-list .premium__coupon>small {
  margin-top: 0;
  font-size: 11px;
  line-height: 1.15;
}

.page--shop-list .premium__coupon>small {
  margin-top: 6px;
}

.page--shop-list .premium__event strong,
.page--shop-list .premium__event b {
  min-width: 0;
  margin: 0;
  font-size: 16px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.page--shop-list .premium__event strong {
  grid-area: title;
  margin-top: 5px;
}

.page--shop-list .premium__event b {
  grid-area: price;
}

.page--shop-list .premium__event em {
  font-size: 25px;
  line-height: 1;
}

.page--shop-list .premium__event .event__period {
  grid-area: period;
  display: flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: 46px;
  margin-top: 10px;
  border: 1px solid #22b45f;
  border-radius: 7px;
  color: #111;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
}

.page--shop-list .premium__event .event__period .event__period-text {
  display: flex;
  min-width: 0;
  align-self: stretch;
  align-items: center;
  margin: 0;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.page--shop-list .premium__event .event__period-label {
  flex: 0 0 46px;
  justify-content: center;
  border-radius: 6px 0 0 6px;
  color: #fff;
  background: linear-gradient(180deg, #36c56f, #1fb257);
  font-size: 13px;
  font-weight: 900;
}

.page--shop-list .premium__event .event__period-date {
  flex: 1 1 auto;
  min-width: 0;
  border-radius: 0;
  padding: 0 6px;
  color: #111;
  background: #fff;
  font-size: 11px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .page--shop-list .html__feature-shop.premium__listing-frame,
.page--shop-list .premium__visual-row {
    grid-template-columns: 1fr;
  }

  .page--shop-list .premium__left,
.page--shop-list .premium__girls,
.page--shop-list .premium__blog,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event,
.page--shop-list .premium__shop-catch,
.page--shop-list .premium__banners {
    grid-column: auto;
    grid-row: auto;
  }

  .page--shop-list .premium__left .premium__gallery img {
    min-height: 220px;
    max-height: none;
  }
}

@media (max-width: 1100px) {
  .page--shop-list .premium__banners {
    grid-template-columns: 1fr;
  }

  .page--shop-list .premium__banners>.premium__banners-item {
    min-height: 51px;
  }
}

@media (max-width: 1100px) {
  .page--shop-list .premium__left {
    padding: 10px;
  }

  .page--shop-list .premium__left .premium__gallery img {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .page--shop-list .premium__left .premium__info-card .premium__price-card {
    flex-wrap: wrap;
    row-gap: 6px;
    min-height: 60px;
    padding: 10px 14px;
  }

  .page--shop-list .premium__left .premium__info-card .premium__price-main {
    grid-column: 1;
  }

  .page--shop-list .premium__left .premium__info-card .premium__price-message {
    grid-column: 1;
    white-space: normal;
  }

  .page--shop-list .premium__left .premium__info-card .premium__price-card::after {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

@media (min-width: 1241px) {
  .page--shop-list .premium__left {
    grid-row: 2;
    align-self: start;
    height: fit-content;
  }

  .page--shop-list .premium__banners {
    grid-column: 1 / -1;
    grid-row: 5;
    align-self: start;
  }
}

.layout,
.ranking__layout,
.blog__layout,
.girl-blog__layout {
  align-items: start;
}

.shop__search-sidebar,
.page__search-sidebar {
  align-self: start;
  align-items: start;
  grid-auto-rows: auto;
  height: auto;
  min-height: 0;
}

.shop__search-sidebar section,
.page__search-sidebar section {
  height: auto;
  min-height: 0;
}

@media (min-width: 1201px) {
  .page--sokuhime .cast__grid,
.page--attendance .cast__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.page--cast-list .cast-card__photo,
.page--sokuhime .cast-card__photo,
.page--attendance .cast-card__photo {
  --corner-icon-size: clamp(32px, 24%, 52px);
}

.page--cast-list .cast-card__photo::before,
.page--sokuhime .cast-card__photo::before,
.page--attendance .cast-card__photo::before,
.page--cast-list .cast-card__photo::after,
.page--sokuhime .cast-card__photo::after,
.page--attendance .cast-card__photo::after {
  content: none;
}

.page--shop-list .premium__panel {
  min-height: 0;
}

.page--shop-list .premium__girls,
.page--shop-list .premium__blog {
  padding: 6px 10px;
}

.page--shop-list .premium__girls header,
.page--shop-list .premium__blog header.panel__head {
  margin: -6px -10px 3px;
}

.page--shop-list .premium__girls header h3,
.page--shop-list .premium__blog header h3 {
  min-height: 44px;
  padding: 10px 14px;
}

.page--shop-list .premium__blog header.panel__head {
  display: block;
}

.page--shop-list .premium__blog header.panel__head>.panel__head-item,
.page--shop-list .premium__blog header h3 {
  width: 100%;
}

.page--shop-list .premium__blog header h3 {
  border-radius: 8px 8px 0 0;
}

.page--shop-list .premium__blog .blog__update {
  margin-left: auto;
}

.page--shop-list .premium__coupon h3,
.page--shop-list .premium__event h3 {
  min-height: 44px;
  margin: -8px -10px 6px;
  border-radius: 8px 8px 0 0;
  padding: 10px 14px;
}

.page--shop-list .premium__girls .schedule__lead,
.page--shop-list .premium__blog .blog__lead {
  margin-top: 4px;
}

.page--shop-list .premium__coupon,
.page--shop-list .premium__event {
  padding: 8px 10px 1px;
}

.page--shop-list .premium__event>.premium__event-item {
  min-height: 112px;
}

/* 【意図的にサンプルと異なる部分】店舗一覧の店舗ステータス4枠(在籍キャスト/営業時間/今すぐ/
   本日出勤)の間隔を、表示内容によらず常に一定にする (ユーザー要望)。
   今後のサンプル突き合わせ作業でこの箇所を「差分」として元に戻さないこと。

   サンプルは `repeat(4, max-content)` + `justify-content: space-between` で、
   「各枠の幅は中身の文字量で決まり、余った幅は3つの隙間に均等配分される」構造だった。
   そのため「今すぐ0名で `待機中！` バッジが出ない」「人数が1桁/2桁」といったデータの違いだけで
   隙間が変動し、実測でローカル18.9px / 本番36.4px と倍近い差が出ていた
   (しかも space-between は余りを全隙間に配るため、幅が変わっていない在籍キャスト横の隙間まで
   連動して広がる)。

   対策として、余りを「隙間」ではなく「枠」に吸収させる: トラックを `auto` にし
   `justify-content: stretch` で余白を各トラックへ均等に割り当てる (fr を使わない auto トラックは
   余った空間を埋める。docs/plans/09_troubleshooting_notes.md 参照)。
   これで隙間は常に column-gap の値(6px)そのものになる。
   ※ `repeat(4, 1fr)` で均等幅にする案は不可: 今すぐ枠は `待機中！` 込みで約295px必要だが
   均等割だと約231pxとなり、枠が `overflow: hidden` のため文字が欠ける。 */
.page--shop-list .premium__banners {
  grid-column: 1 / -1;
  grid-row: 5;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 4px 6px;
  align-items: stretch;
  justify-content: stretch;
  align-self: start;
  width: 100%;
  max-width: 100%;
  margin: 10px 0 0;
}

.page--shop-list .premium__banners>.premium__banner-card {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  border: 1px solid #ffd0e2;
  border-radius: 6px;
  padding: 6px 12px;
  background: linear-gradient(180deg, #fff, var(--premium-pink-soft));
  box-shadow: none;
  overflow: hidden;
  color: var(--color-primary);
}

.page--shop-list .premium__banners>.premium__banner-card::before {
  content: none;
  display: none;
}

.page--shop-list .premium__banners>.premium__summary-card {
  justify-content: flex-start;
}

.page--shop-list .premium__banners>.banner--sokuhime,
.page--shop-list .premium__banners>.status--today {
  justify-content: space-between;
  gap: 12px;
  padding-left: 16px;
}

.page--shop-list .premium__banners>.banner--sokuhime::after,
.page--shop-list .premium__banners>.status--today::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 6px 0 0 6px;
}

.page--shop-list .premium__banners>.banner--sokuhime::after {
  background: var(--color-primary);
}

.page--shop-list .premium__banners>.status--today {
  border-color: #ffc29c;
  background: linear-gradient(180deg, #fff, #fff9f4);
}

.page--shop-list .premium__banners>.status--today::after {
  background: #ff7a1b;
}

.page--shop-list .premium__banners .premium__banner-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
}

.page--shop-list .premium__banners .premium__banner-text .premium__banner-text-text,
.page--shop-list .premium__banners .premium__banner-text strong,
.page--shop-list .premium__banners .premium__banner-text small,
.page--shop-list .premium__banners .premium__banner-text em {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  vertical-align: middle;
}

.page--shop-list .premium__banners>.premium__summary-card .premium__banner-text .premium__banner-text-text {
  grid-column: 2;
  grid-row: 1;
  order: 1;
  color: #111;
  font-size: 13px;
  font-weight: 900;
}

.page--shop-list .premium__banners>.premium__summary-card .premium__banner-text strong {
  grid-column: 2;
  grid-row: 2;
  order: 2;
  color: var(--color-primary);
  font-size: 23px;
  font-weight: 900;
}

.page--shop-list .premium__banners>.premium__summary-card .premium__banner-text strong small {
  margin-left: 3px;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.page--shop-list .premium__banners>.premium__summary-card .premium__banner-text {
  display: grid;
  grid-template-columns: 28px max-content;
  grid-template-rows: auto auto;
  gap: 3px 8px;
  align-items: center;
}

.page--shop-list .premium__banners>.premium__summary-card .premium__banner-text .shop__info-icon {
  grid-column: 1;
  grid-row: 1 / 3;
}

.page--shop-list .premium__banners>.banner--sokuhime .premium__banner-text .premium__banner-text-text {
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.page--shop-list .premium__banners>.status--today .premium__banner-text .premium__banner-text-text {
  color: var(--premium-orange);
  font-size: 15px;
  font-weight: 900;
}

.page--shop-list .premium__banners>.banner--sokuhime .premium__banner-text strong,
.page--shop-list .premium__banners>.status--today .premium__banner-text strong {
  font-size: 28px;
  font-weight: 900;
}

.page--shop-list .premium__banners>.banner--sokuhime .premium__banner-text strong {
  color: var(--color-primary);
}

.page--shop-list .premium__banners>.status--today .premium__banner-text strong {
  color: var(--premium-orange);
}

.page--shop-list .premium__banners>.banner--sokuhime .premium__banner-text strong small,
.page--shop-list .premium__banners>.status--today .premium__banner-text strong small {
  color: inherit;
  font-size: 1em;
  font-weight: inherit;
}

.page--shop-list .premium__banners>.banner--sokuhime .premium__banner-text em {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.page--shop-list .premium__banners>.banner--sokuhime a,
.page--shop-list .premium__banners>.status--today a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 32px;
  margin: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 11px;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.page--shop-list .premium__banners>.banner--sokuhime a {
  color: var(--color-primary);
}

.page--shop-list .premium__banners>.status--today a {
  color: var(--premium-orange);
}

.page--shop-list .premium__shop-catch {
  grid-column: 2 / 4;
  grid-row: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 -6px;
  border: 0;
  border-radius: 6px;
  padding: 4px 12px 2px;
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: none;
}

.page--shop-list .premium__shop-catch::before,
.page--shop-list .premium__shop-catch::after {
  content: none;
  display: none;
}

.page--shop-list .premium__girls,
.page--shop-list .premium__blog {
  grid-row: 3;
}

.page--shop-list .premium__coupon,
.page--shop-list .premium__event {
  grid-row: 4;
}

@media (max-width: 1200px) {
  .page--shop-list .premium__shop-catch,
.page--shop-list .premium__girls,
.page--shop-list .premium__blog,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event,
.page--shop-list .premium__banners {
    grid-column: auto;
    grid-row: auto;
  }
}

.page--shop-list .premium__girls li,
.page--shop-list .premium__blog-grid article {
  grid-template-columns: 42px minmax(0, 1fr) 12px;
  gap: 7px;
  min-height: 44px;
  padding: 1px 0;
}

/* 【意図的にサンプルと異なる部分】店舗一覧プラチナ枠のブログで、タイトルと日付の縦の間隔を
   詰める (ユーザー要望)。上の `gap: 7px` は「本日出勤の女の子」リストと共用のセレクタのため
   直接変更せず、ブログ記事だけを対象に後から上書きする
   (列方向の 7px と、女の子リストの余白は元のまま維持される)。

   なお row-gap を減らすだけではほとんど詰まらない: この枠の行高は 2行にまたがるサムネイル
   (42px) が決めており、row-gap を縮めた分だけ行が広がって余白が戻ってくるため
   (実測で gap = row-gap ÷ 2 + 4.8px の関係になり、row-gap: 0 でも 4.8px 残る)。
   そこでゴールド枠と同じく、タイトルを行末・日付を行頭に寄せて余りを上下の外側へ逃がし、
   2要素の間隔を row-gap で直接制御する。 */
.page--shop-list .premium__blog-grid article {
  row-gap: 3px;
}

.page--shop-list .premium__blog-grid strong {
  align-self: end;
}

.page--shop-list .premium__blog-grid time {
  align-self: start;
}

.page--shop-list .premium__girls i,
.page--shop-list .premium__blog-grid i {
  width: 42px;
  height: 42px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
}

.page--shop-list .premium__girls i img,
.page--shop-list .premium__blog-grid i img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

@media (max-width: 1320px) {
  /* 上の本体ルールと同じ理由で auto にする (ここを max-content のままにすると
     1320px 以下でのみ隙間がデータ依存で変動してしまう)。 */
  .page--shop-list .premium__banners {
    grid-template-columns: repeat(4, auto);
  }
}

@media (max-width: 640px) {
  .page--shop-list .premium__shop-catch {
    grid-column: auto;
    grid-row: auto;
  }

  .page--shop-list .premium__banners>.premium__banner-card {
    height: auto;
    min-height: 58px;
    max-height: none;
  }

  .page--shop-list .premium__banners {
    grid-template-columns: 1fr;
  }

  .sort__tabs,
  .page--cast-list .sort__tabs,
  .schedule__sort-tabs {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .sort__tabs .sort__tabs-text,
  .schedule__sort-tabs .schedule__sort-tabs-text {
    flex: 0 0 auto;
  }

  .sort__tabs a,
  .schedule__sort-tabs a {
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: 6px;
  }

  .page--cast-list .sort__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow-x: visible;
  }

  .sort__tabs:has(a[data-key]) > .sort__tabs-text {
    grid-column: 1 / -1;
    font-size: 16px;
    font-weight: 900;
  }

  .sort__tabs a[data-key] {
    min-width: 0;
    min-height: 46px;
    padding: 6px 8px;
    font-size: 13px;
  }

  .sort__tabs a[data-key]:last-child {
    grid-column: 1 / -1;
  }
}

.ranking__medal {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  line-height: 1;
}

.ranking__medal img,
.top__rank-box .ranking__medal img,
.shop__ranking-list .ranking__medal img {
  display: block;
  width: 39px;
  height: 39px;
  border-radius: 0;
  object-fit: contain;
}

.top__rank-box .ranking__medal,
.shop__ranking-list .ranking__medal {
  width: 30px;
  height: 30px;
}

.top__rank-box .ranking__medal img,
.shop__ranking-list .ranking__medal img {
  width: 30px;
  height: 30px;
}

.shop__info-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.page--shop-list .premium__price-card b .shop__info-icon {
  width: 36px;
  height: 36px;
}

.page--shop-list .gold__shop-stats b .shop__info-icon {
  width: 22px;
  height: 22px;
}

.page--shop-list .premium__price-card b::before,
.page--shop-list .gold__shop-stats b::before,
.page--shop-list .gold__shop-stats .gold__shop-stats-item::before {
  content: none;
}

.page--shop-list .gold__listing-section .gold__shop-stats .gold__shop-stats-item,
.page--shop-list .gold__listing-section .gold__shop-stats .gold__shop-stats-item:first-child,
.page--shop-list .gold__listing-section .gold__shop-stats .gold__shop-stats-item:nth-child(odd) {
  border-left: 1px solid var(--premium-border);
}

.page--shop-list .premium__banners .premium__banner-text .shop__info-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

/* menu 15% down + responsive hardening */
.header__top,
.nav,
.nav__scroll {
  min-width: 0;
}

.nav__scroll {
  scrollbar-width: thin;
  overscroll-behavior-x: contain;
}

.nav a {
  box-sizing: border-box;
  flex: 0 0 79px;
  padding: 4px 4px 3px;
  line-height: 1.15;
  white-space: nowrap;
}

.nav strong,
.nav small {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 1101px) {
  .nav__scroll {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .header {
    overflow: visible;
  }

  .nav {
    width: 100%;
  }

  .nav__scroll {
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .nav a {
    flex-basis: 77px;
    min-width: 77px;
    min-height: 52px;
  }
}

@media (max-width: 1100px) {
  .header {
    overflow: visible;
  }

  .layout__container {
    width: min(100% - 22px, var(--container));
  }

  .header__top {
    position: relative;
    gap: 10px;
    min-height: 54px;
    padding-left: 56px;
    padding-right: 136px;
    padding-top: 6px;
  }

  .header__menu-toggle {
    position: absolute;
    top: 8px;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid #ffcfe1;
    border-radius: 6px;
    padding: 0;
    color: var(--color-primary);
    background: #fff;
    box-shadow: 0 4px 12px rgba(233, 20, 99, .08);
    cursor: pointer;
    touch-action: manipulation;
  }

  .header__menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
    transition: transform .2s ease, opacity .2s ease;
  }

  .header.is-nav-open .header__menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.is-nav-open .header__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.is-nav-open .header__menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__brand {
    flex: 0 1 200px;
  }

  .header__actions {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 2;
    flex: 0 0 126px;
    width: 126px;
    gap: 6px;
  }

  .header__contact,
  .header__favorite {
    min-height: 20px;
    padding: 2px 6px;
    font-size: 10px;
    line-height: 1.2;
  }

  .header__contact-icon {
    display: none;
  }

  .nav {
    position: static;
    grid-column: 1 / -1;
    order: 4;
    z-index: 1001;
    display: none;
    width: 100%;
    margin-top: 8px;
    border: 1px solid #ffcfe1;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
  }

  .header.is-nav-open .nav {
    display: block;
  }

  .nav__scroll {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    max-height: calc(100dvh - 82px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 6px;
    background: #ffe1ec;
  }

  .nav a {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 24px auto auto;
    align-items: center;
    justify-items: center;
    gap: 2px;
    width: 100%;
    min-width: 0;
    min-height: 68px;
    border-bottom: 0;
    padding: 6px 2px;
    background: #fff;
    font-size: 10px;
    text-align: center;
  }

  .nav strong {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav small {
    grid-column: 1;
    font-size: 8px;
  }

  .nav__icon {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .shop__menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop__menu.is-fixed {
    width: min(100% - 54px, calc(var(--container) - 36px));
  }

  .shop__menu-link:nth-child(3n) {
    border-right: 1px solid rgba(238, 161, 184, .48);
  }

  .shop__menu-link:nth-child(2n) {
    border-right: 0;
  }

  .shop__menu-link:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(238, 161, 184, .48);
  }

  .shop__menu-link:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .layout__container {
    width: min(100% - 18px, var(--container));
  }

  .header__brand {
    flex-basis: 150px;
    width: 150px;
  }

  .nav a {
    flex-basis: auto;
    min-width: 0;
    min-height: 52px;
  }
}

/* responsive overflow guard */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

main,
section,
article,
aside,
.layout,
.detail__layout,
.top__search-layout,
.girl-blog__layout,
.gb__three-column {
  min-width: 0;
}

table {
  max-width: 100%;
}

/* 一覧表示用テーブルの基本スタイル (ヘッダーは上下左右中央揃え) */
th {
  text-align: center;
  vertical-align: middle;
}

td {
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  .top-side-flyout__panel {
    position: static;
    display: grid;
    min-width: 0;
    border: 0;
    border-top: 1px solid #eee;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  input,
  select,
  textarea,
  button {
    max-width: 100%;
  }

  .layout,
  .detail__layout,
  .top__search-layout,
  .girl-blog__layout,
  .gb__three-column {
    width: 100%;
  }
}
/* mobile header/search adjustment */
@media (max-width: 640px) {
  .header__top {
    align-items: stretch;
  }

  .header__brand {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-bottom: 2px;
  }

  .header__logo,
  .header__logo img {
    width: 100px;
    max-width: 100%;
  }

  .header__copy {
    width: 200px;
    max-width: 100%;
  }

  .shop__search-sidebar,
  .page__search-sidebar {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shop__search-sidebar h2,
  .page__search-sidebar h2 {
    padding: 8px 10px;
    font-size: 14px;
  }

  .shop__search-sidebar a,
  .shop__search-sidebar label,
  .page__search-sidebar a,
  .page__search-sidebar label {
    padding: 8px 10px;
    font-size: 12px;
  }

  .shop__search-sidebar button,
  .page__search-sidebar button {
    width: calc(100% - 20px);
    margin: 8px 10px 10px;
    padding: 9px 10px;
  }
}

@media (max-width: 420px) {
  .header__brand {
    flex-basis: 100%;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .header__top {
    position: relative;
    padding-left: 56px;
    padding-right: 136px;
    align-items: center;
  }

  .header__brand {
    flex: 0 1 200px;
    width: 200px;
    max-width: calc(100% - 10px);
    margin-bottom: 2px;
  }

  .header__actions {
    position: absolute;
    top: 8px;
    right: 0;
    display: flex;
    flex-direction: column;
    flex-basis: 126px;
    width: 126px;
    margin-left: 0;
    gap: 4px;
  }

  .nav a {
    flex-basis: auto;
    width: 100%;
    min-width: 0;
    min-height: 46px;
  }
}

@media (max-width: 420px) {
  .header__brand {
    flex-basis: 180px;
    width: 180px;
  }

  .header__top {
    padding-right: 122px;
  }

  .header__actions {
    width: 112px;
    flex-basis: 112px;
  }

  .header__contact,
  .header__favorite {
    padding-inline: 4px;
    font-size: 9px;
  }
}

/* final platinum layout placement */
@media (min-width: 1201px) {
  .page--shop-list .html__feature-shop.premium__listing-frame {
    grid-template-areas:
      "hero hero hero"
      "left catch catch"
      "left girls blog"
      "left coupon event"
      "banners banners banners";
    grid-template-rows: auto 24px auto auto auto;
    align-items: start;
    row-gap: 4px;
    column-gap: 12px;
  }

  .page--shop-list .platinum__hero-copy {
    grid-area: hero;
    margin-bottom: 8px;
  }

  .page--shop-list .premium__left {
    grid-area: left;
    align-self: stretch;
    height: auto;
  }

  .page--shop-list .premium__shop-catch {
    grid-area: catch;
    margin-bottom: 0;
  }

  .page--shop-list .premium__girls {
    grid-area: girls;
  }

  .page--shop-list .premium__blog {
    grid-area: blog;
  }

  .page--shop-list .premium__coupon {
    grid-area: coupon;
  }

  .page--shop-list .premium__event {
    grid-area: event;
  }

  .page--shop-list .premium__banners {
    grid-area: banners;
    margin-top: 6px;
  }

  .page--shop-list .premium__girls strong {
    display: inline;
    font-size: 13px;
  }

  .page--shop-list .premium__girls .premium__girls-text {
    display: inline;
    margin-left: 6px;
  }
}

/* unified platinum/gold event card */
.page--shop-list .premium__event,
.gold__listing-section .gold__event {
  position: relative;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page--shop-list .premium__event>.premium__event-item,
.gold__listing-section .gold__event>.gold__event-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "title" "price" "period";
  align-content: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px;
  background: #fff;
  overflow: hidden;
}

.page--shop-list .premium__event>.premium__event-item::after,
.gold__listing-section .gold__event>.gold__event-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 0;
  display: block;
  width: min(150px, 44%);
  height: min(150px, calc(100% - 16px));
  background: url("../../img/box.png") center right / contain no-repeat;
  opacity: .16;
  pointer-events: none;
  transform: translateY(-50%);
}

.page--shop-list .premium__event strong,
.page--shop-list .premium__event b,
.page--shop-list .premium__event .event__period,
.gold__listing-section .gold__event strong,
.gold__listing-section .gold__event b,
.gold__listing-section .gold__event .event__period {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.page--shop-list .premium__event strong,
.gold__listing-section .gold__event strong {
  grid-area: title;
}

.page--shop-list .premium__event b,
.gold__listing-section .gold__event b {
  grid-area: price;
}

.page--shop-list .premium__event .event__period,
.gold__listing-section .gold__event .event__period {
  grid-area: period;
}

.gold__listing-section .gold__event-box {
  display: none;
}

.gold__listing-section .gold__blog {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-column: 2;
  grid-row: 2 / 4;
  grid-template-columns: 1fr;
  align-items: stretch;
  align-content: start;
  gap: 8px;
  margin-top: 0;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.gold__listing-section .gold__shop-card {
  grid-template-columns: 200px 190px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto auto;
}

.gold__listing-section .gold__shop-photo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gold__listing-section .gold__shop-content {
  grid-column: 1 / -1;
  grid-row: 4;
  display: block;
  align-self: start;
  height: auto;
  min-height: 0;
  padding: 0;
}

.gold__listing-section .gold__shop-content .gold__shop-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: none;
  gap: 8px;
  margin: 0;
  height: auto;
}

.gold__listing-section .gold__shop-content .gold__shop-stats .gold__shop-stats-item {
  min-height: 62px;
}

.gold__listing-section .gold__photo-caption {
  grid-column: 2 / -1;
  grid-row: 2;
  align-self: start;
  width: 100%;
  margin: 0 0 6px;
}

.gold__listing-section .gold__blog {
  grid-row: 3;
}

.gold__listing-section .gold__blog .panel__head {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: -8px -8px 0;
  padding: 8px 10px;
  border-radius: 8px 8px 0 0;
  background: var(--premium-pink-soft);
}

.gold__listing-section .gold__blog h3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  min-width: 0;
  margin: 0;
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.gold__listing-section .gold__blog .blog__update {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #111;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.gold__listing-section .gold__blog .blog__update span {
  border-radius: 999px;
  padding: 2px 5px;
  color: #fff;
  background: var(--color-primary);
}

.gold__listing-section .gold__blog .blog__lead {
  display: none;
  margin: 0;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.gold__listing-section .gold__blog .premium__blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  min-width: 0;
}

.gold__listing-section .gold__blog .premium__blog-grid article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  min-width: 0;
  border: 1px solid var(--premium-border);
  border-radius: 6px;
  padding: 5px;
  background: #fff;
}

.gold__listing-section .gold__blog .premium__blog-grid i {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  overflow: hidden;
}

.gold__listing-section .gold__blog .premium__blog-grid i img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gold__listing-section .gold__blog .premium__blog-grid strong {
  overflow: hidden;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gold__listing-section .gold__blog .premium__blog-grid time {
  color: #777;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.gold__listing-section .gold__blog .premium__blog-grid b {
  display: none;
}

.gold__listing-section .gold__blog .premium__blog-grid article::after {
  color: var(--premium-blue);
}

.gold__listing-section .gold__blog .outline__green {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  color: var(--color-primary);
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__blog {
    grid-column: 1 / -1;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .gold__listing-section .gold__shop-content {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gold__listing-section .gold__shop-content .gold__shop-stats {
    grid-template-columns: 1fr;
  }

  .gold__listing-section .gold__blog .panel__head {
    margin: -8px -8px 0;
    border-radius: 8px 8px 0 0;
  }

  .gold__listing-section .gold__blog .premium__blog-grid {
    grid-template-columns: 1fr;
  }
}

/* regular listing copied from gold frame */
.regular__html-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.regular__listing-section .regular__shop-card {
  display: grid;
  grid-template-columns: 235px 190px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  row-gap: 8px;
  column-gap: 8px;
  border: 1px solid #ffd6e6;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(233, 20, 99, .08);
  box-sizing: border-box;
  overflow: hidden;
}

.regular__listing-section .regular__shop-card h2 {
  position: relative;
  display: block;
  grid-column: 1 / -1;
  grid-row: 1;
  min-height: 0;
  margin: -14px -14px 6px;
  border-radius: 8px 8px 0 0;
  padding: 10px 190px 12px 12px;
  color: #e91463;
  background: #fff3f8;
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.regular__listing-section .regular__shop-card h2 a {
  color: inherit;
  text-decoration: none;
}

.regular__listing-section .regular__shop-kicker {
  position: absolute;
  top: 50%;
  right: 12px;
  display: inline-flex;
  margin: 0;
  border: 1px solid #ff9abe;
  border-radius: 999px;
  padding: 4px 12px;
  color: #e91463;
  background: rgba(255, 255, 255, .86);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
  white-space: nowrap;
  transform: translateY(-50%);
}

.regular__listing-section .regular__shop-photo {
  position: relative;
  grid-column: 1;
  grid-row: 2 / 4;
}

.regular__listing-section .regular__shop-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 7px;
  object-fit: cover;
}

.regular__listing-section .regular__shop-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 8px;
}

.regular__listing-section .regular__shop-actions a,
.regular__listing-section .regular__shop-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 28px;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  padding: 5px 6px;
  color: var(--color-primary);
  background: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.regular__listing-section .regular__shop-actions .is-primary {
  color: #fff;
  background: var(--color-primary);
}

.regular__listing-section .regular__photo-caption {
  grid-column: 3 / 5;
  grid-row: 2;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 -6px;
  border: 0;
  border-radius: 6px;
  padding: 4px 12px 2px;
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: none;
}

.regular__listing-section .regular__shop-content {
  grid-column: 2;
  grid-row: 2 / 4;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  padding: 0 0 3px 2px;
  box-sizing: border-box;
  overflow: visible;
}

.regular__listing-section .regular__shop-stats {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  flex: 1 1 auto;
  gap: 6px;
  margin: 0;
  align-items: stretch;
  align-content: stretch;
  height: auto;
  min-height: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 4px 6px;
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--premium-border);
  border-radius: 8px;
  padding: 7px 10px;
  background: transparent;
  text-align: left;
  box-sizing: border-box;
}

.regular__listing-section .regular__shop-stats b {
  display: block;
  grid-column: 1;
  grid-row: 1;
  color: var(--color-primary);
  font-size: 20px;
  line-height: 1;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-text {
  display: block;
  grid-column: 2;
  grid-row: 1;
  overflow: hidden;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.regular__listing-section .regular__shop-stats strong {
  display: block;
  grid-column: 1 / -1;
  grid-row: 2;
  overflow: hidden;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.08;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.regular__listing-section .regular__shop-stats small {
  display: inline;
  margin-left: 2px;
  color: #111;
  font-size: 10px;
  font-weight: 900;
}

.regular__listing-section .regular__shop-stats a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-self: start;
  min-height: 24px;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 8px;
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(3),
.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(4) {
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 2px;
  padding: 7px 10px;
}

.regular__listing-section .regular__shop-stats div:nth-child(3) span,
.regular__listing-section .regular__shop-stats div:nth-child(4) span {
  grid-column: 1;
  grid-row: 1;
  font-size: 12px;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(3) strong,
.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(4) strong {
  grid-column: 2;
  grid-row: 1;
  width: max-content;
  color: var(--color-primary);
  font-size: 20px;
}

.regular__listing-section .regular__shop-stats div:nth-child(3) a,
.regular__listing-section .regular__shop-stats div:nth-child(4) a {
  grid-column: 1 / -1;
  grid-row: 2;
}

.regular__listing-section .regular__shop-bottom {
  grid-column: 3 / 5;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  align-self: start;
}

.regular__listing-section .regular__coupon,
.regular__listing-section .regular__event {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 210px;
  min-width: 0;
  max-width: 100%;
  border-radius: 7px;
  padding: 10px 12px 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(45, 45, 45, .04);
  box-sizing: border-box;
  overflow: hidden;
}

.regular__listing-section .regular__coupon {
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 1px solid #ffd6e6;
}

.regular__listing-section .regular__event {
  position: relative;
  border: 1px solid #d8f0de;
}

.regular__listing-section .regular__coupon h3,
.regular__listing-section .regular__event h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  margin: -10px -12px 6px;
  padding: 13px 18px;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.regular__listing-section .regular__coupon h3 {
  color: #ff6b00;
  background: #fff1db;
}

.regular__listing-section .regular__event h3 {
  color: #25a55a;
  background: linear-gradient(180deg, #e5f8eb, #f5fff7);
}

.regular__listing-section .regular__coupon>.regular__coupon-item {
  display: grid;
  align-content: stretch;
  gap: 3px;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.regular__listing-section .regular__coupon p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #f0e5eb;
  border-radius: 0;
  padding: 1px 0;
  color: #111;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.regular__listing-section .regular__coupon .regular__coupon-text {
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 4px 8px;
  color: #e91463;
  background: var(--premium-pink-soft);
  font-size: 11px;
  line-height: 1.2;
}

.regular__listing-section .regular__coupon p strong {
  justify-self: end;
  color: #e91463;
  font-size: 22px;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}

.regular__listing-section .regular__coupon strong small {
  display: inline;
  margin-left: 2px;
  font-size: 10px;
}

.regular__listing-section .regular__coupon>small {
  display: block;
  padding: 0 18px 16px;
  color: #555;
  font-size: 11px;
  line-height: 1.15;
}

.regular__listing-section .regular__event>.regular__event-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "title" "price" "period";
  align-content: center;
  gap: 6px;
  min-width: 0;
  max-width: 100%;
  min-height: 126px;
  padding: 12px;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}

.regular__listing-section .regular__event>.regular__event-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  z-index: 0;
  display: block;
  width: min(150px, 44%);
  height: min(150px, calc(100% - 16px));
  background: url("../../img/box.png") center right / contain no-repeat;
  opacity: .16;
  pointer-events: none;
  transform: translateY(-50%);
}

.regular__listing-section .regular__event .regular__event-text {
  display: none;
}

.regular__listing-section .regular__event strong,
.regular__listing-section .regular__event b,
.regular__listing-section .regular__event .event__period {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

.regular__listing-section .regular__event strong {
  grid-area: title;
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.1;
}

.regular__listing-section .regular__event b {
  grid-area: price;
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.1;
}

.regular__listing-section .regular__event em {
  color: #e91463;
  font-size: 25px;
  font-style: normal;
  line-height: 1;
}

.regular__listing-section .regular__event .event__period {
  grid-area: period;
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-top: 10px;
  border: 1px solid #22b45f;
  border-radius: 7px;
  color: #111;
  background: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
}

.regular__listing-section .regular__event .event__period-label {
  display: flex;
  flex: 0 0 58px;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #36c56f, #1fb257);
  font-size: 15px;
}

.regular__listing-section .regular__event .event__period-date {
  display: block;
  flex: 1 1 auto;
  padding: 0 4px;
  overflow: hidden;
  color: #111;
  background: #fff;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.regular__listing-section .regular__event-box {
  display: none;
}

@media (max-width: 1100px) {
  .regular__listing-section .regular__shop-card {
    grid-template-columns: 1fr;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .regular__listing-section .regular__shop-card h2,
  .regular__listing-section .regular__shop-photo,
  .regular__listing-section .regular__photo-caption,
  .regular__listing-section .regular__shop-content,
  .regular__listing-section .regular__shop-bottom {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .regular__listing-section .regular__shop-card h2 {
    margin: -12px -12px 10px;
    padding: 8px 10px 10px;
  }

  .regular__listing-section .regular__shop-kicker {
    position: static;
    display: inline-flex;
    margin-top: 8px;
    transform: none;
  }

  .regular__listing-section .regular__shop-content,
  .regular__listing-section .regular__shop-stats {
    height: auto;
  }

  .regular__listing-section .regular__shop-content {
    padding: 0;
  }

  .regular__listing-section .regular__shop-stats {
    grid-template-rows: none;
  }

  .regular__listing-section .regular__shop-bottom {
    grid-template-columns: 1fr;
  }
}

/* mobile search accordion */
.search-accordion-toggle {
  display: none;
}

@media (max-width: 1100px) {
  .search-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 0 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(42, 42, 42, 0.95), rgba(12, 12, 12, 0.95));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
  }

  .shop__search-sidebar.page__search-sidebar {
    grid-template-columns: 1fr;
  }

  .search-accordion-toggle::after {
    content: "＋";
    font-size: 18px;
    line-height: 1;
  }

  .search-accordion-toggle[aria-expanded="true"]::after {
    content: "－";
  }

  .shop__search-sidebar.page__search-sidebar.is-search-accordion-closed {
    max-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-width: 0;
    overflow: hidden;
  }

  .shop__search-sidebar.page__search-sidebar.is-search-accordion-open {
    max-height: none;
    overflow: visible;
  }
}


/* Gold listing: blog / coupon / event three equal columns */
.gold__listing-section .gold__shop-bottom {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gold__listing-section .gold__blog {
  grid-column: auto;
  grid-row: auto;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  height: auto;
  min-height: 210px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid #d8e6ff;
  border-radius: 8px;
  padding: 10px 12px 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: none;
}

.gold__listing-section .gold__blog-head {
  display: block;
  margin: -10px -12px 6px;
  padding: 0;
}

.gold__listing-section .gold__blog-head h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  min-height: 54px;
  margin: 0;
  border-radius: 8px 8px 0 0;
  padding: 13px 18px;
  color: #174ee8;
  background: #edf5ff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.2;
}

.gold__listing-section .gold__blog-update {
  flex: 0 0 auto;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.gold__listing-section .gold__blog-update .gold__blog-update-text {
  margin-right: 4px;
  color: #111;
}

.gold__listing-section .gold__blog-lead {
  margin: 0 0 6px;
  color: #555;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.gold__listing-section .gold__blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  min-width: 0;
  min-height: 0;
}

.gold__listing-section .gold__blog-grid article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 12px;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 8px;
  min-width: 0;
  min-height: 56px;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  padding: 6px;
  background: #fff;
}

.gold__listing-section .gold__blog-grid i {
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 5px;
}

.gold__listing-section .gold__blog-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gold__listing-section .gold__blog-grid strong {
  min-width: 0;
  overflow: hidden;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gold__listing-section .gold__blog-grid time {
  grid-column: 2;
  color: #444;
  font-size: 11px;
  font-weight: 800;
}

.gold__listing-section .gold__blog-grid b {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: #174ee8;
  font-size: 22px;
  line-height: 1;
}

.gold__listing-section .gold__blog-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-top: 6px;
  border: 1px solid #174ee8;
  border-radius: 4px;
  color: #174ee8;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-bottom {
    grid-template-columns: 1fr;
  }
}

/* Adjust gold listing spacing: start blog/coupon/event directly beside the left image */
@media (min-width: 1101px) {
  .gold__listing-section .gold__shop-card {
    grid-template-columns: 220px repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto;
    column-gap: 8px;
  }

  .gold__listing-section .gold__shop-photo {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 220px;
    max-width: 100%;
  }

  .gold__listing-section .gold__photo-caption {
    grid-column: 2 / 5;
    grid-row: 2;
  }

  .gold__listing-section .gold__shop-content {
    grid-column: 1 / 5;
    grid-row: 4;
    height: auto;
    padding: 0;
  }

  .gold__listing-section .gold__shop-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    flex: 0 0 auto;
  }

  .gold__listing-section .gold__shop-bottom {
    grid-column: 2 / 5;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
}

/* Gold shop content: match platinum banner design */
.gold__listing-section .gold__shop-content {
  width: 100%;
  max-width: 100%;
  margin: 10px 0 0;
  padding: 0;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats {
    grid-template-columns: 1fr;
  }

  .gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stats-item,
  .gold__listing-section .gold__shop-stats > .gold__shop-stats-item {
    width: 100%;
    justify-content: space-between;
  }
}


/* gold shop caption position fix 2026-06-15 */
.gold__listing-section .gold__shop-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
}

.gold__listing-section .gold__shop-actions .gold__photo-caption {
  grid-column: 1 / -1;
  grid-row: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 2px 2px;
  border: 0;
  border-radius: 0;
  color: #111;
  background: transparent;
  box-shadow: none;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  box-sizing: border-box;
}

.gold__listing-section .gold__shop-actions .gold__photo-caption::before,
.gold__listing-section .gold__shop-actions .gold__photo-caption::after {
  content: none;
  display: none;
}

.gold__listing-section .gold__shop-actions a,
.gold__listing-section .gold__shop-actions button {
  width: 100%;
  min-width: 0;
}

/* gold shop layout adjustment 2026-06-15 */
.gold__listing-section .gold__shop-card {
  border: 0;
  border-bottom: 1px solid #ffd3e4;
  border-radius: 0;
  box-shadow: none;
  background: #fff;
  padding: 14px 0 16px;
}

.gold__listing-section .gold__shop-card:last-child {
  border-bottom: 0;
}

@media (min-width: 1101px) {
  .gold__listing-section .gold__shop-card {
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 12px;
    row-gap: 8px;
  }

  .gold__listing-section .gold__shop-card h2 {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 0;
  }

  .gold__listing-section .gold__shop-photo {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 220px;
    max-width: 100%;
  }

  .gold__listing-section .gold__shop-bottom {
    grid-column: 2;
    grid-row: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    height: auto;
    min-height: 0;
    align-self: start;
  }

  .gold__listing-section .gold__shop-content {
    grid-column: 2;
    grid-row: 3;
    height: auto;
    margin: 0;
    padding: 0;
    align-self: start;
  }

  .gold__listing-section .gold__blog,
  .gold__listing-section .gold__coupon,
  .gold__listing-section .gold__event {
    min-height: 148px;
    height: auto;
    padding: 8px 9px;
  }

  .gold__listing-section .gold__blog-head {
    margin: -8px -9px 5px;
  }

  .gold__listing-section .gold__blog-head h3 {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 15px;
  }

  .gold__listing-section .gold__blog-lead {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .gold__listing-section .gold__blog-grid {
    gap: 4px;
  }

  .gold__listing-section .gold__blog-grid article {
    grid-template-columns: 38px minmax(0, 1fr) 10px;
    min-height: 44px;
    padding: 4px;
    border-radius: 0;
  }

  .gold__listing-section .gold__blog-grid i {
    width: 36px;
    height: 36px;
  }

  .gold__listing-section .gold__blog-grid strong {
    font-size: 11px;
  }

  .gold__listing-section .gold__blog-link {
    min-height: 24px;
    margin-top: 4px;
    font-size: 11px;
  }

  .gold__listing-section .gold__coupon,
  .gold__listing-section .gold__event {
    grid-template-rows: auto minmax(0, 1fr);
  }

  .gold__listing-section .gold__coupon h3,
  .gold__listing-section .gold__event h3 {
    margin-bottom: 6px;
    font-size: 14px;
  }

  .gold__listing-section .gold__coupon>.gold__coupon-item {
    gap: 5px;
  }

  .gold__listing-section .gold__coupon p {
    padding: 6px;
    font-size: 11px;
    line-height: 1.2;
  }

  .gold__listing-section .gold__coupon p strong {
    margin-top: 3px;
    font-size: 17px;
  }

  .gold__listing-section .gold__coupon>small {
    margin-top: 5px;
    font-size: 10px;
  }

  .gold__listing-section .gold__event>.gold__event-item {
    align-content: start;
  }

  .gold__listing-section .gold__event strong,
  .gold__listing-section .gold__event b {
    font-size: 12px;
  }

  .gold__listing-section .gold__event em {
    font-size: 18px;
  }

  .gold__listing-section .gold__event small {
    margin-top: 5px;
    font-size: 10px;
  }

  .gold__listing-section .gold__event-box {
    width: min(92px, 100%);
  }
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-card {
    padding: 12px 0 14px;
  }
}


/* gold caption above blog 2026-06-15 */
.gold__listing-section .gold__blog > .gold__photo-caption {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 5px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.gold__listing-section .gold__blog > .gold__photo-caption::before,
.gold__listing-section .gold__blog > .gold__photo-caption::after {
  content: none;
  display: none;
}

.gold__listing-section .gold__shop-actions .gold__photo-caption {
  display: none;
}

/* gold caption above shop-bottom fix 2026-06-15 */
.gold__listing-section .gold__shop-card > .gold__photo-caption {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.gold__listing-section .gold__shop-card > .gold__photo-caption::before,
.gold__listing-section .gold__shop-card > .gold__photo-caption::after {
  content: none;
  display: none;
}

@media (min-width: 1101px) {
  .gold__listing-section .gold__shop-card {
    grid-template-rows: auto 24px auto auto;
  }

  .gold__listing-section .gold__shop-photo {
    grid-row: 2 / 5;
  }

  .gold__listing-section .gold__shop-card > .gold__photo-caption {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0 0 2px;
  }

  .gold__listing-section .gold__shop-bottom {
    grid-column: 2;
    grid-row: 3;
  }

  .gold__listing-section .gold__shop-content {
    grid-column: 2;
    grid-row: 4;
  }
}

/* restore gold card outer frame 2026-06-15 */
.gold__listing-section .gold__shop-card {
  border: 1px solid #d39a00;
  border-radius: 0;
  background: linear-gradient(180deg, #fff 0%, #fffdf8 100%);
  box-shadow: 0 8px 22px rgba(184, 129, 0, .10);
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-card {
    border: 1px solid #d39a00;
    border-radius: 0;
  }
}

/* gold card rounded frame restore 2026-06-15 */
.gold__listing-section .gold__shop-card {
  border: 1px solid #d39a00;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-card {
    border: 1px solid #d39a00;
    border-radius: 8px;
    overflow: hidden;
  }
}

/* gold card pink frame / content full-width adjustment 2026-06-15 */
.gold__listing-section .gold__shop-card {
  border: 1px solid #ffd6e6;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(233, 20, 99, .08);
  overflow: hidden;
  box-sizing: border-box;
}

.gold__listing-section .gold__shop-card h2 {
  margin: -14px -14px 6px;
  border-radius: 8px 8px 0 0;
}

.gold__listing-section .gold__blog-grid article {
  border-width: 0 0 1px;
  border-color: #eeeeee;
  border-style: solid;
  border-radius: 0;
  padding: 5px 0;
}

.gold__listing-section .gold__blog-grid article:last-child {
  border-bottom: 0;
}

/* 【意図的にサンプルと異なる部分】店舗一覧ゴールド枠のブログで、タイトルと日付の縦の間隔を
   詰める (ユーザー要望)。この枠の間隔はプラチナ枠と成り立ちが異なり、2行にまたがるサムネイル
   (46px) に引き伸ばされた行の余白が `align-items: center` によって行の上下へ均等配分された
   結果である (row-gap は未指定)。そのため row-gap を与えるだけでは詰まらないので、
   タイトルを行末・日付を行頭に寄せて余白を上下の外側へ逃がし、2要素の間隔を row-gap で
   直接制御する。 */
.gold__listing-section .gold__blog-grid article {
  row-gap: 3px;
}

.gold__listing-section .gold__blog-grid strong {
  align-self: end;
}

.gold__listing-section .gold__blog-grid time {
  align-self: start;
}

.gold__listing-section .gold__blog-head h3 {
  height: 44px;
  min-height: 44px;
  box-sizing: border-box;
  padding: 0 14px;
  font-size: 19px;
}

.gold__listing-section .gold__coupon h3,
.gold__listing-section .gold__event h3 {
  height: 44px;
  min-height: 44px;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 19px;
}

.gold__listing-section .gold__blog-link {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@media (min-width: 1101px) {
  .gold__listing-section .gold__shop-card {
    grid-template-columns: 220px minmax(0, 1fr);
    grid-template-rows: auto 24px auto auto;
    column-gap: 12px;
    row-gap: 8px;
  }

  .gold__listing-section .gold__shop-card h2 {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gold__listing-section .gold__shop-photo {
    grid-column: 1;
    grid-row: 2 / 4;
    width: 220px;
    max-width: 100%;
  }

  .gold__listing-section .gold__shop-card > .gold__photo-caption {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin: 0 0 12px;
  }

  .gold__listing-section .gold__shop-bottom {
    grid-column: 2;
    grid-row: 3;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    align-self: start;
    height: auto;
    min-height: 0;
  }

  .gold__listing-section .gold__shop-content {
    grid-column: 1 / -1;
    grid-row: 4;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
    max-width: 100%;
  }

  .gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stats-item,
  .gold__listing-section .gold__shop-stats > .gold__shop-stats-item {
    flex: 0 0 auto;
    width: auto;
    min-width: max-content;
  }
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-card {
    border: 1px solid #ffd6e6;
    border-radius: 8px;
    padding: 12px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(233, 20, 99, .08);
  }

  .gold__listing-section .gold__shop-card h2 {
    margin: -12px -12px 10px;
    border-radius: 8px 8px 0 0;
  }
}

/* gold status/caption sync with platinum design 2026-06-15 */
.page--shop-list .gold__listing-section .gold__shop-card > .gold__photo-caption {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border: 0;
  border-radius: 6px;
  padding: 4px 12px 2px;
  color: #111;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow: none;
}

/* gold shop stats: 4 items in one row, natural width */
.gold__listing-section .gold__shop-content .gold__shop-stats,
.gold__listing-section .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-stats {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stats-item,
.gold__listing-section .gold__shop-stats > .gold__shop-stats-item,
.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stats-item,
.page--shop-list .gold__listing-section .gold__shop-stats > .gold__shop-stats-item {
  width: auto;
  flex: 1 1 auto;
  min-width: 0;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  overflow: hidden;
}

.gold__listing-section .gold__shop-stat--hours,
.gold__listing-section .gold__shop-stat--price,
.page--shop-list .gold__listing-section .gold__shop-stat--hours,
.page--shop-list .gold__listing-section .gold__shop-stat--price {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 3px 8px;
  align-items: center;
  justify-content: flex-start;
}

.gold__listing-section .gold__shop-stat-icon,
.page--shop-list .gold__listing-section .gold__shop-stat-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  margin: 0;
}

.gold__listing-section .gold__shop-stat--hours .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--price .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--hours .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--price .gold__shop-stat-label {
  grid-column: 2;
  grid-row: 1;
  color: #111;
  font-size: 12px;
  font-weight: 900;
}

.gold__listing-section .gold__shop-stat--hours .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--price .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--hours .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--price .gold__shop-stat-value {
  grid-column: 2;
  grid-row: 2;
  color: var(--color-primary);
  font-size: 21px;
  font-weight: 900;
}

.gold__listing-section .gold__shop-stat--now,
.gold__listing-section .gold__shop-stat--attendance,
.page--shop-list .gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance {
  display: grid;
  grid-template-columns: minmax(42px, max-content) minmax(26px, max-content) minmax(72px, max-content);
  align-items: center;
  column-gap: 4px;
  padding: 6px 8px 6px 16px;
}

.gold__listing-section .gold__shop-stat--now::after,
.gold__listing-section .gold__shop-stat--attendance::after,
.page--shop-list .gold__listing-section .gold__shop-stat--now::after,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 6px 0 0 6px;
}

.gold__listing-section .gold__shop-stat--now::after,
.page--shop-list .gold__listing-section .gold__shop-stat--now::after {
  background: var(--color-primary);
}

.gold__listing-section .gold__shop-stat--attendance,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance {
  border-color: #ffc29c;
  background: linear-gradient(180deg, #fff, #fff9f4);
}

.gold__listing-section .gold__shop-stat--attendance::after,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance::after {
  background: #ff7a1b;
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-label {
  color: #111;
}

.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link {
  color: var(--premium-orange);
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-link {
  color: var(--color-primary);
}

.gold__listing-section .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat-unit,
.gold__listing-section .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat-unit,
.page--shop-list .gold__listing-section .gold__shop-stat-link {
  max-width: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gold__listing-section .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat-unit,
.page--shop-list .gold__listing-section .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat-unit {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.gold__listing-section .gold__shop-stat--hours,
.page--shop-list .gold__listing-section .gold__shop-stat--hours {
  flex: 0 1 176px;
}

.gold__listing-section .gold__shop-stat--price,
.page--shop-list .gold__listing-section .gold__shop-stat--price {
  flex: 0 1 166px;
}

.gold__listing-section .gold__shop-stat--now,
.gold__listing-section .gold__shop-stat--attendance,
.page--shop-list .gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance {
  min-width: 0;
}

.gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--now {
  flex: 1 1 230px;
}

.gold__listing-section .gold__shop-stat--attendance,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance {
  flex: 1.35 1 270px;
}

.gold__listing-section .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat-link {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  align-self: center;
  min-width: max-content;
  max-width: none;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  font-size: 10px;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label {
  grid-column: 1;
  font-size: 12px;
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value {
  grid-column: 2;
  font-size: 20px;
}

.gold__listing-section .gold__shop-stat-unit,
.page--shop-list .gold__listing-section .gold__shop-stat-unit {
  font-size: .8em;
}

/* 2026-06-16 fix: gold shop stats fill the right area without equal item widths */
.gold__listing-section .gold__shop-content .gold__shop-stats,
.gold__listing-section .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stat,
.gold__listing-section .gold__shop-stats > .gold__shop-stat,
.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stat,
.page--shop-list .gold__listing-section .gold__shop-stats > .gold__shop-stat,
.gold__listing-section .gold__shop-stat--hours,
.gold__listing-section .gold__shop-stat--price,
.gold__listing-section .gold__shop-stat--now,
.gold__listing-section .gold__shop-stat--attendance,
.page--shop-list .gold__listing-section .gold__shop-stat--hours,
.page--shop-list .gold__listing-section .gold__shop-stat--price,
.page--shop-list .gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
  width: auto;
  min-width: 0;
  max-width: max-content;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-stats {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* 2026-06-16 adjust: fixed 10px gaps; keep hours/price compact; widen now/attendance */
.gold__listing-section .gold__shop-content .gold__shop-stats,
.gold__listing-section .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-stats {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}

.gold__listing-section .gold__shop-stat--hours,
.gold__listing-section .gold__shop-stat--price,
.page--shop-list .gold__listing-section .gold__shop-stat--hours,
.page--shop-list .gold__listing-section .gold__shop-stat--price {
  flex: 0 0 auto;
  width: auto;
  min-width: max-content;
  max-width: max-content;
}

.gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--now {
  flex: 1 1 150px;
  width: auto;
  min-width: 150px;
  max-width: none;
}

.gold__listing-section .gold__shop-stat--attendance,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance {
  flex: 1.2 1 170px;
  width: auto;
  min-width: 170px;
  max-width: none;
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label {
  font-size: 14px;
  line-height: 1.2;
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value {
  font-size: 24px;
  line-height: 1;
}

.gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link {
  font-size: 12px;
  min-height: 26px;
  padding: 0 10px;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-stats {
    flex-wrap: wrap;
    gap: 10px;
  }

  .gold__listing-section .gold__shop-stat--now,
  .gold__listing-section .gold__shop-stat--attendance,
  .page--shop-list .gold__listing-section .gold__shop-stat--now,
  .page--shop-list .gold__listing-section .gold__shop-stat--attendance {
    flex: 1 1 calc(50% - 5px);
    min-width: 0;
  }
}

/* 2026-06-16 fix: gold stat layout - 10px gaps, compact hours/price, large platinum-like action cards fill right */
.page--shop-list .gold__listing-section .gold__shop-content,
.gold__listing-section .gold__shop-content {
  width: 100%;
  max-width: none;
  min-width: 0;
}

.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-stats,
.gold__listing-section .gold__shop-content .gold__shop-stats,
.gold__listing-section .gold__shop-stats {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr) minmax(0, 1.12fr);
  gap: 10px;
  width: 100%;
  max-width: none;
  align-items: stretch;
  justify-content: stretch;
}

.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stat,
.page--shop-list .gold__listing-section .gold__shop-stats > .gold__shop-stat,
.gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stat,
.gold__listing-section .gold__shop-stats > .gold__shop-stat {
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 58px;
  min-height: 58px;
  max-height: 58px;
  box-sizing: border-box;
}

.page--shop-list .gold__listing-section .gold__shop-stat--hours,
.page--shop-list .gold__listing-section .gold__shop-stat--price,
.gold__listing-section .gold__shop-stat--hours,
.gold__listing-section .gold__shop-stat--price {
  width: max-content;
  min-width: max-content;
  max-width: max-content;
  padding: 7px 10px;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance,
.gold__listing-section .gold__shop-stat--now,
.gold__listing-section .gold__shop-stat--attendance {
  display: grid;
  grid-template-columns: max-content max-content minmax(max-content, 1fr);
  column-gap: 7px;
  align-items: center;
  justify-content: stretch;
  border: 0;
  border-radius: 6px;
  padding: 0 12px 0 14px;
  box-shadow: none;
  overflow: hidden;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now,
.gold__listing-section .gold__shop-stat--now {
  background: linear-gradient(180deg, #ff4f96, #f50057);
}

.page--shop-list .gold__listing-section .gold__shop-stat--attendance,
.gold__listing-section .gold__shop-stat--attendance {
  background: linear-gradient(180deg, #ff9a3c, #ff6d14);
}

.page--shop-list .gold__listing-section .gold__shop-stat--now::after,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance::after,
.gold__listing-section .gold__shop-stat--now::after,
.gold__listing-section .gold__shop-stat--attendance::after {
  content: none;
  display: none;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-unit,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-unit,
.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-unit,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-unit,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link {
  color: #fff;
  text-shadow: none;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label {
  grid-column: 1;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value {
  grid-column: 2;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 30px;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255,255,255,.16);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 1100px) {
  .page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-stats,
  .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page--shop-list .gold__listing-section .gold__shop-stat--hours,
  .page--shop-list .gold__listing-section .gold__shop-stat--price,
  .gold__listing-section .gold__shop-stat--hours,
  .gold__listing-section .gold__shop-stat--price {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

/* 2026-06-16 final: gold action stats match platinum cards, no right-side gap */
.page--shop-list .gold__listing-section .gold__shop-content,
.gold__listing-section .gold__shop-content {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-stats,
.gold__listing-section .gold__shop-content .gold__shop-stats,
.gold__listing-section .gold__shop-stats {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 10px;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stat,
.page--shop-list .gold__listing-section .gold__shop-stats > .gold__shop-stat,
.gold__listing-section .gold__shop-content .gold__shop-stats > .gold__shop-stat,
.gold__listing-section .gold__shop-stats > .gold__shop-stat {
  position: relative;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  box-sizing: border-box;
  overflow: hidden;
}

.page--shop-list .gold__listing-section .gold__shop-stat--hours,
.page--shop-list .gold__listing-section .gold__shop-stat--price,
.gold__listing-section .gold__shop-stat--hours,
.gold__listing-section .gold__shop-stat--price {
  width: max-content;
  min-width: max-content;
  max-width: max-content;
  padding: 6px 12px;
  border: 1px solid #ffd0e2;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, var(--premium-pink-soft));
}

.page--shop-list .gold__listing-section .gold__shop-stat--now,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance,
.gold__listing-section .gold__shop-stat--now,
.gold__listing-section .gold__shop-stat--attendance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: none;
  border: 1px solid #ffd0e2;
  border-radius: 6px;
  padding: 6px 12px 6px 16px;
  background: linear-gradient(180deg, #fff, var(--premium-pink-soft));
  box-shadow: none;
}

.page--shop-list .gold__listing-section .gold__shop-stat--attendance,
.gold__listing-section .gold__shop-stat--attendance {
  border-color: #ffc29c;
  background: linear-gradient(180deg, #fff, #fff9f4);
}

.page--shop-list .gold__listing-section .gold__shop-stat--now::after,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance::after,
.gold__listing-section .gold__shop-stat--now::after,
.gold__listing-section .gold__shop-stat--attendance::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 6px 0 0 6px;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now::after,
.gold__listing-section .gold__shop-stat--now::after {
  background: var(--color-primary);
}

.page--shop-list .gold__listing-section .gold__shop-stat--attendance::after,
.gold__listing-section .gold__shop-stat--attendance::after {
  background: #ff7a1b;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-label {
  flex: 0 0 auto;
  color: #111;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-label {
  flex: 0 0 auto;
  color: var(--premium-orange);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-value {
  flex: 0 0 auto;
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-value {
  flex: 0 0 auto;
  color: var(--premium-orange);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-unit,
.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-unit,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-unit,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-unit {
  color: inherit;
  font-size: 1em;
  font-weight: inherit;
  line-height: 1;
}

.page--shop-list .gold__listing-section .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat-link {
  flex: 0 0 auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: auto;
  min-width: max-content;
  min-height: 32px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 11px;
  background: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
}

.page--shop-list .gold__listing-section .gold__shop-stat--now .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--now .gold__shop-stat-link {
  color: var(--color-primary);
}

.page--shop-list .gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link,
.gold__listing-section .gold__shop-stat--attendance .gold__shop-stat-link {
  color: var(--premium-orange);
}

@media (max-width: 1100px) {
  .page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-stats,
  .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .page--shop-list .gold__listing-section .gold__shop-stat--hours,
  .page--shop-list .gold__listing-section .gold__shop-stat--price,
  .gold__listing-section .gold__shop-stat--hours,
  .gold__listing-section .gold__shop-stat--price {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

/* 2026-06-16: Gold status - copy platinum banner markup/design */
.page--shop-list .gold__listing-section .gold__shop-stats,
.page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
.gold__listing-section .gold__shop-stats,
.gold__listing-section .gold__shop-content .gold__shop-stats {
  display: grid;
  grid-template-columns: max-content max-content minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card,
.gold__listing-section .gold__shop-stats > .premium__banner-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-width: 0;
  max-width: none;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  border: 1px solid #ffd0e2;
  border-radius: 6px;
  padding: 6px 12px 6px 16px;
  background: linear-gradient(180deg, #fff, var(--premium-pink-soft));
  box-shadow: none;
  overflow: hidden;
  box-sizing: border-box;
  color: var(--color-primary);
}

.page--shop-list .gold__listing-section .gold__shop-stats > .status--today,
.gold__listing-section .gold__shop-stats > .status--today {
  border-color: #ffc29c;
  background: linear-gradient(180deg, #fff, #fff9f4);
  color: var(--premium-orange);
}

.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card::before,
.gold__listing-section .gold__shop-stats > .premium__banner-card::before {
  content: none;
  display: none;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime::after,
.page--shop-list .gold__listing-section .gold__shop-stats > .status--today::after,
.gold__listing-section .gold__shop-stats > .banner--sokuhime::after,
.gold__listing-section .gold__shop-stats > .status--today::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  border-radius: 6px 0 0 6px;
  display: block;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime::after,
.gold__listing-section .gold__shop-stats > .banner--sokuhime::after {
  background: var(--color-primary);
}

.page--shop-list .gold__listing-section .gold__shop-stats > .status--today::after,
.gold__listing-section .gold__shop-stats > .status--today::after {
  background: #ff7a1b;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  width: auto;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text::before,
.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text::after,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text::before,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text::after {
  content: none;
  display: none;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text .premium__banner-text-text,
.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text strong,
.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text small,
.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text em,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text .premium__banner-text-text,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text strong,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text small,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text em {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  line-height: 1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  vertical-align: middle;
  text-shadow: none;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text .premium__banner-text-text,
.gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text .premium__banner-text-text {
  color: #111;
  font-size: 15px;
  font-weight: 900;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .status--today .premium__banner-text .premium__banner-text-text,
.gold__listing-section .gold__shop-stats > .status--today .premium__banner-text .premium__banner-text-text {
  color: var(--premium-orange);
  font-size: 15px;
  font-weight: 900;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text strong,
.page--shop-list .gold__listing-section .gold__shop-stats > .status--today .premium__banner-text strong,
.gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text strong,
.gold__listing-section .gold__shop-stats > .status--today .premium__banner-text strong {
  font-size: 28px;
  font-weight: 900;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text strong,
.gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text strong {
  color: var(--color-primary);
}

.page--shop-list .gold__listing-section .gold__shop-stats > .status--today .premium__banner-text strong,
.gold__listing-section .gold__shop-stats > .status--today .premium__banner-text strong {
  color: var(--premium-orange);
}

.page--shop-list .gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text strong small,
.gold__listing-section .gold__shop-stats > .premium__banner-card .premium__banner-text strong small {
  color: inherit;
  font-size: 1em;
  font-weight: inherit;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text em,
.gold__listing-section .gold__shop-stats > .banner--sokuhime .premium__banner-text em {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime > a,
.page--shop-list .gold__listing-section .gold__shop-stats > .status--today > a,
.gold__listing-section .gold__shop-stats > .banner--sokuhime > a,
.gold__listing-section .gold__shop-stats > .status--today > a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  min-height: 32px;
  width: auto;
  height: auto;
  margin: 0;
  border: 1px solid currentColor;
  border-radius: 4px;
  padding: 0 11px;
  background: #fff;
  box-shadow: none;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
}

.page--shop-list .gold__listing-section .gold__shop-stats > .banner--sokuhime > a,
.gold__listing-section .gold__shop-stats > .banner--sokuhime > a {
  color: var(--color-primary);
}

.page--shop-list .gold__listing-section .gold__shop-stats > .status--today > a,
.gold__listing-section .gold__shop-stats > .status--today > a {
  color: var(--premium-orange);
}

@media (max-width: 1100px) {
  .page--shop-list .gold__listing-section .gold__shop-stats,
  .page--shop-list .gold__listing-section .gold__shop-content .gold__shop-stats,
  .gold__listing-section .gold__shop-stats,
  .gold__listing-section .gold__shop-content .gold__shop-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* gold shop card separator line fix 2026-06-15 */
.page--shop-list .gold__listing-section .gold__shop-card,
.gold__listing-section .gold__shop-card {
  position: relative;
  border-bottom: 1px solid #ffcfe1;
  padding-bottom: 18px;
  margin-bottom: 14px;
  overflow: visible;
}

.page--shop-list .gold__listing-section .gold__shop-card::after,
.gold__listing-section .gold__shop-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  display: block;
  height: 1px;
  background: #ffcfe1;
  z-index: 5;
}

.page--shop-list .gold__listing-section .gold__shop-card:last-child,
.gold__listing-section .gold__shop-card:last-child {
  border-bottom: 1px solid #ffcfe1;
}

/* regular frame banner image size: smaller square */
.regular__listing-section .regular__shop-card {
  --regular-shop-photo-size: 160px;
  --regular-shop-actions-height: 24px;
  --regular-shop-caption-height: 20px;
  --regular-shop-main-height: calc(var(--regular-shop-photo-size) + 8px + var(--regular-shop-actions-height));
  grid-template-columns: 160px 190px minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: auto var(--regular-shop-caption-height) calc(var(--regular-shop-main-height) - var(--regular-shop-caption-height) - 8px);
  row-gap: 6px;
}

.regular__listing-section .regular__shop-photo,
.regular__listing-section .regular__shop-content {
  height: var(--regular-shop-main-height);
}

.regular__listing-section .regular__shop-photo img {
  width: var(--regular-shop-photo-size);
  height: var(--regular-shop-photo-size);
  max-width: 100%;
}

.regular__listing-section .regular__shop-actions a,
.regular__listing-section .regular__shop-actions button {
  min-height: var(--regular-shop-actions-height);
}

.regular__listing-section .regular__photo-caption {
  height: var(--regular-shop-caption-height);
  box-sizing: border-box;
  padding-top: 3px;
  padding-bottom: 1px;
}

.regular__listing-section .regular__shop-bottom {
  align-self: stretch;
  height: 100%;
}

.regular__listing-section .regular__coupon,
.regular__listing-section .regular__event {
  height: 100%;
  min-height: 0;
}

.regular__listing-section .regular__event h3 {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 16px;
}

.regular__listing-section .regular__event>.regular__event-item {
  align-content: stretch;
  gap: 4px;
  min-height: 0;
  padding: 8px;
}

.regular__listing-section .regular__event strong,
.regular__listing-section .regular__event b {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.08;
}

.regular__listing-section .regular__event em {
  font-size: 18px;
}

.regular__listing-section .regular__event .event__period {
  min-height: 32px;
  margin-top: 2px;
  font-size: 12px;
}

.regular__listing-section .regular__event .event__period-label {
  flex-basis: 44px;
  font-size: 12px;
}

.regular__listing-section .regular__event .event__period-date {
  font-size: 11px;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(1),
.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(2) {
  grid-template-columns: 20px auto minmax(0, 1fr);
  grid-template-rows: auto;
  gap: 4px 6px;
  align-content: center;
  padding: 6px 7px;
}

.regular__listing-section .regular__shop-stats div:nth-child(1) span,
.regular__listing-section .regular__shop-stats div:nth-child(2) span {
  grid-column: 2;
  grid-row: 1;
  font-size: 12px;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(1) strong,
.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(2) strong {
  grid-column: 3;
  grid-row: 1;
  font-size: 14px;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(3),
.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(4) {
  padding: 6px 7px;
}

.regular__listing-section .regular__shop-stats div:nth-child(3) span,
.regular__listing-section .regular__shop-stats div:nth-child(4) span {
  font-size: 12px;
}

.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(3) strong,
.regular__listing-section .regular__shop-stats .regular__shop-stats-item:nth-child(4) strong {
  font-size: 20px;
}

.regular__listing-section .regular__shop-stats small {
  font-size: 10px;
}

.regular__listing-section .regular__coupon>small {
  margin-top: 4px;
}

.regular__listing-section .regular__shop-bottom {
  gap: 6px;
}

.regular__listing-section .regular__coupon,
.regular__listing-section .regular__event {
  grid-template-rows: auto minmax(0, 1fr);
  padding: 6px 8px;
}

.regular__listing-section .regular__coupon {
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.regular__listing-section .regular__coupon h3,
.regular__listing-section .regular__event h3 {
  min-height: 28px;
  margin: -6px -8px 4px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 1.1;
}

.regular__listing-section .regular__coupon>.regular__coupon-item {
  height: 100%;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-self: stretch;
  gap: 2px;
}

.regular__listing-section .regular__coupon p {
  height: 100%;
  min-height: 0;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 13px;
  line-height: 1.05;
}

.regular__listing-section .regular__coupon .regular__coupon-text {
  padding: 7px 10px;
  font-size: 12px;
}

.regular__listing-section .regular__coupon p strong {
  font-size: 25px;
}

.regular__listing-section .regular__coupon strong small {
  font-size: 11px;
}

@media (max-width: 1100px) {
  .regular__listing-section .regular__coupon p {
    min-height: 68px;
  }
}

.regular__listing-section .regular__coupon>small {
  padding: 0;
  font-size: 9px;
  line-height: 1.1;
}

.regular__listing-section .regular__event>.regular__event-item {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "title" "price" "period";
  align-content: center;
  gap: 6px;
  padding: 8px;
}

.regular__listing-section .regular__event strong br,
.regular__listing-section .regular__event b br {
  display: none;
}

.regular__listing-section .regular__event strong,
.regular__listing-section .regular__event b {
  font-size: 12px;
  line-height: 1.15;
  white-space: nowrap;
}

.regular__listing-section .regular__event em {
  font-size: 17px;
}

.regular__listing-section .regular__event .event__period {
  min-height: 28px;
  margin-top: 0;
  font-size: 10px;
}

.regular__listing-section .regular__event .event__period-label {
  flex-basis: 40px;
  font-size: 10px;
}

.regular__listing-section .regular__event .event__period-date {
  font-size: 10px;
}

.cast__other .cast-card__badge--attendance,
.cast__other .cast-card__badge--blog {
  display: none;
}

.cast__other .cast-card__badge--new,
.page--sokuhime .cast-card__badge--attendance,
.page--sokuhime .cast-card__badge--blog,
.page--attendance .cast-card__badge--attendance,
.page--attendance .cast-card__badge--blog {
  display: none;
}

.cast__other .cast-card__badge--new,
.page--cast-list .cast-card__badge--new,
.page--sokuhime .cast-card__badge--new,
.page--attendance .cast-card__badge--new {
  top: auto;
  right: 4px;
  bottom: 4px;
  left: auto;
  display: block;
  height: calc(var(--corner-icon-size, clamp(32px, 24%, 52px)) * 0.85);
  max-width: calc(50% - 8px);
  transform: none;
}

.cast__other .cast-card__badge--now,
.page--sokuhime .cast-card__badge--now,
.page--attendance .cast-card__badge--now {
  top: 4px;
  right: auto;
  left: 4px;
  height: calc(var(--corner-icon-size, clamp(32px, 24%, 52px)) * 0.85);
}

.cast__other .cast-card__info,
.page--sokuhime .cast-card__info,
.page--attendance .cast-card__info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3px 8px;
  padding-top: 0;
}

.cast-card__status-badges {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  min-width: 0;
}

.cast-card__status-badges:empty {
  display: none;
}

.page--shop-now .cast-card__status-badges,
.page--shop-schedule .cast-card__status-badges,
.page--cast-list .cast-card__status-badges {
  min-height: 20px;
}

.page--shop-now .cast-card__status-badges:empty,
.page--shop-schedule .cast-card__status-badges:empty,
.page--cast-list .cast-card__status-badges:empty {
  display: grid;
}

.cast-card__status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  min-height: 20px;
  border-radius: 3px;
  padding: 2px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28);
  box-sizing: border-box;
}

.cast-card__status-pill b {
  display: block;
  min-width: 0;
  overflow: hidden;
  font: inherit;
  text-overflow: ellipsis;
}

.cast-card__status-pill--attendance {
  background: linear-gradient(180deg, #78d42a 0%, #4fad17 100%);
}

.cast-card__status-pill--blog {
  background: linear-gradient(180deg, #087cf0 0%, #005fc7 100%);
}

.page--sokuhime .cast-card__status-pill--blog,
.page--attendance .cast-card__status-pill--blog,
.page--shop-now .cast-card__status-pill--blog,
.page--shop-schedule .cast-card__status-pill--blog {
  grid-column: 2;
}

.cast-card__status-pill i {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 9px;
  height: 10px;
  color: #fff;
  font-size: 9px;
  font-style: normal;
  line-height: 1;
}

.cast-card__status-pill--attendance i {
  width: 9px;
  height: 9px;
  border: 1px solid #fff;
  border-top-width: 3px;
  border-radius: 3px;
  box-sizing: border-box;
}

.cast-card__status-pill--attendance i::before,
.cast-card__status-pill--attendance i::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 2px;
  height: 4px;
  border-radius: 999px;
  background: #fff;
}

.cast-card__status-pill--attendance i::before {
  left: 2px;
}

.cast-card__status-pill--attendance i::after {
  right: 2px;
}

@media (max-width: 1100px) {
  .regular__listing-section .regular__shop-card {
    --regular-shop-main-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  .regular__listing-section .regular__shop-card h2,
  .regular__listing-section .regular__shop-photo,
  .regular__listing-section .regular__photo-caption,
  .regular__listing-section .regular__shop-content,
  .regular__listing-section .regular__shop-bottom {
    grid-column: 1 / -1;
    grid-row: auto;
    width: 100%;
    max-width: 100%;
  }

  .regular__listing-section .regular__shop-photo,
  .regular__listing-section .regular__shop-content,
  .regular__listing-section .regular__shop-bottom,
  .regular__listing-section .regular__coupon,
  .regular__listing-section .regular__event {
    height: auto;
  }

  .regular__listing-section .regular__shop-photo img {
    width: min(100%, var(--regular-shop-photo-size));
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .regular__listing-section .regular__photo-caption {
    height: auto;
    white-space: normal;
  }

  .regular__listing-section .regular__shop-stats {
    grid-template-rows: none;
  }

  .regular__listing-section .regular__shop-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .regular__listing-section .regular__shop-card {
    padding: 10px;
  }

  .regular__listing-section .regular__shop-card h2 {
    margin: -10px -10px 8px;
    padding: 8px 10px;
    font-size: 18px;
  }

  .regular__listing-section .regular__shop-kicker {
    position: static;
    display: inline-flex;
    max-width: 100%;
    margin-top: 6px;
    white-space: normal;
    transform: none;
  }

  .regular__listing-section .regular__shop-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .regular__listing-section .regular__coupon p,
  .regular__listing-section .regular__event strong,
  .regular__listing-section .regular__event b,
  .regular__listing-section .regular__event .event__period-date {
    white-space: normal;
  }

  .cast-card__status-pill {
    font-size: 9px;
  }
}

@media (max-width: 1100px) {
  .page--shop-list,
  .page--shop-list * {
    min-width: 0;
    box-sizing: border-box;
  }

  .page--shop-list img {
    max-width: 100%;
  }

  .page--shop-list .layout,
  .page--shop-list .shop__list-main,
  .page--shop-list .shop__list-grid,
  .page--shop-list .html__feature-shop,
  .page--shop-list .premium__visual-row,
  .page--shop-list .premium__banners,
  .page--shop-list .gold__shop-card,
  .page--shop-list .gold__shop-bottom,
  .page--shop-list .gold__shop-content,
  .page--shop-list .free__listing-grid,
  .page--shop-list .shop__list-card {
    width: 100%;
    max-width: 100%;
  }

  .page--shop-list .html__feature-shop,
  .page--shop-list .premium__visual-row,
  .page--shop-list .gold__shop-card,
  .page--shop-list .gold__shop-bottom,
  .page--shop-list .free__listing-grid {
    grid-template-columns: 1fr;
  }

  .page--shop-list .premium__coupon,
  .page--shop-list .premium__event,
  .page--shop-list .premium__banners,
  .page--shop-list .gold__shop-photo,
  .page--shop-list .gold__photo-caption,
  .page--shop-list .gold__shop-bottom,
  .page--shop-list .gold__shop-content {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .page--shop-list .gold__shop-photo,
  .page--shop-list .gold__shop-content,
  .page--shop-list .gold__shop-bottom {
    height: auto;
  }

  .page--shop-list .gold__shop-photo img {
    width: min(100%, 220px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .page--shop-list .premium__coupon p,
  .page--shop-list .gold__coupon p,
  .page--shop-list .regular__coupon p,
  .page--shop-list .premium__event strong,
  .page--shop-list .premium__event b,
  .page--shop-list .gold__event strong,
  .page--shop-list .gold__event b,
  .page--shop-list .regular__event strong,
  .page--shop-list .regular__event b,
  .page--shop-list .event__period-date {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1100px) {
  .page--shop-list .layout__container {
    width: min(100% - 20px, var(--container));
  }

  .page--shop-list .page-title__row,
  .page--shop-list .shop__list-toolbar,
  .page--shop-list .shop__list-toolbar div,
  .page--shop-list .listing__plan-head,
  .page--shop-list .premium__panel header {
    align-items: stretch;
    flex-direction: column;
  }

  .page--shop-list .shop__list-toolbar div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .page--shop-list .shop__list-toolbar button {
    width: 100%;
    white-space: nowrap;
  }

  .page--shop-list .premium__info-card,
  .page--shop-list .premium__banners,
  .page--shop-list .gold__shop-stats,
  .page--shop-list .regular__shop-stats,
  .page--shop-list .shop__list-card dl,
  .page--shop-list .shop__card-actions {
    grid-template-columns: 1fr;
  }

  .page--shop-list .premium__coupon,
  .page--shop-list .premium__event,
  .page--shop-list .gold__coupon,
  .page--shop-list .gold__event,
  .page--shop-list .regular__coupon,
  .page--shop-list .regular__event {
    min-height: 0;
  }

  .page--shop-list .premium__event .premium__event-item,
  .page--shop-list .gold__event>.gold__event-item,
  .page--shop-list .regular__event>.regular__event-item {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "price" "period";
  }

  .page--shop-list .shop__list-card {
    grid-template-columns: 1fr;
  }

  .page--shop-list .shop__list-card>img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .page--shop-list .premium__visual-row {
    align-items: start;
  }

  .page--shop-list .premium__info-card {
    display: flex;
    flex-direction: column;
    align-self: start;
    height: fit-content;
    min-height: 0;
    grid-template-rows: none;
    grid-auto-rows: unset;
    gap: 6px;
    overflow: visible;
  }

  .page--shop-list .premium__info-card>.premium__price-card,
  .page--shop-list .premium__info-card>a,
  .page--shop-list .premium__info-card>button {
    flex: 0 0 auto;
  }

  .page--shop-list .premium__left,
  .page--shop-list .premium__visual-row,
  .page--shop-list .premium__media-stack {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .page--shop-list .premium__media-stack a,
  .page--shop-list .premium__media-stack img,
  .page--shop-list .premium__panel,
  .page--shop-list .premium__girls ul,
  .page--shop-list .premium__blog-grid,
  .page--shop-list .premium__coupon,
  .page--shop-list .premium__event,
  .page--shop-list .premium__banners {
    width: 100%;
    max-width: 100%;
  }

  .page--shop-list .premium__media-stack a {
    display: block;
  }

  .page--shop-list .premium__media-stack img {
    display: block;
    height: auto;
  }

  .page--shop-list .premium__price-message {
    max-width: 8em;
    margin-inline: auto;
    line-height: 1.35;
    text-align: center;
  }

  .page--shop-list .premium__visual-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    align-content: start;
  }

  .page--shop-list .premium__media-stack,
  .page--shop-list .premium__info-card {
    align-self: start;
  }
}

.page--shop-list .gold__shop-kicker,
.page--shop-list .regular__shop-kicker {
  position: static;
  display: inline-flex;
  flex: 0 0 auto;
  width: auto;
  max-width: 48%;
  margin: 0 0 0 auto;
  white-space: nowrap;
  transform: none;
}

.page--shop-list .gold__shop-card>h2,
.page--shop-list .regular__shop-card>h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.page--shop-list .gold__shop-card>h2 {
  width: auto;
  max-width: none;
  box-sizing: border-box;
  padding-right: 12px;
}

.page--shop-list .regular__shop-card>h2 {
  width: auto;
  max-width: none;
  padding-right: 12px;
  box-sizing: border-box;
}

.page--shop-list .gold__shop-card>h2>a,
.page--shop-list .regular__shop-card>h2>a {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page--shop-list .gold__shop-photo,
.page--shop-list .regular__shop-photo {
  justify-self: center;
  text-align: center;
}

.page--shop-list .gold__shop-photo>a,
.page--shop-list .regular__shop-photo>a {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

@media (max-width: 1100px) {
  .page--shop-list .gold__shop-photo,
  .page--shop-list .regular__shop-photo {
    display: block;
    justify-self: stretch;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }

  .page--shop-list .gold__shop-photo>a,
  .page--shop-list .regular__shop-photo>a {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }

  .page--shop-list .gold__shop-photo img,
  .page--shop-list .regular__shop-photo img {
    display: block;
    margin-inline: auto;
  }
}

.page--shop-cast .cast__other .cast__grid,
.page--shop-now .cast__other .cast__grid,
.page--shop-schedule .cast__other .cast__grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-schedule__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 20px;
}

.shop-schedule__days a {
  display: grid;
  gap: 3px;
  border: 1px solid #ffd1e3;
  border-radius: 6px;
  padding: 9px 8px;
  color: #333;
  background: #fff;
  text-align: center;
}

.shop-schedule__days a.is-current,
.shop-schedule__days a:hover {
  color: #fff;
  background: linear-gradient(180deg, #ff5baa 0%, #e90f73 100%);
}

.shop-schedule__days .shop-schedule__days-text,
.shop-schedule__days b {
  line-height: 1.2;
  white-space: nowrap;
}

.shop-schedule__days .shop-schedule__days-text {
  font-size: 13px;
  font-weight: 900;
}

.shop-schedule__days b {
  font-size: 11px;
}

.shop-cast__section {
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-cast__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.shop-cast__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-cast__head h2 span {
  font-size: 24px;
  line-height: 1;
}

.shop-cast__head p {
  margin: 2px 0 0;
  color: #666;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
}

.shop-cast__section .cast__total {
  margin: 0;
  color: #444;
  font-size: 13px;
  font-weight: 900;
}

.shop-cast__head-side {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
}

.shop-cast__head-side .sort__tabs {
  justify-content: center;
  width: 100%;
  margin: 0;
}

.shop-cast__section .cast__total strong {
  color: var(--color-primary);
  font-size: 20px;
}

.shop-cast__section .cast__toolbar {
  margin-bottom: 18px;
}

.page--shop-cast .shop-cast__head,
.page--shop-now .shop-cast__head {
  margin-bottom: 0;
}

.page--shop-cast .schedule__section.cast__other,
.page--shop-now .schedule__section.cast__other {
  margin-top: 11px;
}

.page--shop-schedule .shop-cast__head {
  margin-bottom: 0;
}

.page--shop-schedule .shop-schedule__days {
  margin: 9px 0 0;
}

.page--shop-schedule .shop-cast__section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 0;
}

.page--shop-schedule .schedule__section.cast__other {
  margin-top: 11px;
}

.shop-cast__section .cast__other {
  border: 0;
  padding: 0;
  background: transparent;
}

#shop-cast-content {
  scroll-margin-top: 104px;
}

#shop-detail-content {
  scroll-margin-top: 104px;
}

.is-shop-arrival .header {
  position: static;
}

.is-shop-girl-arrival .header {
  display: none;
}

.is-shop-girl-arrival main.page--girl-detail {
  margin-top: 40px;
}

.girl-detail__shop-context {
  display: none;
}

.is-shop-girl-arrival .girl-detail__shop-context,
.page--shop-subpage .girl-detail__shop-context {
  display: block;
  margin-bottom: 10px;
}

.girl-detail__shop-context .shop__hero::after {
  display: none;
}

.girl-detail__shop-context .shop__actions a:first-child,
.girl-detail__shop-context .shop__actions .shop__action--favorite {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 255, 255, .8);
}

.girl-detail__shop-context .shop__actions a:first-child:hover,
.girl-detail__shop-context .shop__actions .shop__action--favorite:hover {
  background: var(--color-primary);
  color: #fff;
}

.shop__meta-block .girl-detail__shop-name {
  grid-area: title;
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.girl-detail__shop-name a {
  color: #222;
  text-decoration: none;
}

.is-shop-arrival #shop-detail-content,
.is-shop-arrival #shop-cast-content,
.is-shop-arrival #shop-top,
.is-shop-arrival #shop-now,
.is-shop-arrival #shop-schedule,
.is-shop-arrival #shop-news,
.is-shop-arrival #shop-event,
.is-shop-arrival #shop-blog,
.is-shop-arrival #shop-system,
.is-shop-arrival #shop-recruit {
  scroll-margin-top: 0;
}

@media (max-width: 1200px) {
  .page--shop-cast .cast__other .cast__grid,
  .page--shop-now .cast__other .cast__grid,
  .page--shop-schedule .cast__other .cast__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .shop-cast__section {
    padding: 16px;
  }

  .shop-cast__head {
    flex-direction: column;
  }

  .page--shop-cast .cast__other .cast__grid,
  .page--shop-now .cast__other .cast__grid,
  .page--shop-schedule .cast__other .cast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-schedule__days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .page--shop-now .cast__other .cast__grid,
  .page--shop-schedule .cast__other .cast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--shop-cast .cast__other .cast__grid {
    grid-template-columns: 1fr;
  }

  .page--shop-schedule .card__status {
    gap: 3px;
  }

  .page--shop-schedule .card__status .card__status-text {
    padding: 2px 3px;
    font-size: 11px;
  }

  .page--shop-schedule .card__status time {
    font-size: 12px;
  }

  .shop-schedule__days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.shop-recruit-page__content-frame {
  width: 100%;
  margin-top: 18px;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 0 24px;
  background: #fff;
}

.shop-recruit-page__section {
  position: relative;
  border: 1px solid #ffcfe1;
  border-radius: 8px;
  padding: 22px 24px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 98% 0, rgba(255, 172, 202, .24), transparent 150px),
    radial-gradient(circle at 0 100%, rgba(255, 221, 235, .32), transparent 140px),
    linear-gradient(180deg, rgba(255, 249, 252, .96) 0%, #fff 100%);
  box-shadow: 0 8px 20px rgba(233, 20, 99, .06);
}

.shop-recruit-page__section::before {
  content: none;
}

.shop-recruit-page__section:has(#shop-recruit-title) {
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.shop-recruit-page__section + .shop-recruit-page__section {
  margin-top: 18px;
}

.shop-recruit-page__section-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: 80%;
  margin-top: 18px;
  margin-right: auto;
  margin-left: auto;
}

.shop-recruit-page__section-grid .shop-recruit-page__section {
  min-width: 0;
  height: 100%;
}

.shop-recruit-page__section-grid .shop-recruit-page__section + .shop-recruit-page__section {
  margin-top: 0;
}

.shop-recruit-page__section-grid .shop-recruit-page__section {
  padding: 18px;
}

.shop-recruit-page__section-grid .shop-recruit-page__section:has(#shop-recruit-cast) {
  grid-column: 1 / -1;
}

.shop-recruit-page__section-grid .shop-recruit-page__head {
  margin-bottom: 14px;
}

.shop-recruit-page__section-grid .shop-recruit-page__head h2 {
  font-size: 18px;
}

.shop-recruit-page__section-grid .shop-recruit-page__head h2 span {
  width: 30px;
  height: 30px;
  font-size: 15px;
}

.shop-recruit-page__section-grid .shop-recruit-page__head p {
  margin-left: 0;
}

.shop-recruit-page__section-grid .shop-recruit-page__head .lead-text {
  margin-left: 0;
}

.shop-recruit-page__head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.shop-recruit-page__head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--color-primary);
  font-size: 22px;
  line-height: 1.25;
}

.shop-recruit-page__head h2 span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #ff8fbc, var(--color-primary));
  font-size: 18px;
  line-height: 1;
}

.shop-recruit-page__head p {
  margin: 3px 0 0;
  color: #777;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.shop-recruit-page__head .lead-text {
  margin: 10px 0 0;
  color: #555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
}

.shop-recruit-page__hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 80%;
  margin-top: 18px;
  margin-right: auto;
  margin-left: auto;
}

#shop-recruit-contact {
  box-sizing: border-box;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.shop-recruit-page__hero-panel {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #ffd0e2;
  border-radius: 8px;
  padding: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 172, 202, .25), transparent 118px),
    linear-gradient(135deg, rgba(255, 255, 255, .96) 0%, rgba(255, 246, 250, .96) 58%, rgba(255, 250, 242, .96) 100%);
}

.shop-recruit-page__hero-panel::before,
.shop-recruit-page__hero-panel::after {
  content: none;
}

.shop-recruit-page__hero-panel::before {
  right: 18px;
  bottom: 14px;
  font-size: 46px;
}

.shop-recruit-page__hero-panel::after {
  right: 28px;
  top: 18px;
  font-size: 78px;
}

.shop-recruit-page__hero-panel span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 12px;
  color: #fff;
  background: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
}

.shop-recruit-page__hero-panel h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #221111;
  font-size: 24px;
  line-height: 1.35;
}

.shop-recruit-page__hero-panel p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.85;
}

.shop-recruit-page__contact {
  margin-top: 22px;
  padding: 24px;
  border: 2px solid #ffd1e3;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 0%, #fff7fa 100%);
  box-shadow: inset 0 0 0 1px #fff;
}

.shop-recruit-page__contact-head {
  text-align: center;
}

.shop-recruit-page__contact-head h3 {
  margin: 0;
  color: #f00083;
  font-size: 24px;
  font-weight: 900;
}

.shop-recruit-page__contact-head p {
  margin: 5px 0 0;
  color: #3d363a;
  font-size: 14px;
  font-weight: 800;
}

.shop-recruit-page__contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.shop-recruit-page__contact-link {
  min-height: 64px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.shop-recruit-page__contact-link > .shop-recruit-page__contact-link-text {
  font-size: 20px;
}

.shop-recruit-page__contact-link--line {
  background: linear-gradient(135deg, #08b951, #18d86a);
}

.shop-recruit-page__contact-link--mail {
  background: linear-gradient(135deg, #2387e8, #43a2f4);
}

.shop-recruit-page__contact-link--phone {
  background: linear-gradient(135deg, #f02c77, #ff913c);
}

.shop-recruit-page__contact-hours {
  margin: 14px 0;
  color: #6f666b;
  font-size: 14px;
  text-align: center;
}

.shop-recruit-page__contact-form {
  width: min(100%, 620px);
  min-height: 68px;
  margin: 0 auto;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 2px solid #ff5ba4;
  border-radius: 12px;
  color: #f00083;
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.shop-recruit-page__contact-form > .shop-recruit-page__contact-form-text:first-child {
  font-size: 30px;
}

.shop-recruit-page__contact-form > .shop-recruit-page__contact-form-text:last-child {
  display: grid;
  gap: 2px;
  text-align: left;
}

.shop-recruit-page__contact-form strong {
  font-size: 20px;
}

.shop-recruit-page__contact-form small {
  color: #574f53;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .shop-recruit-page__contact {
    padding: 18px 14px;
  }

  .shop-recruit-page__contact-head h3 {
    font-size: 20px;
  }

  .shop-recruit-page__contact-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .shop-recruit-page__contact-link {
    min-height: 52px;
    font-size: 14px;
  }
}

.shop-recruit-page__benefit-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-recruit-page__section-grid .shop-recruit-page__benefit-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-recruit-page__section-grid .shop-recruit-page__benefit-list li {
  min-height: 34px;
  padding: 6px 8px;
  font-size: 12px;
}

.shop-recruit-page__benefit-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 40px;
  border: 1px solid #f6c7d8;
  border-radius: 6px;
  padding: 7px 9px;
  color: #3d171f;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.shop-recruit-page__benefit-list li::after {
  content: none;
}

.shop-recruit-page__benefit-list li::before {
  content: none;
}

.shop-recruit-page__note {
  margin: 18px 0 0;
  border: 1px solid #ffd0e2;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--color-primary);
  background: #fff7fb;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.shop-recruit-page__profile-board {
  position: relative;
  z-index: 1;
  border: 1px solid #ffd0e2;
  border-radius: 8px;
  padding: 4px 20px;
  background: #fff;
}

.shop-recruit-page__profile-row {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 92px;
  gap: 18px;
  align-items: center;
  padding: 28px 0 26px;
  border-bottom: 1px dashed #ffd0e2;
}

.shop-recruit-page__profile-row--beginner {
  padding-top: 54px;
}

.shop-recruit-page__profile-row:last-child {
  border-bottom: 0;
}

.shop-recruit-page__profile-row h3 {
  position: absolute;
  top: 18px;
  left: 0;
  margin: 0;
  border-radius: 0 999px 999px 0;
  padding: 6px 18px 6px 14px;
  color: #fff;
  background: linear-gradient(90deg, var(--color-primary), #ff7bad);
  box-shadow: 0 4px 12px rgba(233, 20, 99, .16);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.shop-recruit-page__profile-row--age h3 {
  background: linear-gradient(90deg, #ff8a00, #ffad44);
}

.shop-recruit-page__profile-row--style h3 {
  background: linear-gradient(90deg, #2496d8, #55bfe8);
}

.shop-recruit-page__profile-row h3::after {
  content: none;
}

.shop-recruit-page__profile-icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-top: 28px;
  place-items: center;
  border: 2px solid #ffc4d9;
  border-radius: 50%;
  color: var(--color-primary);
  background:
    radial-gradient(circle at 34% 28%, #fff 0 18%, transparent 19%),
    linear-gradient(180deg, #fff7fb, #fff);
  box-shadow: 0 6px 16px rgba(233, 20, 99, .12);
  font-size: 34px;
  line-height: 1;
}

.shop-recruit-page__profile-row--age .shop-recruit-page__profile-icon {
  border-color: #ffd199;
  color: #ff8a00;
}

.shop-recruit-page__profile-row--style .shop-recruit-page__profile-icon {
  border-color: #bde6fb;
  color: #2496d8;
}

.shop-recruit-page__profile-scale {
  position: relative;
  grid-column: 2 / 4;
  --profile-step-count: 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale {
  --profile-step-count: 6;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale {
  --profile-step-count: 6;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-recruit-page__profile-scale-wrap {
  position: relative;
  min-width: 0;
}

.shop-recruit-page__profile-row--beginner .shop-recruit-page__profile-scale-wrap {
  grid-column: 2 / 4;
}

.shop-recruit-page__profile-scale::before {
  position: absolute;
  top: 19px;
  left: calc((100% / var(--profile-step-count)) / 2 + 12px);
  right: calc((100% / var(--profile-step-count)) / 2 + 12px);
  height: 2px;
  border-radius: 999px;
  background: #ff7bad;
  content: "";
}

.shop-recruit-page__profile-scale li:first-child::before {
  left: 50%;
  transform: translateX(-50%);
}

.shop-recruit-page__profile-scale li:last-child::before {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale::before {
  background: #ff9b21;
}

.shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale::before {
  background: #2496d8;
}

.shop-recruit-page__profile-scale li {
  position: relative;
  display: grid;
  min-height: 74px;
  justify-items: center;
  align-content: end;
  border: 0;
  border-radius: 0;
  padding: 34px 0 0;
  color: #3a1b1b;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  line-height: 1.35;
}

.shop-recruit-page__profile-scale li::before {
  position: absolute;
  top: 11px;
  width: 18px;
  height: 18px;
  border: 2px solid #ff7bad;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px #fff;
  content: "";
}

.shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale li::before {
  border-color: #ff9b21;
}

.shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale li::before {
  border-color: #2496d8;
}

.shop-recruit-page__profile-scale li.is-current {
  color: var(--color-primary);
  font-size: 14px;
  background: transparent;
}

.shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale li.is-current {
  color: #ff8a00;
  background: transparent;
}

.shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale li.is-current {
  color: #2496d8;
  background: transparent;
}

.shop-recruit-page__profile-scale li.is-current::before {
  top: 1px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50% 45% 50% 45%;
  background:
    radial-gradient(circle at 50% 48%, #fff 0 16%, transparent 17%),
    linear-gradient(135deg, #ff9fc0, #fff5f9);
  box-shadow: 0 6px 14px rgba(233, 20, 99, .18);
  transform: rotate(45deg);
}

.shop-recruit-page__profile-row p {
  grid-column: 2 / 4;
  margin: -8px 0 0;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-board {
  padding: 0 14px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-row {
  grid-template-columns: 58px minmax(0, 1fr) 68px;
  gap: 10px;
  padding: 42px 0 18px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-row--beginner {
  padding-top: 58px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-row h3 {
  top: 14px;
  padding: 5px 14px 5px 12px;
  font-size: 13px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-icon {
  width: 52px;
  height: 52px;
  margin-top: 12px;
  font-size: 25px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale,
.shop-recruit-page__section-grid .shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale {
  row-gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 12px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 12px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale::before {
  display: block;
  top: 16px;
  left: calc((100% / var(--profile-step-count)) / 2 + 10px);
  right: calc((100% / var(--profile-step-count)) / 2 + 10px);
  height: 2px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale li:first-child::before {
  left: 50%;
  transform: translateX(-50%);
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale li:last-child::before {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale li {
  min-height: 58px;
  padding: 29px 2px 0;
  font-size: 10px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale li::before {
  top: 10px;
  width: 14px;
  height: 14px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-scale li.is-current::before {
  top: 2px;
  width: 30px;
  height: 30px;
}

.shop-recruit-page__section-grid .shop-recruit-page__profile-row p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
}

.shop-recruit-page__job-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.shop-recruit-page__section-grid .shop-recruit-page__job-layout {
  grid-template-columns: 1fr;
}

.shop-recruit-page__section-grid .shop-recruit-page__job-list .shop-recruit-page__job-list-item {
  grid-template-columns: 112px minmax(0, 1fr);
}

.shop-recruit-page__section-grid .shop-recruit-page__job-list dt,
.shop-recruit-page__section-grid .shop-recruit-page__job-list dd {
  padding: 10px 12px;
  font-size: 12px;
}

.shop-recruit-page__job-list {
  margin: 0;
  border: 1px solid #ffd0e2;
  border-radius: 8px;
  overflow: hidden;
}

.shop-recruit-page__job-list .shop-recruit-page__job-list-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  border-bottom: 1px solid #ffd0e2;
}

.shop-recruit-page__job-list .shop-recruit-page__job-list-item:last-child {
  border-bottom: 0;
}

.shop-recruit-page__job-list dt {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--color-primary);
  background: #fff3f8;
  font-size: 14px;
  font-weight: 900;
}

.shop-recruit-page__job-list dd {
  margin: 0;
  padding: 14px 16px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
}

.shop-recruit-page__faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.shop-recruit-page__faq-list details {
  border: 1px solid #ffc2d8;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.shop-recruit-page__faq-list summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.shop-recruit-page__faq-list summary::before {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #ff8fbc, var(--color-primary));
  content: "Q";
}

.shop-recruit-page__faq-list summary::after {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #ff9ec0;
  border-radius: 50%;
  content: "⌄";
}

.shop-recruit-page__faq-list details[open] summary::after {
  content: "⌃";
}

.shop-recruit-page__faq-list details > .shop-recruit-page__faq-list-item {
  border-top: 1px dashed #ffc2d8;
  padding: 18px 22px 20px 68px;
}

.shop-recruit-page__faq-list p {
  margin: 0;
  border: 1px solid #ffd8a8;
  border-radius: 8px;
  padding: 16px 18px;
  color: #333;
  background: #fffdf7;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.shop-recruit-page__section-grid .shop-recruit-page__faq-list {
  gap: 10px;
}

.shop-recruit-page__section-grid .shop-recruit-page__faq-list summary {
  grid-template-columns: 32px minmax(0, 1fr) 28px;
  gap: 10px;
  padding: 12px 14px;
  font-size: 14px;
}

.shop-recruit-page__section-grid .shop-recruit-page__faq-list summary::before {
  width: 32px;
  height: 32px;
}

.shop-recruit-page__section-grid .shop-recruit-page__faq-list details > .shop-recruit-page__faq-list-item {
  padding: 14px;
}

.shop-recruit-page__section-grid .shop-recruit-page__faq-list p {
  padding: 13px 14px;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .shop-recruit-page__content-frame {
    margin-top: 0;
    border: 0;
    padding: 0;
    background: transparent;
  }

  .shop-recruit-page__hero-card,
  .shop-recruit-page__section-grid,
  .shop-recruit-page__job-layout {
    grid-template-columns: 1fr;
  }

  .shop-recruit-page__section-grid {
    width: 100%;
  }

  .shop-recruit-page__section:has(#shop-recruit-title) {
    width: 100%;
  }

  .shop-recruit-page__hero-card {
    width: 100%;
  }

  #shop-recruit-contact {
    width: 100%;
  }


  .shop-recruit-page__benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-recruit-page__profile-row {
    grid-template-columns: 1fr;
  }

  .shop-recruit-page__profile-row--beginner .shop-recruit-page__profile-scale-wrap {
    grid-column: 1;
  }

  .shop-recruit-page__profile-row p {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .shop-recruit-page__section {
    padding: 16px;
  }

  .shop-recruit-page__head p,
  .shop-recruit-page__head .lead-text {
    margin-left: 0;
  }

  .shop-recruit-page__hero-panel h3 {
    font-size: 22px;
  }

  .shop-recruit-page__benefit-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .shop-recruit-page__benefit-list li,
  .shop-recruit-page__section-grid .shop-recruit-page__benefit-list li {
    min-height: 34px;
    padding: 6px;
    font-size: 11px;
    line-height: 1.25;
  }

  .shop-recruit-page__profile-board,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-board {
    padding: 8px 12px;
  }

  .shop-recruit-page__profile-row,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 12px;
    align-items: stretch;
  }

  .shop-recruit-page__profile-row--beginner,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row--beginner {
    padding: 20px 14px;
  }

  .shop-recruit-page__profile-row h3,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row h3 {
    position: static;
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    margin-bottom: -4px;
    border-radius: 999px;
    line-height: 1.25;
    white-space: normal;
  }

  .shop-recruit-page__profile-icon,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-icon {
    display: none;
  }

  .shop-recruit-page__profile-row p,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row p {
    grid-column: 1;
  }

  .shop-recruit-page__profile-scale-wrap,
  .shop-recruit-page__profile-row--beginner .shop-recruit-page__profile-scale-wrap,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale-wrap,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row--beginner .shop-recruit-page__profile-scale-wrap {
    grid-column: 1;
    width: 100%;
  }

  .shop-recruit-page__profile-scale,
  .shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale,
  .shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale {
    grid-column: 1;
    width: 100%;
    margin-top: 0;
  }

  .shop-recruit-page__profile-scale,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row--age .shop-recruit-page__profile-scale {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-row--style .shop-recruit-page__profile-scale {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .shop-recruit-page__profile-scale::before,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale::before {
    display: none;
  }

  .shop-recruit-page__profile-scale li,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale li {
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffd0e2;
    border-radius: 6px;
    padding: 6px 2px;
    background: #fff;
    font-size: 9px;
    text-align: center;
  }

  .shop-recruit-page__profile-scale li::before,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale li::before {
    content: none;
  }

  .shop-recruit-page__profile-scale li:first-child::before,
  .shop-recruit-page__profile-scale li:last-child::before,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale li:first-child::before,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale li:last-child::before {
    content: none;
  }

  .shop-recruit-page__profile-scale li.is-current,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale li.is-current {
    border-color: #ff7bad;
    background: #fff5fa;
  }

  .shop-recruit-page__profile-scale li.is-current::before,
  .shop-recruit-page__section-grid .shop-recruit-page__profile-scale li.is-current::before {
    content: none;
  }

  .shop-recruit-page__job-list .shop-recruit-page__job-list-item {
    grid-template-columns: 1fr;
  }

  .shop-recruit-page__faq-list summary {
    grid-template-columns: 34px minmax(0, 1fr) 28px;
    padding: 14px;
    font-size: 15px;
  }

  .shop-recruit-page__faq-list summary::before {
    width: 34px;
    height: 34px;
  }

  .shop-recruit-page__faq-list details > .shop-recruit-page__faq-list-item {
    padding: 14px;
  }
}

.shop__search-sidebar .sidebar-ad,
.page__search-sidebar .sidebar-ad,
.blog__left-column .sidebar-ad {
  display: grid;
  gap: 10px;
  width: 100%;
}

.shop__search-sidebar .sidebar-ad__card,
.page__search-sidebar .sidebar-ad__card,
.blog__left-column .sidebar-ad__card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border-bottom: 0;
  color: var(--color-primary);
  background: transparent;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.shop__search-sidebar .sidebar-ad__label,
.page__search-sidebar .sidebar-ad__label,
.blog__left-column .sidebar-ad__label {
  width: max-content;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 3px 8px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
  line-height: 1;
}

.shop__search-sidebar .sidebar-ad__card strong,
.page__search-sidebar .sidebar-ad__card strong,
.blog__left-column .sidebar-ad__card strong {
  margin-bottom: 4px;
  color: #222;
  font-size: 17px;
  line-height: 1.3;
}

.shop__search-sidebar .sidebar-ad__sub,
.page__search-sidebar .sidebar-ad__sub,
.blog__left-column .sidebar-ad__sub {
  margin-bottom: 8px;
  color: #777;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
}

.shop__search-sidebar .sidebar-ad__card b,
.page__search-sidebar .sidebar-ad__card b,
.blog__left-column .sidebar-ad__card b {
  color: var(--color-primary);
  font-size: 15px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .page--top .top__section-head,
  .page--top .top-coupon__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 10px;
  }

  .page--top .top__section-head > .top__section-head-item,
  .page--top .top-coupon__head > .top-coupon__head-item {
    display: contents;
  }

  .page--top .top__section-head h2,
  .page--top .top-coupon__head h2 {
    grid-column: 1;
    grid-row: 1;
  }

  .page--top .top__section-head p,
  .page--top .top-coupon__head p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .page--top .top__section-head > a,
  .page--top .top-coupon__head > a {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .page--top .top-coupon__layout {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 92%;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .page--top .top-coupon__layout::-webkit-scrollbar {
    display: none;
  }

  .page--top .top-coupon__card {
    scroll-snap-align: start;
  }

  .page--top .top-coupon__viewport {
    padding: 6px 5px 8px 12px;
  }

  .page--top .top-coupon__card {
    min-height: 124px;
    padding: 9px 10px;
  }

  .page--top .top-coupon__ribbon {
    min-height: 36px;
    margin: 0 0 7px;
    padding: 6px 8px;
    display: grid;
    place-items: center;
    font-size: 15px;
  }

  .page--top .top-coupon__card p {
    display: block;
    margin: 0 0 3px;
    font-size: 12px;
    line-height: 1.45;
  }

  .page--top .top-coupon__card em {
    margin-top: 0;
    padding: 5px 6px;
    font-size: 11px;
    line-height: 1.3;
  }

  .page--top .top__cast-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 2.15);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .page--top .top__cast-grid::-webkit-scrollbar {
    display: none;
  }

  .page--top .top__cast-card {
    scroll-snap-align: start;
  }

  .page--top .top__shop-grid.is-compact {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 2.15);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .page--top .top__shop-grid.is-compact::-webkit-scrollbar {
    display: none;
  }

  .page--top .top__shop-grid.is-compact > * {
    scroll-snap-align: start;
  }

  .page--top .top__shop-grid.is-compact > :nth-child(n+6),
  .page--top .top-news__grid > :nth-child(n+6),
  .page--top .top__blog-grid > :nth-child(n+6) {
    display: block;
  }

  .page--top .top-news__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 2.15);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .page--top .top-news__grid::-webkit-scrollbar {
    display: none;
  }

  .page--top .top-news__card,
  .page--top .top-news__thumb {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .page--top .top-news__card {
    scroll-snap-align: start;
  }

  .page--top .top-news__thumb {
    width: 100%;
    min-height: 0;
  }

  .page--top .top-news__thumb img {
    max-width: 100%;
  }

  .page--top .top__blog-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 20px) / 2.15);
    justify-content: start;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .page--top .top__blog-grid::-webkit-scrollbar {
    display: none;
  }

  .page--top .top__blog-grid > article {
    scroll-snap-align: start;
  }

  .page--top .top__ranking-grid,
  .page--top .top__guide-grid {
    grid-template-columns: 1fr;
  }

  .page--top .top__guide-grid a {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page--top .top__guide-grid img {
    margin: 0 auto;
  }

  .page--shop-list .premium__banners {
    grid-template-columns: 1fr;
  }

  .page--cast-list .cast__grid,
  .page--sokuhime .cast__grid,
  .page--attendance .cast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop__menu {
    grid-template-columns: 1fr;
  }

  .shop__menu-link,
  .shop__menu-link:nth-child(2n),
  .shop__menu-link:nth-child(3n),
  .shop__menu-link:nth-last-child(-n+3),
  .shop__menu-link:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(238, 161, 184, .48);
  }

  .shop__menu-link:first-child {
    border-radius: 22px 22px 0 0;
  }

  .shop__menu-link:last-child {
    border-radius: 0 0 22px 22px;
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  .shop__menu,
  .shop__menu.is-fixed {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .shop__menu-link {
    flex: 0 0 86px;
    width: 86px;
  }
}

@media (max-width: 1100px) {
  .header__top {
    padding-left: 0;
    padding-right: 184px;
  }

  .header__menu-toggle {
    right: 0;
    left: auto;
  }

  .header__actions {
    right: 50px;
    top: 8px;
    transform: none;
  }
}

@media (max-width: 420px) {
  .page--cast-list .cast__grid,
  .page--cast-list .cast__other .cast__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .header__top {
    padding-right: 168px;
  }

  .header__actions {
    right: 48px;
  }
}

@media (max-width: 1100px) {
  .header__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
    padding-right: 0;
  }

  .header__brand {
    flex: 1 1 118px;
    width: auto;
    min-width: 0;
    max-width: none;
    margin-bottom: 0;
  }

  .header__actions {
    position: static;
    display: flex;
    flex: 0 1 112px;
    flex-direction: column;
    width: 112px;
    margin-left: auto;
    gap: 4px;
    transform: none;
  }

  .header__menu-toggle {
    position: static;
    flex: 0 0 42px;
    order: 3;
    margin-left: 0;
    transform: translateY(-3px);
  }

  .nav {
    flex: 0 0 100%;
    order: 4;
  }
}

@media (max-width: 420px) {
  .header__brand {
    flex-basis: 104px;
    width: auto;
  }

  .header__actions {
    flex-basis: 104px;
    width: 104px;
  }
}

@media (max-width: 1100px) {
  .shop__menu-wrap {
    position: relative;
    min-height: 48px;
    overflow: visible;
    padding: 0;
  }

  /* 女の子詳細ページ: 写メブログ導線バナーをハンバーガーメニューの左側に並べて表示する */
  .page--girl-detail .shop__menu-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .page--girl-detail .shop__menu-wrap .girl-blog-teaser {
    order: 1;
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    margin: 0;
  }

  .page--girl-detail .shop__menu-wrap .shop__menu-toggle {
    order: 2;
    flex: 0 0 auto;
    margin-left: 0;
  }

  .page--girl-detail .shop__menu-wrap .shop__menu {
    order: 3;
    flex-basis: 100%;
  }

  .page--shop-detail .shop__menu-wrap,
  .page--shop-cast .shop__menu-wrap,
  .page--shop-now .shop__menu-wrap,
  .page--shop-schedule .shop__menu-wrap,
  .page--shop-news .shop__menu-wrap,
  .page--shop-news-detail .shop__menu-wrap,
  .page--shop-event .shop__menu-wrap,
  .page--shop-blog .shop__menu-wrap,
  .page--shop-system .shop__menu-wrap,
  .page--shop-recruit .shop__menu-wrap,
  .page--shop-ranking .shop__menu-wrap,
  .page--shop-review .shop__menu-wrap {
    position: relative;
    z-index: 5;
    margin-top: -85px;
    margin-bottom: 24px;
  }

  .page--shop-detail .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-cast .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-now .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-schedule .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-news .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-news-detail .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-event .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-blog .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-system .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-recruit .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-ranking .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle,
  .page--shop-review .shop__menu-wrap:not(.is-fixed) .shop__menu-toggle {
    position: static;
  }

  .shop__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 48px;
    min-height: 48px;
    margin-left: auto;
    border: 2px solid #f7c995;
    border-radius: 16px;
    color: var(--color-primary);
    background: linear-gradient(180deg, #fff 0%, #fff6fa 55%, #ffdce8 100%);
    box-shadow: 0 2px 6px rgba(188, 115, 62, .16);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }

  .shop__menu-toggle>span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .shop__menu-wrap.is-fixed .shop__menu-toggle {
    position: fixed;
    top: 8px;
    right: 14px;
    z-index: 1201;
  }

  .shop__menu-toggle-lines {
    display: grid;
    gap: 4px;
  }

  .shop__menu-toggle-lines i {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
  }

  .shop__menu,
  .shop__menu.is-fixed {
    display: none;
    position: static;
    width: 100%;
    margin-top: 8px;
    gap: 1px;
    border-color: #f7c995;
    border-radius: 0;
    transform: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(238, 161, 184, .48);
    overflow: hidden;
  }

  .shop__menu-wrap.is-shop-menu-open .shop__menu,
  .shop__menu-wrap.is-shop-menu-open .shop__menu.is-fixed {
    display: grid;
  }

  .shop__menu-wrap.is-fixed.is-shop-menu-open .shop__menu,
  .shop__menu-wrap.is-fixed.is-shop-menu-open .shop__menu.is-fixed {
    position: fixed;
    top: 64px;
    right: 14px;
    left: 14px;
    z-index: 1200;
    width: auto;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .shop__menu-link {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 0;
    background: linear-gradient(180deg, #fff 0%, #fff6fa 48%, #ffdce8 100%);
  }

  .shop__menu-link:first-child,
  .shop__menu-link:last-child {
    border-radius: 0;
  }

  .shop__menu-bottom-wrap {
    display: block;
    margin: 24px 0 0;
    padding: 0 14px 18px;
  }

  .shop__menu-bottom-wrap .shop__menu,
  .shop__menu-bottom-wrap .shop__menu.is-fixed {
    display: grid;
    position: static;
    width: 100%;
    margin: 0;
    gap: 1px;
    border: 1px solid #f7c995;
    border-radius: 0;
    transform: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: rgba(238, 161, 184, .48);
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .shop__menu-wrap.is-fixed .shop__menu-toggle {
    right: 9px;
  }

  .shop__menu-wrap.is-fixed.is-shop-menu-open .shop__menu,
  .shop__menu-wrap.is-fixed.is-shop-menu-open .shop__menu.is-fixed {
    right: 9px;
    left: 9px;
  }
}

@media (max-width: 640px) {
  .page--shop-detail .waiting__section,
  .page--shop-detail .shop__schedule-section,
  .page--shop-detail .shop__cast-section,
  .page--shop-detail .shop__system-section,
  .page--shop-detail .shop__blog-section,
  .page--shop-detail .shop__ranking-section,
  .page--shop-detail .shop__review-section,
  .page--shop-detail .shop__calendar-box,
  .page--shop-detail .system__grid,
  .page--shop-detail .shop__system-fees,
  .page--shop-detail .shop__system-fees dl,
  .page--shop-detail .shop__schedule-layout {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .page--shop-detail .shop-detail-slider {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .page--shop-detail .waiting__grid[data-shop-detail-slider],
  .page--shop-detail .shop__attendance-list[data-shop-detail-slider] {
    display: flex;
    grid-template-columns: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .page--shop-detail .waiting__grid[data-shop-detail-slider]::-webkit-scrollbar,
  .page--shop-detail .shop__attendance-list[data-shop-detail-slider]::-webkit-scrollbar {
    display: none;
  }

  .page--shop-detail .waiting__grid[data-shop-detail-slider] > .waiting__card,
  .page--shop-detail .shop__attendance-list[data-shop-detail-slider] > article {
    flex: 0 0 calc((100% - 24px) / 2.15);
    min-width: 0;
    scroll-snap-align: start;
  }

  .page--shop-detail .shop__attendance-list .shop__attendance-media {
    display: block;
  }

  .page--shop-detail .shop__attendance-list .shop__attendance-photo-link {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
  }

  .page--shop-detail .shop__attendance-list .shop__attendance-media img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  .page--shop-detail .shop__attendance-list .shop__attendance-time {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .page--shop-detail .waiting__grid:not([data-shop-detail-slider]),
  .page--shop-detail .shop__attendance-list:not([data-shop-detail-slider]) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .page--shop-detail .waiting__grid[data-shop-detail-slider]:focus-within,
  .page--shop-detail .shop__attendance-list[data-shop-detail-slider]:focus-within {
    scroll-behavior: auto;
  }

}

.shop-detail-slider__button,
.shop-detail-slider__dots {
  display: none;
}

@media (min-width: 1101px) and (max-width: 1200px) {
  .layout__container {
    width: min(100% - 32px, var(--container));
  }

  .page-heading,
  .section-heading,
  .cast__toolbar,
  .schedule__toolbar {
    gap: 14px;
  }

  .page-heading,
  .section-heading {
    align-items: flex-start;
  }

  .top-coupon__layout,
  .top-news__grid,
  .ranking__layout,
  .shop-system-page__feature-grid,
  .shop-system-page__option-grid,
  .shop-recruit-page__section-grid,
  .shop-recruit-page__benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--cast-list .cast__grid,
  .page--cast-list .cast__other .cast__grid,
  .page--attendance .cast__grid,
  .page--shop-cast .cast__other .cast__grid,
  .page--shop-now .cast__other .cast__grid,
  .page--shop-schedule .cast__other .cast__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop__menu,
  .shop__menu.is-fixed {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .shop__menu.is-fixed {
    width: min(100% - 48px, calc(var(--container) - 32px));
  }

  .shop__menu-link {
    min-height: 62px;
    padding: 7px 6px;
  }

  .page--shop-detail .shop__content-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page--shop-detail .shop__blog-section {
    grid-column: 1 / -1;
  }

  .page--shop-detail .shop__blog-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .page--shop-detail .shop__blog-card img {
    width: 96px;
    height: 96px;
  }

  .shop-news-page__item {
    grid-template-columns: minmax(0, 1fr) 132px 24px;
  }

  .shop-news-page__tag {
    grid-column: 1;
    justify-self: start;
  }

  .shop-news-page__body {
    grid-column: 1;
  }

  .shop-news-page__thumb {
    grid-column: 2;
    grid-row: 1 / 4;
  }

  .shop-news-page__arrow {
    grid-column: 3;
    grid-row: 1 / 4;
  }

  .shop__list-card {
    grid-template-columns: 180px minmax(0, 1fr);
  }
}

/* Shop promotion */
.page--shop-promotion {
  padding-bottom: 26px;
  background: #fff;
}

.promotion__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 34px;
  overflow: hidden;
  border: 2px solid #cf0057;
  border-radius: 10px;
  padding: 48px;
  color: #fff;
  background:
    radial-gradient(circle at 94% 8%, rgba(255, 255, 255, .2) 0 90px, transparent 91px),
    radial-gradient(circle at 70% 112%, rgba(255, 255, 255, .12) 0 140px, transparent 141px),
    linear-gradient(135deg, #be0051 0%, #ed1769 54%, #ff6da2 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45), 0 14px 32px rgba(185, 0, 73, .16);
}

.promotion__hero-content {
  position: relative;
  z-index: 1;
}

.promotion__eyebrow,
.promotion__heading > p,
.promotion__contact-panel > .promotion__contact-panel-item > p {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.promotion__hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.35;
}

.promotion__lead {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
}

.promotion__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.promotion__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 10px 22px;
  font-weight: 900;
}

.promotion__button--primary {
  color: var(--color-primary);
  background: #fff;
}

.promotion__button--outline {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.promotion__hero-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 10px;
}

.promotion__hero-board .promotion__hero-board-text {
  display: grid;
  place-items: center;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, .12);
  font-weight: 900;
  text-align: center;
}

.promotion__section {
  padding: 68px 0 0;
}

.promotion__section--soft {
  margin-top: 68px;
  border: 1px solid #ffd2e3;
  border-radius: 10px;
  padding: 42px;
  background: #fff7fb;
}

.promotion__heading {
  margin-bottom: 26px;
  text-align: center;
}

.promotion__heading > p {
  color: var(--color-primary);
}

.promotion__heading h2 {
  margin: 0;
  color: #222;
  font-size: clamp(24px, 3vw, 34px);
}

.promotion__heading > .promotion__heading-text {
  display: block;
  margin-top: 8px;
  color: #6b5a62;
  font-weight: 700;
}

.promotion__benefit-grid,
.promotion__plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.promotion__benefit-card,
.promotion__plan-card {
  min-width: 0;
  border: 1px solid #ffc9dd;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(91, 42, 61, .06);
}

.promotion__benefit-card > b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
}

.promotion__benefit-card h3,
.promotion__plan-card h3 {
  margin: 16px 0 8px;
  font-size: 20px;
}

.promotion__benefit-card p,
.promotion__flow-list p,
.promotion__faq-list p {
  margin: 0;
  color: #5d5157;
  line-height: 1.8;
}

.promotion__plan-card {
  display: flex;
  flex-direction: column;
}

.promotion__plan-card--featured {
  border: 2px solid var(--color-primary);
  box-shadow: inset 0 0 0 1px #ffd0e1, 0 12px 26px rgba(225, 0, 105, .12);
}

.promotion__plan-label {
  width: fit-content;
  margin: 0;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  background: var(--color-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.promotion__plan-card > strong {
  color: var(--color-primary);
}

.promotion__plan-card ul {
  display: grid;
  gap: 9px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.promotion__plan-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--color-primary);
  font-weight: 900;
}

.promotion__plan-card a {
  display: grid;
  place-items: center;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid var(--color-primary);
  border-radius: 5px;
  padding: 9px 12px;
  color: var(--color-primary);
  font-weight: 900;
  text-align: center;
}

.promotion__plan-card--featured a {
  color: #fff;
  background: var(--color-primary);
}

.promotion__plan-note {
  margin: 20px 0 0;
  color: #6b5a62;
  font-size: 12px;
  text-align: center;
}

.promotion__flow-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promotion__flow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  border-top: 3px solid var(--color-primary);
  padding: 18px 8px 0;
}

.promotion__flow-list b {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-primary);
  font-size: 18px;
}

.promotion__flow-list h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.promotion__faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.promotion__faq-list details {
  border: 1px solid #ffc9dd;
  border-radius: 7px;
  background: #fff;
}

.promotion__faq-list summary {
  padding: 16px 52px 16px 18px;
  color: #222;
  font-weight: 900;
  cursor: pointer;
}

.promotion__faq-list details p {
  border-top: 1px solid #ffe0eb;
  padding: 16px 18px;
}

.promotion__contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 68px;
  border: 2px solid #cf0057;
  border-radius: 10px;
  padding: 30px 34px;
  color: #fff;
  background: linear-gradient(135deg, #c90055, #f42a78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .4);
}

.promotion__contact-panel h2 {
  margin: 0;
  font-size: 28px;
}

.promotion__contact-panel .promotion__contact-panel-text {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.promotion__contact-panel > a {
  display: grid;
  place-items: center;
  min-width: 220px;
  min-height: 50px;
  border-radius: 5px;
  padding: 10px 18px;
  color: var(--color-primary);
  background: #fff;
  font-weight: 900;
  text-align: center;
}

body.is-promotion-modal-open {
  overflow: hidden;
}

.promotion-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}

.promotion-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.promotion-modal__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: rgba(24, 8, 15, .66);
  cursor: pointer;
}

.promotion-modal__dialog {
  position: relative;
  width: min(100%, 760px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  border: 2px solid #ec4e8d;
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #ffd2e2, 0 24px 60px rgba(30, 0, 12, .28);
}

.promotion-modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ffd3e3;
  padding: 20px 22px;
  color: #fff;
  background: linear-gradient(135deg, #ca0056, #f52c7b);
}

.promotion-modal__header p,
.promotion-modal__header h2,
.promotion-modal__header .promotion-modal__header-text {
  margin: 0;
}

.promotion-modal__header p {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
}

.promotion-modal__header h2 {
  margin-top: 3px;
  font-size: 25px;
}

.promotion-modal__header .promotion-modal__header-text {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
}

.promotion-modal__close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.promotion-modal__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.promotion-modal__field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.promotion-modal__field--wide,
.promotion-modal__notice,
.promotion-modal__submit,
.promotion-modal__message {
  grid-column: 1 / -1;
}

.promotion-modal__field label {
  color: #292126;
  font-size: 13px;
  font-weight: 900;
}

.promotion-modal__field label .promotion-modal__field-text {
  margin-left: 6px;
  border-radius: 3px;
  padding: 2px 5px;
  color: #fff;
  background: var(--color-primary);
  font-size: 10px;
}

.promotion-modal__field input,
.promotion-modal__field select,
.promotion-modal__field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9cbd1;
  border-radius: 5px;
  padding: 11px 12px;
  background: #fff;
  box-sizing: border-box;
  font: inherit;
}

.promotion-modal__field input:focus,
.promotion-modal__field select:focus,
.promotion-modal__field textarea:focus {
  border-color: var(--color-primary);
  outline: 2px solid rgba(225, 0, 105, .14);
}

.promotion-modal__field textarea {
  min-height: 110px;
  resize: vertical;
}

.promotion-modal__notice,
.promotion-modal__message {
  margin: 0;
  color: #66555d;
  font-size: 12px;
  text-align: center;
}

.promotion-modal__submit.primary-bottom.event-save-btn {
  width: 100%;
  min-height: 54px;
  margin: 2px 0 0;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  color: #fff;
  background: linear-gradient(180deg, #ff1583, #e50072);
  box-shadow: 0 7px 16px rgba(225, 0, 105, .2);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.promotion-modal__message.is-visible {
  border: 1px solid #ffb7d2;
  border-radius: 5px;
  padding: 10px;
  color: var(--color-primary);
  background: #fff5f9;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .promotion__hero {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .promotion__hero-board {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promotion__benefit-grid,
  .promotion__plan-grid {
    grid-template-columns: 1fr;
  }

  .promotion__flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .promotion__hero,
  .promotion__section--soft,
  .promotion__contact-panel {
    padding: 20px;
  }

  .promotion__hero h1 {
    font-size: 28px;
  }

  .promotion__lead {
    font-size: 14px;
  }

  .promotion__hero-actions,
  .promotion__button {
    width: 100%;
    box-sizing: border-box;
  }

  .promotion__hero-board,
  .promotion__flow-list,
  .promotion__contact-panel {
    grid-template-columns: 1fr;
  }

  .promotion__section,
  .promotion__contact-panel {
    margin-top: 42px;
  }

  .promotion__section {
    padding-top: 0;
  }

  .promotion__section--soft {
    padding-top: 20px;
  }

  .promotion__contact-panel > a {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .promotion-modal {
    align-items: end;
    padding: 10px;
  }

  .promotion-modal__dialog {
    max-height: calc(100dvh - 20px);
  }

  .promotion-modal__header,
  .promotion-modal__form {
    padding: 16px;
  }

  .promotion-modal__header h2 {
    font-size: 21px;
  }

  .promotion-modal__form {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .promotion-modal__field--wide,
  .promotion-modal__notice,
  .promotion-modal__submit,
  .promotion-modal__message {
    grid-column: 1;
  }
}

.is-member-modal-open {
  overflow: hidden;
}

.member-login-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px 16px;
}

.member-login-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 24, 32, .34);
  backdrop-filter: blur(3px);
}

.member-login-modal__panel {
  position: relative;
  z-index: 1;
  width: min(590px, 100%);
  max-height: calc(100dvh - 56px);
  overflow: auto;
  padding: 28px 34px 34px;
  border: 1px solid var(--premium-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 54px rgba(36, 24, 32, .2);
}

.member-login-modal__close {
  width: 34px;
  height: 34px;
  margin: -4px -8px 4px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--premium-border);
  border-radius: 50%;
  background: var(--color-panel);
  color: var(--color-primary);
  cursor: pointer;
}

.member-login-modal__close::before,
.member-login-modal__close::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.member-login-modal__close::before {
  transform: rotate(45deg);
}

.member-login-modal__close::after {
  transform: rotate(-45deg);
}

.member-login-modal__header {
  display: block;
  margin: 0 0 18px;
  text-align: center;
}

.member-login-modal__title {
  margin: 0;
  color: var(--color-text);
  font-size: clamp(24px, 4vw, 30px);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
}

.member-login-modal__description {
  margin: 6px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0;
}

.member-login-modal__form {
  display: grid;
  gap: 18px;
}

.member-login-modal__field,
.member-login-modal__remember {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.member-login-modal__label {
  display: block;
}

.member-login-modal__input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--premium-border);
  border-radius: 10px;
  background: var(--color-panel);
  color: var(--color-text);
  font: inherit;
}

.member-login-modal__input:focus {
  border-color: var(--color-primary);
  outline: 3px solid rgba(240, 0, 131, .12);
}

.member-login-modal__remember {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
}

.member-login-modal__remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}

.member-login-modal__submit,
.member-login-modal__signup {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0;
  text-decoration: none;
}

.member-login-modal__submit {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, #fb1a82 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(240, 0, 131, .18);
  cursor: pointer;
}

.member-login-modal__footer {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--premium-border);
  text-align: center;
}

.member-login-modal__security {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.member-login-modal__links {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.member-login-modal__links a {
  color: inherit;
  text-underline-offset: 3px;
}

.member-login-modal__note {
  margin: 0 0 12px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
}

.member-login-modal__signup {
  border: 1px solid var(--color-primary);
  background: var(--color-panel);
  color: var(--color-primary);
}

@media (max-width: 1100px) {
  .member-login-modal {
    align-items: flex-start;
    padding: 18px 10px;
  }

  .member-login-modal__panel {
    max-height: calc(100dvh - 36px);
    padding: 24px 18px 28px;
    border-radius: 14px;
  }

  .breadcrumb__member-actions {
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
    margin-top: 0;
    margin-left: auto;
  }

  .breadcrumb {
    flex-wrap: nowrap;
  }

  .breadcrumb__trail {
    min-width: 0;
    flex: 1 1 auto;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 640px) {
  main.page,
  main.page-main {
    padding-top: 10px;
  }

  .header__brand {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    align-items: center;
    column-gap: 8px;
  }

  .header__logo {
    grid-column: 1;
    grid-row: 1;
  }

  .header__copy {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    max-width: none;
    height: auto;
    margin: 0;
    font-size: 10px;
    line-height: 1.35;
    text-align: left;
    text-align-last: auto;
  }

  .header__copy::after {
    display: none;
  }

  .header__copy .header__copy-text {
    display: block;
    white-space: nowrap;
  }

  .header__copy span + span::before {
    content: none;
  }

  .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    overflow: visible;
    white-space: normal;
    font-size: 10px;
    line-height: 1;
  }

  .breadcrumb__trail {
    min-width: 0;
    flex: 1 1 auto;
    gap: 4px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb__member-actions {
    width: auto;
    flex: 0 0 auto;
    margin-top: 0;
    margin-left: auto;
    gap: 6px;
  }

  .breadcrumb__member-actions--logged-in .breadcrumb__member-action {
    min-width: 94px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .breadcrumb__trail::-webkit-scrollbar {
    height: 4px;
  }

  .breadcrumb__trail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(240, 0, 131, .38);
  }
}

@media (min-width: 1101px) {
  body > .header {
    position: static;
  }
}

.member-utility {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1100;
  height: 40px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-primary);
  background: #fffdf5;
}

.member-utility + .header {
  position: static;
  margin-top: 40px;
}

body.page--compact-header {
  padding-top: 40px;
}

.member-utility__inner {
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.member-utility__description {
  min-width: 0;
  margin: 0 auto 0 0;
  overflow: hidden;
  color: #666;
  font-size: 11px;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-utility__actions {
  width: auto;
  height: 25px;
  flex: 0 0 auto;
  margin: 0;
}

.member-utility__actions .breadcrumb__member-action {
  min-height: 25px;
  height: 25px;
  padding: 0 10px;
  font-size: 11px;
}

.page--shop-subpage main > .layout__container {
  box-sizing: border-box;
  padding-top: 10px;
}

/* グローバルヘッダー非表示ページ (TOP以外) はsampleの初期スクロール挙動と体感を揃えるため、
   パンくず上の余白を少し詰める */
body.page--compact-header.page--shop-subpage main > .layout__container {
  padding-top: 0px;
}

.shop__hero {
  position: relative;
  min-height: 0;
  box-sizing: border-box;
  align-items: start;
  gap: 14px;
  padding: 0;
  overflow: visible;
  background: none;
}

.shop__hero::before {
  content: none;
}

/* 汎用バナー(::after)は廃止。店舗ごとのヘッダー画像(.shop__hero-image)に置き換え済み */
.shop__hero::after {
  content: none;
}

/* 店舗ごとのヘッダー画像 (site_main_image/site_mobile_image) を <img> でプロフィールカードの下に表示する */
/* aspect-ratio は shop-hero-image-ratio.js が表示中の画像の実際の比率に動的に上書きする(初期値は読み込み前の暫定値) */
.shop__hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f3f3;
}

.shop__hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.shop-hero-slider--mobile {
  display: none;
}

.shop-hero-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.shop-hero-slider__track::-webkit-scrollbar {
  display: none;
}

.shop-hero-slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.shop-hero-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-hero-slider__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  padding: 0;
  color: transparent;
  background: var(--color-primary);
  font-size: 0;
  font-weight: 900;
  transform: translateY(-50%);
}

.shop-hero-slider__button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  content: "";
}

.shop-hero-slider__button--prev {
  left: 8px;
}

.shop-hero-slider__button--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.shop-hero-slider__button--next {
  right: 8px;
}

.shop-hero-slider__button--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.shop-hero-slider__dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
  width: 100%;
}

.shop-hero-slider__dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, .6);
}

.shop-hero-slider__dots button.is-current {
  background: var(--color-primary);
}

.shop__profile-card {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.shop__meta-block {
  position: relative;
  display: grid;
  grid-template-columns: max-content max-content max-content max-content minmax(24px, 1fr) max-content;
  grid-template-areas:
    "area badges badges . . rating"
    "title title telephone hours . actions";
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  border: 1px solid rgba(255, 127, 177, .5);
  border-radius: 7px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, .9);
  scrollbar-color: rgba(240, 0, 131, .45) transparent;
  scrollbar-width: thin;
}

@media (min-width: 641px) {
  .shop__meta-block {
    min-height: 130px;
    padding-right: 350px;
  }

  .shop__meta-side {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 1;
  }
}

.shop__meta-side {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-areas:
    "rating rating"
    "hours actions";
  grid-column: 1 / -1;
  justify-items: end;
  column-gap: 12px;
  row-gap: 8px;
  margin-left: auto;
  text-align: right;
}

.shop__meta-side > .rating__row {
  grid-area: rating;
}

.shop__meta-side > .shop__meta-list {
  grid-area: auto;
}

.shop__meta-side > .shop__actions {
  grid-area: actions;
}

.shop__meta-side .shop__actions {
  gap: 10px;
}

.shop__meta-side .shop__actions a,
.shop__meta-side .shop__actions .shop__action {
  min-width: 0;
  padding: 4px 9px;
  font-size: 12px;
  line-height: normal;
}

.shop__meta-block > * {
  min-width: 0;
}

.shop__meta-block > .area__pill {
  grid-area: area;
}

.shop__meta-block > h1 {
  grid-area: title;
}

.shop__meta-block > .shop__badges {
  grid-area: badges;
}

.shop__meta-block > .shop__hero-tel {
  grid-area: telephone;
}

.shop__meta-block > .shop__meta-list {
  grid-area: hours;
}

.shop__meta-block > .rating__row {
  grid-area: rating;
  justify-self: end;
}

.shop__meta-block > .shop__actions {
  grid-area: actions;
  justify-self: end;
}

.shop__meta-block h1,
.shop__meta-block .shop__name,
.shop__meta-block .shop__hero-tel,
.shop__meta-block .shop__meta-list,
.shop__meta-block .rating__row,
.shop__meta-block .shop__badges,
.shop__meta-block .shop__actions {
  margin: 0;
}

.shop__meta-block h1,
.shop__meta-block .shop__name {
  font-size: 20px;
  white-space: nowrap;
}

.shop__meta-list .shop__meta-list-item,
.shop__meta-block .rating__row {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.shop__meta-block .shop__meta-list .shop__meta-list-item {
  gap: 12px;
}

.shop__meta-block::-webkit-scrollbar {
  height: 5px;
}

.shop__meta-block::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(240, 0, 131, .45);
}

@media (max-width: 640px) {
  .shop__hero {
    min-height: 0;
    padding: 0;
    background: none;
  }

  .shop__hero::after {
    background-position: center top;
  }

  /* スマホ表示ではヘッダー画像を正方形(スマホ画像の推奨サイズ512x512に合わせる)にする */
  .shop__hero-image {
    aspect-ratio: 1 / 1;
    max-width: 320px;
    margin: 0 auto;
  }

  .shop-hero-slider--main {
    display: none;
  }

  .shop-hero-slider--mobile {
    display: block;
  }

  .shop__meta-block {
    gap: 9px;
    padding: 8px 9px;
  }

  .shop__meta-block h1,
  .shop__meta-block .shop__name {
    font-size: 17px;
  }
}

.shop__meta-block {
  display: grid;
  grid-template-columns: minmax(max-content, 1fr) max-content;
  grid-template-areas:
    "main side"
    "main contact";
  min-height: 0;
  align-items: start;
  gap: 20px;
  padding: 10px 12px;
}

.shop__meta-main {
  display: grid;
  width: auto;
  grid-template-columns: max-content max-content;
  grid-template-areas:
    "area badges"
    "title title";
  grid-area: main;
  align-items: center;
  justify-content: start;
  gap: 10px 12px;
  min-width: 0;
}

.shop__meta-main > .area__pill {
  grid-area: area;
  width: fit-content;
  min-width: 0;
  justify-self: start;
}

.shop__meta-main > h1,
.shop__meta-main > .shop__name {
  grid-area: title;
}

.shop__meta-main > .shop__badges {
  grid-area: badges;
}

.shop__meta-main > .shop__badges > .area__pill {
  border-color: var(--color-primary);
  padding: 4px 13px;
  color: #fff;
  background: var(--color-primary);
  font-size: 13px;
}

.shop__meta-block > .shop__hero-contact {
  grid-area: contact;
  justify-self: end;
}

.shop__meta-block {
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  grid-template-areas:
    "badges badges side"
    "title title contact";
  align-items: center;
  row-gap: 10px;
}

.shop__meta-main {
  display: contents;
}

.shop__meta-main > h1,
.shop__meta-main > .shop__name,
.shop__meta-block > .shop__hero-contact {
  align-self: center;
}

.shop__hero-contact {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  justify-items: center;
  gap: 10px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.shop__hero-contact .shop__meta-list {
  margin: 0;
}

.shop__hero-contact .shop__meta-list .shop__meta-list-item {
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.shop__hero-contact .shop__hero-tel {
  justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.shop__meta-side {
  position: static;
  top: auto;
  right: auto;
  grid-template-columns: max-content max-content;
  grid-template-areas: "actions rating";
  align-items: center;
  grid-area: side;
  grid-column: auto;
  justify-self: end;
  margin-left: 0;
}

@media (max-width: 900px) {
  .shop__meta-block {
    grid-template-columns: max-content max-content;
  }
}

@media (max-width: 640px) {
  .shop__meta-block {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "main"
      "side"
      "contact";
    gap: 10px;
    padding: 10px;
    overflow-x: visible;
  }

  .shop__meta-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "badges"
      "title";
    grid-area: main;
    gap: 8px;
  }

  .shop__meta-main > .shop__badges {
    display: flex;
    gap: 10px;
  }

  .shop__meta-block h1,
  .shop__meta-block .shop__name {
    white-space: normal;
  }

  .shop__meta-block .girl-detail__shop-name {
    font-size: 17px;
  }

  .shop__meta-side {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "rating"
      "actions";
    justify-items: center;
    justify-self: stretch;
    gap: 7px;
  }

  .shop__meta-side .shop__actions {
    width: 100%;
    justify-content: center;
  }

  .shop__meta-block > .shop__hero-contact {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    justify-self: stretch;
    gap: 7px;
  }

  .shop__meta-block .shop__hero-tel {
    display: inline-flex;
    width: auto;
  }

  .member-utility__inner {
    min-height: 0;
  }

  .member-utility__actions {
    width: auto;
    flex: 0 0 auto;
    margin: 0;
  }

  .member-utility__description {
    font-size: 9px;
  }
}

.shop__menu.is-fixed {
  top: 45px;
}

@media (max-width: 1100px) {
  .page--shop-detail .waiting__section,
  .page--shop-detail .shop__schedule-section,
  .page--shop-detail .shop__system-section,
  .page--shop-detail .shop__blog-section,
  .page--shop-detail .shop__ranking-section,
  .page--shop-detail .shop__review-section,
  .page--shop-detail .discount__panel,
  .page--shop-detail .shop-news__panel,
  .page--shop-detail .shop__guide,
  .page--shop-detail .flow__box {
    padding: 16px;
  }

  .page--shop-detail .shop__guide h2,
  .page--shop-detail .flow__box h2 {
    margin: -16px -16px 0;
    padding: 12px 16px;
  }

  .shop__menu-wrap.is-fixed .shop__menu-toggle {
    top: 53px;
  }

  .shop__menu-wrap.is-fixed.is-shop-menu-open .shop__menu,
  .shop__menu-wrap.is-fixed.is-shop-menu-open .shop__menu.is-fixed {
    top: 109px;
    max-height: calc(100vh - 121px);
  }
}

.page--shop-subpage .shop__hero {
  display: grid;
}

.page--shop-subpage .shop__hero::after {
  display: none;
}
.coupon-offer {
  --coupon-offer-color: var(--color-primary);
  --coupon-offer-border: #f5b6d5;
  --coupon-offer-background: #fff5fa;
}

.coupon-offer--newcomer {
  --coupon-offer-color: #21865c;
  --coupon-offer-border: #b9e4cf;
  --coupon-offer-background: linear-gradient(155deg, #eaf8f1, #fff 72%);
}

.coupon-offer--first {
  --coupon-offer-color: #b87905;
  --coupon-offer-border: #efd995;
  --coupon-offer-background: linear-gradient(155deg, #fff8df, #fff 72%);
}

.coupon-offer--early {
  --coupon-offer-color: #dc6418;
  --coupon-offer-border: #f3c49e;
  --coupon-offer-background: linear-gradient(155deg, #fff1e5, #fff 72%);
}

.coupon-offer--night {
  --coupon-offer-color: #5143a6;
  --coupon-offer-border: #bdb4e8;
  --coupon-offer-background: #f4f2ff;
}

.coupon-offer--rain {
  --coupon-offer-color: #268cc8;
  --coupon-offer-border: #a8d9ef;
  --coupon-offer-background: #f5fcff;
}

.coupon-offer--site {
  --coupon-offer-color: #d51168;
  --coupon-offer-border: #f5b6d5;
  --coupon-offer-background: #fff5fa;
}

.premium__coupon .coupon-offer,
.gold__coupon .coupon-offer,
.regular__coupon .coupon-offer {
  border: 1px solid var(--coupon-offer-border);
  background: var(--coupon-offer-background);
}

.premium__coupon .coupon-offer .premium__coupon-text,
.gold__coupon .coupon-offer .gold__coupon-text,
.regular__coupon .coupon-offer .regular__coupon-text {
  border-color: var(--coupon-offer-color);
  color: var(--coupon-offer-color);
  background: var(--coupon-offer-background);
}

.premium__coupon .coupon-offer strong,
.premium__coupon .coupon-offer small,
.gold__coupon .coupon-offer strong,
.gold__coupon .coupon-offer small,
.regular__coupon .coupon-offer strong,
.regular__coupon .coupon-offer small {
  color: var(--coupon-offer-color);
}

.page--shop-list .premium__coupon .coupon-offer[class*="coupon-offer--"] .premium__coupon-text,
.page--shop-list .gold__coupon .coupon-offer[class*="coupon-offer--"] .gold__coupon-text,
.page--shop-list .regular__coupon .coupon-offer[class*="coupon-offer--"] .regular__coupon-text {
  border-color: var(--coupon-offer-color);
  color: var(--coupon-offer-color);
  background: #fff;
}

.page--shop-list .premium__coupon .coupon-offer[class*="coupon-offer--"] strong,
.page--shop-list .gold__coupon .coupon-offer[class*="coupon-offer--"] strong,
.page--shop-list .regular__coupon .coupon-offer[class*="coupon-offer--"] strong {
  color: var(--coupon-offer-color);
  font-size: 24px;
}

.page--shop-list .premium__coupon .coupon-offer[class*="coupon-offer--"] strong small,
.page--shop-list .gold__coupon .coupon-offer[class*="coupon-offer--"] strong small,
.page--shop-list .regular__coupon .coupon-offer[class*="coupon-offer--"] strong small {
  color: var(--coupon-offer-color);
  font-size: 12px;
}

.page--shop-list .premium__girls,
.page--shop-list .premium__blog,
.page--shop-list .premium__coupon,
.page--shop-list .premium__event,
.page--shop-list .gold__blog,
.page--shop-list .gold__coupon,
.page--shop-list .gold__event,
.page--shop-list .regular__coupon,
.page--shop-list .regular__event {
  position: relative;
}

.listing-panel-link {
  position: absolute;
  z-index: 10;
  inset: 0;
  border-radius: inherit;
}

.listing-panel-link:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: -3px;
}

.page--shop-list .premium__girls > .listing-panel-link {
  position: absolute;
  z-index: 10;
  inset: 0;
  display: block;
  min-height: 0;
  border: 0;
  border-radius: inherit;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
}

.page--shop-list .premium__girls > .listing-panel-link::after {
  display: none;
  content: none;
}

.page--shop-list [data-listing-panel-href] {
  cursor: pointer;
}

.page--shop-list [data-listing-panel-href]:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: -3px;
}

.page--shop-list .premium__girls header {
  margin-bottom: 0;
}

.page--shop-list .premium__girls header .schedule__lead {
  margin: 0 10px;
  padding-top: 3px;
}

.page--shop-list .premium__girls ul {
  margin-top: 0;
}

.listing__plan-divider {
  position: relative;
  width: 100%;
  height: 28px;
  margin: 30px 0;
  border: 0;
  filter: drop-shadow(0 2px 3px rgba(80, 34, 56, .12));
}

.listing__plan-divider span {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: var(--divider-gem-size, 14px);
  height: var(--divider-gem-size, 14px);
  border: 2px solid var(--divider-gem-border, #999);
  background: var(--divider-gem-background, #fff);
  box-shadow:
    0 0 0 3px #fff,
    0 0 0 4px var(--divider-gem-ring, #ddd),
    0 3px 8px var(--divider-gem-shadow, rgba(0, 0, 0, .18));
  transform: translate(-50%, -50%) rotate(45deg);
}

.listing__plan-divider span::before {
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(255, 255, 255, .85);
  background: rgba(255, 255, 255, .25);
  content: "";
}

.listing__plan-divider span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: -14px 14px 0 var(--divider-spark-color, #ccc), 14px -14px 0 var(--divider-spark-color, #ccc);
  content: "";
  transform: translate(-50%, -50%);
}

.listing__plan-divider--platinum {
  --divider-gem-size: 19px;
  --divider-gem-border: #7f2d94;
  --divider-gem-background: linear-gradient(135deg, #fff 0%, #edb9f5 38%, #bd5fcb 65%, #f19bc9 100%);
  --divider-gem-ring: #d79be1;
  --divider-gem-shadow: rgba(129, 43, 147, .38);
  --divider-spark-color: #c46fd1;
  background:
    linear-gradient(90deg, transparent, #efc7f5 8%, #9543ac 42%, #e36cb3 58%, #f4cede 92%, transparent) center 5px / 100% 3px no-repeat,
    linear-gradient(90deg, transparent, #f0d2f4 12%, #b766c6 50%, #f2d3e3 88%, transparent) center 11px / 94% 2px no-repeat,
    linear-gradient(90deg, transparent, #efd8f2 18%, #ce8cd8 50%, #f2d8e6 82%, transparent) center 17px / 86% 2px no-repeat,
    linear-gradient(90deg, transparent, #f6e6f7 25%, #ddaee4 50%, #f6e4ed 75%, transparent) center 23px / 76% 1px no-repeat;
}

.listing__plan-divider--gold {
  --divider-gem-size: 17px;
  --divider-gem-border: #a66a00;
  --divider-gem-background: linear-gradient(135deg, #fffbe3 0%, #ffe17a 38%, #c98a0c 70%, #fff0a7 100%);
  --divider-gem-ring: #e4bd55;
  --divider-gem-shadow: rgba(163, 103, 0, .35);
  --divider-spark-color: #d4a52f;
  background:
    linear-gradient(90deg, transparent, #f8e5a3 7%, #b97908 38%, #ffe48a 50%, #b97908 62%, #f8e5a3 93%, transparent) center 7px / 100% 4px no-repeat,
    linear-gradient(90deg, transparent, #f6df91 15%, #c38c20 50%, #f6df91 85%, transparent) center 15px / 90% 2px no-repeat,
    linear-gradient(90deg, transparent, #faedbe 24%, #d7ad4d 50%, #faedbe 76%, transparent) center 22px / 76% 1px no-repeat;
}

.listing__plan-divider--regular {
  --divider-gem-size: 14px;
  --divider-gem-border: #24784e;
  --divider-gem-background: linear-gradient(135deg, #f2fff7, #6fc693 58%, #31885b);
  --divider-gem-ring: #9bd6b4;
  --divider-gem-shadow: rgba(35, 119, 77, .28);
  --divider-spark-color: #5aac80;
  background:
    linear-gradient(90deg, transparent, #c4ead4 10%, #389866 44%, #76c99a 56%, #c4ead4 90%, transparent) center 10px / 100% 4px no-repeat,
    linear-gradient(90deg, transparent, #d8f1e2 24%, #69b98c 50%, #d8f1e2 76%, transparent) center 20px / 76% 2px no-repeat;
}

.listing__plan-divider--free {
  --divider-gem-size: 10px;
  --divider-gem-border: #858b92;
  --divider-gem-background: linear-gradient(135deg, #fff, #c7cbd0 62%, #969ca3);
  --divider-gem-ring: #d7dade;
  --divider-gem-shadow: rgba(80, 85, 91, .22);
  --divider-spark-color: #aeb3b9;
  background:
    linear-gradient(90deg, transparent, #d7dade 10%, #92989f 45%, #bcc1c6 55%, #d7dade 90%, transparent) center / 100% 3px no-repeat;
}

.listing-news {
  display: grid;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.listing-news li {
  display: grid;
  grid-template-columns: 46px 66px minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  min-width: 0;
  border-bottom: 1px solid #ffe0ec;
  padding: 5px 7px;
  background: #fff;
}

.listing-news li:last-child {
  border-bottom: 0;
}

.listing-news time {
  color: #666;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.listing-news .shop-news__tag {
  min-height: 18px;
  padding: 3px 4px;
  font-size: 9px;
}

.listing-news__title {
  min-width: 0;
  overflow: hidden;
  color: #333;
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-news--premium {
  grid-template-rows: repeat(5, minmax(0, 1fr));
}

.listing-news--premium li {
  padding-top: 2px;
  padding-bottom: 2px;
}

.listing-news--gold {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.listing-news--gold li {
  padding-top: 2px;
  padding-bottom: 2px;
}

.listing-news--regular {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.gold__listing-section .gold__coupon > .gold__coupon-item {
  height: 100%;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  align-self: stretch;
  gap: 0;
}

.gold__listing-section .gold__coupon .coupon-offer {
  height: 100%;
  min-height: 0;
  gap: 10px;
  border-radius: 5px;
  padding: 5px 14px;
  font-size: 13px;
}

.gold__listing-section .gold__coupon .gold__coupon-text {
  padding: 6px 9px;
  font-size: 12px;
}

.gold__listing-section .gold__coupon .coupon-offer strong {
  font-size: 22px;
}

.gold__listing-section .gold__coupon .coupon-offer strong small {
  font-size: 10px;
}

.page--shop-list .premium__coupon > .premium__coupon-item {
  height: 100%;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  align-self: stretch;
  gap: 1px;
}

.page--shop-list .premium__coupon .coupon-offer {
  height: 100%;
  min-height: 0;
  gap: 10px;
  border-radius: 5px;
  padding: 4px 12px;
  font-size: 13px;
}

.page--shop-list .premium__coupon .premium__coupon-text {
  padding: 5px 8px;
  font-size: 12px;
}

.page--shop-list .premium__coupon .coupon-offer strong {
  font-size: 22px;
}

.page--shop-list .premium__coupon .coupon-offer strong small {
  font-size: 10px;
}

@media (max-width: 1100px) {
  .gold__listing-section .gold__coupon .coupon-offer {
    min-height: 68px;
  }

  .page--shop-list .premium__coupon .coupon-offer {
    min-height: 68px;
  }
}

/* ============================================================
   ログイン画面 (admin / master / mygirls 共通)
   ============================================================ */
.login-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 32px 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 15, 131, .14), transparent 34%),
    linear-gradient(180deg, #fff7fb, #fafafa 54%, #fff);
}

.login-form {
  width: min(100%, 430px);
}

.login-form__panel {
  border: 1px solid #ffd3e5;
  border-radius: 18px;
  padding: 34px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(255, 15, 131, .12);
}

.login-form__brand {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.login-form__logo {
  width: 220px;
  max-width: 100%;
  height: auto;
}

.login-form__header {
  margin-bottom: 22px;
  text-align: center;
}

.login-form__header h1 {
  margin: 0 0 8px;
  color: #ff0f83;
  font-size: 28px;
  line-height: 1.3;
}

.login-form__header p {
  margin: 0;
  color: #666;
  font-weight: 700;
  line-height: 1.7;
}

.login-form__body {
  display: grid;
  gap: 16px;
}

.login-form__field {
  display: grid;
  gap: 8px;
}

.login-form__field label,
.login-form__remember {
  color: #444;
  font-weight: 900;
}

.login-form__field input {
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  border: 1px solid #ffb8d5;
  border-radius: 10px;
  padding: 0 14px;
  background: #fff;
  color: #222;
  font: inherit;
  font-weight: 700;
  outline: none;
}

.login-form__field input:focus {
  border-color: #ff0f83;
  box-shadow: 0 0 0 3px rgba(255, 15, 131, .14);
}

.login-form__remember {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 8px;
  width: fit-content;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}

.login-form__remember input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
}

.login-form__remember-mark {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 1px solid #999;
  border-radius: 2px;
  background: #fff;
}

.login-form__remember input:checked + .login-form__remember-mark {
  border-color: #ff0f83;
  background: #ff0f83;
}

.login-form__remember input:checked + .login-form__remember-mark::after {
  position: absolute;
  top: 1px;
  left: 5px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.login-form__remember .login-form__remember-text:last-child {
  display: block;
  margin: 0;
  line-height: 1.4;
}

.login-form__submit {
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff2b95, #ec0077);
  color: #fff;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(255, 15, 131, .22);
}

.login-form__submit:hover {
  background: linear-gradient(180deg, #ff4aa5, #ff0f83);
}

.login-form__help {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 20px;
  text-align: center;
}

.login-form__help a,
.login-form__help-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #ff0f83;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.login-form__flash {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #b7e4c7;
  border-radius: 8px;
  background: #f0fbf4;
  color: #2f7a4d;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.login-form__error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #ffd1e4;
  border-radius: 8px;
  background: #fff5f9;
  color: #ff0f83;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .login-page {
    padding: 18px 12px;
  }

  .login-form__panel {
    border-radius: 14px;
    padding: 24px 18px;
  }

  .login-form__header h1 {
    font-size: 24px;
  }
}

/* ===== お気に入りボタン (views/portal/partials/favorite-button.php) =====
   文言は登録状態にかかわらず変えず、アイコンの塗りつぶし・ボタン自体の色のみで
   登録済みかどうかを一目で分かるようにする。多数のページ固有スタイルより後に
   置くことで、同じ詳細度の場合にこちらを優先させている(カスケードの順序に依存)。
   フォーム(display:contents)が間に挟まるため ".xxx>button" のような子コンビネータ指定の
   ボタン共通スタイル(プレミアムプラン一覧カード等)は効かない。そのため角丸・枠線を
   ここで明示しておき、各コンテナ側の子孫セレクタ(詳細度が同じかそれ以上)がある場合は
   そちらが優先されて自然に上書きされる。 */
.favorite-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  color: var(--color-primary);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.favorite-toggle__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  flex: 0 0 auto;
}

.favorite-toggle__icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.favorite-toggle.is-active .favorite-toggle__icon path {
  fill: currentColor;
}

button.favorite-toggle.is-active {
  color: var(--color-primary);
  background: linear-gradient(180deg, #ffe1ec 0%, #ffabce 100%);
  border-color: #ff85b8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6), 0 2px 6px rgba(230, 40, 120, .28);
}

/* 店舗一覧: 割引名はスマホ版は全文表示、PC版(640px超)は6文字省略表示にする */
.coupon-label-short {
  display: none !important;
}

@media (min-width: 641px) {
  .coupon-label-full {
    display: none !important;
  }

  .coupon-label-short {
    display: inline-block !important;
  }
}
