/*
Theme Name: rehub_tcd099 Child
Template: rehub_tcd099
Description: rehub_tcd099の子テーマ - プラネタリウムサイト用
Version: 1.0.0
Author: Planetarium Site
*/

/* ========================================
   プラネタリウム施設ページ用スタイル
   （サンプルページと同じスタイル）
   ======================================== */

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* ヘッダー部分 */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    text-align: center;
}

.header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: 300;
}

.header .subtitle {
    margin-top: 10px;
    font-size: 1.2em;
    opacity: 0.9;
}

.common-name {
    margin-top: 5px;
    font-size: 1.1em;
    opacity: 0.8;
    font-style: italic;
}

.status-inactive {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.status-active {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

/* コンテンツ部分 */
.content {
    padding: 40px;
}

/* セクション部分 */
.section {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    background: #fafbfc;
}

.section h2 {
    color: #495057;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* 情報グリッド */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-label {
    font-weight: bold;
    color: #6c757d;
    min-width: 120px;
}

.info-value {
    color: #495057;
    text-align: right;
}

/* 機材グリッド */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.equipment-card {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #667eea;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.equipment-title {
    font-weight: bold;
    color: #495057;
    margin-bottom: 10px;
}

/* プログラムリスト */
.program-list {
    display: grid;
    gap: 15px;
}

.program-item {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #28a745;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.program-title {
    font-weight: bold;
    color: #495057;
    margin-bottom: 8px;
}

.program-duration {
    color: #6c757d;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.program-description {
    color: #495057;
    line-height: 1.5;
}

/* 地図プレースホルダー */
.map-placeholder {
    background: #e9ecef;
    height: 200px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    margin-top: 10px;
    text-align: center;
}

/* 連絡先情報 */
.contact-info {
    background: white;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #17a2b8;
}

.contact-item {
    margin-bottom: 10px;
}

.contact-label {
    font-weight: bold;
    color: #495057;
    margin-right: 10px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .content {
        padding: 20px;
    }
    
    .section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .section {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .section h2 {
        color: #e2e8f0;
    }
    
    .info-label {
        color: #a0aec0;
    }
    
    .info-value {
        color: #e2e8f0;
    }
    
    .equipment-card,
    .program-item {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .equipment-title,
    .program-title {
        color: #e2e8f0;
    }
    
    .program-description {
        color: #cbd5e0;
    }
    
    .map-placeholder {
        background: #4a5568;
        color: #a0aec0;
    }
    
    .contact-info {
        background: #2d3748;
        border-color: #4a5568;
    }
    
    .contact-label {
        color: #e2e8f0;
    }
}

/* ========================================
   感想・評価システム用スタイル
   ======================================== */

/* 感想投稿成功メッセージ */
.kansou-success-message {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.success-content {
    text-align: center;
}

.success-content h3 {
    color: #155724;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.success-content p {
    color: #155724;
    margin-bottom: 5px;
    font-size: 1em;
}

/* 感想投稿リンクコンテナ */
.kansou-link-container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kansou-link-container p {
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 1.1em;
}

.kansou-submit-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.kansou-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* 感想投稿ページ用スタイル */
.planetarium-info {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    text-align: center;
}

.planetarium-info h2 {
    margin-bottom: 15px;
    font-size: 1.8em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.target-facility {
    margin-top: 15px;
}

.target-facility h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
    font-weight: 600;
}

.facility-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.facility-link:hover {
    color: white;
    text-decoration: underline;
}

/* エラーメッセージ */
.kansou-error {
    text-align: center;
    padding: 40px 20px;
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    border-radius: 12px;
    color: #721c24;
}

.kansou-error h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
}

.kansou-error p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.kansou-summary-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

/* ========================================
   感想一覧表示用スタイル
   ======================================== */

/* 感想一覧コンテナ */
.kansou-list-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* フィルター情報 */
.filter-info {
    color: #667eea;
    font-weight: 600;
    margin: 10px 0;
    padding: 5px 10px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 5px;
    display: inline-block;
}

/* 感想がない場合 */
.no-kansou {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin: 20px 0;
}

.no-kansou p {
    margin-bottom: 15px;
    color: #6c757d;
    font-size: 1.1em;
}

/* フィルターボタン */
.kansou-filter {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.kansou-filter h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2em;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #6c757d;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.filter-btn:hover {
    background: #e9ecef;
    color: #495057;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* 感想一覧 */
.kansou-list {
    margin-top: 20px;
}

.kansou-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.kansou-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* 感想ヘッダー */
.kansou-header {
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.kansou-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.kansou-meta .author {
    font-weight: 600;
    color: #667eea;
    font-size: 1.1em;
}

.kansou-meta .date {
    color: #6c757d;
    font-size: 0.9em;
}

.visit-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9em;
    color: #6c757d;
}

.visit-info span {
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* 感想コンテンツ */
.kansou-content {
    line-height: 1.7;
}

.overall-comment {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.overall-comment h5 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.1em;
}

.overall-comment p {
    color: #555;
    margin: 0;
}

/* 評価サマリー */
.rating-summary {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.rating-summary .rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 0;
}

.rating-summary .rating-label {
    font-weight: 500;
    color: #333;
    flex: 1;
}

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

.rating-summary .star {
    font-size: 1.2em;
}

.rating-summary .star.filled {
    color: #ffc107;
}

.rating-summary .star.empty {
    color: #e9ecef;
}

.rating-summary .rating-value {
    margin-left: 8px;
    font-size: 0.9em;
    color: #6c757d;
}

/* 特定コメント */
.specific-comment {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.specific-comment h5 {
    margin-bottom: 10px;
    color: #1976d2;
    font-size: 1.1em;
}

.specific-comment p {
    color: #333;
    margin: 0;
}

/* さらに読み込み */
.load-more {
    text-align: center;
    padding: 30px;
    color: #6c757d;
    font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .kansou-list-container {
        padding: 15px;
    }
    
    .rating-section {
        grid-template-columns: 1fr;
    }
    
    .kansou-item {
        padding: 20px;
    }
    
    .kansou-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .visit-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: 0.8em;
        padding: 6px 12px;
    }
    
    .rating-summary .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .kansou-list-container {
        background: #1a1a1a;
        color: #e0e0e0;
    }
    
    .kansou-item {
        background: #2d2d2d;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .kansou-filter {
        background: #2d2d2d;
        border-color: #404040;
    }
    
    .filter-btn {
        background: #404040;
        color: #e0e0e0;
    }
    
    .filter-btn:hover {
        background: #505050;
    }
    
    .filter-btn.active {
        background: #667eea;
        color: white;
    }
    
    .overall-comment,
    .specific-comment {
        background: #404040;
    }
    
    .rating-summary {
        background: #404040;
    }
    
    .visit-info span {
        background: #404040;
        color: #e0e0e0;
    }
}

.summary-overview {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.rating-stars .star {
    font-size: 2.5em;
    line-height: 1;
}

.rating-stars .star.filled {
    color: #ffc107;
    text-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
}

.rating-stars .star.empty {
    color: #dee2e6;
}

.rating-score {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.rating-score .score {
    font-size: 2.5em;
    font-weight: bold;
    color: #495057;
}

.rating-score .max-score {
    font-size: 1.2em;
    color: #6c757d;
}

.review-count {
    font-size: 1.1em;
    color: #6c757d;
}

.review-count .count {
    font-weight: bold;
    color: #495057;
}

.detailed-ratings {
    margin-bottom: 30px;
}

.detailed-ratings h3 {
    color: #495057;
    font-size: 1.5em;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 10px;
}

.rating-grid {
    display: grid;
    gap: 15px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.rating-label {
    min-width: 120px;
    font-weight: 600;
    color: #495057;
}

.rating-bar {
    flex-grow: 1;
    height: 12px;
    background: #e9ecef;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 100%);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.rating-value {
    min-width: 30px;
    text-align: right;
    font-weight: bold;
    color: #495057;
}

.no-reviews {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.no-reviews p {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.kansou-form-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #dee2e6;
}

.kansou-form-section h3 {
    color: #495057;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.kansou-form-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.kansou-form-container h3 {
    color: #495057;
    margin-bottom: 25px;
    font-size: 1.4em;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.form-section {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.form-section h4 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.form-section h5 {
    color: #495057;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.form-section p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section label {
    min-width: 120px;
    font-weight: 600;
    color: #495057;
}

.form-section input,
.form-section select,
.form-section textarea {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-section input:focus,
.form-section select:focus,
.form-section textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-section textarea {
    min-height: 100px;
    resize: vertical;
}

.rating-section {
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

/* 評価項目のグリッドレイアウト */
.rating-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.rating-section h5 {
    grid-column: 1 / -1;
}

.rating-section h5 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.1em;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 8px;
}

.rating-section p {
    margin-bottom: 12px;
}

.rating-section select {
    background: white;
    border: 1px solid #dee2e6;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.95em;
}

.rating-section textarea {
    width: 100%;
    margin-top: 8px;
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9em;
    resize: vertical;
    min-height: 60px;
    font-family: inherit;
}

.rating-section textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.form-actions {
        display: flex;
    gap: 15px;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
    color: white;
    text-decoration: none;
}

/* 感想・評価システム用レスポンシブ対応 */
@media (max-width: 768px) {
    .summary-overview {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .overall-rating {
        justify-content: center;
    }
    
    .rating-stars .star {
        font-size: 2em;
    }
    
    .rating-score .score {
        font-size: 2em;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .rating-label {
        min-width: auto;
    }
    
    .rating-bar {
        width: 100%;
    }
    
    .form-section p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .form-section label {
        min-width: auto;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
}

/* 感想・評価システム用ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .kansou-summary-section {
        background: linear-gradient(135deg, #424242 0%, #555555 100%);
        border-color: #666;
    }
    
    .summary-overview,
    .rating-item,
    .no-reviews,
    .kansou-form-container {
        background: #424242;
        color: #e0e0e0;
    }
    
    .rating-score .score,
    .rating-value,
    .rating-label,
    .form-section label,
    .kansou-form-container h3,
    .form-section h4,
    .form-section h5,
    .detailed-ratings h3 {
        color: #f0f0f0;
    }
    
    .rating-stars .star.empty {
        color: #666;
    }
    
    .rating-bar {
        background: #555;
    }
    
    .form-section {
        background: #3a3a3a;
        border-left-color: #8e2de2;
    }
    
    .form-section input,
    .form-section select,
    .form-section textarea {
        background: #424242;
        border-color: #666;
        color: #e0e0e0;
    }
    
    .form-section input:focus,
    .form-section select:focus,
    .form-section textarea:focus {
        border-color: #8e2de2;
        box-shadow: 0 0 0 3px rgba(142, 45, 226, 0.1);
    }
    
    .rating-section {
        background: #424242;
        border-color: #666;
    }
    
    .rating-section h5 {
        color: #a770ef;
        border-bottom-color: #666;
    }
    
    .form-actions {
        border-top-color: #666;
    }
}

/* ========================================
   Google Maps & Reviews用スタイル
   ======================================== */

/* プラネタリウム地図コンテナ */
.planetarium-map-container {
    margin: 20px 0;
}

.planetarium-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

/* Googleレビューセクション */
.google-reviews-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.google-reviews-title {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

.google-reviews-summary {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.google-rating .star {
    font-size: 20px;
}

.google-rating .star.filled {
    color: #ffc107;
}

.google-rating .star.empty {
    color: #ddd;
}

.google-rating .rating-value {
    font-size: 1.5em;
    font-weight: 600;
    margin-left: 8px;
    color: #333;
}

.google-reviews-summary .review-count {
    color: #666;
    font-size: 0.9em;
}

/* レビューリスト */
.google-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.google-review-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease;
}

.google-review-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.review-author {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
}

.author-rating {
    display: flex;
    gap: 2px;
    font-size: 12px;
}

.author-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-meta strong {
    font-size: 1em;
    color: #333;
}

.review-time {
    font-size: 0.85em;
    color: #999;
}

.review-text {
    color: #555;
    line-height: 1.6;
    font-size: 0.95em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .google-reviews-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .google-reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .planetarium-map {
        height: 300px;
    }
    
    .google-review-card {
        padding: 15px;
    }
}

/* Google Place情報セクション */
.google-place-info-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.google-place-info-title {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

.google-place-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.google-place-info-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.google-place-info-item strong {
    color: #495057;
    margin-right: 8px;
}

.google-map-container {
    margin: 20px 0;
}

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.opening-hours-list div {
    padding: 4px 0;
    color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .google-place-info-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .google-place-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .google-map {
        height: 300px;
    }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .google-reviews-section,
    .google-place-info-section {
        background: #2d2d2d;
        border-color: #555;
    }
    
    .google-reviews-title,
    .google-place-info-title {
        color: #f0f0f0;
    }
    
    .google-review-card,
    .google-place-info-item {
        background: #3a3a3a;
        border-color: #555;
    }
    
    .google-reviews-summary {
        background: #3a3a3a;
    }
    
    .author-meta strong,
    .review-text,
    .google-place-info-item strong {
        color: #e0e0e0;
    }
    
    .review-time {
        color: #999;
    }
    
    .opening-hours-list div {
        color: #e0e0e0;
    }
}