/* --- ご入会案内ページ --- */
.joining-section {
    padding: 60px 20px;
}

.joining-section.bg-light {
    background-color: #f9f9f9;
}

.joining-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.joining-card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 30px;
}

.joining-card-content p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ご入会フロー */
.joining-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.flow-step {
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    position: relative;
}

.flow-step-number {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.flow-step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.flow-step-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.flow-step p {
    margin:15px;
}

.flow-arrow {
    font-size: 2rem;
    color: #ccc;
}

/* 料金表 */
.price-table-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price-table th,
.price-table td {
    padding: 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.price-table th {
    background-color: #f2f2f2;
    width: 30%;
    font-weight: 500;
}

.price-table td {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .joining-card {
        flex-direction: column;
        text-align: center;
    }
    .joining-card-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
}


.price-note li {
    padding-left: 1.2em; /* マーカーを配置するスペースを確保 */
    position: relative; /* ::before の配置基準 */
}

.price-note li::before {
    content: "※"; /* マーカーとして表示するテキスト */
    position: absolute;
    left: 0;
}


/* 総合カタログダウンロード */
.catalog-download {
    margin-top: 50px; /* 上の要素との間隔を調整 */
    padding-top: 30px; /* 区切り線との間隔 */
    border-top: 1px solid #e0e0e0; /* 上のセクションとの区切り線 */
    text-align: center; /* テキストと画像を中央揃え */
}

.catalog-download p {
    margin-bottom: 20px; /* テキストと画像の間のスペース */
}

.catalog-download img {
    max-width: 212px; /* 画像の最大幅を指定 */
    width: 100%; /* 親要素の幅に合わせる */
    height: auto; /* 高さを自動調整 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 影を付けて立体感を出す */
    transition: opacity 0.3s ease; /* ホバーエフェクトを滑らかに */
}

.catalog-download a:hover img {
    opacity: 0.85; /* マウスホバー時に少し透明にする */
}

/* お問い合わせセクション */
.joining-contact {
    text-align: center;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
}

.joining-contact p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
