 /* カスタムスタイル */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  }
  
  /* その他のカスタムスタイルをここに追加 */

.service-card {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.service-card h2 {
    margin-top: 0;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.service-card a {
    color: #3182ce;
    text-decoration: none;
}

.service-card a:hover {
    text-decoration: underline;
}

.service-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-card li {
    margin: 0.5rem 0;
}

.service-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin: 1rem 0;
    background-color: #e2e8f0;
    color: #2d3748;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    border: 2px solid #cbd5e0;
}

.service-button:hover {
    background-color: #cbd5e0;
    color: #1a202c;
    text-decoration: none;
    border-color: #a0aec0;
}

.service-description {
    color: #4a5568;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}