/* 全体のスタイル */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* コンテナ */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* タイトル */
h1 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: #000000;
}

h2 {
    font-size: 20px;
    margin-top: 25px;
    color: #444;
}

h3 {
    font-size: 20px;
    color: #007bff;
}

h4 {
    font-size: 20px;
    color: #f700ff;
}

/* 料金セクション（縦並び） */
.pricing-section {
    display: flex;
    flex-direction: column; /* 縦並びにする */
    align-items: center;
    gap: 15px;
}

.pricing-box {
    width: 100%;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    text-align: center;
}

/* リスト */
ul {
    list-style-type: disc;
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

/* 戻るボタン */
.back-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 10px;
    background: #a478d3;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.back-btn:hover {
    background: #e0554c;
}