/* tokyo/css/tokyo-detail-page.css */
/* 東京兼喜会詳細ページ専用スタイル - tokyo-style.cssに追加するスタイル */


.detail-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detail-text {
    flex: 1;
}

.detail-paragraph {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    color: #34495e;
}

.detail-paragraph:last-child {
    margin-bottom: 0;
}

.detail-image {
    text-align: center;
    margin: 30px 0;
}

.detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.image-caption {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}


/* レスポンシブデザイン */
@media (max-width: 768px) {


    .detail-content {
        gap: 30px;
    }

    .detail-paragraph {
        font-size: 15px;
        margin-bottom: 15px;
    }

}

@media (max-width: 480px) {
    .detail-paragraph {
        font-size: 14px;
        line-height: 1.7;
    }
}