/* フォント */


.top-bar {
    display: flex;
    justify-content: space-between;
}

.top-title {
    font-size: 40px;
    font-family: 'Righteous';
}

.twitter {
    margin-top: 10px;
}

.container {
    position: relative;
}

/* メニュー */

/* =====================
   メニュー全体
===================== */
.menu {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    font-family: sans-serif;
}

/* =====================
   メニューリスト
===================== */
.menu-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.menu-list li {
    list-style: none;
    position: relative;
    height: 40px;
}

/* =====================
   区切り縦棒
===================== */
.menu-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 4px;
    width: 2px;
    height: 32px;
    background-color: rgba(0,0,0,0.3);
    border-radius: 1px;
}

/* =====================
   リンク
===================== */
.menu-list li a {
    position: relative;
    display: inline-block;
    padding: 0 14px;
    height: 100%;
    line-height: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #111;
    overflow: hidden;
    border-radius: 20px;
    transition: color 0.3s ease;
    z-index: 1;
}

/* ホバー用背景 */
.menu-list li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
    transition: width 0.4s ease;
}

/* ホバー時幅拡張 */
.menu-list li a:hover::before {
    width: 100%;
}

/* 文字色変化 */
.menu-list li a:hover {
    color: #fff;
}

/* =====================
   リンク別ホバー色
===================== */
/* デフォルト 赤系 */
.menu-list li a.default::before {
    background: linear-gradient(135deg, #fe5252, #ff7b7b);
}

/* MGS系 黄色（background-position アニメーション削除→静的グラデーション） */
.menu-list li a.menu-mgs::before {
    background: linear-gradient(135deg, #FFD700, #FFC700);
}

/* ソクミル 紫（同上） */
.menu-list li a.menu-sokmil::before {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* 神特定ツール（box-shadow → opacity で合成可能なアニメーションに変更） */
.menu-list li a.menu-special {
    color: #fff;
    background: linear-gradient(135deg, #ff6b00, #ffb700);
    border-radius: 20px;
    animation: shineSpecial 1.8s infinite ease-in-out;
}
.menu-list li a.menu-special::before {
    background: linear-gradient(135deg, #ffb700, #ff6b00);
}
@keyframes shineSpecial {
    0%   { opacity: 1; }
    50%  { opacity: 0.75; }
    100% { opacity: 1; }
}

/* =====================
   2段目用メニュー（女優検索、ランキング）
===================== */
.menu-actress {
    display: flex;
    justify-content: center;
    gap: 12px;
}


  .pulldown {
      border-radius: 50px 0 0 50px;
      height: 26px;
  }

  .search {
      height: 40px;
      background-color: rgb(215, 215, 215);
      }


  .bar {
      justify-content: center;
      display: flex;
      padding-top: 6px;
  }

  .search-form {
      width: 400px;
      height: 23px;
      border: solid 1px gray;
  }

  @media (max-width: 1000px) {
    .search-form {
        width: 250px;
    }
}

  .search-btn {
      height: 27px;
      width: 60px;
      border-radius: 0 50px 50px 0;
      border: solid 1px gray;
      background-color: #fe5252;
      padding: 0;
  }

  .tops {
      padding: 0;
      position: relative;
      margin: 0 30px;

  }

  li {
      list-style: none;
  }

  .center {
      margin: 0 220px;
  }


  .tops li {
      width: 130px !important;
      margin: 10px 10px 10px 10px;
  }

  .tops li img {
      width: 130px;
      height: 186px;
      object-fit: cover;
}

.tops li a {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.actress-bottom {
    font-size: 12px !important;
    font-weight: normal !important;
}

.actress-alias-tag {
    display: block;
    font-size: 11px;
    color: #999;
}

.articles {
    border-bottom: solid 1px black;
    display: flex;
    margin: 0;
    margin-top: 50px;
    margin-bottom: 20px;
}

.arrival {
    font-weight: bold;
    font-size: 22px;
}

.more {
    margin-left: auto;
    display: block;
    padding-top: 8px;
}

.slick-prev,
.slick-next {
    position: absolute !important;/*絶対配置にする*/
    top: 42% !important;
    cursor: pointer !important;/*マウスカーソルを指マークに*/
    outline: none !important;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666 !important;/*矢印の色*/
    border-right: 2px solid #666 !important;/*矢印の色*/
    height: 15px !important;
    width: 15px !important;
    z-index: 2;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -2%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -2%;
    transform: rotate(45deg);
}


/* ------------------------------------------------------------------------------------------
バー */

/* left-barの基本スタイル */
.left-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    margin: 10px 0 5px;
}

/* 検索ボックス全体 */
.sidebar-search {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 12px;
    margin-bottom: 20px;
}

/* タイトル */
.sidebar-search-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #d23669;
    text-align: center;
}

/* 各検索項目の行 */
.sidebar-search-row {
    margin-bottom: 12px;
}

/* ラベル */
.sidebar-label {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 4px;
}

/* 入力フィールド */
.sidebar-input,
.sidebar-select {
    width: 100%;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 13px;
    box-sizing: border-box;
}

.sidebar-input:focus,
.sidebar-select:focus {
    outline: none;
    border-color: #d23669;
}

/* アコーディオンスタイル */
.sidebar-details {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-summary {
    background: #f5f5f5;
    padding: 6px 8px;
    font-size: 13px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.sidebar-summary::-webkit-details-marker {
    display: none;
}

.sidebar-summary::before {
    content: "▼ ";
    font-size: 10px;
    margin-right: 4px;
}

details[open] .sidebar-summary::before {
    content: "▲ ";
}

.sidebar-summary:hover {
    background: #eee;
}

/* 特徴リスト */
.sidebar-feature-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 8px;
    background: #fff;
}

.sidebar-feature-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin-bottom: 6px;
    cursor: pointer;
}

.sidebar-feature-item input[type="checkbox"] {
    margin-right: 6px;
    cursor: pointer;
}

.sidebar-feature-item span {
    flex: 1;
}

/* ラジオボタングループ */
.sidebar-radio-group {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sidebar-radio-label {
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.sidebar-radio-label input[type="radio"] {
    margin-right: 4px;
    cursor: pointer;
}

/* 検索ボタン */
.sidebar-search-btn {
    width: 100%;
    background: #d23669;
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.sidebar-search-btn:hover {
    background: #b72d5a;
    transform: translateY(-1px);
}

.sidebar-search-btn:active {
    transform: translateY(0);
}

/* スクロールバーのスタイル */
.sidebar-feature-list::-webkit-scrollbar {
    width: 6px;
}

.sidebar-feature-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar-feature-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.sidebar-feature-list::-webkit-scrollbar-thumb:hover {
    background: #999;
}


.allview {
    text-align: right;
    margin-right: 10px;
    font-size: 12px;
}

.right-bar {
    position: absolute;
    right: 0;
    top: 0;
    width: 200px;
    margin: 10px 0 5px;
    border: solid 3px rgb(184, 184, 184);
    padding: 0;
}

/* ミニ発売カレンダー */
.sidebar-cal-block {
    padding: 10px 8px 14px;
    border-bottom: 1px solid #e0e0e0;
}
.sidebar-cal-title {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px;
}
.sidebar-cal-title a { color: #333; text-decoration: none; }
.sidebar-cal-title a:hover { text-decoration: underline; }
.sidebar-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    font-size: 11px;
}
.sidebar-cal-dow {
    text-align: center;
    color: #aaa;
    font-weight: bold;
    padding: 2px 0;
}
.sidebar-cal-dow.s-sun { color: #e53e3e; }
.sidebar-cal-dow.s-sat { color: #3182ce; }
.sidebar-cal-cell {
    text-align: center;
    padding: 2px 1px;
    border-radius: 3px;
    min-height: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.sidebar-cal-cell--empty { background: transparent; }
.sidebar-cal-cell--has {
    background: #fff0f0;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}
.sidebar-cal-cell--has:hover { background: #ffd5d5; }
.sidebar-cal-cell--today .sidebar-cal-day { font-weight: bold; color: #fe5252; }
.sidebar-cal-cell.s-sun .sidebar-cal-day { color: #e53e3e; }
.sidebar-cal-cell.s-sat .sidebar-cal-day { color: #3182ce; }
.sidebar-cal-day { line-height: 1.3; }
.sidebar-cal-badge {
    background: #fe5252;
    color: #fff;
    border-radius: 20px;
    font-size: 9px;
    padding: 0 3px;
    line-height: 1.4;
}
.sidebar-cal-more {
    display: block;
    text-align: right;
    font-size: 11px;
    color: #aaa;
    text-decoration: none;
    margin-top: 6px;
}
.sidebar-cal-more:hover { color: #fe5252; }

.sidebar-ranking-block {
    padding: 10px 8px 14px;
    border-bottom: 1px solid #e0e0e0;
}
.sidebar-ranking-block:last-child { border-bottom: none; }
.sidebar-ranking-title {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 8px;
}
.sidebar-ranking-title a {
    color: #2c3e50;
    text-decoration: none;
}
.sidebar-ranking-title a:hover { text-decoration: underline; }
.sidebar-ranking-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-ranking-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 12px;
}
.sidebar-ranking-list li:last-child { border-bottom: none; }
.sidebar-ranking-num {
    color: #999;
    font-weight: bold;
    width: 18px;
    text-align: right;
    flex-shrink: 0;
}
.sidebar-ranking-link {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    overflow: hidden;
    color: inherit;
}
.sidebar-ranking-link:hover .sidebar-ranking-name { text-decoration: underline; }
.sidebar-ranking-img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}
.sidebar-ranking-name {
    color: #2563eb;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.sidebar-ranking-count {
    color: #e05;
    font-weight: bold;
    font-size: 11px;
    flex-shrink: 0;
}

.actress-cent {
    display: flex;
    flex-wrap: wrap;
}

.actress-cent li {
    margin-right: 40px;
    font-size: 20px;
    margin-bottom: 20px;
    list-style: disc;
}

.actress-cent li span {
    display: inline-block;
}

.actress-cent li a {
    height: 100%;
    width: 100%;
}

.actress-cent li a:hover {
    background-color: rgb(210, 210, 210);
}

.center-ttl {
    font-size: 24px;
    font-weight: bold;
    padding-top: 10px;
    margin-top: 10px;
}

@media screen and (max-width: 1000px) {
    .left-bar,
    .right-bar {
        display: none;
    }

    .center {
        margin: 0 20px;
    }

}

.pagination {
    display: flex;
    justify-content: center;
    background-color: rgb(210, 210, 210);
    height: 30px;
}

.pagination li {
    border: solid 1px;
    width: 25px;
    height: 20px;
    text-align: center;
    margin: auto 0;
    font-size: 12px;
}

.pagination li a {
    display: inline-block;
    height: 100%;
    width: 100%;
    padding: auto;
}

.pagination .active {
    background-color: rgb(230, 230, 230);
}

.pagination li a:not(.active){
    text-decoration: none;
    color: rgb(68, 68, 255);
    background-color: white;
}

.pagination li:first-child {
    margin-right: 5px;
}
.pagination li:last-child {
    margin-left: 5px;
}

/* -------------------------------------------------------------------------- */
/* サーチ */
.messages {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.search-ul {
    display: flex;
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-around;
}

.search-li img {
    width: 140px;
    height: 200px;
    object-fit: cover;
}

.search-li {
    width: 140px;
    font-size: 12px;
    margin: 20px 0;
    position: relative;

    display: flex;
    flex-direction: column;

    border: 1px solid #e5e5e5;   /* ★ 薄い枠 */
    border-radius: 6px;
    padding: 6px;
    background: #fff;
}


.search-li a {
  font-size: 14px;
  margin-bottom: 3px;
  font-weight: bold;
  text-decoration: none;
}

.btn-to-page {
    display: flex;              /* ボタン化の肝 */
    align-items: center;
    justify-content: center;

    width: 140px;               /* imgと同じ */
    height: 34px;

    margin-top: 6px;
    padding: 0;

    background-color: #ff5a5f;
    color: #fff;

    font-size: 12px;
    font-weight: bold;

    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-to-page:hover {
    opacity: 0.85;
}

.mgs-dot,
.fanza-dot,
.sokmil-dot
 {
    position: absolute;
    top: -15px;
    left: -15px;
    height: 15px;
    background-color: black;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    padding: 3px 4px 6px 4px;
    text-align: center;
}

.sokmil-dot {
    background-color: #7a4dd8;
    color: white;
    font-family: 'Righteous';
    width: 50px;
    border: solid 1px #b9a3f5;
}


.mgs-dot {
    background-color: white;
    color: black;
    font-family: 'Righteous';
    width: 50px;
    border: solid 1px rgb(255, 158, 158);
}

.fanza-dot {
    background-color: #d32f2f;
    color: white;
    font-family: 'Bevan';
}

/* ------------------------------------------------------ */
/* 個別ページ */

.shows {
    border-bottom: solid 1px rgb(135, 135, 135);
}

.show-class {
    width: 100%;
}

.show-inner {
    display: flex;
}

.show-inner img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    margin-right: 10px;
}

.show-desc {
    width: calc(100% - 220px);
    word-wrap: normal;
    margin-left: 20px;
}

.show-desc p {
    font-size: 16px;
}

.show-desc p a {
    text-decoration: none;
}

.td-actress a {
    margin-right: 10px;
    display: inline-block;
    font-size: 18px;
}

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

.meta-row {
    display: flex;
    align-items: flex-start;
}

.meta-row > p:first-child {
    width: 120px;
    font-weight: bold;
    margin-right: 10px;
}

.meta-row > p {
    margin: 4px 0;
}


td p {
    margin: 5px 0;

}

/* モーダル */
#open, #close {
    cursor: pointer;
    text-align: center;
  }

  #mask {
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
  }

  #modal {
    background: #fff;
    width: 700px;
    height: 550px;
    object-fit: cover;
    padding: 20px;
    border-radius: 20px;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
  }


  #mask.hidden {
    display: none;
  }

  #modal.hidden {
    display: none;
  }

  #modal img {
      height: 100%;
      width: 70%;
  }

  .toPage {
      text-align: center;
      margin: 12px 0;
  }
  .toPage .btn-to-page {
      width: 90%;
      height: 50px;
      font-size: 20px;
      border-radius: 50px;
      margin: 0 auto;
  }


  .toSample {
      border: solid 1px rgb(176, 176, 176);
      border-radius: 20px;
      width: 200px;
      text-align: center;
      background: rgb(251,251,251);
      background: linear-gradient(180deg, rgba(251,251,251,1) 0%, rgba(175,175,175,1) 64%);
  }

  .toSample a {
      display: inline-block;
      height: 100%;
      width: 100%;
      text-decoration: none;
      color: black;
  }

  .sample-movie {
      width: 80%;
      margin: 0 auto;
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      contain: layout;
  }

  /* 女優名FANZA&MGS検索 */
  .toLink {
      display: flex;
      justify-content: space-around;
      margin-bottom: 5px;
  }

  .tofanza {
      width: 46%;
      border: solid 1px;
      border-radius: 50px;
      text-align: center;
      position: relative;
  }

  .tofanza a {
      width: 100%;
      height: 100%;
      display: inline-block;
      text-decoration: none;
      padding-top: 4px;
      color: black;
  }


  .fanzafont {
      font-weight: bold;
      font-size: 20px;
      color: red;
      font-family: 'Bevan';
  }

  .tofanza-btn:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #fe5252;
    z-index: -1;
    transition: .4s;
    border-radius: 50px;
  }

  .tofanza a:hover .fanzafont {
      color: white;
  }
  .tofanza a:hover .tofanza-btn {
      color: white;
  }

  .tofanza a:hover .tofanza-btn:before{
    width: 100%;
  }



  .tomgs {
    width: 46%;
    border: solid 1px;
    border-radius: 50px;
    text-align: center;
    position: relative;
}


  .tomgs a {
      width: 100%;
      height: 100%;
      display: inline-block;
      text-decoration: none;
      padding-top: 2px;
      color: black;
  }

  .mgsfont {
      font-weight: bold;
      font-size: 25px;
      font-family: 'Righteous';
  }

  .tomgs-btn:before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #ff2cdf;
    z-index: -1;
    transition: .4s;
    border-radius: 50px;
  }

  .tomgs a:hover .mgsfont {
      color: white;
  }
  .tomgs a:hover .tomgs-btn {
      color: white;
  }

  .tomgs a:hover .tomgs-btn:before{
    width: 100%;
  }

.td-menu {
    width: 100px;
    text-align: right;
}

.shows a {
    text-decoration: none;
    color: black;
}

.connect {
    margin-top: 20px;
}


.connect-act {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;

}

.connect-li {
    position: relative;
}

.mgs-dot-con,
.fanza-dot-con
 {
    position: absolute;
    top: -10px;
    left: -15px;
    height: 15px;
    background-color: black;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    padding: 3px 4px 6px 4px;
    text-align: center;
}


.mgs-dot-con {
    background-color: white;
    color: black;
    font-family: 'Righteous';
    width: 50px;
    border: solid 1px rgb(255, 158, 158);
}

.fanza-dot-con {
    background-color: #fe5252;
    color: white;
    font-family: 'Bevan';
}

.button-red {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fe5252;
    color: white;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
}

.button-black {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid black;
    color: black;
    text-align: center;
    border-radius: 30px;
    text-decoration: none;
}


/* === show.blade.php === */

.post-container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px;
  font-family: Arial, sans-serif;
  color: #222;
}

.post-container h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #000;
}

.post-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.post-info img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.post-info-text {
  flex: 1;
  min-width: 240px;
  font-size: 15px;
  line-height: 1.6;
}

.post-info h2 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.post-info a,
.post-info-text a {
  color: #0077cc;
  text-decoration: none;
}
.post-info a:hover,
.post-info-text a:hover {
  text-decoration: underline;
}

.post-info-text ul {
  padding-left: 20px;
  margin-top: 8px;
}

.post-info-text .internal-link {
  font-weight: bold;
  color: #d23669;
}

.related-section {
  margin-top: 40px;
}
.related-section h2 {
  font-size: 22px;
  margin-bottom: 12px;
  border-bottom: 2px solid #eee;
  padding-bottom: 6px;
}

.related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.related-list li {
  width: calc(25% - 12px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease;
}

.related-list li:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.related-list img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 8px;
}

.related-list a {
  font-size: 14px;
  font-weight: 600;
  color: #005bb5;
  text-decoration: none;
  margin-bottom: 6px;
}
.related-list a:hover {
  text-decoration: underline;
}

.related-list .btn-to-page {
  margin-top: auto;
  background: #f39800;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 6px 4px;
  border-radius: 4px;
  text-decoration: none;
}
.related-list .btn-to-page:hover {
  opacity: .85;
}

@media (max-width: 1024px) {
  .related-list li {
    width: calc(33.333% - 12px);
  }
}
@media (max-width: 768px) {
  .related-list li {
    width: calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .related-list li {
    width: 100%;
  }
}

.section-title {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  margin: 40px 0 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid #eee;
}

.section-title::before {
  content: "■";
  color: #f39800;
  margin-right: 8px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 18px;
    margin: 25px 0 12px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 16px;
    margin: 0 0 10px;
  }
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 18px;
}

.post-tag {
  font-size: 11px;
  padding: 4px 8px;
  background: #f5f5f5;
  border-radius: 4px;
  color: #555;
  text-decoration: none;
}

.post-tag:hover {
  background: #eee;
}

.section-box {
  background: #fafafa;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.breadcrumb {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 8px 16px;
  font-size: 12px;
}

.breadcrumb a {
  color: #0077cc;
  text-decoration: none;
}

.breadcrumb span {
  margin: 0 6px;
  color: #767676;
}

.sample-movie iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .sample-movie iframe {
        max-width: 100%;
    }
}

.comment-box {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
    background: #fafafa;
}

.comment-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.rating-area {
    margin-bottom: 15px;
}

.rating-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    letter-spacing: 1px;
}

.rating-stars input {
    display: none;
}

.rating-stars label {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    margin-right: 3px;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
    color: #f5a623;
}

.rating-summary .rating-stars {
    display: flex;
    gap: 2px;
}

.rating-summary .star {
    display: inline-block;
    color: #ff9800;
}

.comment-area {
    margin-bottom: 12px;
}

.comment-area input[type="text"],
.comment-box input[type="text"] {
    width: 200px !important;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    font-size: 13px;
    box-sizing: border-box;
}

.comment-area textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    font-size: 13px;
    resize: vertical;
}

.comment-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
}

.comment-note {
    font-size: 12px;
    color: #888;
    margin: 10px 0;
}

.comment-submit {
    display: inline-block;
    background: #f39800;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}

.comment-submit:hover {
    background: #e48b00;
}

.comment-success {
    background: #eef9f1;
    border: 1px solid #bfe3c8;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

.approved-comments {
    margin-top: 40px;
}

.approved-comments-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.comment-count {
    font-size: 13px;
    color: #666;
}

.comment-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.comment-hidden {
    display: none;
}

.comment-more-btn {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding: 10px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    text-align: center;
}

.comment-more-btn:hover {
    background: #eee;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.comment-rating {
    font-size: 14px;
}

.star-on {
    color: #f5a623;
}

.star-off {
    color: #ccc;
}

.comment-date {
    font-size: 12px;
    color: #999;
}

.comment-body {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
}

.admin-actress-edit {
    border: 2px solid #f59e0b;
    background: #fffbeb;
}
.admin-actress-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.admin-actress-row label {
    width: 110px;
    font-size: 13px;
    color: #666;
    flex-shrink: 0;
}
.admin-actress-row input {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.ugc-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    border-left: 5px solid #6b7280;
}

.actress-info-card {
    border-left-color: #6366f1;
}

.review-card {
    border-left-color: #f59e0b;
}

.ugc-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ugc-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.ugc-card textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    resize: vertical;
}

.ugc-submit {
    margin-top: 12px;
    padding: 10px 16px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
}

.review-card .ugc-submit {
    background: #f59e0b;
}

.ugc-note {
    font-size: 12px;
    color: #777;
    margin-top: 8px;
}

.ugc-success {
    background: #ecfdf5;
    color: #065f46;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 13px;
}

.ugc-error {
    background: #fef2f2;
    color: #991b1b;
    padding: 8px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 13px;
}

.ugc-list {
    margin-top: 12px;
}

.ugc-item {
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.rating-score {
    font-weight: bold;
    color: #333;
}

.rating-count {
    color: #666666;
    font-size: 13px;
}


.ugc-cta-bar {
    display: flex;
    gap: 10px;
    margin: 16px 0 24px;
    flex-wrap: wrap;
}

.ugc-cta-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    transition: opacity 0.2s, transform 0.1s;
    flex: 1;
    justify-content: center;
    min-width: 100px;
}

.ugc-cta-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.ugc-cta-rating {
    background: #fff8e1;
    color: #b33d00;
    border: 2px solid #ffb300;
}

.ugc-cta-comment {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #66bb6a;
}

.ugc-cta-identify {
    background: #e8eaf6;
    color: #283593;
    border: 2px solid #7986cb;
}

.ugc-cta-icon {
    font-size: 16px;
}

.ugc-cta-count {
    background: rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .ugc-cta-btn {
        font-size: 12px;
        padding: 8px 10px;
    }
}

.sale-ribbon-post {
    background: #ff0033;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    border-radius: 20px;
    padding: 6px 40px;
    z-index: 5;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    animation: blink-sale 1.2s infinite;
}

@keyframes blink-sale {
    0%   { opacity: 1; }
    50%  { opacity: 0.4; }
    100% { opacity: 1; }
}

.sale-price-post {
    color: #e60000;
    font-size: 26px;
    font-weight: 900;
    background: #fff0f0;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
    text-shadow: 1px 1px 0 #fff;
}

.campaign-end-post {
    font-size: 14px;
    margin-top: 6px;
    color: #333;
}

.campaign-countdown {
    font-weight: bold;
    color: #d60000;
    background: #fff3f3;
    padding: 2px 6px;
    border-radius: 4px;
}

.invisi {
    position: absolute;
    left: -9999px;
}

.actress-profile-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    margin-bottom: 16px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.actress-thumb {
    width: 100px;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.actress-profile-card:not(:has(.actress-thumb)) .actress-profile-body {
    padding-left: 0;
}

.actress-profile-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.actress-profile-body .actress-link {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}
.actress-profile-body .actress-link:hover {
    color: #e06;
    text-decoration: underline;
}

.actress-size {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.actress-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-tag {
    display: inline-block;
    padding: 2px 10px;
    font-size: 0.8rem;
    color: #555;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.feature-tag:hover {
    background: #e06;
    color: #fff;
    border-color: #e06;
}

.actress-feature-points {
    margin: 0;
    padding-left: 18px;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.7;
}
.actress-feature-points li {
    margin-bottom: 2px;
}

@media (max-width: 480px) {
    .actress-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .actress-thumb {
        width: 120px;
        height: 160px;
    }

    .actress-features-inline {
        justify-content: center;
    }

    .actress-feature-points {
        text-align: left;
    }
}

.actress-unknown-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    margin: 20px 0;
    background: linear-gradient(135deg, #fff8f0, #fff3e0);
    border: 1px solid #ffcc80;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
}

.actress-unknown-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.actress-unknown-body {
    flex: 1;
}

.actress-unknown-title {
    font-size: 1rem;
    font-weight: bold;
    color: #e65100;
    margin: 0 0 6px;
}

.actress-unknown-desc {
    font-size: 0.85rem;
    color: #666;
    margin: 0 0 12px;
    line-height: 1.6;
}

.btn-identify {
    display: inline-block;
    padding: 8px 20px;
    background: #ff9800;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-identify:hover {
    background: #e65100;
    color: #fff;
}

@media (max-width: 480px) {
    .actress-unknown-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* === actress/works.blade.php === */

.btn-mgs {
    background: #fff;
    color: #000 !important;
    border: 1px solid #ff9e9e;
}

.btn-fanza {
    background: #fe5252;
    color: #fff;
}

.btn-sokmil {
    background: #7a4dd8;
    color: #fff;
}

.actress-recent-info {
    margin: 16px 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.actress-recent-block {
    flex: 1 1 280px;
    background: #f8faff;
    border: 1px solid #d0e0ff;
    border-radius: 8px;
    padding: 12px 16px;
}
.actress-recent-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0 0 8px;
    color: #2c3e50;
}
.actress-recent-list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.actress-recent-list li {
    padding: 6px 0;
    border-bottom: 1px solid #e8eef8;
}
.actress-recent-list li:last-child { border-bottom: none; }
.actress-recent-item-link {
    display: flex;
    gap: 8px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}
.actress-recent-item-link:hover .actress-recent-item-title { text-decoration: underline; }
.actress-recent-jacket {
    width: 45px;
    height: 64px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}
.actress-recent-item-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.actress-recent-item-title {
    color: #2563eb;
    font-size: 13px;
    line-height: 1.4;
}
.actress-recent-sale { color: #dc2626; font-weight: bold; font-size: 12px; }
.actress-recent-date { color: #888; font-size: 12px; }
.actress-recent-more {
    margin-top: 8px;
    width: 100%;
    padding: 6px;
    background: #f0f4ff;
    border: 1px solid #d0e0ff;
    border-radius: 4px;
    color: #2563eb;
    font-size: 13px;
    cursor: pointer;
}
.actress-recent-info .mgs-dot,
.actress-recent-info .fanza-dot,
.actress-recent-info .sokmil-dot {
    position: static;
    display: inline-block;
    top: auto;
    left: auto;
    font-size: 11px;
    width: auto;
}
.left-img {
    position: relative;
}
.left-img .mgs-dot,
.left-img .fanza-dot,
.left-img .sokmil-dot {
    top: 8px;
    left: 8px;
    z-index: 1;
    height: auto;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.actress-profile-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.actress-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 16px;
    flex: 1 1 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
    position: relative;
}
.actress-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.actress-name {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: bold;
    color: #d23669;
}

.actress-details {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.6;
}
.actress-details li strong {
    display: inline-block;
    width: 80px;
    color: #555;
}

.actress-sns {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sns-btn {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 14px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: opacity .2s ease, transform .1s ease;
}
.sns-btn:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.sns-x {
    background: #000000;
}

.sns-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.sns-tiktok {
    background: #010101;
    box-shadow: inset 2px 0 #25f4ee, inset -2px 0 #fe2c55;
}

.profile-photo {
    width: 125px;
    height: 125px;
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 12px;
}

.site-filter {
    display: flex;
    gap: 10px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}
.site-filter a {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 13px;
    text-decoration: none;
    color: #555;
    background: #fff;
    transition: all .2s ease;
}
.site-filter a:hover {
    background: #f5f5f5;
}
.site-filter a.active {
    background: #f39800;
    color: #fff;
    border-color: #f39800;
    font-weight: bold;
}

.actress-feature-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.actress-sns-row {
    margin-top: -5px;
    margin-bottom: 5px;
}

.rating-mini {
    font-size: 12px;
    color: #ff9800;
    margin-top: 4px;
}

.rating-mini .count {
    color: #666;
}

.actress-like {
    text-align: center;
}

.heart-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.heart-btn-wrap:hover .heart-btn {
    transform: scale(1.2);
}
.heart-btn-wrap:hover .heart-btn-label {
    color: #e05;
}
.heart-btn {
    width: 40px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.heart-btn-label {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.heart-btn:hover {
    transform: scale(1.2);
}

.like-count {
    margin-top: 4px;
    font-weight: bold;
    color: #d23669;
}

.actress-like-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.actress-rank-mini {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.owned-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    color: #888;
    transition: all 0.2s;
}

.owned-btn:hover {
    border-color: #2e7d32;
    color: #2e7d32;
}

.owned-btn--active {
    background: #f1f8f1;
    border-color: #2e7d32;
    color: #2e7d32;
}

.wishlist-btn-wrap {
    margin-top: 10px;
    text-align: center;
}

.wishlist-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    color: #888;
    transition: all 0.2s;
}

.wishlist-btn:hover {
    border-color: #e67e00;
    color: #e67e00;
}

.wishlist-btn--active {
    background: #fff8f0;
    border-color: #e67e00;
    color: #e67e00;
}

.fav-new-section .mgs-dot,
.fav-new-section .fanza-dot,
.fav-new-section .sokmil-dot,
.personal-scroll .mgs-dot,
.personal-scroll .fanza-dot,
.personal-scroll .sokmil-dot {
    top: 0;
    left: 0;
}

/* お気に入り新着パネル内バッジをインライン表示 */
.fav-new-badge-row {
    margin: 2px 0;
}
.fav-new-badge-row .mgs-dot,
.fav-new-badge-row .fanza-dot,
.fav-new-badge-row .sokmil-dot {
    position: static;
    display: inline-block;
    font-size: 10px;
    padding: 1px 5px;
}

.fav-new-section {
    margin-bottom: 16px;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}
.fav-new-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}
.fav-new-label a {
    color: #d23669;
    font-weight: bold;
    text-decoration: none;
}
.fav-new-post-title {
    font-size: 11px;
    color: #555;
    margin-top: 3px;
    line-height: 1.3;
}
.fav-new-more-btn {
    margin-top: 4px;
    padding: 4px 12px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 11px;
    color: #888;
    cursor: pointer;
}
.fav-new-more-btn:hover {
    border-color: #d23669;
    color: #d23669;
}

/* マイリスト お気に入りタブ: 新着トグルボタン */
.actress-new-btns {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-top: 4px;
    flex-wrap: wrap;
}
.actress-new-toggle-btn {
    padding: 2px 8px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 11px;
    color: #888;
    cursor: pointer;
}
.actress-new-toggle-btn:hover,
.actress-new-toggle-btn.active {
    border-color: #d23669;
    color: #d23669;
    background: #fff0f4;
}

.personal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
    list-style: none;
    margin: 0 0 8px;
    scrollbar-width: thin;
}
.personal-scroll li {
    flex-shrink: 0;
    width: 80px;
    font-size: 11px;
}
.personal-scroll .post-title {
    margin-top: 3px;
    line-height: 1.3;
}
.personal-sale-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #d23669;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 1px 5px;
    border-radius: 3px;
}

.wishlist-section-title {
    font-size: 15px;
    font-weight: bold;
    margin: 24px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #eee;
    color: #444;
}
.wishlist-section-sale {
    color: #d23669;
    border-bottom-color: #d23669;
}
.fav-remove-btn {
    display: block;
    margin: 6px auto 0;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 13px;
}
.fav-remove-btn:hover { color: #d23669; }

.wishlist-remove-btn {
    display: block;
    margin: 6px 0 0;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
}
.wishlist-remove-btn:hover { color: #d23669; }
.wishlist-meta {
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.wishlist-ending-badge {
    display: inline-block;
    background: #e67e00;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}
.wishlist-new-badge {
    display: inline-block;
    background: #e67e00;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
}
.wishlist-sale-badge {
    display: inline-block;
    background: #d23669;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
}
.wishlist-sale-end {
    font-size: 11px;
    color: #888;
}

.nav-ending-badge {
    background: #e67e00 !important;
}

.nav-sale-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #d23669;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
    line-height: 1;
}

.fav-btn-wrap {
    margin-top: 10px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fav-info-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #f5f5f5;
    color: #aaa;
    font-size: 11px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
}

.fav-info-btn:hover {
    background: #eee;
    color: #888;
}

.fav-popup {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    width: 230px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 100;
}

.fav-popup--show {
    display: block;
}

.fav-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-size: 13px;
    color: #888;
    transition: all 0.2s;
}

.fav-btn:hover {
    border-color: #d23669;
    color: #d23669;
}

.fav-btn--active {
    background: #fff0f4;
    border-color: #d23669;
    color: #d23669;
}

.fav-btn-heart {
    font-size: 16px;
    line-height: 1;
}

.actress-rank-mini a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
    color: #333;
}

.rank-total {
    background: #fff7d6;
    border: 1px solid #facc15;
}

.rank-trending {
    background: #ffe4e6;
    border: 1px solid #fb7185;
    position: relative;
}

.rank-trending::after {
    content: "↑";
    margin-left: 2px;
    color: #e11d48;
    font-weight: bold;
    animation: blinkUp 1.1s infinite;
}

@keyframes blinkUp {
    0% { opacity: .3; transform: translateY(2px); }
    50% { opacity: 1; transform: translateY(-2px); }
    100% { opacity: .3; transform: translateY(2px); }
}

.actress-anchors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.actress-anchor-btn {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 13px;
    color: #444;
    text-decoration: none;
    transition: background 0.2s;
}

.actress-anchor-btn:hover {
    background: #e0e0e0;
    color: #111;
}

.actress-note {
    background-color: #fff8e1;
    border-left: 4px solid #ffb400;
    padding: 12px 16px;
    margin: 16px 0;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.actress-note strong {
    color: #ff6f00;
}

.actress-note a {
    color: #007bff;
    text-decoration: underline;
}

.actress-note a:hover {
    text-decoration: none;
}

.sale-ribbon {
    position: absolute;
    top: 170px;
    left: 35px;
    transform: rotate(-15deg);
    background: #ff0033;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 40px;
    z-index: 5;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    animation: blink-sale 1.2s infinite;
}

.sale-price-badge {
    color: #e60000;
    font-size: 13px;
    font-weight: bold;
    margin-top: 4px;
}

.sale-price {
    color: #e60000;
    font-size: 16px;
    font-weight: 900;
    background: #fff0f0;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 6px;
    text-shadow: 1px 1px 0 #fff;
}

.sale-ribbon-mgs {
    background: #fff;
    color: #ff0033;
    border: 2px solid #ff0033;
}

.sale-ribbon-sokmil {
    background: #7a4dd8;
    color: white;
    border: 2px solid #b9a3f5;
}

.reserve-ribbon {
    position: absolute;
    top: 130px;
    left: 35px;
    transform: rotate(-15deg);
    background: #fff;
    color: #1b1ffc;
    border: 2px solid #1b1ffc;
    font-weight: bold;
    font-size: 13px;
    padding: 5px 34px;
    z-index: 7;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

.similar-actresses {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.similar-actresses-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #333;
}

.similar-actresses-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.similar-actress-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    width: 90px;
}

.similar-actress-item img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: border-color 0.2s;
}

.similar-actress-item a:hover img {
    border-color: #d23669;
}

.similar-actress-noimg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #aaa;
}

.similar-actress-name {
    font-size: 12px;
    text-align: center;
    line-height: 1.3;
    color: #444;
    word-break: break-all;
}

.similar-actress-item a:hover .similar-actress-name {
    color: #d23669;
}

/* .right-bar 内ウィジェット用スタイル（index.blade.php / actress/works.blade.php 共通） */
.right-bar {
    text-align: center;
}

.right-bar ins.dmm-widget-placement {
    display: inline-block;
    margin: 12px auto;
}

.right-bar .mgs-title {
    margin: 12px 0 6px;
    font-weight: bold;
    text-align: center;
}

.right-bar iframe {
    margin: 0 auto;
    display: block;
}

/* === search.blade.php === */

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.toggle-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.toggle-switch input {
    display: none;
}

.toggle-switch .slider {
    position: relative;
    width: 42px;
    height: 22px;
    background-color: #ccc;
    border-radius: 22px;
    transition: background-color 0.2s;
}

.toggle-switch .slider::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    left: 2px;
    top: 2px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.toggle-switch input:checked + .slider {
    background-color: #ff0033;
}

.toggle-switch input:checked + .slider::before {
    transform: translateX(20px);
}

.toggle-text {
    font-size: 18px;
}

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

.sale-toggle .slider {
    background-color: #ddd;
}

.sale-toggle input:checked + .slider {
    background-color: #e53935;
}

@media (max-width: 768px) {
    .search-header {
        flex-direction: column;
        align-items: stretch;
    }

    .reserved-toggle {
        justify-content: space-between;
    }

    .toggle-text {
        font-size: 12px;
    }
}

/* === index.blade.php === */

/* slick初期化前後のCLS防止：最低高さを確保 */
.tops.autoplay {
    min-height: 240px;
    overflow: visible;
}

.tops {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.tops li {
    width: 140px;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
    padding: 6px;
    transition: all .3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.tops li:hover {
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
}

.tops li img {
    width: 140px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 6px;
    border-radius: 4px;
}

.tops li .post-title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 2px;
    transition: color 0.2s ease;
}
.tops li .post-title:hover {
    color: #555;
}

.tops li a.actress-bottom {
    font-weight: normal;
    font-size: 12px;
    color: #666;
    display: inline-block;
    margin-bottom: 4px;
    transition: color 0.2s ease;
}
.tops li a.actress-bottom:hover {
    color: #d23669;
}

.articles h2.arrival {
    font-size: 16px;
    font-weight: bold;
    margin: 20px 0 6px;
}

.articles .more {
    margin-bottom: 12px;
}
.articles .more a {
    font-size: 12px;
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s ease;
}
.articles .more a:hover {
    color: #005fa3;
}

@media (max-width: 768px) {
    .tops li {
        width: calc(50% - 6px);
    }
}

@media (max-width: 480px) {
    .tops li {
        width: 100%;
    }
}

/* === components/sidebar-left.blade.php === */

.sidebar-recent {
    margin-top: 20px;
    padding: 12px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
}

.sidebar-recent-title {
    font-size: 13px;
    font-weight: bold;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #f39800;
    color: #333;
}

.sidebar-recent-item {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 12px;
}

.sidebar-recent-item:last-child {
    border-bottom: none;
}

.sidebar-recent-post-wrap {
    display: flex;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.sidebar-recent-post-wrap:hover .sidebar-recent-post {
    color: #f39800;
}

.sidebar-recent-img {
    width: 48px;
    height: 68px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.sidebar-recent-text {
    flex: 1;
    min-width: 0;
}

.sidebar-recent-post {
    display: block;
    color: #333;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 2px;
}

.sidebar-recent-stars {
    color: #f39800;
    font-size: 11px;
    margin-bottom: 2px;
}

.sidebar-recent-body {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.sidebar-no-comment {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin: 8px 0 0;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    text-align: center;
}

/* === 特徴マッチグループ（show.blade.php） === */
.similar-match-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.similar-match-badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    flex-shrink: 0;
}

.badge-full {
    background: #d23669;
    color: #fff;
}

.badge-partial {
    background: #f39800;
    color: #fff;
}

.badge-one {
    background: #eee;
    color: #555;
}

.similar-match-names {
    font-size: 14px;
    line-height: 1.6;
}

/* === 特徴マッチグループ 更新版 === */
.similar-match-block {
    margin-bottom: 20px;
}

.similar-match-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.similar-match-features {
    font-size: 13px;
    color: #555;
    font-weight: bold;
}

.similar-match-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.similar-match-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #333;
    width: 70px;
}

.similar-match-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: border-color 0.2s;
}

.similar-match-item:hover .similar-match-photo {
    border-color: #d23669;
}

.similar-match-noimg {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f0f0;
}

.similar-match-name {
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
}

.similar-match-item:hover .similar-match-name {
    color: #d23669;
}

.similar-match-tags {
    font-size: 10px;
    color: #666666;
    text-align: center;
    line-height: 1.3;
    word-break: break-all;
}

/* スクリーンリーダー専用テキスト（視覚的に非表示） */
.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;
}

.genre-tag {
    display: inline-block;
    padding: 2px 10px;
    margin: 2px 2px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 12px;
    text-decoration: none;
    color: #555;
    background: #f9f9f9;
    transition: all .2s;
}
.genre-tag:hover {
    background: #fe5252;
    color: #fff;
    border-color: #fe5252;
}

.actress-genre-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
    align-items: center;
}
.actress-genre-label {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
}
.genre-tag-active {
    background: #fe5252 !important;
    color: #fff !important;
    border-color: #fe5252 !important;
}

.genre-more-btn {
    padding: 2px 10px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 12px;
    color: #888;
    background: none;
    cursor: pointer;
}
.genre-more-btn:hover {
    border-color: #fe5252;
    color: #fe5252;
}

/* =====================
   お気に入り通知ベルボタン＆ポップアップ（マイリスト）
===================== */
.notify-bell-wrap {
    position: absolute;
    top: 4px;
    right: 4px;
}
.notify-bell-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #444;
    background: #1a1a2e;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    padding: 0;
    transition: opacity .2s;
}
.notify-bell-btn.notify-bell-on { opacity: 1; border-color: #f0a500; }
.notify-bell-btn:hover { opacity: 1; }

.notify-bell-popup {
    display: none;
    position: absolute;
    top: 32px;
    right: 0;
    background: #1e1e2e;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 12px;
    z-index: 100;
    width: 160px;
    box-shadow: 0 4px 16px rgba(0,0,0,.5);
}
.notify-bell-popup.open { display: block; }
.notify-chk-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #ccc;
    cursor: pointer;
    padding: 4px 0;
}
.notify-chk-row input { cursor: pointer; }
