.screen {
    width: 100vw;
    padding: 0;
    margin-top: 108px;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Main Content Container */
.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Terms Section */
.terms-section {
    text-align: center;
    margin-bottom: 42px;
}

/* Page Title */
.screen .text-wrapper {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
    margin-bottom: 24px;
    padding-top: 48px;
}

.screen .text-wrapper-2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 24px;
}

.screen .rectangle {
    width: 113px;
    height: 7px;
    background: linear-gradient(90deg, #009A55 0%, #00FF00 100%);
    margin-bottom: 48px;
    border-radius: 100px;
    margin: 24px auto 0;
}

/* Content Sections */
.content,
.content-1 {
    width: 100%;
    max-width: 979px;
    margin: 0 auto 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: left;
}

.content {
    margin-top: 48px;
    text-align: left;
}

.content h2,
.content-1 h2 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 24px;
    line-height: 28.3px;
    letter-spacing: 0;
    margin-bottom: 22px;
}

.content p,
.content-1 p {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 0;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Decorative Line Group */
.group {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 18px;
    width: 100%;
}

.rectangle-1 {
    width: 155px;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(104, 184, 47, 1) 0%,
            rgba(58, 170, 120, 1) 100%);
    flex-shrink: 0;
}

.rectangle-2 {
    flex: 1;
    height: 2px;
    background-color: #eeeeee;
}

/* RESPONSIVE DESIGN */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .content,
    .content-1 {
        max-width: 100%;
        padding: 15px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .screen {
        margin-top: 68px;
    }

    /* Content Sections */
    .content,
    .content-1 {
        margin: 25px auto 20px;
        padding: 15px 10px;
        border-radius: 6px;
    }

    .content h2,
    .content-1 h2 {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    .content p,
    .content-1 p {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    /* Decorative Line */
    .rectangle-1 {
        width: 80px;
    }

    .group {
        margin-bottom: 15px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .main-content {
        width: 100%;
        max-width: 330px;
    }

    .terms-section {
        margin-bottom: 30px;
    }

    .content,
    .content-1 {
        margin: 0;
        padding: 20px 8px;
        text-align: left;
    }

    .content h2,
    .content-1 h2 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 13px;
    }

    .content p,
    .content-1 p {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .group {
        margin-bottom: 25px;
    }

    .rectangle-1 {
        width: 60px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .main-content {
        max-width: 300px;
    }

    .content,
    .content-1 {
        padding: 8px 6px;
        margin: 15px auto 10px;
    }

    .content h2,
    .content-1 h2 {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 10px;
    }

    .content p,
    .content-1 p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 10px;
    }

    .group {
        margin-bottom: 10px;
    }

    .rectangle-1 {
        width: 50px;
    }
}

/* Table Styles */
.table {
    width: 100%;
    max-width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow-x: auto;
    display: table;
}

.table-bordered {
    border: 1px solid #e0e0e0;
}

.table th,
.table td {
    padding: 16px 12px;
    text-align: left;
    vertical-align: top;
    border: 1px solid #e0e0e0;
    color: #000000;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.table th {
    background-color: #f8f9fa;
    color: #000000;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
}

.table tbody tr:nth-child(even) {
    background-color: #ffffff;
}

.table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.table td {
    color: #333333;
    font-weight: 400;
}

.table td:first-child {
    background-color: #ffffff;
    font-weight: 500;
    min-width: 30%;
}

/* Table Wrapper for Horizontal Scroll */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px auto;
    width: 100%;
    max-width: 939px;
}