/* 基本設定 */
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    background-color: #f8fafc;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    color: #2c3e50;
    font-size: 2rem;
    border-bottom: 3px solid #4caf50;
    display: inline-block;
    padding-bottom: 10px;
}

/* 料金カードのレイアウト */
.price-section {
  margin-top: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.price-card {
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.price-card:hover {
    transform: translateY(-5px);
}

/* 強調したいカード（無料相談） */
.price-card.highlight {
    border: 2px solid #4caf50;
    background-color: #f0fff4;
}

.price-card h2 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-top: 0;
}

.service-name {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.price-main {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e67e22;
    margin: 15px 0;
}

.price-main span {
    font-size: 2.2rem;
    color: #d35400;
}

.price-sub {
    font-size: 1rem;
    font-weight: bold;
    color: #555;
}

.description {
    font-size: 0.85rem;
    color: #777;
    margin-top: 15px;
    text-align: left;
}

/* 注意書き */
.notice {
    background-color: #fff;
    border-left: 5px solid #e74c3c;
    padding: 20px;
    border-radius: 4px;
}

.notice h3 {
    margin-top: 0;
    color: #e74c3c;
    font-size: 1.1rem;
}

.notice ul {
    margin: 0;
    padding-left: 20px;
    font-size: 0.9rem;
}

.notice li {
    margin-bottom: 8px;
}

