.sct h2 {
    margin-bottom: 32px;
}
.sct h3 {
    margin-left: 0;
    margin-top: 56px;
    margin-bottom: 24px;
}

.p-infoDigitalProvision {
    background-color: #f5f5f5;
    padding: 120px 0;
    margin-bottom: 150px;
    margin-left: -10vw;
    padding-left: 10vw;
    padding-right: 10vw;
}
.p-infoDigitalProvision p {
    margin-bottom: 16px;
    font-size: 17px;
}
.p-infoDigitalProvision a {
    margin-top: 64px;
}

.sct .leadbox {
    margin-bottom: 64px;
}
.sct .leadbox p {
    margin-bottom: 24px;
}

.sct .p-disclaimerDetail__section section {
    margin-left: 42px;
}

@media screen and (max-width: 767px) {
    .p-infoDigitalProvision {
        padding: 64px 4vw 64px 10vw;
    }

    .p-infoDigitalProvision p {
        margin-left: 4vw;
        font-size: 4.533vw;
    }
    .p-infoDigitalProvision a {
        margin-top: 8vw;
        margin-left: 4vw;
        max-width: calc(100% - 4vw);
    }

    .sct ul li  {
        margin-bottom: 3vw;
    }

    .sct .p-disclaimerDetail__section section {
        margin-left: 0;
    }
}

a.pdf::after {
    content: "\f1c1";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-left: 6px;
}


/* 目論見書 */
.h1_mokuromisho {
    color: #333;
    max-width: 1200px;
    margin: 40px auto;
}

.page_mokuromisho .c-page__body {
    padding-top: 0;
}


.mokuromisho_form  {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.mokuromisho_form select {
    padding: 8px 12px;
    font-size: 16px;
    border: 1.8px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    color: #333;
    min-width: 220px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.mokuromisho_form select:focus {
    border-color: #2a6ebb;
    box-shadow: 0 0 6px rgba(42, 110, 187, 0.4);
    outline: none;
}

.mokuromisho_form button[type="submit"] {
    padding: 6px 24px;
    font-size: 16px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 120px;
    transition: all 0.3s ease;
}

.mokuromisho_form button[type="submit"]:hover,
.mokuromisho_form button[type="submit"]:focus {
    opacity: .7;
}

@media screen and (max-width: 767px) {
    .mokuromisho_form {
        margin: 24px auto;
        flex-direction: column;
        gap: 12px;
        padding: 0 6.4vw;
    }

    .mokuromisho_form select,
    .mokuromisho_form button[type="submit"] {
        min-width: 100%;
    }
}

.page_mokuromisho .table {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 120px;
}
.page_mokuromisho .table table  {
    table-layout: fixed;
}
.page_mokuromisho .table table thead {
    font-weight: bold;
    text-align: left;
}
.page_mokuromisho .table table thead th {
    font-size: 14px;
    padding: 8px 16px;
}
.page_mokuromisho .table table th,
.page_mokuromisho .table table td {
    padding: 16px;
} 
.page_mokuromisho .table table tr {
    border-bottom: 1px solid #000;
}
.page_mokuromisho .table table tbody th {
    font-weight: bold;
    text-align: left;
    padding-right: 32px;
    width: 100%;
    min-width: 480px;
}

.page_mokuromisho .table table td .listing {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    list-style: none;
}
.page_mokuromisho .table table td .listing li {
    list-style: none;
    margin-bottom: 0;
    margin-right: 40px;
}
.page_mokuromisho .table table td .listing li:last-child {
    margin-right: 0;
}
.page_mokuromisho .table table td .listing li a {
    font-size: 15px;
    padding-right: 20px;
    white-space: nowrap;
}

.page_mokuromisho .table.overflowtxt {
    position: relative;
}

.page_mokuromisho .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin: 40px auto;
}
  
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.page_mokuromisho .attention_txt {
    font-size: 20px;
    font-weight: bold;
    margin: 64px auto 80px;
    text-align: center;
}

.scroll-hint-msg {
    display: none;
    text-align: right;
    font-size: 13px;
    padding-right: 5px;
    margin: 1em 0;
}
.scroll-hint-msg span {
    display: inline-block;
    animation: shakeSide 1s ease-in-out infinite alternate;
    color: #898989;
}
@keyframes shakeSide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(10px);
    }
}

@media screen and (max-width: 767px) {
    .page_mokuromisho .table table thead {
        display: none;
    }

    .h1_mokuromisho {
        margin: 24px auto;
    }

    .page_mokuromisho .table table th,
    .page_mokuromisho .table table td {
        display: block;
        white-space: normal;
        padding: 24px 0;
    }
    .page_mokuromisho .table table tbody th {
        padding-right: 0;
        padding-bottom: 16px;
        min-width: auto;
    }
    .page_mokuromisho .table table tbody td {
        padding-top: 0;
        white-space: nowrap;
    }
    .page_mokuromisho .table table td .listing li {
        line-height: 1.2;
        margin-right: 32px;
    }
    .page_mokuromisho .table table td .listing li a::after {
        width: 15px;
        height: 18px;
        background-size: 15px 18px;
        
    }
}