@charset "UTF-8";
:root {
  --main-pink: #f062b1;
  --dark-pink: #e91e63;
  --light-pink: #fce4ec;
  --bg-gray: #f9f9f9;
  --border: #333; /* 画像に合わせた少し濃いめの境界線 */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 画面の高さ分を最低限確保する */
}
body header {
  text-align: center;
  padding: 15px;
}
body header .logo {
  width: 200px;
}
body .breadcrumb {
  background: var(--bg-gray);
  padding: 10px 15px;
  font-size: 12px;
}
body .breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 10px;
}
body .breadcrumb ol li:nth-last-child(1) {
  width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body .breadcrumb ol li::after {
  content: ">";
  margin-left: 10px;
  color: #999;
}
body .breadcrumb ol li:last-child::after {
  content: "";
}
body .breadcrumb ol li a {
  text-decoration: none;
  color: var(--main-pink);
}
body .page-wrapper {
  display: flex;
  max-width: 1400px;
  margin: 20px auto;
  padding: 0 15px;
  /* --- ここを追加 --- */
  flex: 1; /* 余ったスペースを全部この要素が使う（フッターを下に押し出す） */
  width: 100%; /* 横幅を維持 */
  /* ------------------ */
}
@media (max-width: 720px) {
  body .page-wrapper {
    padding: 0 5px;
  }
}
body .page-wrapper {
  gap: 20px;
}
body .page-wrapper a {
  color: var(--dark-pink);
  text-decoration: none;
}
body .page-wrapper .left-aside {
  width: 300px;
  flex-shrink: 0;
  display: none;
}
body .page-wrapper .left-aside .ad-box {
  background: #eee;
  height: 600px;
  position: sticky;
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .page-wrapper .main-content {
  flex-grow: 1;
  max-width: 720px;
  min-width: 0;
}
body .page-wrapper .main-content .video-title {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  line-height: 1.4;
}
body .page-wrapper .main-content .main-package-img {
  width: 100%;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
body .page-wrapper .main-content .flex-info-row {
  display: flex;
}
@media (max-width: 720px) {
  body .page-wrapper .main-content .flex-info-row {
    display: block;
  }
}
body .page-wrapper .main-content .flex-info-row {
  gap: 20px;
  margin-bottom: 20px;
}
body .page-wrapper .main-content .flex-info-row p {
  background: var(--main-pink);
  color: white;
  padding: 8px 15px;
  font-weight: bold;
  margin-bottom: 0;
}
body .page-wrapper .main-content .flex-info-row > div {
  flex: 1;
}
body .page-wrapper .main-content .flex-info-row .info-box {
  border: 1px solid var(--border);
  padding: 15px;
  margin-bottom: 20px;
  background: #fff;
}
body .page-wrapper .main-content .flex-info-row .info-box table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}
body .page-wrapper .main-content .flex-info-row .info-box table td {
  padding: 5px 0;
  vertical-align: top;
}
body .page-wrapper .main-content .flex-info-row .info-box table td:first-child {
  width: 100px;
  color: #666;
}
body .page-wrapper .main-content .action-btn {
  display: block;
  text-align: center;
  background: var(--dark-pink);
  color: white;
  border: none;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
  border-radius: 35px;
}
body .page-wrapper .main-content .action-btn:hover {
  opacity: 0.9;
}
body .page-wrapper .main-content .pink-label {
  background: var(--main-pink);
  color: white;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 0;
}
body .page-wrapper .main-content .video-responsive-box {
  position: relative;
  width: 100%; /* 横幅いっぱい */
  overflow: hidden; /* ★はみ出しをカットしてスクロールを防ぐ */
  margin-top: 10px;
  margin-bottom: 10px;
  /* 縦横比を固定する「器」 */
}
body .page-wrapper .main-content .video-responsive-box .video-aspect-ratio {
  position: relative;
  width: 100%;
  padding-top: min(77%, 480px);
}
body .page-wrapper .main-content .video-responsive-box .video-aspect-ratio iframe {
  position: absolute;
  /* 上下中央に配置して、少しだけ（1.05倍）ズームして黒帯を隠す */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  width: 100% !important;
  height: 100% !important;
  border: none;
}
body .page-wrapper .main-content .image-section {
  margin-top: 10px;
}
body .page-wrapper .main-content .image-section .horizontal-item {
  width: 100%;
  margin-bottom: 10px;
  background: #eee;
}
body .page-wrapper .main-content .image-section .horizontal-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .main-content .image-section .horizontal-item:last-child {
  margin-bottom: 30px;
}
body .page-wrapper .main-content .is-top-new {
  display: none;
}
@media (max-width: 720px) {
  body .page-wrapper .main-content .is-top-new {
    display: block;
  }
}
body .page-wrapper .main-content .video-list-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .page-wrapper .main-content .video-list-section ul li {
  cursor: pointer;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
body .page-wrapper .main-content .video-list-section ul li a {
  display: flex;
  gap: 12px;
  padding: 10px 0 15px 0;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
body .page-wrapper .main-content .video-list-section ul li:hover {
  opacity: 0.8;
}
body .page-wrapper .main-content .video-list-section ul li:last-child {
  border-bottom: none;
}
body .page-wrapper .main-content .video-list-section ul li .video-thumb {
  width: 140px;
  height: 95px;
  background: #eee;
  flex-shrink: 0;
}
body .page-wrapper .main-content .video-list-section ul li .video-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .main-content .video-list-section ul li .video-info {
  flex-grow: 1;
  min-width: 0;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .tag-container {
  display: flex;
  gap: 4px;
  margin-bottom: 5px;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .tag-badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: bold;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .body-tag {
  background: #fff0f6; /* 非常に薄いピンク */
  color: #f062b1;
  border: 1px solid #ddd;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .play-tag {
  background: #fff; /* 薄いピンク背景 */
  color: var(--main-pink);
  border: 1px solid #ddd;
}
body .page-wrapper .main-content .video-list-section ul li .video-info {
  /* タイトルとの間隔調整 */
}
body .page-wrapper .main-content .video-list-section ul li .video-info .video-title {
  margin-top: 7px !important;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .video-title {
  font-size: 14px;
  font-weight: bold;
  color: var(--dark-pink);
  line-height: 1.4;
  margin: 0 0 5px 0;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .video-meta {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
}
body .page-wrapper .main-content .video-list-section ul li .video-info .video-meta .update-date {
  float: right;
  margin-top: 5px;
}
body .page-wrapper .main-content .filter-section {
  width: 100%; /* 横幅を親いっぱいに指定 */
  box-sizing: border-box; /* paddingとborderを幅に含める */
  border: 2px solid var(--main-pink);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
}
body .page-wrapper .main-content .filter-section span {
  background: var(--main-pink);
  color: white;
  padding: 2px 10px;
  font-size: 12px;
  position: absolute;
  top: -12px;
  left: 10px;
}
body .page-wrapper .main-content .filter-section p {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
}
body .page-wrapper .main-content .filter-section .chips-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
body .page-wrapper .main-content .filter-section .chips-group .active {
  background: var(--main-pink);
  color: white;
}
body .page-wrapper .main-content .filter-section .chips-group div {
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  background: #f5f5f5;
}
body .page-wrapper .main-content .filter-section .chips-group div:hover {
  background: var(--light-pink);
  border-color: var(--main-pink);
}
body .page-wrapper .main-content .filter-section button {
  background: var(--dark-pink);
  color: white;
  border: none;
  border-radius: 25px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  cursor: pointer;
  transition: transform 0.1s ease;
}
body .page-wrapper .main-content .filter-section button:hover {
  opacity: 0.9;
}
body .page-wrapper .main-content .filter-section button:active {
  transform: scale(0.98);
}
body .page-wrapper .main-content .extra-filter-container {
  margin-bottom: 20px;
}
@media (min-width: 720px) {
  body .page-wrapper .main-content .extra-filter-container {
    display: none;
  }
}
body .page-wrapper .main-content .extra-filter-container .extra-toggle {
  background: var(--light-pink);
  border: 1px solid var(--main-pink);
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
}
body .page-wrapper .main-content .extra-filter-container ul {
  display: none;
  background: #fff;
  border: 1px solid var(--main-pink);
  border-top: none;
  padding: 10px;
  font-size: 14px;
  list-style: none;
}
body .page-wrapper .main-content .extra-filter-container ul li {
  cursor: pointer;
  padding: 5px 0;
}
body .page-wrapper .main-content .extra-filter-container ul li:hover {
  color: var(--main-pink);
}
body .page-wrapper .main-content {
  /* お問い合わせフォーム用 */
}
body .page-wrapper .main-content .contact-form {
  margin-top: 15px;
}
body .page-wrapper .main-content .contact-form .form-group {
  margin-bottom: 15px;
}
body .page-wrapper .main-content .contact-form .form-group label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 5px;
}
body .page-wrapper .main-content .contact-form .form-group input,
body .page-wrapper .main-content .contact-form .form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
body .page-wrapper .main-content .contact-form .form-group input:focus,
body .page-wrapper .main-content .contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--main-pink);
}
body .page-wrapper .main-content .contact-form {
  /* モーダル全体の背景（透過グレー） */
}
body .page-wrapper .main-content .contact-form .modal-overlay {
  display: none; /* 最初は隠す */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
body .page-wrapper .main-content .contact-form {
  /* ポップアップの白枠 */
}
body .page-wrapper .main-content .contact-form .modal-content {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 350px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
body .page-wrapper .main-content .contact-form .modal-content h3 {
  margin-bottom: 10px;
  color: var(--dark-pink);
}
body .page-wrapper .main-content .contact-form .modal-content p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #666;
}
body .page-wrapper .main-content .contact-form .modal-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body .page-wrapper .main-content .contact-form {
  /* ボタンの横並び */
}
body .page-wrapper .main-content .contact-form .modal-btns {
  display: flex;
  gap: 10px;
}
body .page-wrapper .main-content .contact-form .modal-btns button {
  flex: 1;
  padding: 10px;
  border-radius: 5px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
body .page-wrapper .main-content .contact-form .modal-cancel {
  background: #eee;
  color: #333;
}
body .page-wrapper .main-content .contact-form .modal-ok {
  background: var(--dark-pink);
  color: white;
}
body .page-wrapper .main-content .sitemap-container {
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}
body .page-wrapper .main-content .sitemap-container section {
  margin-bottom: 30px;
}
body .page-wrapper .main-content .sitemap-container section h2 {
  font-size: 18px;
  color: var(--dark-pink);
  border-bottom: 2px solid var(--main-pink);
  padding-bottom: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
body .page-wrapper .main-content .sitemap-container section h2::before {
  content: "▶";
  font-size: 12px;
  margin-right: 8px;
}
body .page-wrapper .main-content .sitemap-container section ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  list-style: none;
  padding: 0;
}
body .page-wrapper .main-content .sitemap-container section ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  display: block;
  padding: 5px 10px;
  border-radius: 4px;
  background: #f9f9f9;
  transition: all 0.2s;
}
body .page-wrapper .main-content .sitemap-container section ul li a:hover {
  background: var(--light-pink);
  color: var(--dark-pink);
  padding-left: 15px;
}
@media (max-width: 480px) {
  body .page-wrapper .main-content .sitemap-container section ul {
    grid-template-columns: 1fr 1fr; /* スマホでは2列 */
    gap: 10px;
  }
}
body .page-wrapper .main-content {
  /* カテゴリ一覧 */
}
body .page-wrapper .main-content .category-intro {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #666;
}
body .page-wrapper .main-content .category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
}
@media (max-width: 480px) {
  body .page-wrapper .main-content .category-grid {
    grid-template-columns: 1fr;
  }
}
body .page-wrapper .main-content .category-grid li {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}
body .page-wrapper .main-content .category-grid li:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
body .page-wrapper .main-content .category-grid li a {
  text-decoration: none;
  color: inherit;
}
body .page-wrapper .main-content .category-grid li .cat-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #eee;
}
body .page-wrapper .main-content .category-grid li .cat-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .main-content .category-grid li .cat-thumb span {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(240, 98, 177, 0.9);
  color: white;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 14px;
}
body .page-wrapper .main-content .category-grid li .cat-info {
  padding: 12px;
}
body .page-wrapper .main-content .category-grid li .cat-info p {
  font-size: 12px;
  color: #777;
  margin: 0;
}
body .page-wrapper .main-content .error-container {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
}
body .page-wrapper .main-content .error-container .error-code {
  font-size: 80px;
  font-weight: bold;
  color: var(--main-pink);
  line-height: 1;
  margin-bottom: 10px;
}
body .page-wrapper .main-content .error-container .error-message {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
body .page-wrapper .main-content .error-container .error-description {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}
body .page-wrapper .main-content .error-container .error-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
  margin: 0 auto;
}
body .page-wrapper .main-content .error-container .back-btn {
  display: block;
  padding: 12px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: opacity 0.2s;
}
body .page-wrapper .main-content .error-container .primary-btn {
  background: var(--main-pink);
  color: white;
}
body .page-wrapper .main-content .error-container .secondary-btn {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}
body .page-wrapper .main-content .error-container .back-btn:hover {
  opacity: 0.8;
}
body .page-wrapper .main-content .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  flex-wrap: wrap; /* スマホで入り切らない時に折り返す */
}
body .page-wrapper .main-content .page-item {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: bold;
  background: #fff;
  transition: all 0.2s;
}
body .page-wrapper .main-content {
  /* ホバー時 */
}
body .page-wrapper .main-content .page-item:hover:not(.disabled) {
  border-color: var(--main-pink);
  color: var(--main-pink);
  background: var(--light-pink);
}
body .page-wrapper .main-content {
  /* 現在のページ */
}
body .page-wrapper .main-content .page-item.active {
  background: var(--main-pink);
  color: white;
  border-color: var(--main-pink);
}
body .page-wrapper .main-content {
  /* 前へ・次へボタン */
}
body .page-wrapper .main-content .page-item.prev,
body .page-wrapper .main-content .page-item.next {
  padding: 0 15px;
}
body .page-wrapper .main-content {
  /* 無効な状態（1ページ目の「前へ」など） */
}
body .page-wrapper .main-content .page-item.disabled {
  color: #ccc;
  cursor: not-allowed;
  background: #f9f9f9;
}
body .page-wrapper .main-content .page-dots {
  color: #999;
}
@media (max-width: 480px) {
  body .page-wrapper .main-content .page-item {
    min-width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
body .page-wrapper .main-content .actress-profile-card {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 2px solid var(--light-pink);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 25px;
  align-items: center;
}
body .page-wrapper .main-content .actress-profile-card .actress-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #eee;
  overflow: hidden;
  border: 3px solid #fff;
  flex-shrink: 0;
}
body .page-wrapper .main-content .actress-profile-card .actress-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .main-content .actress-profile-card .actress-status {
  flex-grow: 1;
}
body .page-wrapper .main-content .actress-profile-card .actress-status .actress-name {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-pink);
  margin-bottom: 8px;
}
body .page-wrapper .main-content .actress-profile-card .actress-status table {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}
body .page-wrapper .main-content .actress-profile-card .actress-status table td {
  padding: 2px 0;
}
body .page-wrapper .main-content .actress-profile-card .actress-status table .stat-label {
  color: #888;
  width: 70px;
}
body .page-wrapper .main-content .actress-profile-card .actress-status table .stat-value {
  font-weight: bold;
  color: #333;
}
body .page-wrapper .main-content .kana-index {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: #fdf2f4;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 30px;
}
body .page-wrapper .main-content .kana-index a {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #ff69b4;
  color: #d81b60;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  font-weight: bold;
}
body .page-wrapper .main-content .kana-index a:hover {
  background: #ff69b4;
  color: #fff;
}
body .page-wrapper .main-content .actress-section ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-top: 10px;
  margin-bottom: 40px;
}
body .page-wrapper .main-content .actress-section ul li a {
  text-decoration: none;
  color: inherit;
  display: block;
}
body .page-wrapper .main-content .actress-section ul li .actress-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
body .page-wrapper .main-content .actress-section ul li .actress-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
body .page-wrapper .main-content .actress-section ul li .actress-card .card-thumb {
  width: 100%;
  aspect-ratio: 1/1;
  background: #eee;
}
body .page-wrapper .main-content .actress-section ul li .actress-card .card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .main-content .actress-section ul li .actress-card .card-info {
  padding: 10px;
}
body .page-wrapper .main-content .actress-section ul li .actress-card .card-info strong {
  font-weight: bold;
  font-size: 14px;
  color: var(--dark-pink);
  display: block;
  margin-bottom: 5px;
}
body .page-wrapper .main-content .actress-section ul li .actress-card .card-info span {
  font-size: 11px;
  color: #888;
}
body .page-wrapper .legal-page h2 {
  font-size: 18px;
  border-left: 4px solid var(--main-pink);
  padding-left: 10px;
  margin: 25px 0 10px;
}
body .page-wrapper .legal-page p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}
body .page-wrapper .right-aside {
  width: 250px;
  flex-shrink: 0;
  display: none;
}
body .page-wrapper .right-aside p {
  font-size: 12px;
  font-weight: bold;
}
body .page-wrapper .right-aside .side-card {
  border: 1px solid #ddd;
  padding: 8px;
  margin-bottom: 15px;
}
body .page-wrapper .right-aside .side-card .side-card-thumb {
  background: #eee;
  display: block;
}
body .page-wrapper .right-aside .side-card .side-card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .right-aside .side-card div {
  font-size: 10px;
  color: #888;
}
body .page-wrapper .right-aside .side-card .side-card-title {
  font-size: 12px;
  font-weight: bold;
  color: var(--dark-pink);
  margin-top: 5px;
}
body .page-wrapper .right-aside .related {
  margin-top: 30px;
}
body .page-wrapper .right-aside .related-heading {
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
body .page-wrapper .right-aside .related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body .page-wrapper .right-aside .related-item {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
body .page-wrapper .right-aside .related-item a {
  display: flex;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
body .page-wrapper .right-aside .related-item a:hover {
  opacity: 0.8;
}
body .page-wrapper .right-aside .related-thumb {
  width: 80px;
  height: 50px;
  background: #eee;
  flex-shrink: 0;
}
body .page-wrapper .right-aside .related-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .page-wrapper .right-aside .related-title {
  color: var(--dark-pink);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body .page-wrapper .right-aside .sub-category-list {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
body .page-wrapper .right-aside .sub-category-list li {
  margin-bottom: 5px;
  cursor: pointer;
}
body .page-wrapper .right-aside .sub-category-list li:hover {
  color: var(--main-pink);
}
@media (min-width: 1024px) {
  body .page-wrapper .left-aside {
    display: block;
  }
}
@media (min-width: 720px) {
  body .page-wrapper .right-aside {
    display: block;
  }
}
body footer {
  background: var(--main-pink);
  color: white;
  padding: 30px 15px; /* 上下を少し広めに */
  font-size: 11px;
  margin-top: 40px;
  flex-shrink: 0;
  text-align: center;
}
body footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
body footer .footer-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* スマホで入り切らない時に折り返す */
  gap: 15px 20px;
}
body footer .footer-nav li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  transition: opacity 0.2s;
}
body footer .footer-nav li a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
body footer .footer-copy {
  opacity: 0.8;
  font-size: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}/*# sourceMappingURL=style.css.map */