/* 詳細ページ専用のレイアウト */

.breadcrumb {
    padding: 20px 0;
    font-size: 0.85rem;
    color: #888;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

/* ヒーローエリア */
.detail-hero {
    padding-bottom: 60px;
}

.detail-hero-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.detail-hero-text {
    flex: 1;
    padding: 60px;
}

.area-label {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.detail-hero-text h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.detail-hero-img {
    flex: 1.2;
    height: 400px;
}

.detail-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 特徴リスト */
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
}

.check-icon {
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* ギャラリー */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}

.gallery-item p {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* テーブル */
.detail-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.detail-table th, .detail-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.detail-table th {
    width: 200px;
    text-align: left;
    background-color: #f9f9f9;
}

/* CTA */
.detail-cta {
    background: linear-gradient(45deg, #f39800, #ffb333);
    color: #fff;
    text-align: center;
    padding: 80px 5%;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-tel, .cta-mail {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-tel { background: #fff; color: var(--primary-color); }
.cta-mail { background: var(--secondary-color); color: #fff; }

/* スマホ対応 */
@media (max-width: 768px) {
    .detail-hero-inner { flex-direction: column-reverse; }
    .detail-hero-text { padding: 30px; }
    .detail-hero-img { height: 250px; width: 100%; }
    .detail-table th { width: 100px; padding: 10px; font-size: 0.9rem; }
    .cta-buttons { flex-direction: column; }
}
