/* =============================================
   services.html 専用スタイル
   ============================================= */

.page-header::before {
    content: 'SERVICES';
    position: absolute;
    right: -10px; bottom: -20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11rem;
    font-weight: 600;
    color: rgba(255,255,255,0.05);
    letter-spacing: -0.02em;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero_bg.jpg') center 60% / cover no-repeat;
    opacity: 0.45;
    z-index: 0;
}
.page-header-inner {
    position: relative;
    z-index: 1;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 60px 120px;
}

/* サービスリスト */
.service-list { display: flex; flex-direction: column; gap: 2px; }

.service-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    background: var(--white);
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.service-item::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.4s;
}
.service-item:hover { background: #fdf9f4; }
.service-item:hover::after { transform: scaleY(1); }

.service-num-col {
    background: rgba(184,150,90,0.06);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 44px 20px;
    border-right: 1px solid rgba(184,150,90,0.15);
}
.service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: rgba(184,150,90,0.4);
    line-height: 1;
}
.service-body { padding: 44px 52px; }
.service-body h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.service-body p {
    font-size: 0.93rem;
    color: var(--gray);
    line-height: 2;
    font-weight: 400;
    max-width: 680px;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}
.tag {
    font-size: 0.72rem;
    color: var(--gold);
    border: 1px solid rgba(184,150,90,0.4);
    padding: 3px 12px;
    letter-spacing: 0.08em;
}

/* CTA */
.cta-wrap {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(184,150,90,0.2);
}
.cta-wrap p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 2;
}

@media (max-width: 900px) {
    main { padding: 60px 24px 80px; }
    .service-item { grid-template-columns: 70px 1fr; }
    .service-body { padding: 32px 24px; }
}
