*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #1a1a1f;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: #e4007f;
  text-decoration: none;
}
a:hover {
  color: #c0006a;
  text-decoration: underline;
}

h1, h2, h3, h4 {
  line-height: 1.4;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
}

.site-content {
  padding-block: 32px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111114;
  color: #ffffff;
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  min-height: 58px;
}

.site-logo {
  flex: 0 0 auto;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-logo a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.site-logo a::before {
  content: "";
  width: 6px;
  height: 1.05em;
  background: #e4007f;
  border-radius: 2px;
}
.site-logo a:hover {
  color: #ff4fb0;
  text-decoration: none;
}
@media (min-width: 600px) {
  .site-logo {
    font-size: 1.3rem;
  }
}

.nav-toggle {
  flex: 0 0 auto;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
}
.nav-toggle__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.nav-toggle__bars::before, .nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.nav-toggle__bars::before {
  top: -7px;
}
.nav-toggle__bars::after {
  top: 7px;
}
.site-header.is-open .nav-toggle__bars {
  background: transparent;
}
.site-header.is-open .nav-toggle__bars::before {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .nav-toggle__bars::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__collapse {
  flex-basis: 100%;
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 8px 0 14px;
}

.site-header.is-open .site-header__collapse {
  display: flex;
}

.site-header__search {
  width: 100%;
  min-width: 0;
}

.global-nav {
  width: 100%;
}
.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
  font-weight: 700;
}
.global-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, color 0.15s ease;
}
.global-nav a:hover {
  color: #fff;
  background: #e4007f;
  text-decoration: none;
}

@media (min-width: 900px) {
  .site-header__inner {
    flex-wrap: nowrap;
  }
  .nav-toggle {
    display: none;
  }
  .site-header__collapse {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
  }
  .site-header__search {
    flex: 0 0 300px;
    width: auto;
  }
  .global-nav {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }
  .global-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 4px;
    font-size: 0.9rem;
  }
  .global-nav a {
    padding: 7px 13px;
    white-space: nowrap;
  }
}
.search-form {
  display: flex;
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 999px;
}
.search-form__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 8px 14px;
  border: 0;
  background: transparent;
  color: #222;
  font-size: 0.9rem;
}
.search-form__input:focus {
  outline: none;
}
.search-form__btn {
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #e4007f;
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}
.search-form__btn:hover {
  background: #c0006a;
}

.site-footer {
  margin-top: 56px;
  padding-block: 32px;
  background: #1a1a20;
  color: #b8bac0;
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
}
.footer-nav a {
  color: #b8bac0;
}
.footer-nav a:hover {
  color: #ff4fb0;
  text-decoration: none;
}

.site-footer__note {
  margin: 0 0 8px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__copy {
  margin: 0;
  text-align: center;
  font-size: 0.8rem;
}

.single-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .single-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

.single-primary {
  min-width: 0;
}

.breadcrumb {
  margin: 0 0 16px;
  font-size: 0.8rem;
  color: #8a8f98;
}
.breadcrumb a {
  color: #555a63;
}
.breadcrumb a:hover {
  color: #e4007f;
}
.breadcrumb__sep {
  margin: 0 6px;
  color: #8a8f98;
}

.single-title {
  margin: 0 0 12px;
  font-size: 1.5rem;
  line-height: 1.45;
}
@media (min-width: 600px) {
  .single-title {
    font-size: 1.95rem;
  }
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 22px;
  color: #8a8f98;
  font-size: 0.82rem;
}
.single-meta__mod {
  color: #e4007f;
}

.single-thumb {
  margin: 0 0 28px;
}
.single-thumb img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.single-content {
  word-wrap: break-word;
}
.single-content p {
  margin: 0 0 1.4em;
}
.single-content h2 {
  scroll-margin-top: calc(var(--mirai-header-h, 60px) + 16px);
  margin: 2.2em 0 0.9em;
  padding: 10px 16px;
  background: #f5f6f8;
  border-left: 5px solid #e4007f;
  font-size: 1.35rem;
}
.single-content h3 {
  scroll-margin-top: calc(var(--mirai-header-h, 60px) + 16px);
  margin: 1.8em 0 0.7em;
  font-size: 1.15rem;
}
.single-content img {
  border-radius: 6px;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e6e7ea;
}
.single-tags__label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #555a63;
}
.single-tags .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-tags a {
  display: inline-block;
  padding: 4px 12px;
  background: #f5f6f8;
  border: 1px solid #e6e7ea;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #555a63;
}
.single-tags a:hover {
  background: #e4007f;
  border-color: #e4007f;
  color: #fff;
  text-decoration: none;
}

.post-explore {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid #e6e7ea;
}
.post-explore__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 1.3rem;
  font-weight: 800;
}
.post-explore__title::before {
  content: "";
  width: 6px;
  height: 1.05em;
  background: linear-gradient(180deg, #e4007f, #c0006a);
  border-radius: 2px;
}
.post-explore__subtitle {
  margin: 28px 0 12px;
  font-size: 1.05rem;
  font-weight: 800;
}
.post-explore__search {
  display: flex;
  gap: 8px;
  max-width: 520px;
  margin: 0 0 22px;
  padding: 6px 6px 6px 16px;
  background: #fff;
  border: 2px solid #e6e7ea;
  border-radius: 999px;
  transition: border-color 0.15s ease;
}
.post-explore__search:focus-within {
  border-color: #e4007f;
}
.post-explore__search input[type=search] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #1a1a1f;
  font-size: 1rem;
}
.post-explore__search input[type=search]:focus {
  outline: none;
}
.post-explore__search button {
  flex: 0 0 auto;
  padding: 10px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e4007f, #c0006a);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.15s ease;
}
.post-explore__search button:hover {
  filter: brightness(1.08);
}
.post-explore .front-find__banners {
  margin-bottom: 4px;
}
.post-explore .ranking-list {
  grid-template-columns: 1fr;
  gap: 8px;
}
.post-explore .ranking-thumb {
  width: 104px;
  height: 64px;
}

.single-sidebar {
  display: none;
}
@media (min-width: 900px) {
  .single-sidebar {
    display: block;
  }
}

.sidebar-sticky {
  position: sticky;
  top: calc(var(--mirai-header-h, 60px) + 16px);
}

.toc {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  border-radius: 10px;
}
.toc__title {
  margin: 0;
  padding: 12px 16px;
  background: #111114;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}
.toc__list {
  margin: 0;
  padding: 10px 6px;
  max-height: calc(100vh - var(--mirai-header-h, 60px) - 40px);
  overflow-y: auto;
  list-style: none;
  font-size: 0.85rem;
}
.toc__item {
  margin: 0;
}
.toc__item--h3 .toc__link {
  padding-left: 26px;
  font-size: 0.8rem;
  color: #555a63;
}
.toc__link {
  display: block;
  padding: 7px 12px;
  border-left: 3px solid transparent;
  color: #1a1a1f;
  line-height: 1.5;
  text-decoration: none;
}
.toc__link:hover {
  background: #f5f6f8;
  text-decoration: none;
}
.toc__link.is-active {
  background: #f5f6f8;
  border-left-color: #e4007f;
  color: #e4007f;
  font-weight: 700;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  border-radius: 10px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-link {
  display: block;
  color: inherit;
}
.card-link:hover {
  text-decoration: none;
}

.card-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-title {
  margin: 0;
  padding: 14px 16px 18px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.front-main {
  padding-block: 48px;
}

.front-title {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.front-desc {
  margin: 0;
  color: #555a63;
}

.front-search {
  margin-bottom: 44px;
  padding: clamp(28px, 5vw, 52px) clamp(20px, 4vw, 48px);
  border-radius: 22px;
  border: 1px solid #e6e7ea;
  background: radial-gradient(circle at 12% -10%, rgba(228, 0, 127, 0.12), transparent 45%), radial-gradient(circle at 108% 120%, rgba(228, 0, 127, 0.1), transparent 42%), linear-gradient(135deg, #ffffff, #f5f6f8);
  box-shadow: 0 12px 34px rgba(17, 17, 20, 0.07);
  text-align: center;
}
.front-search__inner {
  max-width: 680px;
  margin-inline: auto;
}
.front-search__title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: clamp(1.3rem, 3.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1a1f;
}
.front-search__title::before {
  content: "";
  width: 6px;
  height: 1.05em;
  background: #e4007f;
  border-radius: 2px;
}
.front-search__lead {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555a63;
}
.front-search__form {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 7px 7px 16px;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 6px 22px rgba(228, 0, 127, 0.14);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.front-search__form:focus-within {
  border-color: #e4007f;
  box-shadow: 0 10px 28px rgba(228, 0, 127, 0.24);
}
.front-search__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: #8a8f98;
}
.front-search__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 11px 6px;
  border: 0;
  background: transparent;
  color: #1a1a1f;
  font-size: 1.02rem;
}
.front-search__input::placeholder {
  color: #8a8f98;
}
.front-search__input:focus {
  outline: none;
}
.front-search__btn {
  flex: 0 0 auto;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e4007f, #c0006a);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.05s ease;
}
.front-search__btn:hover {
  filter: brightness(1.08);
}
.front-search__btn:active {
  transform: translateY(1px);
}
.front-search__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.front-search__tags-label {
  font-size: 0.8rem;
  color: #8a8f98;
}
.front-search__tag {
  display: inline-block;
  padding: 5px 14px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: #e4007f;
  background: rgba(228, 0, 127, 0.07);
  border: 1px solid rgba(228, 0, 127, 0.22);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.front-search__tag:hover {
  background: #e4007f;
  border-color: #e4007f;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 600px) {
  .front-search__btn {
    padding: 13px 34px;
  }
  .front-search__input {
    font-size: 1.08rem;
  }
}

.front-find,
.front-latest,
.front-ranking,
.front-about {
  margin-bottom: 48px;
}
.front-find:last-child,
.front-latest:last-child,
.front-ranking:last-child,
.front-about:last-child {
  margin-bottom: 0;
}

.front-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #1a1a1f;
}
.front-section__title::before {
  content: "";
  width: 6px;
  height: 1.1em;
  background: linear-gradient(180deg, #e4007f, #c0006a);
  border-radius: 2px;
}

.front-find__banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 26px;
}
@media (min-width: 600px) {
  .front-find__banners {
    grid-template-columns: 1fr 1fr;
  }
}

.front-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid #e6e7ea;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(17, 17, 20, 0.05);
  color: #1a1a1f;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.front-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #e4007f, #c0006a);
}
.front-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(228, 0, 127, 0.18);
  border-color: rgba(228, 0, 127, 0.4);
  color: #1a1a1f;
  text-decoration: none;
}
.front-banner__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(228, 0, 127, 0.1);
  color: #e4007f;
}
.front-banner__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.front-banner__label {
  font-size: 1.06rem;
  font-weight: 800;
  color: #1a1a1f;
}
.front-banner__sub {
  font-size: 0.82rem;
  color: #555a63;
}
.front-banner__arrow {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  color: #8a8f98;
  transition: transform 0.15s ease, color 0.15s ease;
}
.front-banner:hover .front-banner__arrow {
  color: #e4007f;
  transform: translateX(4px);
}

.front-kana__label {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 700;
  color: #555a63;
}

.front-kana {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
@media (min-width: 600px) {
  .front-kana {
    grid-template-columns: repeat(10, 1fr);
  }
}
.front-kana__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e6e7ea;
  background: #ffffff;
  color: #1a1a1f;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(17, 17, 20, 0.04);
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.front-kana__item:hover {
  background: linear-gradient(135deg, #e4007f, #c0006a);
  border-color: #e4007f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(228, 0, 127, 0.28);
  text-decoration: none;
}

.ranking-tabs {
  display: flex;
  gap: 6px;
  max-width: 460px;
  margin: 0 0 22px;
  padding: 5px;
  background: #f5f6f8;
  border: 1px solid #e6e7ea;
  border-radius: 999px;
}

.ranking-tab {
  flex: 1 1 0;
  appearance: none;
  border: 0;
  padding: 9px 12px;
  border-radius: 999px;
  background: transparent;
  color: #555a63;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.ranking-tab:hover {
  color: #e4007f;
}
.ranking-tab.is-active {
  background: linear-gradient(135deg, #e4007f, #c0006a);
  color: #fff;
  box-shadow: 0 4px 12px rgba(228, 0, 127, 0.3);
}

.ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 900px) {
  .ranking-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
  }
}

.ranking-item {
  margin: 0;
}

.ranking-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 14px 8px 8px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  color: #1a1a1f;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.ranking-link:hover {
  transform: translateY(-2px);
  border-color: rgba(228, 0, 127, 0.4);
  box-shadow: 0 8px 18px rgba(228, 0, 127, 0.14);
  color: #1a1a1f;
  text-decoration: none;
}

.ranking-rank {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #f5f6f8;
  color: #555a63;
  font-size: 0.95rem;
  font-weight: 800;
  font-style: italic;
}

.ranking-item:nth-child(1) .ranking-rank {
  background: linear-gradient(135deg, #ffd960, #f5a623);
  color: #fff;
}

.ranking-item:nth-child(2) .ranking-rank {
  background: linear-gradient(135deg, #d3dae3, #9aa4b1);
  color: #fff;
}

.ranking-item:nth-child(3) .ranking-rank {
  background: linear-gradient(135deg, #e8b27a, #cf8d4e);
  color: #fff;
}

.ranking-thumb {
  flex: 0 0 auto;
  width: 124px;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f6f8;
}
@media (min-width: 900px) {
  .ranking-thumb {
    width: 186px;
    height: 114px;
  }
}
.ranking-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ranking-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a1a1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-empty {
  margin: 0;
  padding: 28px;
  text-align: center;
  color: #8a8f98;
  background: #f5f6f8;
  border-radius: 12px;
}

.actress-index-main {
  padding-block: 32px 56px;
}

.actress-index__head {
  margin-bottom: 20px;
}

.actress-index__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
}
.actress-index__title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 0.95em;
  margin-right: 10px;
  vertical-align: -1px;
  background: #e4007f;
  border-radius: 2px;
}
@media (min-width: 600px) {
  .actress-index__title {
    font-size: 1.8rem;
  }
}

.actress-index__lead {
  margin: 0;
  color: #555a63;
  font-size: 0.92rem;
  line-height: 1.8;
}

.actress-index__nav {
  position: sticky;
  top: 60px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 16px 0 28px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e6e7ea;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}
.actress-index__nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 6px 0;
  color: #1a1a1f;
  font-weight: 700;
  font-size: 0.95rem;
  background: #f5f6f8;
  border: 1px solid #e6e7ea;
  border-radius: 6px;
}
.actress-index__nav-item:hover {
  color: #fff;
  background: #e4007f;
  border-color: #e4007f;
  text-decoration: none;
}

.actress-row {
  margin-bottom: 30px;
  scroll-margin-top: calc(60px + 64px);
}

.actress-row__head {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a1a1f;
  border-bottom: 2px solid #e6e7ea;
}
.actress-row__head span {
  display: inline-block;
  padding: 0 14px 8px;
  border-bottom: 2px solid #e4007f;
  margin-bottom: -2px;
}

.actress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 600px) {
  .actress-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 900px) {
  .actress-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

.actress-card__link {
  display: block;
  color: inherit;
}
.actress-card__link:hover {
  text-decoration: none;
}
.actress-card__link:hover .actress-card__photo img {
  transform: scale(1.05);
}
.actress-card__link:hover .actress-card__name {
  color: #e4007f;
}
.actress-card__photo {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 132px;
  margin-inline: auto;
  background: #f5f6f8;
  border: 1px solid #e6e7ea;
  border-radius: 6px;
}
.actress-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease;
}
.actress-card__photo.is-noimg::after {
  content: "NO IMAGE";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8f98;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}
.actress-card__name {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
  color: #1a1a1f;
  transition: color 0.15s ease;
}
@media (min-width: 600px) {
  .actress-card__name {
    font-size: 0.85rem;
  }
}

.genre-main {
  padding-block: 24px 56px;
}

.genre-head {
  margin-bottom: 6px;
}

.genre-title {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 800;
}
.genre-title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 0.9em;
  margin-right: 10px;
  vertical-align: -1px;
  background: #e4007f;
  border-radius: 2px;
}
@media (min-width: 600px) {
  .genre-title {
    font-size: 1.8rem;
  }
}

.genre-desc {
  margin: 0 0 4px;
  color: #555a63;
  font-size: 0.92rem;
}

.genre-count {
  margin: 0;
  color: #8a8f98;
  font-size: 0.85rem;
}

.genre-sort {
  display: flex;
  gap: 8px;
  margin: 14px 0 24px;
}
.genre-sort__item {
  padding: 7px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1f;
  background: #f5f6f8;
  border: 1px solid #e6e7ea;
  border-radius: 999px;
}
.genre-sort__item.is-active {
  color: #fff;
  background: #e4007f;
  border-color: #e4007f;
}
.genre-sort__item:hover {
  text-decoration: none;
  border-color: #e4007f;
}

.genre-index-main {
  padding-block: 28px 56px;
}

.genre-index__head {
  margin-bottom: 18px;
}

.genre-index__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 800;
}
.genre-index__title::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 0.9em;
  margin-right: 10px;
  vertical-align: -1px;
  background: #e4007f;
  border-radius: 2px;
}
@media (min-width: 600px) {
  .genre-index__title {
    font-size: 1.8rem;
  }
}

.genre-index__lead {
  margin: 0;
  color: #555a63;
  font-size: 0.92rem;
  line-height: 1.8;
}

.genre-list {
  list-style: none;
  margin: 20px 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 600px) {
  .genre-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .genre-list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.genre-list__item a {
  display: block;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1f;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e6e7ea;
  border-radius: 6px;
}
.genre-list__item a:hover {
  color: #fff;
  background: #e4007f;
  border-color: #e4007f;
  text-decoration: none;
}

.fanza-relnav {
  margin: 0 0 32px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e6e7ea;
  border-radius: 10px;
}
.fanza-relnav__head {
  margin: 0 0 14px;
  padding-left: 10px;
  border-left: 4px solid #e4007f;
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1f;
}
.fanza-relnav__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #e4007f, #ff4fb0);
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.15s ease;
}
.fanza-relnav__main:hover {
  filter: brightness(1.07);
  color: #fff;
  text-decoration: none;
}
.fanza-relnav__arrow {
  flex: 0 0 auto;
  font-size: 1.15em;
}
.fanza-relnav__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fanza-relnav__chip {
  display: inline-block;
  padding: 6px 14px;
  background: #f5f6f8;
  border: 1px solid #e6e7ea;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #555a63;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fanza-relnav__chip:hover {
  background: #e4007f;
  border-color: #e4007f;
  color: #fff;
  text-decoration: none;
}

.fanza-article {
  max-width: none;
}
.fanza-article .fanza-intro {
  margin-bottom: 32px;
  padding: 16px 20px;
  background: #fff8f8;
  border: 1px solid #ffd0d0;
  border-radius: 6px;
}
.fanza-article .fanza-intro p {
  margin: 0;
  line-height: 2;
}
.fanza-article .fanza-item {
  margin: 48px 0;
  padding: 24px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
}
.fanza-article .fanza-item__title {
  margin: 0 0 16px;
  padding: 0 0 8px;
  background: none;
  border: 0;
  border-bottom: 2px solid #e60000;
  font-size: 1.2em;
}
.fanza-article .fanza-item__img {
  margin-bottom: 16px;
  text-align: center;
}
.fanza-article .fanza-item__img img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: 4px;
}
.fanza-article .fanza-table {
  width: 100%;
  margin: 12px 0;
  border-collapse: collapse;
}
.fanza-article .fanza-table th {
  width: 100px;
  padding: 5px 10px;
  background: #f5f5f5;
  font-size: 0.9em;
  font-weight: normal;
  text-align: left;
  white-space: nowrap;
}
.fanza-article .fanza-table td {
  padding: 5px 10px;
  font-size: 0.9em;
}
.fanza-article .fanza-desc {
  margin: 20px 0;
  padding: 18px 20px;
  background: #fafafa;
  border-left: 4px solid #e60000;
  border-radius: 0 6px 6px 0;
  line-height: 2.1;
}
.fanza-article .fanza-desc p {
  margin: 0 0 14px;
  line-height: 2.1;
}
.fanza-article .fanza-desc p:last-child {
  margin-bottom: 0;
}
.fanza-article .fanza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 16px 0;
}
.fanza-article .fanza-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.fanza-article .fanza-btn-wrap {
  margin: 20px 0 4px;
  text-align: center;
}
.fanza-article .fanza-btn {
  display: inline-block;
  padding: 12px 36px;
  background: #e60000;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
}
.fanza-article .fanza-btn:hover {
  background: #c50000;
  color: #fff;
  text-decoration: none;
}
.fanza-article .fanza-hl {
  padding: 0 2px;
  background: linear-gradient(transparent 55%, rgba(255, 230, 0, 0.85) 45%);
}

.fanza-carib {
  margin: 48px 0 0;
  padding: 28px 24px;
  background: linear-gradient(135deg, #fff8f8, #fff0f0);
  border: 2px solid #e60012;
  border-radius: 10px;
  text-align: center;
}
.fanza-carib__lead {
  margin: 0 0 8px;
  font-size: 1.15em;
  font-weight: bold;
  color: #e60012;
}
.fanza-carib__desc {
  margin: 0 0 16px;
  font-size: 0.95em;
  color: #555;
  line-height: 1.8;
}
.fanza-carib__imgwrap {
  margin: 0 0 16px;
  text-align: center;
}
.fanza-carib__imgwrap img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.fanza-carib__imgwrap a:hover {
  text-decoration: none;
}
.fanza-carib__btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #e60012, #ff4d4d);
  color: #fff;
  font-size: 1.05em;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}
.fanza-carib__btn:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(230, 0, 18, 0.4);
}
