@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);
}