/* フォーム全般のスタイル */
body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.container {
    max-width: 960px;
}

.card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}

.card.form-card {
    background-color: #f8f9ff;
    border-radius: 0.5rem;
    border-top: 3px solid #0d6efd;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}

.card-title::after {
    display: none;
}

.progress {
    height: 0.5rem;
    border-radius: 1rem;
    background-color: #e9ecef;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    border-radius: 1rem;
}

/* ヘッダースタイル */
.header-wrapper {
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-header img {
    max-width: 240px;
    height: auto;
}

.form-header h1 {
    font-size: 1.125rem;
    margin: 0;
    padding: 0;
    color: #6c757d;
    position: relative;
    padding-left: 1rem;
    font-weight: normal;
}

.form-header h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1em;
    width: 1px;
    background-color: #dee2e6;
}

@media (max-width: 576px) {
    .form-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    .form-header h1 {
        padding-left: 0;
    }
    .form-header h1::before {
        display: none;
    }
}

.container.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

/* フォーム全般のスタイル */
.form-label {
    font-weight: 600;
}

.required {
    color: #dc3545;
    margin-left: 0.25rem;
}

/* カスタム入力フィールドのスタイル */
.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* バリデーション表示のスタイル */
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
    border-color: #198754;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* カード選択のスタイル */
.selectable-card {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #dee2e6 !important;
    margin-bottom: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.selectable-card:hover {
    border-color: #0d6efd !important;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15) !important;
    transform: translateY(-2px);
    background-color: #ffffff;
}

.selectable-card.selected {
    border-color: #0d6efd !important;
    background-color: #e7f0ff;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15) !important;
}

.selectable-card .card-body {
    padding: 0.75rem;
}

.selectable-card .form-check {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    min-height: 24px;
    background-color: transparent;
}

.selectable-card .form-check-input {
    float: none;
    margin: 0.25rem 0.75rem 0 0;
    border: 2px solid #adb5bd;
}

.selectable-card .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.selectable-card .form-check-label {
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.selectable-card .form-check-label h6 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}

.selectable-card .form-check-label .text-muted {
    margin-left: 0;
    font-size: 0.875rem;
}

/* 解約理由カードのスタイル */
.reason-card {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.reason-card:hover {
    border-color: #0d6efd !important;
    background-color: #ffffff;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15) !important;
    transform: translateY(-2px);
}

.reason-card.selected {
    border-color: #0d6efd !important;
    background-color: #e7f0ff;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15) !important;
}

.reason-card .form-check-label {
    display: flex;
    align-items: center;
    width: 100%;
}

/* ラジオボタン選択時のスタイル */
.reason-card .form-check-input:checked ~ .card-body,
.reason-card:has(.form-check-input:checked) {
    background-color: #e7f0ff;
}

/* アラートのカスタマイズ */
.alert-info {
    background: linear-gradient(145deg, #e0e7ff, #d0efff);
    border-right: 4px solid #66b2ff;
    border-bottom: 4px solid #66b2ff;
    border-left: none;
    border-top: none;
    color: #2c3e50;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* テーブルのカスタマイズ */
.table {
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
}

.table th {
    background: linear-gradient(145deg, #f8f9fa, #f0f4f8);
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #e9ecef;
}

/* テーブルカテゴリーのスタイル */
.table-category th {
    background: linear-gradient(145deg, #f8f9fa, #f0f4f8);
    border-left: 4px solid #0d6efd;
    padding: 1rem;
    font-weight: 600;
    color: #212529;
}

.table-category i {
    color: #0d6efd;
}

.table > :not(caption) > * > * {
    padding: 0.75rem;
}

/* ボタンのスタイル */
.btn-primary {
    padding: 0.5rem 2rem;
    font-weight: 500;
    background: linear-gradient(145deg, #0d6efd, #0b5ed7);
    border: none;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.25);
    transition: all 0.2s ease-in-out;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #0b5ed7, #0a58ca);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(13, 110, 253, 0.3);
}

.btn-secondary {
    padding: 0.5rem 2rem;
    font-weight: 500;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 1px solid #e9ecef;
    color: #6c757d;
    transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
    background: linear-gradient(145deg, #e9ecef, #dee2e6);
    border-color: #dee2e6;
    color: #495057;
    transform: translateY(-1px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ステップタイトル（h2）のスタイル */
h2 {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    letter-spacing: 0.02em;
    padding-left: 1rem;
}

h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 4px;
    background: #0d6efd;
    border-radius: 2px;
}

/* 申し込み前に必要な情報のスタイル */
.prerequisite-item {
    padding: 1.5rem;
    border-radius: 0.5rem;
    background-color: #f8f9fa;
    transition: all 0.2s ease-in-out;
    height: 100%;
}

.prerequisite-item:hover {
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.application-flow {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.flow-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.flow-item:hover {
    background-color: #ffffff;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.05);
}

.flow-number {
    width: 2rem;
    height: 2rem;
    background-color: #0d6efd;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.flow-text {
    flex: 1;
}

.flow-text h6 {
    margin-bottom: 0.25rem;
    color: #2c3e50;
}

.notice-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.notice-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
}

.notice-list li:last-child {
    margin-bottom: 0;
}

.notice-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #0d6efd;
}

@media (max-width: 768px) {
    .prerequisite-item {
        padding: 1rem;
    }

    .flow-item {
        padding: 0.75rem;
    }

    .flow-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.875rem;
    }
}

/* 注意事項の枠のスタイル */
.notice-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6 !important;
    border-radius: 0.5rem;
}

.notice-box .notice-list {
    margin-bottom: 0;
}

/* サービスカードのスタイル */
.service-card {
    position: relative;
    cursor: pointer;
}

.service-card .card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    overflow: hidden;
}

.service-card .card:hover {
    border-color: #0d6efd;
    border-width: 3px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* サービスカード選択時のスタイル */
.service-card:has(input[type="radio"]:checked) .card,
.service-card input[type="radio"]:checked + .card {
    border-color: #0d6efd;
    border-width: 3px;
    background-color: #e7f0ff;
    box-shadow: 0 0.5rem 1rem rgba(13, 110, 253, 0.2);
}

.service-card .card-img-top {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-card .card-title {
    margin-bottom: 0.5rem;
    min-height: 2.8em;  /* 2行分の高さを確保 */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .card-body {
    padding: 1rem;
}

/* 注意事項セクションのスタイル */
.notice-section {
    margin-top: 2rem;
}

.notice-title {
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 1rem;
}

.notice-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.notice-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.notice-list li:last-child {
    margin-bottom: 0;
}

.notice-list li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #dc3545;
}

/* 質問セクションのスタイル */
.question-section {
    background-color: transparent;
    padding: 0;
}

.question-header {
    position: relative;
}

.question-number {
    color: #0d6efd;
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.question-title {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 500;
}

/* プラン選択のスタイル */
.network-type-title {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    padding-left: 0.75rem;
    border-left: 4px solid #0d6efd;
}

.plan-period-card {
    border-radius: 0.5rem;
    overflow: hidden;
    height: 100%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.period-header {
    background-color: #1e4c9a;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

.period-header h6 {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    font-weight: normal;
}

.period-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.data-plans {
    padding: 1rem;
}

.data-plans-header {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* プランカードのスタイル */
.plan-card {
    display: block;
    cursor: pointer;
    position: relative;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.plan-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15);
    transform: translateY(-2px);
    background-color: #f8f9fa;
}

/* ラジオボタンを非表示 */
.plan-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* 選択時のスタイル */
.plan-radio:checked + .plan-content {
    color: #0d6efd;
}

/* プランカード選択時のスタイル */
.plan-card:has(.plan-radio:checked) {
    border-color: #0d6efd;
    background-color: #ebf3ff;
    box-shadow: 0 0.25rem 0.5rem rgba(13, 110, 253, 0.15);
}

.plan-content {
    font-size: 0.9rem;
    color: #2c3e50;
}

.plan-content .text-primary {
    font-weight: 600;
}

/* プロモーションタブのスタイル */
#promotionTabs {
    border-bottom: 1px solid #dee2e6;
    gap: 0;
    padding: 0;
    display: flex;
    width: 100%;
}

#promotionTabs .nav-item {
    margin: 0;
    flex: 1;
}

#promotionTabs .nav-link {
    margin: 0;
    border: 1px solid #dee2e6;
    border-bottom: none;
    background-color: #ffffff;
    color: #6c757d;
    padding: 1rem 0.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    border-radius: 0;
    position: relative;
}

#promotionTabs .nav-link:first-child {
    border-top-left-radius: 0.5rem;
}

#promotionTabs .nav-link:last-child {
    border-top-right-radius: 0.5rem;
}

#promotionTabs .nav-link:hover {
    background-color: #f8f9fa;
    color: #e7176d;
}

#promotionTabs .nav-link.active {
    background-color: #e7176d;
    border: 1px solid #e7176d;
    border-bottom: none;
    color: #ffffff;
    font-weight: 600;
}

#promotionTabs .nav-link i {
    font-size: 1.1em;
    vertical-align: -2px;
    margin-right: 0.5rem;
}

/* プロモーションコンテンツのスタイル */
#promotionTabContent {
    padding: 0;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-top: none;
    margin-top: 0;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* 確認画面のスタイル */
.confirm-section {
    margin-bottom: 2rem;
}

.confirm-section .table {
    width: 100%;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.confirm-section .table tr:nth-child(odd) {
    background-color: #f8f9fa;
}

.confirm-section .table th,
.confirm-section .table td {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.confirm-section .table tr:last-child th,
.confirm-section .table tr:last-child td {
    border-bottom: none;
}

.confirm-section .table th {
    width: 30%;
    font-weight: 500;
}

/* プロモーション確認エリアのスタイル */
.promotion-confirm-area {
    margin-top: 2rem;
    background-color: #fff8f8;
    border: 1px solid #ffe0e0;
    border-radius: 0.5rem;
    overflow: hidden;
}

.promotion-confirm-area .promotion-header {
    background-color: #fff0f0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ffe0e0;
}

.promotion-confirm-area .promotion-header h6 {
    margin: 0;
    color: #e7176d;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.promotion-confirm-area .promotion-content {
    padding: 1rem;
}

.promotion-confirm-area .promotion-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 0.25rem;
    margin-bottom: 0.5rem;
}

.promotion-confirm-area .promotion-item:last-child {
    margin-bottom: 0;
}

.promotion-confirm-area .promotion-item i {
    color: #e7176d;
}

.promotion-confirm-area .promotion-note {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed #ffe0e0;
    color: #6c757d;
    font-size: 0.875rem;
}

/* 無料トライアル説明用スタイル */
.trial-notice {
    background-color: #fff5f8;
    border-left: 5px solid #d60047;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.trial-notice .fw-bold {
    color: #d60047;
    font-size: 1.1rem;
    font-weight: 600;
}

.trial-notice p {
    margin: 0.5rem 0;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.trial-notice p:first-child {
    margin-bottom: 0.75rem;
}

.trial-notice p:last-child {
    margin-bottom: 0;
}

.plan-intro-card {
    border: 2px solid #e7176d;
    background-color: #fff8f8;
}

.plan-intro-card .plan-title {
    color: #e7176d;
    font-weight: bold;
    font-size: 1.25rem;
}

.plan-intro-card .plan-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.plan-intro-card .plan-note {
    color: #6c757d;
    font-size: 0.85rem;
}

.stay-days-label {
    font-size: 1.15rem;
    font-weight: bold;
    color: #0d6efd;
    letter-spacing: 0.05em;
    margin-left: 1rem;
    background: #f0f6ff;
    padding: 0.25em 1em;
    border-radius: 1em;
    display: inline-block;
}

/* 確認画面のセクション見出しスタイル */
.confirm-heading {
    font-size: 1rem;
    font-weight: 700;
    color: #0d6efd;
    margin: 1.5rem 0 0.75rem;
    padding: 0.5rem 1rem;
    background-color: #f1f5ff;
    border-left: 4px solid #0d6efd;
    border-radius: 0.25rem;
}

/* ご登録住所表示スタイル */
.registered-address {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}
.registered-address-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.registered-address-content {
    font-style: normal;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.registered-address-content p {
    margin: 0.25rem 0;
}

/* シンプルな複数サービス対応料金表スタイルをブラッシュアップ */
.fees-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
}
.fees-table thead {
    background-color: #f8f9fa;
}
.fees-table thead th {
    padding: 0.75rem 1rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}
.fees-table tbody td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
    color: #6c757d;
}
.fees-table tbody td .fees-label {
    color: #343a40;
    padding: 0.3em 0.6em;
    border-radius: 0.25rem;
    font-weight: 500;
    display: inline-block;
}
.fees-table tbody td .fees-note {
    display: block;
    font-size: 0.85em;
    color: #6c757d;
    margin-top: 0.25em;
    font-style: italic;
}
.fees-table tfoot td {
    padding: 0.75rem 1rem;
    color: #2c3e50;
    font-weight: 600;
    border-top: 2px solid #dee2e6;
    background-color: #f1f3f5;
}
.fees-table .service-row th.service-name-cell {
    background-color: #e7f0ff;
    border: none;
    font-weight: 600;
    color: #0d6efd;
    text-align: left;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
}

/* セット割引表示用のスタイル */
.set-discount-label {
    color: #e7176d;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Stripe Elementsの基本スタイル */
.StripeElement {
    background-color: white;
    padding: 16px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    /* フォーカス時のスタイル */
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    /* エラーがある場合の枠線の色 */
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    /* オートフィルされた時の背景色 */
    background-color: #fefde5 !important;
}

/* プレースホルダーのスタイル */
::placeholder {
    color: #aab7c4;
}

/* 利用規約のスタイル */
.terms-container {
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    padding: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.terms {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #2c3e50;
}

.terms .lead {
    color: #0d6efd;
    font-weight: 600;
    font-size: 1rem;
}

.terms .lead:first-child {
    margin-top: 0;
}

.terms ol, .terms ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms li {
    margin-bottom: 0.5rem;
}

.terms li:last-child {
    margin-bottom: 0;
}


