/* サービスページ専用スタイル */

/* ページヒーロー - services.css (共通スタイルはstyle.cssで定義) */

/* サービス紹介 */
.services-intro {
    padding: 100px 0;
    background: var(--washi);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-title {
    font-size: 36px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    color: var(--primary);
}

.intro-text {
    font-size: 16px;
    line-height: 2.2;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--gray-dark);
}

/* サービス詳細 */
.services-detail {
    padding: 0 0 100px;
    background: var(--washi);
}

/* フロー */
.service-flow {
    margin-bottom: 100px;
}

.flow-title {
    font-size: 28px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary);
}

.flow-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.flow-item {
    text-align: center;
    position: relative;
    padding: 40px 25px;
    background: white;
    border: none;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.flow-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,95,122,0.12);
}

.flow-number {
    font-size: 48px;
    font-weight: 200;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 20px;
    font-family: 'Noto Sans JP', sans-serif;
}

.flow-item h4 {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    color: var(--primary);
}

.flow-item p {
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--gray-dark);
}

/* サービスタイプ */
.service-types {
    margin-bottom: 100px;
}

.types-title {
    font-size: 28px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary);
}

.type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.type-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 35px;
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.type-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,95,122,0.12);
}

.type-image {
    height: 280px;
    overflow: hidden;
    border-radius: 16px;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.type-item:hover .type-image img {
    transform: scale(1.05);
}

.type-content h4 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--primary);
}

.type-content p {
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.type-features {
    list-style: none;
    padding: 0;
}

.type-features li {
    font-size: 14px;
    line-height: 2;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--gray-dark);
    padding-left: 20px;
    position: relative;
}

.type-features li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* 強み */
.service-strength {
    margin-bottom: 100px;
}

.strength-title {
    font-size: 28px;
    font-weight: 300;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary);
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.strength-item {
    text-align: center;
    padding: 45px 35px;
    background: white;
    border: none;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,95,122,0.12);
}

.strength-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.strength-item h4 {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    color: var(--primary);
}

.strength-item p {
    font-size: 14px;
    line-height: 1.8;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--gray-dark);
}

/* 料金セクション */
.price-section {
    background: rgba(245,245,220,0.3);
    padding: 100px 0;
}

.price-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.price-item {
    padding: 40px;
    background: white;
    border: none;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.price-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26,95,122,0.12);
}

.price-item h4 {
    font-size: 20px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--primary);
}

.price-range {
    font-size: 28px;
    font-weight: 300;
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--primary);
    margin-bottom: 10px;
}

.price-note {
    font-size: 13px;
    color: var(--gray-dark);
    font-family: 'Noto Sans JP', sans-serif;
}

.price-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--gray-dark);
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
}

/* CTA */
.services-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 400;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 16px;
    line-height: 2;
    font-family: 'Noto Sans JP', sans-serif;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.08em;
    transition: all 0.4s ease;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-primary:hover {
    background: var(--black);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .flow-items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .type-grid {
        grid-template-columns: 1fr;
    }
    
    .strength-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .intro-title {
        font-size: 28px;
    }
    
    .flow-items {
        grid-template-columns: 1fr;
    }
    
    .type-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .type-image {
        height: 200px;
    }
    
    .price-table {
        grid-template-columns: 1fr;
    }
    
    .price-range {
        font-size: 24px;
    }
}