@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
.release-info {
  font-size: 0.9em;
  padding: 6px 8px;
  margin: 6px 0;
  border-radius: 6px;
  display: inline-block;
}

.release-info.future {
  background-color: #e6f2ff;
  color: #007bff;
}

.release-info.released {
  background-color: #eafae6;
  color: #28a745;
}

.truth-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    font-family: var(--swl-font_family);
}
.truth-buttons .button-group {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.truth-buttons .vote-btn {
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f0f0f0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    font-weight:bold;
}
.truth-buttons .vote-btn:hover:not(:disabled) {
    transform: scale(1.05);
    background-color: #ddd;
}
.truth-buttons .vote-btn[data-vote="true"] {
    color: #fff;
    background-color: #2ecc71;
}
.truth-buttons .vote-btn[data-vote="false"] {
    color: #fff;
    background-color: #e74c3c;
}
.truth-buttons .vote-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.truth-buttons .vote-status {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.truth-vote-result {
    width: 100%;
    max-width: 400px;
    background-color: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.truth-vote-bar {
    display: flex;
    height: 24px;
}
.truth-true {
    background-color: #2ecc71;
    text-align: left;
    color: white;
    padding-left: 8px;
    line-height: 24px;
    white-space: nowrap;
    font-weight:bold;
}
.truth-false {
    background-color: #e74c3c;
    text-align: right;
    color: white;
    padding-right: 8px;
    line-height: 24px;
    white-space: nowrap;
    font-weight:bold;
}
.truth-vote-counts {
    font-size: 13px;
    color: #444;
    text-align: center;
    margin-top: 5px;
}

.icon-true {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #4caf50; /* 緑（真） */
  color: white;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #388e3c; /* 緑色の枠線 */
}

.icon-false {
  display: inline-block;
  padding: 2px 4px;
  border-radius: 4px;
  background-color: #f44336; /* 緑（真） */
  color: white;
  font-size: 12px;
  font-weight: bold;
  border: 2px solid #d32f2f; /* 緑色の枠線 */
}
.placeholder-bar {
  background-color: #ccc !important;
  color: transparent;
}

.truth-vote-bar.no-vote {
  background-color: #ccc;
  justify-content: center;
  align-items: center;
  display: flex;
  height: 24px;
  position: relative;
}

.no-vote-text {
  color: #666;
  font-size: 14px;
  font-weight: bold;
}


.tooltip-wrapper2 {
  position: relative;
  display: inline-block;
}

.tooltip-icon2 {
  display: inline-block;
  background: #ccc;
  color: #000;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
}

.tooltip-text2 {
  display: none;
  position: absolute;
  top: 50%;
	left: 135%;
  transform: translateY(-50%);
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 10;
}

.tooltip-text2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent #333 transparent transparent;
}

.tooltip-icon2:hover + .tooltip-text2,
.tooltip-icon2:focus + .tooltip-text2 {
  display: block;
}




.info-label {
  position: absolute;
  right: 6px;
  top: 6px;
  background: rgba(0, 0, 0, 0.6);  /* 半透明の黒背景 */
  color: #fff;
  padding: 4px 8px;
  font-size: 0.5em;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.info-label i {
  font-size: 12px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* 200px以上で列数自動 */
  gap: 8px;
  padding: 8px;
}
.image-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.image-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.image-item img.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
    .image-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); /* 200px以上で列数自動 */
    }
    .sale-label2{
        font-size:0.5em !important;
    }
}



/* 共通スタイル */
.custom-pagination-wrapper2 {
  text-align: center;
  padding: 1.5em 0;
}

.custom-pagination2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4em;
  white-space: nowrap;
}

/* ページリンク */
.custom-pagination2 a,
.custom-pagination2 span {
  padding: 0.5em 0.9em;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  color: var(--color_text);
  transition: all 0.3s ease;
  display:inline-block;
}

.custom-pagination2 .current {
  background: var(--color_main);
  color: #fff;
}

.custom-pagination2 a:hover {
  background-color: var(--color_main_dark);
}

/* ジャンプフォーム（PC） */
.page-jump-form {
  margin-top: 1em;
}

.page-jump-form input[type="text"] {
  width: 70px;
  padding: 0.4em;
  border-radius: 8px;
  text-align: center;
  font-size: 1rem;
  background-color: var(--color_main);
  color: #fff;
  border: 2px solid var(--color_main_dark);
  font-weight: bold;
}

.mobile-jump span {
  margin-left: 0.5em;
  color: #aaa;
  font-size: 1rem;
  margin-top: 1em;
}

/* モバイル専用ボタン付きジャンプ */
.mobile-jump {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
  flex-wrap: wrap;
}

.mobile-jump button {
  padding: 0.6em 1.2em;
  background: #555;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
}

.mobile-jump button:hover {
  background: #777;
}

/* mobile-jump 内の a タグも button風に */
.mobile-jump a {
  padding: 0.6em 1.2em;
  background: var(--color_main_dark);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 1em;
}

.mobile-jump a:hover {
  background: var(--color_main_dark);
}


/* 表示切替 */
.desktop-only {
  display: block;
}
.mobile-only {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex !important;
  }

  .page-jump-form input[type="text"] {
    font-size: 1.2rem;
  }

  .mobile-jump {
    gap: 1em;
  }
}



.bunny-caption {
  position: relative;
  margin: 6px auto 6px auto;
  padding: 8px 14px;
  background: #FFF0F5; /* 吹き出しの背景色 */
   border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #333;
  display: inline-block; /* ← これがポイント！ */
  max-width: 90%; /* 長すぎるときだけ折り返し防止 */
  word-break: break-word; /* 長い単語も折り返す */
}

.bunny-caption::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #FFF0F5; /* 吹き出し三角の色 */
}

.sale-label {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}

.sale-label2 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}

.actress-data {
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
  font-weight: bold;
  font-size: 13px;
  margin: 0px !important;
}

.actress-data i {
  margin-right: 6px;
}

.actress-postsnum{
    background-color: #e8e8e8;
    color: #80807f !important;
}
.actress-imagesnum{
    background-color: #e8e8e8;
    color: #80807f !important;
}
.actress-viewsnum{
    background-color: #ffeef0;
    color: #d6336c !important;
}
.actress-likesnum{
    background-color: #ffeef0;
    color: #d6336c !important;
}


.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0;
}

.tags div {
    display: inline-flex;
    align-items: center;
    background: #717273;
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s;
}

.tags div:hover {
    background: #343434;
}
.custom-select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    cursor: pointer;
}
.p-mainVisual__slideText{
	font-family: keifont;
}

.m-f-label{
	background: linear-gradient(135deg, #67A7CC 50%, #E761A4 50%);
}

.f-m-label{
	background: linear-gradient(135deg, #E761A4 50%, #67A7CC 50%);
}

.f-f-label{
	background: linear-gradient(135deg, #fc5c5b 50%, #E761A4 50%);
}

.starMax .c-reviewStars  i {
    color: var(--color-review_star, #CD4187);
}
.starMaxOld .c-reviewStars  i {
    color: var(--color-review_star, #FF0000);
}
.star4 .c-reviewStars  i {
	color: var(--color-review_star, #F58220);
}
.star2 .c-reviewStars  i {
	color: var(--color-review_star, #67A7CC);
}
.star1 .c-reviewStars  i {
	color: var(--color-review_star, #949593);
}

.p-relatedPosts .noForRel{
	display: none;
}

.actor-label{
	background-color: #058;
}
.actress-label{
	background-color: #E761A4;
}

.starTable th,.starTable td{
	border: none;
	font-weight: 700;
	font-size:16px;
	padding: 0 .5em;
}
.p-postList__item .starTable th,.starTable td{
	font-size:13px;
}
.p-postList__item .starTable{
	margin-top:5px;
}
.c-actressList:before {
    content:"\e9da"
}
.other_cat{
	background-color:grey;
}

.actress-cards {
    display: flex;
    flex-wrap: wrap; /* 複数行対応 */
    gap: 10px; /* カード間のスペース */
    justify-content: space-between; /* カードを均等配置 */
    position: relative;
}

.actress-card {
    background-color: #f9f9f9; /* 背景色 */
    border: 1px solid #ddd; /* 枠線 */
    border-radius: 10px; /* 角丸 */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ボックスシャドウ */
    padding: 15px;
    width: calc(33.333% - 10px); /* 横3列に調整 */
    box-sizing: border-box; /* ボックスサイズ調整 */
    text-align: center;
    overflow: hidden;
    position: relative;
}

.actress-img-wrapper{
    /*width:125px;*/
    position: relative;
    display:inline-block;
}

.actress-card img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    
}

.actress-card h3 {
    font-size: 1.0em;
    margin-bottom: 10px;
	padding-left: 0;
	color: #333;
}

.actress-card p {
    margin: 0;
    font-size: 0.9em;
    color: #666;
}

.actress-info-container {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.actress-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.actress-info img {
    max-width: 125px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.actress-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #333;
}

.actress-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.actress-info ul li {
    margin: 5px 0;
    font-size: 0.8em;
    color: #666;
}

.posts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.post-item {
    background-color: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-pagination {
    display: flex;
    justify-content: center; /* 中央揃え */
    gap: 10px; /* ボタン間の余白 */
    margin: 20px 0; /* 上下のマージン */
}

.custom-pagination a,
.custom-pagination span {
    display: inline-block; /* ボタンをインラインブロックに設定 */
    padding: 3px 5px; /* ボタンの内側余白  */
    text-decoration: none; /* 下線を削除 */
    background-color: #f9f9f9; /* 背景色 */
    border: 1px solid #ddd; /* ボーダー */
    border-radius: 5px; /* 角を丸く */
    color: #333; /* 文字色 */
    font-size: 14px;
    transition: background-color 0.3s ease; /* ホバー時のスムーズな色変更 */
}

.custom-pagination a:hover {
    background-color: #e2e2e2; /* ホバー時の背景色 */
}

.custom-pagination .current {
    background-color: var(--color_main); /* 現在のページの背景色 */
    color: #fff; /* 現在のページの文字色 */
    font-weight: bold;
    border-color:var(--color_main);
}

.-related .starTable th,.-related .starTable td{
		font-size:13px;
		font-weight: 600;
}

.swiper-slide .nodisp-slider{
	display:none;
}

.l-sidebar .nodisp-side{
    display:none;
} 


@media screen and (max-width: 634px) {
	.starTable th,.starTable td{
		font-size:13px;
			font-weight: 600;
	}
}

@media (max-width: 768px) {
    .actress-cards {
        gap: 8px; /* タブレット時の間隔 */
    }
    .actress-card {
        width: calc(50% - 8px); /* 横2列 */
    }
    .actress-card h3{
        font-size:0.8em;
    }
    .actress-fortop{
        width: calc(50.0% - 8px); /* 横2列 */
    }
    .actress-fortop h3{
        font-size:0.7em;
    }
	.actress-card p{
		display:none;
	}
	.mes-pconly{
		display: none;
	}
	/*.actress-fortop .actress-rank-icon{*/
 /*     top: 5px;*/
 /*     left: 5px;*/
 /*     font-size: 14px !important;*/
      
      /* 細い境界線でシンプルに引き立てる */
 /*     padding: 3px !important;*/
 /*   }*/
 /*   .actress-fortop .actress-rank-arrow{*/
 /*     top: 5px;*/
 /*     right: 5px;*/
 /*     font-size: 10px !important;*/
      
      /* 細い境界線でシンプルに引き立てる */
 /*     padding: 3px !important;*/
 /*   }*/
    .rank-number {
      font-size: 11px !important;
      padding:0;
    }
}

 @media (max-width: 480px) {
    .actress-card {
        /*width: 100%; */
    }
}


/* 共通 */
.swiper-postListWrap .p-postList {
	flex-wrap: nowrap;
	margin: 0;
}

/* カード型 */
.swiper-postListWrap .-type-card .p-postList__item {
	padding: 0;
}
.swiper-postListWrap .swiper-pagination-bullet {
    background: currentcolor;
    color: inherit;
}

/* サムネイル型 */
.swiper-postListWrap .-type-thumb .p-postList__item {
	padding: 0;
}
.p-postList.-type-thumb + .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: -4.5px;
}

/* 女優画面 */
.initial-navigation-vertical {
    display: grid;
    grid-template-rows: repeat(5, auto); /* 各列に5行（あいうえお）の縦配置を指定 */
    grid-auto-flow: column; /* 列ごとに縦に並ぶように設定 */
    direction: rtl; /* 右から左に列を配置 */
    gap: 10px; /* 列間と行間の間隔 */
    justify-content: center; /* 全体を右寄せに配置 */
    align-items: start;
    padding: 10px;
    overflow-x: auto; /* 横スクロールを有効に */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.initial-button {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.initial-button:hover {
    background-color: #e0e0e0;
}

.initial-button.active {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .initial-navigation-vertical {
        grid-template-rows: repeat(5, auto); /* モバイルでも5行を保持 */
        gap: 5px;
    }

    .initial-button {
        font-size: 12px;
        padding: 6px;
    }
}

/* 検索 */
.filter-container h5{
	margin-bottom: 0;
}
.filter-group{
	padding:0.5em;/*内側の余白*/
	border: 3px solid #eee;	
	position: relative;
	z-index: 0;
}
.filter-group {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.filter-group:before{
	border-top:3px solid #8293AA;
	border-left:3px solid #8293AA;
	content: '';
	display: block;
	position: absolute;
	top: -3px;
	left: -3px;
	width: 20px;
	height: 20px;
	z-index: 1;
}

.filter-group.active {
    max-height: 800px; /* 内容が収まる高さ */
    opacity: 1;
    transform: translateY(0);
}

.image-wrapper {
    opacity: 0; /* 初期は非表示 */
    transition: opacity 0.3s ease; /* フェードイン/フェードアウトの速度 */
}

.filter-group.active .image-wrapper {
    opacity: 1;
}

.filter-toggle {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}
.filter-search {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.filter-toggle:hover {
    background-color: #005a8d;
}
.filter-search:hover {
    background-color: #005a8d;
}

.filter-container {
    margin-bottom: 20px;
}

.filter-options {
    display: flex; /* 横並びに */
    gap: 5px; /* 画像間の隙間 */
    flex-wrap: wrap; /* 必要に応じて折り返し */
	margin:4px 4px 10px 0px;
}

.filter-item {
    position: relative;
    cursor: pointer;
}

.image-wrapper {
    position: relative;
    width: 80px; /* 正方形の幅 */
    height: 80px; /* 正方形の高さ */
    border: 2px solid lightgray; /* 初期状態は透明な枠線 */
    border-radius: 5px; /* 角丸効果 */
    transition: border-color 0.3s ease-in-out; /* アニメーションを追加 */
}

.image-wrapper img {
    width: 100%; /* 画像をラッパーに合わせる */
    height: 100%;
	border-radius: 5px;
    object-fit: cover; /* 画像を枠内にフィット */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 薄暗い背景 */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* 初期状態は非表示 */
	border-radius: 5px;
    transition: opacity 0.3s ease-in-out; /* ホバー時のアニメーション */
}

.text {
    color: #fff; /* テキストを白に */
    font-size: 14px; /* テキストサイズ */
    font-weight: bold;
    /*text-align: center;*/
}

.image-wrapper:hover .overlay {
    opacity: 1; /* ホバー時に背景とテキストを表示 */
}

.filter-item input {
    display: none; /* ラジオボタンを非表示 */
}

.filter-item input:checked ~ .image-wrapper {
	border: 2px solid #0073aa;/* 選択時の青い枠線 */
}

.filter-item input:checked ~ .image-wrapper .overlay {
    opacity: 1; /* 選択時も薄暗い背景を表示 */
}
.jouken-wrapper{
	display:flex;
	flex-wrap: wrap;
	gap: 3px;
	border: 1px solid lightgray;
	border-radius: 5px;
	padding: 5px;
	margin: 10px;
	color: gray;
}
.jouken-wrapper h5{
	width:100%;
}
.jouken-wrapper a{
	text-decoration: none;
	color: gray;
}
.joukens{
	padding: 5px;
	border: 1px solid lightgray;
	border-radius: 5px;
}

@media screen and (max-width: 834px) {
	.image-wrapper {
			width: 50px; /* 正方形の幅 */
			height: 50px; /* 正方形の高さ */
	}
		.text {
			font-size: 9px; /* テキストサイズ */
	}
	.starImg{
			width: 45px; /* 正方形の幅 */
			height: 45px; /* 正方形の高さ */
	}
}

/* ショート */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 20px;
  max-width: 800px;
  /*margin: auto;*/
}

.video-item {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* 縦長比率を固定 */
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #ddd;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* なめらかな動き */
}
.video-item:hover {
      transform: scale(1.05); /* ちょっとズームイン */
      box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3); /* 影をつける */
}
.video-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* アスペクト比を維持しつつ全体を表示 */
}

.video-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 8px;
  background: rgba(0, 0, 0, 0.6); /* 半透明の黒 */
  color: white;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.play-button2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 20px;
}

.video-views2 {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.video-likes2 {
  position: absolute;
  top: 38px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.video-views {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.video-likes {
  position: absolute;
  top: 38px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 4px 12px;
  border-radius: 50%;
  font-size: 20px;
}

.video-views3 {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.video-likes3 {
  position: absolute;
  bottom: 38px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.actor-likes {
  position: absolute;
  bottom: 5px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: rgba(255,255,255,1.0);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
  animation: fade-blink 5s ease-in-out infinite;
}
@keyframes fade-blink {
  0%, 100% { opacity: 1; }
  50%     { opacity: 0; }
}

.swiper-slide .video-likes3{
    display:none;
}

.swiper-slide .video-views3{
    font-size: 10px;
}

/*女優ランキング*/

.actress-rank-icon{
    position: absolute;
  top: 5px;
  left: 5px;
  font-size: 20px;
  display: none;
  
  /* 細い境界線でシンプルに引き立てる */
  border-radius: 30%;
  padding: 3px;
  background: rgba(0, 0, 0, 0.6); /* 背景はほんのり白 */
}
.actress-rank-arrow{
    position: absolute;
  top: 5px;
  right: 5px;
  font-size: 20px;
  
  /* 細い境界線でシンプルに引き立てる */
  border-radius: 30%;
  padding: 3px;
  background: rgba(0, 0, 0, 0.6); /* 背景はほんのり白 */
}
.arrow-pink{
    color: pink;
    border: 2px solid rgba(240, 103, 166, 0.6);
}
.arrow-yellow{
    color: rgb(255, 212, 0);
    border: 2px solid rgba(255, 212, 0, 0.6);
}
.arrow-skyblue{
    color: skyblue;
    border: 2px solid rgba(188, 225, 223, 0.6);
}
.arrow-red{
    color: #F172A3;
    border: 2px solid rgba(205, 65, 135, 0.6);
}

.actress-rank-label{
    position: absolute;
  top: 5px;
  left: 5px;
  /*display: none;*/
  
  /* 細い境界線でシンプルに引き立てる */
  border-radius: 30%;
  padding: 4px;
  background: rgba(0, 0, 0, 0.6); /* 背景はほんのり白 */
  border: 2px solid rgba(255, 255, 255, 0.6);
  color:white;
}
.rank-number {
  font-weight: bold;
  font-size: 14px;
}
.actress-card:nth-child(1) .actress-rank-label {
  color: gold;
  border: 2px solid rgba(255, 215, 0, 0.6);  /* 薄いゴールドの枠 */
}

.actress-card:nth-child(2) .actress-rank-label {
  color: silver;
  border: 2px solid rgba(192, 192, 192, 0.6);  /* 薄いゴールドの枠 */
}

.actress-card:nth-child(3) .actress-rank-label {
  color: #cd7f32; /* ブロンズ */
  border: 2px solid rgba(205, 127, 50, 0.6);  /* 薄いゴールドの枠 */
}
/* トップ3のみに王冠を表示 */
.actress-card:nth-child(-n+3) .actress-rank-icon {
  display: block;
}
.actress-card:nth-child(1) .actress-rank-icon {
  color: gold;
  border: 2px solid rgba(255, 215, 0, 0.6);  /* 薄いゴールドの枠 */
}

.actress-card:nth-child(2) .actress-rank-icon {
  color: silver;
  border: 2px solid rgba(192, 192, 192, 0.6);  /* 薄いゴールドの枠 */
}

.actress-card:nth-child(3) .actress-rank-icon {
  color: #cd7f32; /* ブロンズ */
  border: 2px solid rgba(205, 127, 50, 0.6);  /* 薄いゴールドの枠 */
}

.actress-item:nth-child(1) .actress-rank-icon {
  color: gold;
  border: 2px solid rgba(255, 215, 0, 0.6);  /* 薄いゴールドの枠 */
}

.actress-item:nth-child(2) .actress-rank-icon {
  color: silver;
  border: 2px solid rgba(192, 192, 192, 0.6);  /* 薄いゴールドの枠 */
}

.actress-item:nth-child(3) .actress-rank-icon {
  color: #cd7f32; /* ブロンズ */
  border: 2px solid rgba(205, 127, 50, 0.6);  /* 薄いゴールドの枠 */
}
/* トップ3のみに王冠を表示 */
.actress-item:nth-child(-n+3) .actress-rank-icon {
  display: block;
}

.actress-wide{
    transition: transform 0.3s, background 0.3s;
}
.actress-wide:hover{
    transform: scale(1.02);
    background: #f9f9f9;
}

.actress-item:nth-child(1) .actor-rank-icon {
  color: gold;
  border: 2px solid rgba(255, 215, 0, 0.6);  /* 薄いゴールドの枠 */
}

.actress-item:nth-child(2) .actor-rank-icon {
  color: silver;
  border: 2px solid rgba(192, 192, 192, 0.6);  /* 薄いゴールドの枠 */
}

.actress-item:nth-child(3) .actor-rank-icon {
  color: #cd7f32; /* ブロンズ */
  border: 2px solid rgba(205, 127, 50, 0.6);  /* 薄いゴールドの枠 */
}
/* トップ3のみに王冠を表示 */
.actress-item:nth-child(-n+3) .actor-rank-icon {
  display: block;
}
.actor-rank-icon{
    position: absolute;
  top: 5px;
  left: 5px;
  font-size: 20px;
  display: none;
  
  /* 細い境界線でシンプルに引き立てる */
  border-radius: 30%;
  padding: 3px;
  background: rgba(0, 0, 0, 0.6); /* 背景はほんのり白 */
}


/* Masonry本体 */
.masonry-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
}

/* アイテム */
.grid-item {
  width: 31%; /* PC3カラム */
  margin-left: 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* 丸み */
}

/* 画像に丸みを付ける */
.grid-item img {
  width: 100%;
  display: block;
  border-radius: 8px; /* 画像自体も丸く */
  transition: transform 0.3s ease;
}

/* ホバーでズーム */
.grid-item:hover img {
  transform: scale(1.05);
}




/*.favorite-toggle {*/
/*  background: none;*/
/*  border: 1px solid #ccc;*/
/*  color: #555;*/
/*  padding: 6px 12px;*/
/*  font-size: 14px;*/
/*  border-radius: 30px;*/
/*  cursor: pointer;*/
/*  display: inline-flex;*/
/*  align-items: center;*/
/*  gap: 6px;*/
/*  transition: all 0.3s ease;*/
/*	margin: 6px;*/
/*}*/
/*.favorite-toggle:hover {*/
/*  background-color: #f0f0f0;*/
/*}*/
/*.favorite-toggle i {*/
/*  color: #aaa;*/
/*  transition: color 0.3s ease;*/
/*}*/
/*.favorite-toggle.is-favorited {*/
/*  border-color: #e74c3c;*/
/*  color: #e74c3c;*/
/*}*/
/*.favorite-toggle.is-favorited i {*/
/*  color: #e74c3c;*/
/*}*/

/* 基本ボタン */
.user-rating-title{
    font-weight:bold;
}

.favorite-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.6em 1.2em;
  font-size: 1rem;
  font-weight: 600;
  color: #e63946;
  background: #fff;
  border: 2px solid #e63946;
  border-radius: 999px; /* pill型 */
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 8px rgba(230, 57, 70, 0.2);
}

.favorite-toggle-wrapper {
  text-align: center; /* 子要素を中央寄せ */
  margin: 1em 0;
}

.favorite-toggle i {
  font-size: 1.2em;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* hover時 → 押したくなる */
.favorite-toggle:hover {
  background: #e63946;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(230, 57, 70, 0.35);
}

.favorite-toggle:hover i {
  transform: scale(1.2);
  color: #fff;
}

/* 投票済み状態 */
.favorite-toggle.is-favorited {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
  box-shadow: 0 4px 10px rgba(230, 57, 70, 0.4);
}

.favorite-toggle.is-favorited i {
  color: #fff;
  animation: heartbeat 1s infinite;
}

/* 投票済みアイコンを鼓動させる */
@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  20% { transform: scale(1.3); }
  40% { transform: scale(1); }
  60% { transform: scale(1.2); }
  80% { transform: scale(1); }
}



.favorite-actress-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.favorite-version-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}


.play-tags {
  margin: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.play-tag {
  background: #f0f0f5;
  padding: 4px 9px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.play-tag:hover {
  background: #444;
  color: #fff;
}

.start-date-label {
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
}


.video-stats {
  position: absolute;
  bottom: 6px;
  left: 6px;
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .product-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 2列 */
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .product-list {
    display: grid;
    grid-template-columns: 1fr; /* 1列 */
    gap: 15px;
  }
}










/* 共通スタイル */
.hover-opacity {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* ホバー時に少し拡大 */
.hover-opacity:hover {
  transform: scale(1.03);
}

/* 画像のフェード */
.hover-opacity img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

.hover-opacity:hover img {
  opacity: 0.6;
}

/* オーバーレイのテキスト表示 */
.hover-opacity::after {
  content: "▶ 作品を見る";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.5em 1em;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* ホバー時に表示 */
.hover-opacity:hover::after {
  opacity: 1;
}



.play-swiper {
    width: 100%;
    margin: 16px 0 40px;
}
.play-swiper .swiper-wrapper {
    align-items: center; /* 高さ揃え */
}

.play-swiper .swiper-slide {
    aspect-ratio: 3 / 4;  /* スライド表示ボックスの比率を指定 */
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    max-height: 500px; /* 最大値だけ制限 */
}

.play-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 切れない */
}


@media(max-width:768px) {
  .play-swiper .swiper-slide {
     max-height: 185px;
     aspect-ratio: 2/3;
  }
}



/* =========================
   Product Item — YouTube風
========================= */

/* 顔＋タイトル＋女優名 */
.pi-head{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:10px;
}

/* 顔画像（主役寄り） */
.pi-face{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
  border:1px solid #e5e7eb;
  box-shadow:0 6px 14px rgba(0,0,0,.12);
}

/* タイトル＋女優名縦配置 */
.pi-textblock{
  display:flex;
  flex-direction:column;
  gap:4px;
  max-width:80%;
}

/* タイトル */
.pi-title{
  font-size:14px;
  line-height:1.55;
  font-weight:700;
  margin:0;
  color:#111;
  
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 女優名（控えめ） */
.pi-name{
  font-size:12.5px;
  color:#6b7280;
  font-weight:500;
  margin:0;
  letter-spacing:.02em;
}

/* stats 下に */
.pi-stats{
  margin-top:8px;
  font-size:12px;
}

.pi-stats .actress-stats-column{
  gap:6px !important;
}

/* =========================
   SP
========================= */
@media(max-width:900px){

  .pi-face{
    width:42px;
    height:42px;
  }

  .pi-title{
    font-size:13.5px;
  }

  .pi-name{
    font-size:12px;
  }
}








/* セクション全体 */
.actress-section,.masonry-section,.video-section, .product-section {
  margin: 2em 0;
  padding: 1em;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: #fafafa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* タイトル */
.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1em;
  padding-left: 0.4em;
  border-left: 4px solid #ff6699; /* お好みのカラー */
  color: #333;
}

.product-item {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.15s;
}
.product-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.product-body {
  padding: 14px 12px 16px;
}

.product-title {
  font-size: .85rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.focus-rating {
  margin: 10px 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.focus-label {
  font-weight: 600;
  color: #444;
  font-size: 0.9rem;
}
.focus-stars {
  display: flex;
  gap: 2px; /* 星の間隔をかなり詰める */
}
.focus-stars .star {
  font-size: 1.2rem;
}
.focus-score {
  font-size: 0.8rem;
  color: #777;
  margin-left: 4px;
}

.play-tags {
  margin: 6px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.play-tag {
  background: #f0f0f5;
  padding: 4px 9px;
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #444;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.play-tag:hover {
  background: #444;
  color: #fff;
}

.start-date-label {
  margin-top: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
}


.video-stats {
  position: absolute;
  bottom: 6px;
  left: 6px;
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .product-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* 2列 */
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .product-list {
    display: grid;
    grid-template-columns: 1fr; /* 1列 */
    gap: 15px;
  }
}


.video-views3 {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

/*.video-likes3 {*/
/*  position: absolute;*/
/*  bottom: 68px;*/
/*  left: 8px;*/
/*  background: rgba(0, 0, 0, 0.6);*/
/*  color: white;*/
/*  font-size: 12px;*/
/*  padding: 4px 8px;*/
/*  border-radius: 5px;*/
/*}*/

.video-comment3 {
  position: absolute;
  bottom: 38px;
  left: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 5px;
}

.product-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75em;
    color: #fff;
    background: linear-gradient(135deg, #f09 0%, #f36 100%);
    border-radius: 12px;
    padding: 2px 8px;
    margin: 4px 0 4px 8px; /* ← 左に8pxの余裕を追加 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.start-date-badge i {
    color: #fff;
    font-size: 0.9em;
}


.rel-face-slider{
  position:relative;
  width:48px;
  height:48px;
  flex-shrink:0;
}

.rel-face-slider img{
  position:absolute;
  top:0; left:0;
  width:100%; height:100%;
  border-radius:50%;
  object-fit:cover;
  opacity:0;
  transition:opacity .4s;
}

.rel-face-slider img.is-active{
  opacity:1;
}



.label-new {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e60033; /* 赤 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.label-upcoming {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #32CD32; /* 青 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.label-new-oppai {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #e60033; /* 赤 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.label-upcoming-oppai {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #32CD32; /* 青 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.label-meikan {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #FF4B5C; /* 赤 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

.for-single{
    box-shadow: 0 0 0 rgba(0,0,0,0.1);
}


.label-hard {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background:#a0a2a2; /* 赤 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}
.label-rare {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: #e6b422; /* 赤 */
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}




.actress-partners {
  margin: 40px 0;
}

.actress-partners .partner-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
  letter-spacing: .04em;
}

/* grid */
.actress-partners .partner-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}

/* row */
.actress-partners .partner-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 16px;
  text-decoration: none;
  color: #222;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.actress-partners .partner-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,.1);
}

/* image */
.actress-partners .partner-photo {
  width: 72px;
  height: 72px;
  border-radius: 14px;
  overflow: hidden;
  background: #f5f5f5;
  flex-shrink: 0;
}

.actress-partners .partner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* info */
.actress-partners .partner-info {
  min-width: 0;
}

.actress-partners .partner-name {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.actress-partners .partner-kana {
  font-size: 0.75rem;
  color: #777;
  margin-top: 2px;
}

.actress-partners .partner-count {
  margin-top: 6px;
  font-size: 0.75rem;
  color: #777;
}

.actress-partners .partner-count strong {
  color: #ff5c8a;
  font-weight: 700;
}


.rel-name-first{
  color:#c8325a;
  font-weight:700;
}

.rel-name-first-mark{
  margin-left:1px;
  font-size:.9em;
  font-weight:800;
  color:#e64545;
}





.video-search-form{
  display:grid;
  gap:24px;
}

.search-label{
  font-size:14px;
  letter-spacing:.02em;
  color:#444;
  display:flex;
  align-items:center;
  gap:6px;
  
  font-weight: 600;
  margin-bottom: 6px;
}

.search-label i{
  color:#ff7aa2;
  font-size:13px;
}


.checkbox-grid{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.check-chip{
  position:relative;
}

.check-chip input{
  display:none;
}

.check-chip span{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  border:1px solid #ddd;
  background:#fff;
  font-size:13px;
  cursor:pointer;
  transition:.15s;
}

.check-chip input:checked + span{
  background:#ffe6ee;
  border-color:#ff7aa2;
  color:#c8325a;
  font-weight:700;
}

/* hard buttons */
.button-group{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.radio-btn input{
  display:none;
}

.radio-btn span{
  padding:8px 14px;
  border-radius:8px;
  border:1px solid #ddd;
  cursor:pointer;
}

.radio-btn input:checked + span{
  background:#ff7aa2;
  color:#fff;
  border-color:#ff7aa2;
  font-weight:700;
}

/* submit */
.search-submit{
  background:#ff5c8a;
  color:#fff;
  
  width:100%;
  border-radius:14px;
  padding:14px;
  font-size:16px;
  font-weight:800;
  box-shadow:
    0 8px 20px rgba(255,92,138,.35),
    0 2px 6px rgba(0,0,0,.15);

}

/* mobile */
@media(max-width:768px){
  .checkbox-grid{
    gap:6px;
  }
  .radio-btn span{
      font-size:.8em;
    }
}

.search-result-count{
  font-weight:700;
  margin-bottom:12px;
}
.video-search-wrap{
  position:fixed;
  left:16px;
  top:110px;
  z-index:9999;
}

.video-search-wrap.is-open{
  transform:translateY(-4px);
  box-shadow:0 14px 40px rgba(0,0,0,.18);
}

/* 閉じている時は全体無効化 */
.video-search-wrap:not(.is-open){
  pointer-events:none;
}

/* ただしトグルボタンだけは有効 */
.video-search-wrap:not(.is-open) .search-toggle{
  pointer-events:auto;
}



/* トグルボタン */
.search-toggle{
  display:flex;
  align-items:center;
  gap:10px;

  padding:12px 18px;
  border-radius:999px;
  border:none;

  background:rgba(255,255,255,.9);
  box-shadow:0 6px 18px rgba(0,0,0,.18);

  cursor:pointer;
}


.video-search-wrap.is-open .search-toggle{
  border-radius:18px 18px 0 0;
}

.video-search-wrap:not(.is-open) .toggle-title{
  display:none;
}


.toggle-icon{
  font-size:18px;
  transition:.2s;
}

/* 中身 */
.video-search-inner{
  margin-top:10px;
  padding:20px 18px 22px;
  width:420px;
  max-width:calc(100vw - 32px);

  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);

  border-radius:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.18);

  max-height:70vh;
  overflow:auto;

  transition:
    opacity .25s ease,
    transform .25s ease,
    max-height .25s ease;

  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.video-search-inner.is-closed{
  opacity:0;
  transform:translateY(14px);
  max-height:0;          /* ← これが超重要 */
  overflow:hidden;
  pointer-events:none;
}


.video-search-wrap.is-open .toggle-icon-main{
  transform:rotate(-10deg);
  transition:transform .2s ease;
}




.toggle-badges{
  display:flex;
  gap:6px;
  overflow:hidden;
  max-height:80px; /* 2行分 */
  flex-wrap:wrap;
}



.search-badge{
  background:#ffe6ee;
  color:#c8325a;
  font-size:11px;
  padding:3px 8px;
  border-radius:999px;
  font-weight:700;
  white-space:nowrap;
}

.search-badge i{
  margin-left:4px;
  font-style:normal;
  cursor:pointer;
}
.search-badge.is-more{
  background:#eee;
  color:#666;
}

.toggle-title{
    white-space:nowrap;
}


.toggle-icon-main{
  font-size:18px;
  color:#ff5c8a;
  animation:searchPulse 2.8s ease-in-out infinite;
}

@keyframes searchPulse{
  0%{
    transform:scale(1);
    opacity:.9;
  }
  45%{
    transform:scale(1.15);
    opacity:1;
  }
  100%{
    transform:scale(1);
    opacity:.9;
  }
}
@media(max-width:768px){
  .video-search-wrap:not(.is-open) .toggle-title{
    display:none;
  }
}
@media(max-width:768px){
  .video-search-wrap{
    top:65px; /* 固定フッタ高さ */
  }
}
.video-search-footer{
  position: sticky;
  bottom: 0;
  padding: 14px 16px 16px;
  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.96),
      rgba(255,255,255,.75) 60%,
      rgba(255,255,255,0)
    );
  backdrop-filter: blur(6px);
}









.actress-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
	margin-bottom: 24px;
  flex-wrap: wrap;
}

.actress-link-card {
  flex: 1 1 80px;
  display: flex;
  align-items: center;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.actress-link-card:hover {
  background: #f0f0f0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.actress-link-card .icon {
  font-size: 24px;
  margin-right: 12px;
  color: #666;
}

.actress-link-card .text .title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
}

.actress-link-card .text .desc {
  font-size: 12px;
  color: #777;
}

/* スマホでは縦並び */
@media (max-width: 600px) {
  .actress-links {
    flex-direction: column;
  }
}




.rl-debut-block {
    margin: 40px 0;
}

.rl-debut-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.rl-debut-sub {
    display: block;
    font-size: 0.7rem;
    color: #e86aa3;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.rl-debut-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .rl-debut-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .rl-debut-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rl-debut-card {
    text-align: center;
}

.rl-debut-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 14px;
}

.rl-debut-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rl-debut-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #e60033;
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 6px;
    border-radius: 6px;
    font-weight: 700;
}

.rl-debut-name {
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.rl-debut-ruby {
    font-size: 0.65rem;
    color: #999;
    letter-spacing: 0.05em;
}
.rl-debut-link {
    display: block;
    text-decoration: none;
    color: inherit;
}


.rl-debut-card {
    transition: transform .25s ease, box-shadow .25s ease;
}

.rl-debut-card:hover {
    transform: translateY(-4px);
}

.rl-debut-img img {
    transition: transform .35s ease;
}

.rl-debut-card:hover .rl-debut-img img {
    transform: scale(1.05);
}
.rl-debut-badge {
    transition: background .25s ease, transform .25s ease;
}

.rl-debut-card:hover .rl-debut-badge {
    background: #ff4f9a;
    transform: scale(1.05);
}
@media (hover: none) {
    .rl-debut-card:hover {
        transform: none;
    }
    .rl-debut-card:hover .rl-debut-img img {
        transform: none;
    }
}
.rl-debut-date-cal {
    position: absolute;
    right: 6px;
    top: 6px;
    width: 34px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
    background: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

.rl-debut-date-cal em {
    display: block;
    background: #e86aa3; /* ピンク系 */
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    text-align: center;
    padding: 4px 0 3px;
    letter-spacing: .08em;
}

.rl-debut-date-cal i {
    display: block;
    font-style: normal;
    color: #222;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    padding: 5px 0 6px;
    line-height: 1;
}


.rl-debut-date-cal::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(0,0,0,.08);
}








.pa-rank-block {
    margin: 40px 0;
}

.pa-rank-title {
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.pa-rank-sub {
    display: block;
    font-size: 0.7rem;
    color: #e86aa3;
    letter-spacing: .08em;
    margin-top: 4px;
}

.pa-rank-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

@media (max-width: 768px) {
    .pa-rank-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .pa-rank-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pa-rank-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.pa-rank-card {
    text-align: center;
    transition: transform .25s ease;
}

.pa-rank-card:hover {
    transform: translateY(-4px);
}

.pa-rank-card {
    position: relative;
}

.pa-rank-card::before {
    content: attr(data-rank);
    position: absolute;
    bottom: -30px;
    right: 10px;
    font-size: 3.8rem;
    font-weight: 900;
    color: rgba(0,0,0,.035);
    letter-spacing: -.05em;
    pointer-events: none;
}


.pa-rank-img {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pa-rank-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.pa-rank-card:hover .pa-rank-img img {
    transform: scale(1.05);
}

/* 共通 */
.pa-rank-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: .7rem;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    letter-spacing: .02em;
}

/* 1位：Gold */
.pa-rank-1 {
    background: linear-gradient(135deg, #f5c46b, #d8a84a);
    /*box-shadow: 0 0 0 1px rgba(255,255,255,.6) inset;*/
}

/* 2位：Silver */
.pa-rank-2 {
    background: linear-gradient(135deg, #d7d7d7, #a2a2a2);
}

/* 3位：Bronze */
.pa-rank-3 {
    background: linear-gradient(135deg, #d39a6a, #b87333);
}

/* 4位以降 */
.pa-rank-4,
.pa-rank-5,
.pa-rank-6{
    background: #333;
    opacity: .85;
}
.pa-rank-card:hover .pa-rank-badge {
    transform: scale(1.05);
}


.pa-rank-name {
    margin-top: 6px;
    font-size: .85rem;
    font-weight: 600;
}

.pa-rank-meta {
    font-size: .65rem;
    color: #999;
}

.pa-rank-card:nth-child(1) .pa-rank-img {
    box-shadow:
        0 0 0 3px #e0b84f,
        0 0 0 6px rgba(224,184,79,.25),
        0 20px 45px rgba(224,184,79,.35);
}

.pa-rank-card:nth-child(1) {
    transform: scale(1.06);
    z-index: 3;
}
.pa-rank-card:nth-child(2) .pa-rank-img {
    box-shadow:
        0 0 0 3px #c9c9c9,
        0 15px 35px rgba(180,180,180,.25);
}
.pa-rank-card:nth-child(3) .pa-rank-img {
    box-shadow:
        0 0 0 3px #c28a52,
        0 12px 28px rgba(194,138,82,.25);
}
.pa-rank-card:nth-child(n+4) .pa-rank-img {
    box-shadow:
        0 0 0 1px #eee;
}







.play-count {
  display: flex;
  align-items: center;
  gap: 6px;
  /*margin-top: 6px;*/
  font-size: 13px;
  color: #777;
}

.play-count i {
  font-size: 12px;
  color: #ff5c8a; /* 差し色ピンク */
}

.play-count-num {
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #333;
}

.play-count-unit {
  font-size: 11px;
  color: #999;
}
@media (max-width: 600px) {
  .play-count {
    font-size: 12px;
  }
}




.filter-heading {
  text-align: center;
/*   margin-bottom: 1rem; */
}

.filter-title {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #444;
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.filter-sub {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}




/* ブロック全体 */
.pa-weekly-block {
    margin: 60px 0;
}

/* グリッド */
.pa-weekly-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* カード */
.pa-week-card {
    display: block;
    text-decoration: none;
    position: relative;
}

.pa-week-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f7f7f7;
    transition: transform .25s ease, box-shadow .25s ease;
}

.pa-week-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* ホバー */
.pa-week-card:hover .pa-week-image-wrap {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* カレンダーバッジ */
.pa-week-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    border-radius: 8px;
    overflow: hidden;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* 上部（曜日） */
.pa-week-day {
    display: block;
    background: #ff4da6;
    color: #fff;
    font-size: 11px;
    padding: 6px 0;
    letter-spacing: .5px;
}

/* スマホ */
@media (max-width: 768px) {
    .pa-weekly-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}






.sg-player{
    position:relative;
    width:100%;
    max-width:90vw;
    margin:auto;
    background:#000;
    border-radius:20px;
    overflow:hidden;
}

.sg-player video{
    width:100%;
    display:block;
    aspect-ratio:16/9;
    object-fit:cover;
}
.sg-player::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0);
    backdrop-filter:blur(0px);
    transition:.45s ease;
    pointer-events:none;
}

.sg-player.is-loading::after{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(8px);
}

.sg-play-indicator {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: #fff;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

/* 停止中 */
.sg-player.is-paused .sg-play-indicator {
    opacity: 0.35;
}


/* 再生中 */
.sg-player.is-playing .sg-play-indicator {
    opacity: 0;
}

.sg-player.touch-active .sg-play-indicator{
  opacity:0.9;
  transform:scale(1.05);
}


/* hover可能デバイスのみ */
@media (hover: hover) and (pointer: fine) {

  .sg-player.is-paused:hover .sg-play-indicator {
      opacity: 0.9;
      transform: scale(1.05);
  }

  .sg-player.is-playing:hover .sg-play-indicator {
      opacity: 0.4;
  }

  .sg-player.is-playing:hover .sg-play-indicator:hover {
      opacity: 0.9;
  }

}


.sg-sound-toggle{
    position:absolute;
    top: 15%;
    right:2%;
    width:42px;
    height:42px;
    /* 背景を「真っ黒」ではなく「透かし」に */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* 縁取りを入れて「質感」を出す */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    /* 浮いて見えないように自然な影を */
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* ホバー時に色を少し明るくして、影を強くする */
.sg-sound-toggle:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

/* アイコンが切り替わった時の視覚的な微調整 */
.sg-sound-toggle i {
    transition: transform 0.2s ease;
}
.sg-sound-toggle:active i {
    transform: scale(0.9);
}

.sg-chapters{
    display:flex;
    gap:6px;
    padding:10px;
    background:#111;
    overflow-x:auto;
}

.sg-chapter{
    width:68px;
    height:40px;
    background-size:cover;
    background-position:center;
    border-radius:8px;
    opacity:.45;
    cursor:pointer;
    flex-shrink:0;
    transition:.2s;
    
    position:relative;
  overflow:hidden; /* これ重要 */
}

.sg-chapter.active{
    opacity:1;
    outline:2px solid #ff4da6;
}
.sg-chapter-blur{
  position:absolute;
  top:0;
  left: 3%;
  width: 94%;
  height:16%; /* 上部だけ */
  
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  
  background: rgba(0,0,0,0.15);
  pointer-events:none;
  
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  
  border-radius: 60px;
}



.sg-blur{
  position:absolute;
  
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(0,0,0,0.15); /* 少し暗く */
  pointer-events:none;
  z-index:2;
  border-radius:0 0 12px 12px;
}

.sg-blur-left{
    top:3%;
  height:10%; /* テロップ高さに合わせて調整 */
    
  left:5%;
  width:50%;
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}

.sg-blur-right{
    top:.5%;
  height:10%; /* テロップ高さに合わせて調整 */
    
  right:2%;
  width:18%;
  mask-image: linear-gradient(to left, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, black 70%, transparent 100%);
}


.sg-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  
  width:8%;
    height:22%;
    font-size:1.4vw;
  
  display:flex;
  align-items:center;
  justify-content:center;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.2);

  color:#fff;
  cursor:pointer;

  transform:translateY(-50%) scale(1);
  transition: opacity .3s ease, transform .3s ease;
  z-index:4;
  
  opacity:1;
  pointer-events:auto;
}
@media (max-width: 768px) {
    .sg-nav {
        width:12%;
        height:30%;
        font-size:4vw;
    }
}

.sg-nav.is-hidden{
  opacity:0;
  pointer-events:none; /* クリック無効 */
  transform:translateY(-50%) scale(0.9);
}

.sg-prev{
  left:2%;
  border-radius:0 12px 12px 0;
}

.sg-next{
  right:2%;
  border-radius:12px 0 0 12px;
}

.sg-nav:hover{
  background: rgba(0,0,0,0.35);
}





.sg-title-bar{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  padding:4% 5% 6% 5%;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0)
  );

  z-index:3;
  pointer-events:none;
}

.sg-progress-segments {
    display: flex;
    gap: 6px;
    width: 100%;
    margin-bottom: 8px;
    pointer-events: auto; /* クリック可能に */
    cursor: pointer;
}

.sg-segment {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    flex: 1;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

/* アニメーションの肝：中のバー */
.sg-segment-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* 初期状態 */
    height: 100%;
    background: #ff4da6;
    box-shadow: 0 0 10px rgba(255, 77, 166, 0.5);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* アクティブ・視聴済み状態 */
.sg-segment.active .sg-segment-inner {
    width: 100%;
}
.sg-segment.viewed .sg-segment-inner {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}



/*.sg-player.is-playing .sg-title-bar{*/
/*  opacity:0;*/
/*  transition:opacity .4s ease;*/
/*}*/

@media (hover: hover) and (pointer: fine){
  .sg-player.is-playing:hover .sg-title-bar{
    opacity:1;
  }
}




/* カード全体 */
.p-postList__item.dmm-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    height: 100%;
}

/* 画像エリア：ここで高さを強制確保 */
.dmm-card__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #1a1a1a;
    display: block; /* 確実に表示させる */
}

/* テキストエリア */
.dmm-card__body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dmm-card__title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    height: 2.8em; /* 2行分確保 */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* メタ情報の配置（左右振り分け） */
.dmm-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 8px;
}

/* 星評価の土台 */
.star-rating-container {
    position: relative;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    color: #e0e0e0;
}
.star-rating-front {
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    white-space: nowrap;
}

/* レビューの色階層 */
.is-pink .star-rating-front { color: #ff3399; }   /* ピンク(最良) */
.is-pink .review-score { color: #ff3399; font-weight: bold; }

.is-red .star-rating-front { color: #ff0000; }    /* 赤 */
.is-red .review-score { color: #ff0000; }

.is-orange .star-rating-front { color: #ff8800; } /* オレンジ */
.is-orange .review-score { color: #ff8800; }

.is-yellow .star-rating-front { color: #ffcc00; } /* 黄色 */
.is-yellow .review-score { color: #ffcc00; }

.review-score {
    font-size: 12px;
    margin-left: 4px;
}

.dmm-card__date {
    font-size: 11px;
    color: #999;
}



.vm-icon{
  font-size:14px;
  background: linear-gradient(90deg, #ec4899 50%, #3b82f6 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}







/* 全体 */
.actress-skill-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 28px;
}

/* チップ */
.skill-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 10px 6px 12px;

    border-radius: 999px;
    background: #fff;
    border: 1px solid #f0f0f0;

    font-size: 12px;
    color: #333;

    transition: .2s ease;
}

/* play名 */
.skill-chip__name {
    font-weight: 500;
    white-space: nowrap;
}

/* 右端の投稿数 */
.skill-chip__meta {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    font-size: 10px;
    color: #999;
}

/* アイコン */
.skill-chip__meta i {
    font-size: 9px;
    color: #ff8fa3;
}

/* hover（強すぎない） */
.skill-chip:hover {
    border-color: #ffd6df;
    background: #fff7f9;
}





.actress-random-section{
    padding:30px 10px;
}

.ars-card{
    max-width:1100px;
    margin:auto;
    border-radius:28px;
    background:#fff;
    box-shadow:0 25px 60px rgba(0,0,0,0.08);
    overflow:hidden;
}
.ars-card-head{
    padding:36px 40px 24px;
    background:#fff;
}

.ars-eyebrow{
    font-size:11px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:#ff4da6;
    font-weight:600;
}

.ars-title-row{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:10px;
}

.ars-title{
    font-size:24px;
    font-weight:600;
    color:#111;
}

.ars-line{
    flex:1;
    height:1px;
    background:linear-gradient(
        to right,
        rgba(255,77,166,.4),
        rgba(255,77,166,0)
    );
}


.ars-title{
    margin-top:12px;
    font-size:22px;
    font-weight:600;
    color:#222;
}
.ars-card-body{
    padding:28px 32px 32px;
}


.ars-inner{
    max-width:1100px;
    margin:auto;
}

.ars-header{
    margin-bottom:30px;
}

.ars-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 14px;
    font-size:12px;
    letter-spacing:.08em;
    font-weight:600;
    border-radius:999px;
    background:#ffe3f0;
    color:#ff4da6;
}

.ars-sub{
    margin-top:10px;
    font-size:20px;
    font-weight:600;
    color:#222;
}
.ars-player-wrap{
    margin-top:20px;
    padding:24px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.sg-post-link-wrap{
    margin-top:20px;
    text-align:center;
}

.sg-post-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 22px;
    border-radius:999px;

    font-size:14px;
    font-weight:600;

    color:#fff;
    background:#ff4da6;

    transition:all .25s cubic-bezier(.22,1,.36,1);
}

.sg-post-link:hover{
    /*transform:translateY(-2px);*/
    box-shadow:0 12px 30px rgba(255,77,166,0.35);
}

@media (max-width:768px){

    .actress-random-section{
        padding:10px 1px;
    }

    .ars-card{
        border-radius:20px;
    }

    .ars-card-head{
        padding:28px 20px 16px;
    }

    .ars-card-body{
        padding:16px;
    }

}



.playfavor-flex{
    display:flex;
    gap:12px;
}








/* ===== 天然度 横1行 ===== */

.naturalness-row {
  display: flex;
  align-items: center;
  gap: 8px;
  /*margin: 0.8rem 0 12px;*/
  width: 100%;
}

.naturalness-label {
  white-space: nowrap;
}

/* バーは残り幅を全部使う */
.naturalness-row .naturalness-bar {
  position: relative;
  flex: 1;
  height: 20px;
  border-radius: 999px;
  overflow: hidden;
  background: #e0e0e0;
  
   /* ★ これを追加 ★ */
  display: flex;
  flex-wrap: nowrap;
  
  width: 100%;
}

/* 実バー */
.naturalness-bar > div {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
  height: auto;
}

/* 初期状態は完成形を保持 */
.naturalness-natural,
.naturalness-artificial {
  width: var(--target-width);
}

/* animation では「0 → 100%」ではなく「scale」だけやる */
@keyframes meter-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.naturalness-natural,
.naturalness-artificial {
  transform-origin: left center;
}

.naturalness-artificial {
  transform-origin: right center;
}

.naturalness-bar.is-visible .naturalness-natural,
.naturalness-bar.is-visible .naturalness-artificial {
  animation: meter-grow 0.6s cubic-bezier(.22,1,.36,1);
}






.naturalness-natural {
  background: linear-gradient(90deg, #4caf50, #66bb6a);
}

.naturalness-artificial {
  background: linear-gradient(90deg, #e53935, #ef5350);
}


.naturalness-natural,
.naturalness-artificial {
    flex-shrink: 0;
}



/* ===== 薄く表示する背景ラベル ===== */

.naturalness-bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,0.25);
  pointer-events: none;
}

.naturalness-bg.natural {
  left: 10px;
}

.naturalness-bg.artificial {
  right: 10px;
}

/* 投票なし */
.naturalness-bar.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ccc;
}

.naturalness-empty-text {
  font-size: 12px;
  color: #666;
}