/* top.css — トップページ（サービス紹介） */

.top-hero {
    background: linear-gradient(160deg, #1a1510 0%, #241e14 100%);
    padding: 72px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.top-hero-eyebrow {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    color: #b8965a;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.top-hero-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 600;
    color: #faf8f2;
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 22px;
}
.top-hero-sub {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.95rem;
    color: #a09070;
    line-height: 2.0;
    max-width: 560px;
    margin: 0 auto 36px;
}
.top-hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.top-btn-primary, .top-btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    transition: opacity 0.2s, transform 0.15s;
}
.top-btn-primary {
    background: linear-gradient(135deg, #c8a060, #8a6530);
    color: #faf8f2;
    box-shadow: 0 4px 14px rgba(184,150,90,0.3);
}
.top-btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.top-btn-secondary {
    background: transparent;
    color: #d4c5a0;
    border: 1px solid rgba(184,150,90,0.45);
}
.top-btn-secondary:hover { border-color: #b8965a; color: #faf8f2; }

.top-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 64px 24px;
}
.top-section-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a1510;
    text-align: center;
    margin-bottom: 8px;
}
.top-section-sub {
    text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: #7a6a58;
    margin-bottom: 40px;
}

.top-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}
.top-feature-card {
    background: #fff;
    border: 1px solid #e8e0d0;
    border-top: 3px solid #b8965a;
    border-radius: 0 0 10px 10px;
    padding: 26px 22px;
    text-align: center;
}
.top-feature-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}
.top-feature-title {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1510;
    margin-bottom: 10px;
}
.top-feature-desc {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.82rem;
    color: #5a4a38;
    line-height: 1.85;
}

.top-column-cta {
    background: #faf8f2;
    border: 1px solid #e8dcc8;
    border-radius: 10px;
    padding: 36px 24px;
    text-align: center;
    margin-top: 8px;
}
.top-column-cta p {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem;
    color: #3a3028;
    margin-bottom: 18px;
}
.top-column-cta a {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #8a6530;
    text-decoration: none;
    border-bottom: 1px solid #c8a060;
    padding-bottom: 2px;
}
.top-column-cta a:hover { color: #1a1510; }

.top-final-cta {
    background: linear-gradient(160deg, #1a1510 0%, #241e14 100%);
    text-align: center;
    padding: 56px 24px;
}
.top-final-cta p {
    font-family: 'Cormorant Garamond', 'Noto Serif JP', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #faf8f2;
    margin-bottom: 26px;
}
