/* 基本スタイル */
body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Light gray background for contrast */
    color: #333;
    line-height: 1.8;
    font-size: 17px;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1, h2, h3 {
    font-family: 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', 'MS PMincho', serif; /* Elegant serif font for headings */
    color: #1a1a1a; /* Darker heading color */
    margin-bottom: 1em;
    line-height: 1.4;
}

h1 {
    font-size: 3.2em;
    font-weight: bold;
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
    padding-bottom: 15px;
}

/* Underline effect for h2 */
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c0a062; /* Gold accent */
}

h3 {
    font-size: 1.6em;
    color: #c0a062; /* Gold accent for subheadings */
}

p {
    margin-bottom: 1.5em;
}

a {
    color: #c0a062;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #a08042;
}

.highlight {
    color: #c0a062; /* Gold accent */
    font-weight: bold;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 5px;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.btn-primary {
    background-color: #c0a062; /* Gold */
    color: #fff;
}

.btn-primary:hover {
    background-color: #a08042;
    color: #fff;
}

.btn-secondary {
    background-color: #333;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #555;
    color: #fff;
}

/* 1. ファーストビュー (FV) */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('recommendation_images/SHADE-店内写真6.jpg') no-repeat center center/cover; /* Use provided image */
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5em;
}

.hero-content .lead {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 1.5em auto;
    color: #eee;
}

/* 2. イントロダクション */
.introduction {
    background-color: #fff;
    padding: 60px 0;
}

/* 3. 推薦理由 */
.reasons {
    background-color: #1a1a1a; /* Dark background for this section */
    color: #eee;
    padding: 60px 0;
}

.reasons h2 {
    color: #fff;
}

.reasons h2::after {
    background-color: #c0a062;
}

.reason-item {
    background-color: #2a2a2a; /* Slightly lighter dark */
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    border-left: 5px solid #c0a062;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.reason-icon {
    font-size: 2.5em;
    color: #c0a062;
    margin-bottom: 0.5em;
    text-align: center;
}

.reason-item h3 {
    text-align: center;
    margin-bottom: 1em;
}

.reason-item p {
    color: #ccc;
}

.image-placeholder {
    background-color: #444;
    color: #888;
    text-align: center;
    padding: 50px 20px;
    margin-top: 20px;
    border-radius: 5px;
}

/* 5. 選び方 */
.howto {
    background-color: #fff;
    padding: 60px 0;
}

.howto ul {
    list-style: none;
    padding: 0;
}

.howto li {
    margin-bottom: 1em;
    padding-left: 25px;
    position: relative;
}

.howto li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #c0a062;
}

/* 6. CTA */
.cta {
    background: linear-gradient(rgba(192, 160, 98, 0.8), rgba(160, 128, 66, 0.8)), url('placeholder_cta_bg.jpg') no-repeat center center/cover; /* Gold gradient overlay - Placeholder BG */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    color: #fff;
}

.cta h2::after {
    background-color: #fff;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2em auto;
    font-size: 1.1em;
}

.cta-buttons .btn {
    margin: 10px;
}

.cta-buttons .btn-primary {
    background-color: #fff;
    color: #c0a062;
}

.cta-buttons .btn-primary:hover {
    background-color: #eee;
    color: #a08042;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-buttons .btn-secondary:hover {
    background-color: #fff;
    color: #c0a062;
}

.tel-info {
    margin-top: 1.5em;
    font-size: 1.1em;
}

.tel-info a {
    color: #fff;
    font-weight: bold;
}

.tel-info a:hover {
    text-decoration: underline;
}

/* 7. フッター */
footer {
    background-color: #1a1a1a;
    color: #aaa;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9em;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero {
        padding: 80px 20px;
        min-height: 50vh;
    }
    .container {
        width: 95%;
        padding: 30px 15px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}



/* Styling for interior images in reasons section */
.interior-images {
    display: flex;
    gap: 15px; /* Space between images */
    margin-top: 25px;
    justify-content: center; /* Center images if they don't fill the width */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.interior-images img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 300px; /* Allow images to grow and shrink, base width 300px */
    max-height: 300px; /* Limit height */
    object-fit: cover; /* Ensure images cover the area nicely */
}

