/* 口コミフォームのスタイル */
.review-form-container {
max-width: 800px;
margin: 40px auto;
padding: 30px;
background: #fff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.review-form-container h3 {
margin-top: 0;
margin-bottom: 30px;
font-size: 24px;
color: #333;
border-bottom: 3px solid #26a73c;
padding-bottom: 10px;
}

.review-form .form-group {
margin-bottom: 25px;
}

.review-form label {
font-weight: bold;
color: #555;
}

.review-form .required {
color: #e74c3c;
}

.review-form input[type="text"],
.review-form input[type="email"],
.review-form select,
.review-form textarea {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 14px;
font-family: inherit;
transition: border-color 0.3s;
box-sizing: border-box;
}

.card-details-table td, .card-details-table th {
	font-family: "Noto Sans JP", sans-serif;
}
.card-recommendations {
	font-family: "Noto Sans JP", sans-serif;
}
.card-features-grid {
	font-family: "Noto Sans JP", sans-serif;
}
.review-summary-main {
	font-family: "Noto Sans JP", sans-serif;
}

.review-form input[type="text"]:focus,
.review-form input[type="email"]:focus,
.review-form select:focus,
.review-form textarea:focus {
outline: none;
border-color: #4CAF50;
box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.1);
}

.review-form small {
display: block;
margin-top: 5px;
color: #888;
font-size: 12px;
}

/* ラジオボタンスタイル（評価） */
.rating-radio-group {
display: flex;
gap: 10px;
flex-wrap: wrap;
}

.rating-option {
	cursor: pointer;
	padding: 10px 10px 0;
	display: block;
	text-align: center;
}

.rating-option input[type="radio"] {
cursor: pointer;
}

/* ラジオボタンスタイル（性別） */
.gender-radio-group {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.gender-option {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	padding: 10px 0;
	border-radius: 4px;
	transition: all 0.3s;
}

.gender-option input[type="radio"] {
margin-right: 5px;
cursor: pointer;
}

/* アバター選択スタイル */
.avatar-radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
	margin-top: 15px;
}

.avatar-option {
    position: relative;
    display: block;
    width: 76px;
    height: 76px;
}

/* ラジオボタンを透明に */
.avatar-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
}

.avatar-option br {
	display: none;
}

/* アバタープレビュー（label要素） */
.avatar-preview {
    width: 70px;
    height: 70px;
    border: 3px solid #ddd;
    border-radius: 50%;
    display: flex;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #fff;
    transition: all 0.2s ease;
}

.avatar-preview .avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ホバー状態 */
.avatar-preview:hover {
    border-color: #77FF6B;
    transform: scale(1.1);
}

/* 選択状態 - ラジオボタンがchecked（複数の方法で指定） */
input[name="avatar"]:checked + label.avatar-preview {
    border-color: #26a73c !important;
    box-shadow: 0 0 10px rgba(12, 209, 34, 0.3) !important
    transform: scale(1.05) !important;
    background: #fff5f5 !important;
}

.avatar-option.avatar-selected .avatar-preview {
    border-color: #26a73c !important;
    box-shadow: 0 0 10px rgba(12, 209, 34, 0.3) !important
    transform: scale(1.05) !important;
    background: #fff5f5 !important;
}

/* 選択済みの場合はホバーしても選択状態を維持 */
input[name="avatar"]:checked + label.avatar-preview:hover {
    border-color: #26a73c !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 10px rgba(12, 209, 34, 0.3) !important
}

.avatar-option.avatar-selected .avatar-preview:hover {
    border-color: #26a73c !important;
    transform: scale(1.05) !important;
    box-shadow: 0 0 10px rgba(12, 209, 34, 0.3) !important
}

.avatar-icon {
    font-size: 36px;
    line-height: 1;
}

/* ラジオボタンスタイル（満足度） */
.satisfaction-radio-group {
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.satisfaction-option {
display: inline-flex;
align-items: center;
cursor: pointer;
padding: 10px 0;
border-radius: 4px;
transition: all 0.3s;
}

.satisfaction-option:hover {
border-color: #4CAF50;
background: #f9f9f9;
}

.satisfaction-option input[type="radio"] {
margin-right: 8px;
cursor: pointer;
}

.satisfaction-option input[type="radio"]:checked + span {
font-weight: bold;
}

.review-form .submit-button {
background-color: #26a73c;
color: white;
padding: 15px 40px;
border: none;
border-radius: 4px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: background-color 0.3s;
border: 2px solid #26a73c;
}

.review-form .submit-button:hover {
background-color: #fff;
color: #26a73c;
}

.review-form .submit-button:disabled {
background-color: #cccccc;
cursor: not-allowed;
}

/* メッセージスタイル */
#review-message {
margin-bottom: 25px;
}

.review-success-message {
padding: 15px 20px;
background-color: #d4edda;
border: 1px solid #c3e6cb;
color: #155724;
border-radius: 4px;
font-size: 14px;
line-height: 1.6;
}

.review-error-message {
padding: 15px 20px;
background-color: #f8d7da;
border: 1px solid #f5c6cb;
color: #721c24;
border-radius: 4px;
font-size: 14px;
}

/* 承認済み口コミ一覧のスタイル - 横スクロールカード型 */
.reviews-list {
max-width: 100%;
margin: 40px auto;
padding: 0 20px;
position: relative;
}

/* 口コミカードのコンテナ */
.reviews-container {
display: flex;
gap: 25px;
overflow-x: auto;
overflow-y: hidden;
scroll-behavior: smooth;
padding: 20px 10px 30px;
-webkit-overflow-scrolling: touch;
scrollbar-width: thin;
scrollbar-color: #26a73c #f0f0f0;
}

/* スクロールバーのカスタマイズ（Webkit） */
.reviews-container::-webkit-scrollbar {
height: 8px;
}

.reviews-container::-webkit-scrollbar-track {
background: #f0f0f0;
border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb {
background: linear-gradient(90deg, #26a73c 0%, #77FF6B 100%);
border-radius: 10px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
background: linear-gradient(90deg, #B00A1A 0%, #FF5555 100%);
}

/* 総合評価サマリー */
.review-summary {
max-width: 1000px;
background: #fff;
padding: 30px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
margin: 40px auto;
}

.review-summary-main {
display: flex;
gap: 40px;
align-items: center;
flex-wrap: wrap;
}

.average-rating-box {
text-align: center;
min-width: 200px;
}

.average-rating-number {
font-size: 64px;
font-weight: bold;
color: #333;
line-height: 1;
margin-bottom: 10px;
}

.average-rating-stars {
margin-bottom: 10px;
}

.stars-large {
font-size: 28px;
color: #ffc107;
letter-spacing: 3px;
}

.total-reviews-count {
	font-size: 16px;
	color: #2d2d2d;
	margin-top: 10px;
	font-weight: bold;
}

/* 満足度グラフスタイル（画像ベース） */
.rating-breakdown {
flex: 1;
min-width: 400px;
}

.satisfaction-bars {
display: flex;
flex-direction: column;
gap: 12px;
}

.satisfaction-bar-row {
display: flex;
align-items: center;
gap: 10px;
}

.satisfaction-label {
font-size: 14px;
color: #333;
font-weight: bold;
min-width: 130px;
}

.satisfaction-bar-container {
flex: 1;
height: 32px;
background-color: #e0e0e0;
border-radius: 4px;
overflow: visible;
position: relative;
}

.satisfaction-bar {
height: 100%;
background: linear-gradient(90deg, #2196F3 0%, #1976D2 100%);
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 10px;
border-radius: 4px;
transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
width: 0; /* 初期状態は0% */
}

/* アニメーション開始後 */
.satisfaction-bar.animated {
/* widthはJavaScriptで設定される */
}

.satisfaction-percentage {
color: white;
font-size: 14px;
font-weight: bold;
position: absolute;
right: 10px;
white-space: nowrap;
}

/* バーが短い場合は外側に表示 */
.satisfaction-bar[style*="width: 0%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 1%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 2%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 3%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 4%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 5%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 6%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 7%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 8%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 9%"] .satisfaction-percentage,
.satisfaction-bar[style*="width: 10%"] .satisfaction-percentage {
color: #333;
right: auto;
left: calc(100% + 10px);
}

.review-item {
background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
padding: 30px;
min-width: 380px;
max-width: 380px;
min-height: 400px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
border: 1px solid #e0e0e0;
flex-shrink: 0;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
display: flex;
flex-direction: column;
}

/* カードのホバーエフェクト */
.review-item:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(12, 209, 70, 0.15);
border-color: #26a73c;
}

/* カードの装飾的な背景要素 */
.review-item::before {
content: '';
position: absolute;
top: -50%;
right: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle, rgba(209, 12, 34, 0.03) 0%, transparent 70%);
pointer-events: none;
z-index: 0;
}

/* カードの全要素を前面に */
.review-item > * {
position: relative;
z-index: 1;
}

/* 評価バッジ */
.review-rating-badge {
position: absolute;
top: 20px;
right: 20px;
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
color: #fff;
padding: 8px 16px;
border-radius: 20px;
font-weight: bold;
font-size: 14px;
box-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
display: flex;
align-items: center;
gap: 5px;
}

.review-header {
display: flex;
flex-direction: column;
gap: 15px;
margin-bottom: 20px;
position: relative;
}

.review-user-info {
display: flex;
align-items: center;
gap: 15px;
}

.review-avatar {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
border: 3px solid #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
flex-shrink: 0;
overflow: hidden;
position: relative;
}

/* アバターのグロー効果 */
.review-avatar::after {
content: '';
position: absolute;
inset: -3px;
border-radius: 50%;
padding: 3px;
background: linear-gradient(135deg, transparent 0%, transparent 100%);
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
-webkit-mask-composite: xor;
mask-composite: exclude;
opacity: 0;
transition: opacity 0.3s;
}

.review-item:hover .review-avatar::after {
opacity: 1;
}

.review-avatar .avatar-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.review-avatar.avatar-1 {
border-color: #2196F3;
box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.review-avatar.avatar-1::after {
background: linear-gradient(135deg, #2196F3 0%, #64B5F6 100%);
}

.review-avatar.avatar-2 {
border-color: #FF9800;
box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.review-avatar.avatar-2::after {
background: linear-gradient(135deg, #FF9800 0%, #FFB74D 100%);
}

.review-avatar.avatar-3 {
border-color: #8BC34A;
box-shadow: 0 4px 12px rgba(139, 195, 74, 0.3);
}

.review-avatar.avatar-3::after {
background: linear-gradient(135deg, #8BC34A 0%, #AED581 100%);
}

.review-avatar.avatar-4 {
border-color: #E91E63;
box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.review-avatar.avatar-4::after {
background: linear-gradient(135deg, #E91E63 0%, #F06292 100%);
}

.review-avatar.avatar-5 {
border-color: #9C27B0;
box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.review-avatar.avatar-5::after {
background: linear-gradient(135deg, #9C27B0 0%, #BA68C8 100%);
}

.review-user-details {
display: flex;
flex-direction: column;
gap: 5px;
flex: 1;
}

.reviewer-name {
font-weight: 700;
color: #1a1a1a;
font-size: 17px;
letter-spacing: 0.3px;
}

.review-date {
color: #999;
font-size: 13px;
display: flex;
align-items: center;
gap: 5px;
}

.review-date::before {
content: '📅';
font-size: 12px;
}

.review-rating .stars {
color: #FFD700;
font-size: 22px;
letter-spacing: 3px;
text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
filter: drop-shadow(0 1px 2px rgba(255, 215, 0, 0.5));
}

.review-meta {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
font-size: 13px;
color: #666;
margin-top: 5px;
}

.review-title {
margin: 0 0 15px 0 !important;
font-size: 19px;
color: #1a1a1a;
font-weight: 700;
line-height: 1.4;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}

.review-content {
color: #555;
line-height: 1.8;
font-size: 14px;
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
position: relative;
flex: 1;
margin-bottom: 15px;
}

/* 続きを読むグラデーション */
.review-content::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 30px;
background: linear-gradient(to bottom, transparent, #fafafa);
pointer-events: none;
}

.read-more-btn {
	display: block;
	width: fit-content;
	padding: 5px 20px;
	background: linear-gradient(135deg, #26a73c 0%, #77FF6B 100%);
	color: white;
	border: none;
	border-radius: 25px;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(46, 209, 12, 0.25);
	text-align: center;
	margin: 0 auto;
}

.read-more-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(55, 209, 12, 0.4);
	background: linear-gradient(135deg, #27B00A 0%, #72FF55 100%);
}

.read-more-btn:active {
transform: translateY(-1px);
}

/* モーダルウィンドウ */
.review-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 10000;
opacity: 0;
transition: opacity 0.3s ease;
}

.review-modal.active {
display: flex;
align-items: center;
justify-content: center;
opacity: 1;
}

.review-modal-content {
background: white;
border-radius: 20px;
max-width: 700px;
max-height: 85vh;
width: 90%;
overflow-y: auto;
position: relative;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}

.review-modal-header {
padding: 30px;
border-bottom: 2px solid #f0f0f0;
position: sticky;
top: 0;
background: white;
z-index: 10;
border-radius: 20px 20px 0 0;
}

.modal-close-btn {
position: absolute;
top: 20px;
right: 20px;
width: 40px;
height: 40px;
border: none;
background: #f0f0f0;
border-radius: 50%;
cursor: pointer;
font-size: 24px;
line-height: 1;
color: #666;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.modal-close-btn:hover {
background: #26a73c;
color: white;
transform: rotate(90deg);
}

.review-modal-user-info {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}

.review-modal-avatar {
width: 70px;
height: 70px;
border-radius: 50%;
overflow: hidden;
border: 3px solid #fff;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
flex-shrink: 0;
}

.review-modal-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.review-modal-avatar.avatar-1 {
border-color: #2196F3;
box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

.review-modal-avatar.avatar-2 {
border-color: #FF9800;
box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
}

.review-modal-avatar.avatar-3 {
border-color: #8BC34A;
box-shadow: 0 4px 12px rgba(139, 195, 74, 0.4);
}

.review-modal-avatar.avatar-4 {
border-color: #E91E63;
box-shadow: 0 4px 12px rgba(233, 30, 99, 0.4);
}

.review-modal-avatar.avatar-5 {
border-color: #9C27B0;
box-shadow: 0 4px 12px rgba(156, 39, 176, 0.4);
}

.review-modal-user-details h3 {
margin: 0 0 5px 0;
font-size: 20px;
color: #1a1a1a;
}

.review-modal-date {
color: #999;
font-size: 14px;
}

.review-modal-rating {
margin-top: 15px;
}

.review-modal-rating .stars {
font-size: 28px;
color: #FFD700;
text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
letter-spacing: 3px;
}

.review-modal-body {
padding: 30px;
}

.review-modal-title {
font-size: 24px;
font-weight: 700;
color: #1a1a1a;
margin: 0 0 20px 0;
line-height: 1.4;
}

.review-modal-text {
font-size: 16px;
line-height: 1.9;
color: #333;
white-space: pre-wrap;
}

/* モーダルのスクロールバー */
.review-modal-content::-webkit-scrollbar {
width: 8px;
}

.review-modal-content::-webkit-scrollbar-track {
background: #f0f0f0;
}

.review-modal-content::-webkit-scrollbar-thumb {
background: linear-gradient(180deg, #26a73c 0%, #77FF6B 100%);
border-radius: 10px;
}

.review-modal-content::-webkit-scrollbar-thumb:hover {
background: linear-gradient(180deg, #B00A1A 0%, #FF5555 100%);
}

/* モーダルナビゲーションボタン */
.modal-nav-btn {
position: fixed;
top: 85%;
transform: translateY(-50%);
width: 50px;
height: 50px;
background: rgba(255, 255, 255, 0.95);
border: 2px solid #26a73c;
border-radius: 50%;
cursor: pointer;
z-index: 10001;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
color: #26a73c;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal-nav-btn:hover {
background: #26a73c;
color: white;
transform: translateY(-50%) scale(1.1);
box-shadow: 0 6px 20px rgba(209, 12, 34, 0.4);
}

.modal-nav-btn:active {
transform: translateY(-50%) scale(0.95);
}

.modal-nav-btn.disabled {
opacity: 0.3;
cursor: not-allowed;
pointer-events: none;
}

.modal-nav-prev {
left: 45%;
}

.modal-nav-next {
right: 45%;
}

.modal-nav-btn::before {
line-height: 1;
}

.modal-nav-prev::before {
content: '‹';
margin-right: 2px;
}

.modal-nav-next::before {
content: '›';
margin-left: 2px;
}

/* モバイル対応のナビゲーションボタン */
@media (max-width: 768px) {
.modal-nav-btn {
width: 45px;
height: 45px;
font-size: 20px;
}

.modal-nav-prev {
left: 35%;
}

.modal-nav-next {
right: 35%;
}
}

@media (max-width: 480px) {
.modal-nav-btn {
width: 40px;
height: 40px;
font-size: 18px;
top: auto;
bottom: 80px;
transform: none;
}

.modal-nav-btn:hover {
transform: scale(1.1);
}

.modal-nav-btn:active {
transform: scale(0.95);
}

.modal-nav-prev {
left: 10px;
}

.modal-nav-next {
right: 10px;
}
}

/* 口コミがない場合 */
.no-reviews {
text-align: center;
padding: 80px 20px;
color: #999;
font-size: 16px;
background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
border-radius: 16px;
border: 2px dashed #ddd;
}

.no-reviews::before {
content: '💬';
display: block;
font-size: 48px;
margin-bottom: 15px;
opacity: 0.5;
}

.review-form-container h3::before {
content: none !important;
}

/* 星評価の表示 */
.star-rating-display {
position: relative;
display: inline-block;
font-size: 28px;
line-height: 1;
letter-spacing: 3px;
}

.star-rating-background {
position: relative;
color: #e0e0e0;
}

.star-rating-foreground {
position: absolute;
top: 0;
left: 0;
overflow: hidden;
color: #ffc107;
}

.star-rating-foreground span,
.star-rating-background span {
display: inline-block;
letter-spacing: 3px;
}

.review-title_ddiivv {
font-size: 1.5em;
font-weight: bold;
border-bottom: 2px solid #26a73c;
width: fit-content;
margin-bottom: 20px;
}

.review-button-container2 {
	margin-top: 1em;
}
.review-button-container2 .button23 {
	background-color: #26a73c;
	color: #fff;
	font-weight: bold;
	padding: 10px 15px;
	border-radius: 5px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.review-form-container,
.reviews-list,
.review-summary {
padding: 20px;
margin: 20px 10px;
}

.review-summary-main {
flex-direction: column;
gap: 30px;
}

.average-rating-box {
width: 100%;
}

.average-rating-number {
font-size: 48px;
}

.stars-large {
font-size: 24px;
}

.rating-breakdown {
width: 100%;
min-width: auto;
}

.satisfaction-label {
min-width: 100px;
font-size: 12px;
}

.satisfaction-percentage {
font-size: 12px;
}

.review-header {
flex-direction: column;
gap: 10px;
}

.review-meta {
flex-direction: column;
align-items: flex-start;
gap: 5px;
}

.review-title, .review-rating, .review-meta {
width: 100%;
}

.rating-radio-group {
gap: 8px;
}

.rating-option {
font-size: 13px;
}

.satisfaction-option {
padding: 8px 15px;
font-size: 13px;
}
}

@media (max-width: 480px) {
.satisfaction-label {
min-width: 80px;
font-size: 11px;
}

.satisfaction-bar-container {
height: 28px;
}

.satisfaction-percentage {
font-size: 11px;
right: 5px;
}
}
/* 口コミカードのレスポンシブ対応追加 */
@media (max-width: 768px) {
.reviews-list {
padding: 0 10px;
}

.review-item {
min-width: 320px;
max-width: 320px;
min-height: 380px;
padding: 25px;
}

.review-rating-badge {
padding: 6px 12px;
font-size: 12px;
}

.review-avatar {
width: 50px;
height: 50px;
}

.reviewer-name {
font-size: 16px;
}

.review-title {
font-size: 17px;
}

.review-content {
font-size: 13px;
-webkit-line-clamp: 3;
}
}

@media (max-width: 480px) {
.review-item {
min-width: 280px;
max-width: 280px;
min-height: 360px;
padding: 20px;
}

.reviews-container {
gap: 15px;
}

.review-rating-badge {
top: 15px;
right: 15px;
padding: 5px 10px;
font-size: 11px;
}

.review-avatar {
width: 45px;
height: 45px;
}

.reviewer-name {
font-size: 15px;
}

.review-title {
font-size: 16px;
margin-bottom: 10px !important;
}

.review-content {
font-size: 12px;
}
}

/* モーダルのレスポンシブ対応 */
@media (max-width: 768px) {
.review-modal-content {
width: 95%;
max-height: 90vh;
border-radius: 16px;
}

.review-modal-header {
padding: 20px;
}

.modal-close-btn {
width: 35px;
height: 35px;
font-size: 20px;
top: 15px;
right: 15px;
}

.review-modal-avatar {
width: 60px;
height: 60px;
}

.review-modal-user-details h3 {
font-size: 18px;
}

.review-modal-rating .stars {
font-size: 24px;
}

.review-modal-body {
padding: 20px;
}

.review-modal-title {
font-size: 20px;
}

.review-modal-text {
font-size: 15px;
}
}

@media (max-width: 480px) {
.review-modal-content {
width: 98%;
max-height: 95vh;
border-radius: 12px;
}

.review-modal-header {
padding: 15px;
}

.modal-close-btn {
width: 32px;
height: 32px;
font-size: 18px;
top: 12px;
right: 12px;
}

.review-modal-user-info {
gap: 12px;
}

.review-modal-avatar {
width: 50px;
height: 50px;
}

.review-modal-user-details h3 {
font-size: 16px;
}

.review-modal-date {
font-size: 12px;
}

.review-modal-rating .stars {
font-size: 20px;
}

.review-modal-body {
padding: 15px;
}

.review-modal-title {
font-size: 18px;
margin-bottom: 15px;
}

.review-modal-text {
font-size: 14px;
line-height: 1.7;
}

.read-more-btn {
padding: 6px 16px;
font-size: 12px;
}
}