/* Layout */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

h1 {
  font-size: 1.5rem;
  margin: 0;
}

h2 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

main {
  flex: 1;
}

/* Header */
header {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}

.site-logo__initial {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
  font-weight: 900;
  color: #771ACE;
  line-height: 1;
  /* -webkit-text-stroke: 3px #771ACE; */
}

/* 別の力技アプローチ */
.site-logo__initial::before {
  content: "";
  position: absolute;
  top: 45%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 8px;

  /* 上半分に円、下半分に三角（台形）を配置 */
  background:
    radial-gradient(circle at 50% 40%, #8a2be2 30%, transparent 30.5%),
    conic-gradient(from 160deg at 50% 35%, #8a2be2 40deg, transparent 0);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: 1.5rem;
}

.site-nav__link {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
}

.site-nav__link:hover {
  color: #333;
}

/* Footer */
footer {
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem 1rem 5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

footer nav a {
  color: #666;
  text-decoration: none;
}

footer p {
  margin: 0 0 0.75rem 0;
}

footer a {
  color: #666;
}

/* Top Hero */
.top-hero {
  padding: 1rem 1rem 0rem;
  /* border-bottom: 1px solid #e0e0e0; */
}

.top-hero__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
  margin: 0;
}

/* Video Grid */
.video-grid-section {
  padding: 1rem;
}

.video-grid-section__more {
  display: block;
  width: fit-content;
  margin: 1.25rem auto 0;
  padding: 0.6rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
  text-decoration: none;
  border: 1.5px solid #333;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.video-grid-section__more:hover {
  background: #333;
  color: #fff;
}

.video-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .video-grid {
    gap: 1rem;
  }
}


.video-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  text-decoration: none;
}

.video-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.video-card__image-wrap:hover .video-card__image {
  transform: scale(1.04);
}

.video-card__image.amateur {
  object-fit: contain;
}

.video-card__sale-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #e53e3e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  pointer-events: none;
}

.video-card__title-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.video-card__title {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Bestseller Section */
.bestseller-section {
  padding: 1.5rem 0;
}

.bestseller-section__title {
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 0.75rem;
  padding-inline: 1rem;
}

.bestseller-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.bestseller-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111;
}

.bestseller-card__link {
  display: block;
  width: 100%;
  height: 100%;
}

.bestseller-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.bestseller-card__link:hover .bestseller-card__image {
  transform: scale(1.04);
}

.bestseller-card__rank {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
  z-index: 1;
}

.bestseller-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1.2rem 0.5rem 0.4rem;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

.bestseller-card__badge {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  background: #e53e3e;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.35rem;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 1;
}

/* Bio Grid */
.bio-page h1 {
  padding-inline: 1rem;
}

.bio-tagline {
  font-size: 0.85rem;
  color: #666;
  padding: 0 1rem 0.75rem;
  margin: 0;
}

.bio-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.bio-card {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111;
}

.bio-card__link {
  display: block;
  width: 100%;
  height: 100%;
}

.bio-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease;
}

.bio-card__link:hover .bio-card__image {
  transform: scale(1.04);
}

.bio-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1.2rem 0.5rem 0.4rem;
  text-align: center;
  z-index: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
  pointer-events: none;
}

.bio-card__sale-badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: #e53e3e;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
}

.bio-card__campaign-badge {
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  background: #e53e3e;
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem;
  border-radius: 2px;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.bio-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.15rem;
  padding: 0.5rem 0.4rem;
  padding-top: 2rem;
}

.bio-card__title {
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.bio-card__meta {
  color: #fff;
  font-size: 0.6rem;
  margin: 0;
  display: flex;
  gap: 0.4rem;
}

.bio-card__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}

.bio-card__genre-tag {
  color: #fff;
  font-size: 0.55rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 2px;
  padding: 0.05rem 0.25rem;
  white-space: nowrap;
}

.bio-card__price {
  color: #ffd700;
  font-size: 0.6rem;
  font-weight: 700;
  margin: 0;
}

/* Bio Variant B (2-column, text below image) */
.bio-grid--b {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.bio-card--b {
  aspect-ratio: auto;
  background: transparent;
  overflow: visible;
}

.bio-card--b .bio-card__link {
  display: flex;
  flex-direction: column;
  height: auto;
  text-decoration: none;
  color: inherit;
}

.bio-card--b .bio-card__image {
  aspect-ratio: 2 / 3;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.2s ease;
}

.bio-card--b .bio-card__link:hover .bio-card__image {
  transform: scale(1.02);
}

.bio-card__info {
  padding: 0.4rem 0 0;
}

.bio-card--b .bio-card__title {
  color: #333;
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0 0 0.25rem;
}

.bio-card--b .bio-card__meta {
  color: #555;
  font-size: 0.7rem;
  margin: 0 0 0.25rem;
}

.bio-card--b .bio-card__genres {
  margin-bottom: 0.25rem;
}

.bio-card--b .bio-card__genre-tag {
  color: #555;
  font-size: 0.65rem;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 0.05rem 0.3rem;
  white-space: nowrap;
}

.bio-card--b .bio-card__price {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}

.bio-load-more {
  display: block;
  width: fit-content;
  margin: 1.25rem auto;
  padding: 0.6rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #333;
  background: transparent;
  border: 1.5px solid #333;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.bio-load-more:hover:not(:disabled) {
  background: #333;
  color: #fff;
}

.bio-load-more:disabled {
  opacity: 0.5;
  cursor: default;
}

.bio-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #999;
  font-size: 0.9rem;
}

/* Product Detail */
.product-detail {
  max-width: 600px;
  margin: 0 auto;
}

.product-detail__video-wrap {
  position: relative;
  width: 100%;
  background: #000;
  /* 560x360 の動画 + プレイヤーUIクロム分を加算 */
  padding-top: calc(360 / 560 * 100% + 56px);
}

.product-detail__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-detail__image-wrap {
  width: 100%;
  background: #000;
  line-height: 0;
}

.product-detail__thumb {
  width: 100%;
  height: auto;
  max-height: 56vw;
  object-fit: contain;
  display: block;
}

/* Sample image carousel */
.product-detail__carousel {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
}

.product-detail__carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.product-detail__carousel-slide {
  flex: 0 0 100%;
  line-height: 0;
}

.product-detail__carousel-img {
  width: 100%;
  height: auto;
  max-height: 56vw;
  object-fit: contain;
  display: block;
}

.product-detail__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 2.2rem;
  height: 3.5rem;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 0;
}

.product-detail__carousel-btn--prev { left: 0; }
.product-detail__carousel-btn--next { right: 0; }

.product-detail__carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.product-detail__carousel-dots {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.product-detail__carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.product-detail__carousel-dot--active {
  background: #fff;
}

.product-detail__info {
  padding: 1rem 1rem;
}

.product-detail__campaign-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff5f5;
  border: 1.5px solid #e53e3e;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 0.8rem;
}

.product-detail__campaign-wrap--critical {
  background: #fff0f0;
  border-color: #c53030;
  border-width: 2px;
}

.product-detail__campaign-badge {
  display: inline-block;
  background: #e53e3e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.product-detail__countdown-label {
  font-size: 0.75rem;
  color: #e53e3e;
  font-weight: 600;
  white-space: nowrap;
}

.product-detail__countdown {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e53e3e;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.product-detail__countdown--urgent {
  color: #c53030;
}

@keyframes countdown-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.product-detail__countdown--critical {
  color: #c53030;
  animation: countdown-pulse 1s ease-in-out infinite;
}

.product-detail__title {
  font-size: 1rem;
  line-height: 1.55;
  color: #222;
  margin: 0 0 0.75rem;
}

.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.product-detail__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding:  0 1rem;
}

.product-detail__genres-label {
  width: 100%;
  font-size: 0.7rem;
  color: #888;
  margin: 0 0 0.35rem;
}

.product-detail__genre-tag {
  font-size: 0.7rem;
  color: #4a6fa5;
  border: 1px solid #4a6fa5;
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
}

.product-detail__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0 0 1.25rem;
}

.product-detail__price--sale {
  color: #e53e3e;
}

.product-detail__deliveries {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-detail__delivery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.product-detail__delivery-type {
  color: #718096;
}

.product-detail__delivery-price {
  font-weight: 700;
  color: #1a202c;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-detail__delivery-price--sale {
  color: #e53e3e;
}

.product-detail__delivery-list-price {
  font-weight: 400;
  color: #a0aec0;
  font-size: 0.8rem;
}

.viewing-toast {
  position: fixed;
  bottom: 125px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(30, 30, 30, 0.88);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 200;
}

.viewing-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-detail__cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.85);
  z-index: 100;
}

.product-detail__cta-bar--sale {
  border-top: 3px solid #e53e3e;
  background: rgba(255, 248, 248, 0.92);
}

.product-detail__comment {
  text-align: center;
  font-size: 0.78rem;
  color: #555;
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.product-detail__cta-trust {
  text-align: center;
  font-size: 0.72rem;
  color: #718096;
  margin: 0.5rem 0 0;
}

.product-detail__buy-btn {
  display: block;
  text-align: center;
  background: #222;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.15s ease;
  max-width: 480px;
  margin: 0 auto;
}

.product-detail__buy-btn:hover {
  background: #444;
}

@keyframes card-fade-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-fade-in {
  animation: card-fade-in 0.3s ease both;
}

@keyframes pulse-sale {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4); }
  50%       { transform: scale(1.02); box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
}

.product-detail__buy-btn--sale {
  background: #e53e3e;
  animation: pulse-sale 2s ease-in-out infinite;
}

.product-detail__buy-btn--sale:hover {
  background: #c53030;
  animation: none;
}

/* Sale Banner */
.sale-banner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff5f5;
  border-top: 3px solid #e53e3e;
  border-bottom: 1px solid #fca5a5;
  padding: 0.75rem 1rem;
}

.sale-banner__discount {
  font-size: 1.25rem;
  font-weight: 900;
  color: #e53e3e;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sale-banner__text {
  font-size: 0.85rem;
  color: #c53030;
  font-weight: 600;
}

.product-not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1rem;
  gap: 1rem;
  color: #999;
}

.product-not-found__back {
  font-size: 0.9rem;
  color: #555;
}

/* Actress tags */
.product-detail__actresses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}

.product-detail__actress-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #444;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.product-detail__actress-tag:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Genre tag as link */
a.product-detail__genre-tag {
  display: inline-block;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

a.product-detail__genre-tag:hover {
  background: #4a6fa5;
  color: #fff;
  border-color: #4a6fa5;
}

/* Series / Maker tags */
.product-detail__series,
.product-detail__makers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.product-detail__tag-label {
  font-size: 0.65rem;
  color: #888;
  white-space: nowrap;
}

.product-detail__series-tag,
.product-detail__maker-tag {
  font-size: 0.7rem;
  border-radius: 3px;
  padding: 0.1rem 0.4rem;
  display: inline-block;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.product-detail__series-tag {
  color: #1a6fa8;
  border: 1px solid #9ac0db;
}

.product-detail__series-tag:hover {
  background: #1a6fa8;
  color: #fff;
  border-color: #1a6fa8;
}

.product-detail__maker-tag {
  color: #6a4a9a;
  border: 1px solid #c0a0db;
}

.product-detail__maker-tag:hover {
  background: #6a4a9a;
  color: #fff;
  border-color: #6a4a9a;
}

/* Original Comment */
.product-original-comment {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1rem 1.25rem;;
}

.product-original-comment__card {
  background: #fff9f0;
  border: 1px solid #f0d9b0;
  border-left: 4px solid #e07820;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.product-original-comment__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e07820;
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
}

.product-original-comment__body {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

/* Related works */
.related-works {
  /* border-top: 1px solid #e0e0e0; */
}

/* Search Page */
.search-header {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.search-form {
  display: flex;
  gap: 0.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.search-form__input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
}

.search-form__input:focus {
  border-color: #333;
}

.search-form__btn {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.search-form__btn:hover {
  background: #444;
}

.search-form__select {
  padding: 0.6rem 0.5rem;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.search-form__select:focus {
  outline: none;
  border-color: #333;
}

@media (max-width: 639px) {
  .search-form {
    flex-wrap: wrap;
  }
  .search-form__select {
    width: 100%;
  }
  .search-form__input {
    min-width: 0;
  }
}

.search-result-header {
  padding: 0.75rem 1rem 0;
}

.search-result-title {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.section-heading {
  font-size: 1em;
  font-weight: bold;
  margin: 0.83em 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #999;
  font-size: 0.9rem;
}

/* Genre List */
.genre-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
}

.genre-list__item {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #333;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.genre-list__item:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}


/* Search browse links */
.search-browse-links {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
}

.search-browse-links__item {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.search-browse-links__item:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Actress Profile */
.actress-profile {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: #f5f0ff;
  border-radius: 12px;
  border-left: 3px solid #771ACE;
  margin: 0.5rem 1rem 1rem;
}

.actress-profile__image {
  width: 110px;
  height: 147px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  flex-shrink: 0;
  background: #e0d4f5;
  box-shadow: 0 3px 14px rgba(119, 26, 206, 0.22);
}

.actress-profile__stats {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.75rem;
  font-size: 0.8rem;
  color: #333;
  align-content: start;
}

.actress-profile__stats dt {
  color: #771ACE;
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
}

.actress-profile__stats dd {
  margin: 0;
}

@media (min-width: 640px) {
  .actress-profile__image {
    width: 130px;
    height: 173px;
  }
}


/* Sale Carousel */
.sale-carousel-section {
  padding: 1rem 0 0.5rem 1rem;
}

.sale-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 1rem;
  margin-bottom: 0.75rem;
}

.sale-carousel__title {
  font-size: 1.1rem;
  margin: 0;
}

.sale-carousel__more {
  font-size: 0.8rem;
  color: #555;
  text-decoration: none;
}

.sale-carousel__more:hover {
  color: #333;
}

.sale-carousel__outer {
  position: relative;
}

.sale-carousel__track {
  display: flex;
  gap: 0.6rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-right: 1rem;
}

.sale-carousel__track::-webkit-scrollbar {
  display: none;
}

.sale-carousel__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

.sale-carousel__nav--prev { left: -18px; }
.sale-carousel__nav--next { right: 14px; }

@media (min-width: 640px) {
  .sale-carousel__nav {
    display: flex;
  }
}


.sale-card {
  flex: 0 0 calc(36vw - 0.5rem);
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 640px) {
  .sale-card {
    flex: 0 0 calc(33.3% - 0.5rem);
  }
}

.sale-card__image-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.sale-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  display: block;
  transition: transform 0.3s ease;
}

.sale-card:hover .sale-card__image {
  transform: scale(1.04);
}

.sale-card__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  background: #e53e3e;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 1;
}

.sale-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 55%, transparent 100%);
  padding: 2rem 0.5rem 0.5rem;
}

.sale-card__title {
  margin: 0;
  font-size: 0.68rem;
  color: #fff;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Coming Soon */
.coming-soon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 3rem 1rem;
}

.coming-soon__inner {
  text-align: center;
  max-width: 480px;
}

.coming-soon__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.coming-soon__subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 2rem;
}

.coming-soon__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #222;
  padding: 0.35em 1em;
  border-radius: 999px;
  margin: 0 0 1.5rem;
}

.coming-soon__message {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/** 広告バナー **/
#apptemp27 {
  padding: 2rem 0 !important;
}

/** 記事ページ **/
.article-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

.article-page__header {
  display: block;
  margin-bottom: 1.5rem;
}

.article-page__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 0.4rem;
  color: #111;
}

.article-page__date {
  font-size: 0.8rem;
  color: #999;
}

.article-page__date--updated {
  margin-left: 0.4rem;
}

.article-page__eyecatch {
  margin-bottom: 1.75rem;
  border-radius: 8px;
  overflow: hidden;
}

.article-page__eyecatch-img {
  display: block;
  width: 100%;
  height: auto;
}

.mika-intro {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin-bottom: 2rem;
}

.mika-intro__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.mika-intro__avatar-link {
  display: flex;
  flex-shrink: 0;
}

.mika-intro__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.2s;
}

.mika-intro__avatar-link:hover .mika-intro__avatar {
  opacity: 0.8;
}

.mika-intro__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
}

.mika-intro__name:hover {
  text-decoration: underline;
}

.mika-intro__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

.article-appeals {
  margin-bottom: 2rem;
  background: #f8f8f8;
  border-radius: 8px;
  border-left: 4px solid #e8375a;
  padding: 1rem 1.1rem;
}

.article-appeals__heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: #e8375a;
  margin: 0 0 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-appeals__body {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin: 0;
}

.article-works {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-work {
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.article-work__swiper {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #000;
  border-radius: 8px;
}

.article-work__swiper-track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.article-work__swiper-slide {
  flex: 0 0 100%;
  display: block;
}

.article-work__swiper-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  display: block;
}

.article-work__rank {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0;
  line-height: 1;
}

.article-work__rank--1 { color: #c9a227; }
.article-work__rank--2 { color: #9e9e9e; }
.article-work__rank--3 { color: #a0522d; }
.article-work__rank--other { color: #333; }

.article-work__badge {
  position: absolute;
  bottom: 4px;
  left: 0;
  background: #e53935;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15em 0.5em;
  border-radius: 2px;
  z-index: 1;
}

.article-work__swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-work__swiper-btn--prev { left: 0.5rem; }
.article-work__swiper-btn--next { right: 0.5rem; }

.article-work__swiper-dots {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 0;
}

.article-work__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ccc;
  transition: background 0.2s;
}

.article-work__dot.is-active {
  background: #222;
}

.article-work__body {
  padding: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.article-work__title-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.5rem;
}

.article-work__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.8rem;
  color: #666;
}

.article-work__meta-item {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.article-work__meta-price {
  font-weight: 700;
  color: #111;
}

.article-work__deliveries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
}

.article-work__delivery {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
}

.article-work__delivery-label {
  font-size: 0.7rem;
  font-weight: 700;
  background: #eee;
  color: #555;
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.article-work__delivery-list-price {
  color: #aaa;
  text-decoration: line-through;
  font-size: 0.8rem;
}

.article-work__delivery-price {
  font-weight: 700;
  color: #111;
}


.article-work__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-work__review {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

.article-work__comment {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0;
}

.article-work__comment-avatar-link {
  flex-shrink: 0;
  display: flex;
}

.article-work__comment-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 0.15rem;
}

.article-work__comment-text {
  font-size: 0.85rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  background: #f0f0f0;
  border-radius: 0 8px 8px 8px;
  padding: 0.5rem 0.7rem;
  flex: 1;
}

.article-work__cta {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #222;
  padding: 0.85em 1em;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  margin-top: 0.5rem;
}

.article-work__cta--sale {
  background: #e53935;
}

.article-page__entity-link {
  text-align: center;
  margin-top: 2rem;
}

.article-page__entity-link-anchor {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
  border: 1.5px solid #222;
  padding: 0.6em 1.5em;
  border-radius: 999px;
  text-decoration: none;
}

.article-share {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
  text-align: center;
}

.article-share__label {
  font-size: 0.8rem;
  color: #999;
  margin: 0 0 0.75rem;
}

.article-share__buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5em 1.2em;
  border-radius: 999px;
  text-decoration: none;
}

.article-share__btn--x {
  background: #000;
  color: #fff;
}

.article-share__btn--line {
  background: #06c755;
  color: #fff;
}

@media (max-width: 480px) {
  .article-page__title {
    font-size: 1.25rem;
  }

}

.article-page__meta {
  margin-top: 0.4rem;
}

/** 記事一覧ページ **/
.article-list-page {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.article-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-list__item {
  border-bottom: 1px solid #eee;
}

.article-list__link {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}

.article-list__link:hover .article-list__title {
  color: #e53935;
}

.article-list__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f0;
}

.article-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-list__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.article-list__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
  background: #111;
  color: #fff;
  align-self: flex-start;
}

.article-list__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-list__snippet {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.article-list__date {
  font-size: 0.75rem;
  color: #999;
  margin-top: auto;
}

@media (max-width: 480px) {
  .article-list__thumb {
    width: 90px;
    height: 60px;
  }

  .article-list__title {
    font-size: 0.9rem;
  }

  .article-list__snippet {
    display: none;
  }
}

/* About page */
.about-page__heading {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.about-page {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-page__profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about-page__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.about-page__profile-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-page__name {
  font-size: 1.25rem;
  font-weight: 700;
}

.about-page__job-title {
  font-size: 0.85rem;
  color: #666;
}

.about-page__bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}

.about-page__sns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-page__sns-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
}

.about-page__sns-link:hover {
  text-decoration: underline;
}