/*************** ▼ スライド1のスタイル ***************/

    body, html {
        margin: 0;
        padding: 0;
        font-family: 'Noto Sans JP', sans-serif;
    }
    .slide-container {
        width: 1280px;
        min-height: 720px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }
    .bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.7);
        z-index: -1;
    }
    .content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        z-index: 1;
    }
    .title {
        font-size: 60px;
        font-weight: 900;
        color: #0b5394;
        text-align: center;
        margin-bottom: 24px;
        line-height: 1.2;
    }
    .subtitle {
        font-size: 48px;
        font-weight: 700;
        color: #333;
        text-align: center;
        margin-bottom: 24px;
    }
    .highlight {
        font-size: 64px;
        font-weight: 900;
        color: #16a34a;
        display: inline-block;
    }
    .description {
        font-size: 24px;
        line-height: 1.6;
        text-align: center;
        max-width: 800px;
        margin-top: 40px;
    }
    .badge {
        background-color: #0b5394;
        color: white;
        padding: 12px 20px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 20px;
        margin-top: 32px;
    }


/*************** ▼ スライド2のスタイル ***************/

    .slide-container {
        width: 1280px;
        min-height: 720px;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .content {
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 40px 60px;
    }
    .title-container {
        text-align: center;
        margin-bottom: 50px;
    }
    .title {
        font-size: 48px;
        font-weight: 900;
        color: #0b5394;
        display: inline-block;
        padding-bottom: 8px;
        border-bottom: 4px solid #16a34a;
    }
    .list-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .list-item {
        display: flex;
        align-items: flex-start;
    }
    .icon-container {
        width: 70px;
        height: 70px;
        background-color: #0b5394;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 20px;
        flex-shrink: 0;
    }
    .item-content {
        flex: 1;
    }
    .item-title {
        font-size: 24px;
        font-weight: 700;
        color: #0b5394;
        margin-bottom: 6px;
    }
    .item-description {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }
    .highlight {
        color: #16a34a;
        font-weight: 700;
    }
    .footer {
        height: 10px;
        background-color: #0b5394;
        position: absolute;
        bottom: 0;
        width: 100%;
    }


/*************** ▼ スライド3のスタイル ***************/

    .big-amount {
        text-align: center;
        margin-bottom: 30px;
    }
    .big-amount span {
        font-size: 80px;
        font-weight: 900;
        color: #16a34a;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }


/*************** ▼ スライド4のスタイル ***************/

    .number {
        position: absolute;
        top: -10px;
        right: -10px;
        background-color: #16a34a;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: 700;
        font-size: 18px;
    }


/*************** ▼ スライド5のスタイル（すでにあるクラスも多いので追加分だけ） ***************/

    /* 特になし（共通クラスを再利用） */


/*************** ▼ スライド6のスタイル ***************/

    .timeline-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
        margin-top: 20px;
    }
    .timeline {
        position: relative;
        height: 120px;
        margin-left: 40px;
        margin-right: 40px;
    }
    .timeline-label {
        position: absolute;
        top: -40px;
        left: 0;
        font-size: 24px;
        font-weight: 700;
        color: #0b5394;
    }
    .warning-box {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin-top: 30px;
        border-radius: 4px;
    }
    .warning-title {
        font-size: 22px;
        font-weight: 700;
        color: #856404;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    .warning-icon {
        margin-right: 10px;
        color: #856404;
        font-size: 24px;
    }
    .warning-text {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }
    .highlight-red {
        color: #dc2626;
        font-weight: 700;
    }


/*************** ▼ スライド7のスタイル ***************/

    .process-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        margin-top: 20px;
    }
    .process-flow {
        position: relative;
        height: 200px;
        margin-left: 20px;
        margin-right: 20px;
    }
    .note-box {
        background-color: #e8f4ff;
        border-left: 5px solid #0b5394;
        padding: 20px;
        margin-top: 20px;
        border-radius: 4px;
    }
    .note-title {
        font-size: 22px;
        font-weight: 700;
        color: #0b5394;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
    }
    .note-icon {
        margin-right: 10px;
        color: #0b5394;
        font-size: 24px;
    }
    .note-text {
        font-size: 18px;
        line-height: 1.6;
        color: #333;
    }
    .highlight-blue {
        color: #0b5394;
        font-weight: 700;
    }


/*************** ▼ スライド8のスタイル ***************/

    .alert-box {
        background-color: #fef2f2;
        border-left: 5px solid #dc2626;
        padding: 12px;
        margin-top: 30px;
    }
    .alert-text {
        font-size: 18px;
        color: #dc2626;
        font-weight: 700;
    }
    .icon-container.alert-icon {
        width: 60px;
        height: 60px;
        background-color: #dc2626;
    }


/*************** ▼ スライド9のスタイル ***************/

    .cta-container {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }
    .cta-button {
        background-color: #16a34a;
        color: white;
        font-size: 24px;
        font-weight: 700;
        padding: 15px 50px;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .cta-button:hover {
        background-color: #15803d;
        transform: translateY(-3px);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }
    .contact-info {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        background-color: #f0f9ff;
        padding: 20px;
        border-radius: 10px;
        gap: 20px;
    }
    .contact-method {
        display: flex;
        align-items: center;
    }
    .contact-icon {
        font-size: 24px;
        margin-right: 10px;
        color: #0b5394;
    }
