@charset "utf-8";

:root {
    --main-color: #0C0C31;
    --gold-color: #D6A91F;
}

/* 全体の記述 */

@media (max-width: 350px) {
    .ttl-pattern_2 {
        font-size: 1.75rem;
    }
}



@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {}

@media all and (min-width: 1400px) {}

/* //全体の記述 */

/* requirementsの記述 */
.head-ttl-wrap {
    background: url(../images/joinus/header-bg-joinus.jpg) no-repeat center center / cover;
}

.requirements {
    background: url(../images/activity/accelerator/accelerator-bg-2.jpg) no-repeat center center / cover;
    padding-top: 50px;
    padding-bottom: 55px;
}

.requirements-txt {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
}

.requirements-circles {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 40px;
}

.requirements-circle {
    position: relative;
    border-radius: 50%;
    width: 410px;
    height: 410px;
    background-color: #0C0C31;
    color: #fff;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-top: 23px;
    padding-bottom: 34px;
}

.requirements-circle:nth-last-child {
    margin-bottom: 0;
}

.requirements-circle-image {
    position: absolute;

    left: calc(50% - 35px);
    bottom: 15%;
}

.requirements-circle-number {
    font-size: 4rem;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: bold;
    position: absolute;
    top: 10%;
}

.requirements-circle-text {
    font-size: 1.25rem;
    line-height: 2;
    text-align: center;
    padding: 0;
    margin: 0;
}


@media all and (max-width: 435px) {
    .requirements-circle {
        width: 290px;
        height: 290px;
    }

    .requirements-circle-image {
        left: calc(50% - 28px);
        width: 56px;
        bottom: 12%;
    }

    .requirements-circle-number {
        font-size: 3.5rem;
        top: 5%;
    }

    .requirements-circle-text {
        font-size: 1rem;
    }

}

@media all and (min-width: 576px) {
    /* .requirements-circle-number{
        top: 25px;
        font-size: 3.125rem;
    }
    .requirements-circle-image{
        left: calc(50% - 35px);
        bottom: 32px;
    }
    .requirements-circle-text{
        font-size:1rem;
        line-height: 1.75;
    } */
}

@media all and (min-width: 768px) {
    .requirements {

        padding-top: 100px;
        padding-bottom: 100px;
    }

    .requirements-circles {
        justify-content: space-around;
    }

    .requirements-circle {
        width: 300px;
        height: 300px;
    }

    .requirements-circle-number {
        top: 25px;
        font-size: 3.125rem;
    }

    .requirements-circle-image {
        left: calc(50% - 35px);
        bottom: 32px;
    }

    .requirements-circle-text {
        font-size: 1rem;
        line-height: 1.75;
    }
}

@media all and (min-width: 992px) {
    .requirements-txt {
        margin-bottom: 51px;
    }

    .requirements-circle {
        width: 220px;
        height: 220px;
    }

    .requirements-circle-image {
        left: calc(50% - 17.5px);
        width: 35px;
        bottom: 15%;
    }

    .requirements-circle-number {
        font-size: 2rem;
        top: 10%;
    }

    .requirements-circle-text {
        font-size: 0.8rem;
    }


}

@media all and (min-width: 1200px) {
    .requirements-circle {
        width: 270px;
        height: 270px;
    }

    .requirements-circle-image {
        left: calc(50% - 29px);
        width: 58px;
        bottom: 15%;
    }

    .requirements-circle-number {
        font-size: 3rem;
        top: 7%;
    }

    .requirements-circle-text {
        font-size: 0.9rem;
    }

}

@media all and (min-width: 1400px) {
    .requirements-circles {
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .requirements-circle {
        justify-content: center;
        width: 300px;
        height: 300px;
    }

    .requirements-circle-number {
        top: 25px;
        font-size: 3.125rem;
    }

    .requirements-circle-image {
        left: calc(50% - 35px);
        width: auto;
        bottom: 32px;
    }

    .requirements-circle-text {
        font-size: 1rem;
    }
}

/* //requirementsの記述 */


/*flowの記述 */
.flow {
    padding: 50px 0;
}

.flow-circle-box {
    display: grid;
    place-items: center;

}

.flow-content {
    position: relative;
}

.flow-content::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 82%;
    background-color: var(--main-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    z-index: -1;
}

.flow-box {
    gap: 10px;
    margin-bottom: 20px;
}

.flow-circle {
    background-color: var(--main-color);
    border-radius: 50%;
    color: white;
    aspect-ratio: 1/1;
    width: 45px;
    height: 45px;
    padding: 4px 0;
}

.flow-circle p {
    margin-bottom: 0;
}

.flow-step {
    font-size: 10px;
    font-weight: bold;
}

.flow-no {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
}

.flow-icon-box {
    display: grid;
    place-items: center;
    width: 30%;
}

.flow-text-box {
    width: 55%;
}

.flow-box-ttl {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 11px;
}

.flow-box-text {
    font-size: .875rem;
}

@media all and (min-width: 576px) {
    .flow-circle {
        width: 60px;
        height: 60px;
        padding: 9px 0;
    }

    .flow-no {
        font-size: 1.5rem;

    }

    .flow-box-ttl {
        font-size: 1.125rem;
    }

    .flow-box-text {
        font-size: 1rem;
    }

    .flow-content::before {
        left: 30px;
    }
}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
    .flow {
        padding: 100px 0 50px;
    }

    .flow-box {
        width: 16%;
    }

    .flow-content {
        display: flex;
        gap: 15px;
    }

    .flow-box-ttl {
        text-align: center;
    }

    .flow-circle-box {
        margin-bottom: 20px;
    }

    .flow-icon-box {
        margin-bottom: 1rem;
    }

    .flow-content::before {
        width: 85%;
        height: 2px;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }

    .flow-icon-box {
        width: auto;
        height: 40%;
    }

    .flow-text-box {
        width: auto;
    }


}

@media all and (min-width: 1200px) {
    .flow-content {

        gap: 30px;
    }
}

@media all and (min-width: 1400px) {
    .flow-text-box {
        margin-top: 28px;
    }
}

/* //flowの記述 */

/* notes"の記述 */
.notes {
    background: #EAEAF0;
    padding: 50px 0;
}

.notes-content {
    background-color: #fff;
    border: 2px solid var(--main-color);
    padding: 20px;
}

.notes-ul li {
    position: relative;
    list-style: none;
    line-height: 1.5;
    padding-left: 20px;
    margin-bottom: 12px;
}

.notes-ul li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-color);
    position: absolute;
    left: 0;
    top: calc(0.75em - 3px);
}


@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {
    .notes-content {
        padding: 40px;
    }

    .notes {
        padding: 100px 0;
    }
}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {}

@media all and (min-width: 1400px) {}

/* //notes"の記述 */

/* policyの記述 */

.policy {
    background-image: url(../images/joinus/policy-bg.jpg);
    background-size: cover;
    padding: 50px 0;
}

.subttl-white {
    color: #fff;
}

.policy-card {
    background: #fff;

}

.policy-txt {
    height: 82px;
    display: grid;
    place-items: center;
    padding: 0 10px;
}

.policy-card>img {
    width: 100%;
}

.policy-caution {
    color: #fff;
    margin-top: 20px;
}

@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {
    .policy {
        padding: 100px 0;
    }

    .policy-caution {

        margin-top: 28px;
    }

}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {}

@media all and (min-width: 1400px) {}

/* //policyの記述 */


/* priceの記述 */

.price {
    padding: 50px 0 0;
}

.price-table-ttl {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold-color);
    margin-bottom: 40px;
    font-weight: bold;
    font-size: 1.3rem;
}

.price-table-ttl .ttl-s {
    font-size: 1rem;
}

.table-blue {
    background-color: #0C0C31;
    color: #FFF;
    font-weight: bold;
}

.table-skyblue {
    background-color: #6B6BAD;
    color: #fff;
    font-weight: bold;
}

.table-gray {
    background-color: #EAEAF1;
    font-weight: bold;
}

.table-box {


    margin-bottom: 20px;
}

.table-box-regular {
    overflow-x: scroll;
}

.table-box-accelerator {
    overflow-x: scroll;
}



.regular,
.accelerator {
    margin-bottom: 50px;
}


.regular-table {
    text-align: center;
    font-size: 14px;
    min-width: 696px;
}

.accelerator-table {
    font-size: 14px;
    min-width: 400px;
}

.regular-table-pattern1 {
    width: 252px;
}

.regular-table-pattern2 {
    width: 522px;
}

.regular-table-pattern4,
.accelerator-table-pattern4 {
    width: 90px;
}

.accelerator-table-pattern1 {
    max-width: 109px;
}

.accelerator-table-pattern2 {
    max-width: 290px;
}

.secondYear-table-pattern1 {
    width: 19.4%;
}

.secondYear-table-pattern2 {
    width: 40.3%;
}

.secondYear-table-pattern3 {
    width: 40.3%;
}

.regular-table, .regular-table td, .regular-table th,
.accelerator-table, .accelerator-table td, .accelerator-table th,
.secondYear-table, .secondYear-table td, .secondYear-table th {
    border: 1px solid #C0C0C0;
    border-collapse: collapse;
}

.regular-table td,
.regular-table th,
.accelerator-table td,
.accelerator-table th,
.secondYear-table td,
.secondYear-table th {
    padding: 5px 3px;
}

.accelerator-table {
    text-align: center;
    font-size: 14px;
}

.secondYear-table {
    width: 100%;
    text-align: center;
}

.secondYear-caution {
    color: #DD0063;
    font-weight: bold;
}


@media all and (min-width: 576px) {
    .table-box-accelerator {
        overflow-x: visible;
    }
}

@media all and (min-width: 768px) {
    .price {
        padding: 100px 0 0;
    }

    .regular-table-pattern1 {
        width: 300px;
    }

    .regular-table-pattern3 {
        width: 98.3px;
    }

    .regular-table-pattern4,
    .accelerator-table-pattern4 {
        width: 90px;
    }

    .table-box-regular {
        overflow-x: visible;
    }


}

@media all and (min-width: 992px) {

    .regular {
        margin-top: 84px;
    }

    .regular,
    .accelerator {
        margin-bottom: 80px;
    }

    .regular-table,
    .accelerator-table {

        font-size: 16px;
    }

    .regular-table td,
    .regular-table th,
    .accelerator-table td,
    .accelerator-table th,
    .secondYear-table td,
    .secondYear-table th {
        padding: 14px 3px;

    }

    .regular-table-pattern3 {
        width: 133px;
    }

    .regular-table-pattern4,
    .accelerator-table-pattern4 {
        width: 100px;
    }

    .accelerator-table-pattern1 {
        max-width: none;
        width: 170.4px;
    }

    .accelerator-table-pattern2 {
        max-width: none;
        width: 360.28px;
    }

    .price-table-ttl {
        font-size: 1.625rem;

    }
}

@media all and (min-width: 1200px) {
    .regular-table-pattern1 {
        width: 252px;
    }

    .regular-table-pattern3 {
        width: 153px;
    }

    .regular-table-pattern4,
    .accelerator-table-pattern4 {
        width: 136px;
    }

    .accelerator-table-pattern1 {
        width: 201.27px;
    }

    .accelerator-table-pattern2 {
        width: 443.72px;
    }
}

@media all and (min-width: 1400px) {
    .regular-table-pattern3 {
        width: 174px;
    }

    .accelerator-table-pattern1 {
        width: 251.69px;
    }

    .accelerator-table-pattern2 {
        width: 521.52px;
    }
}

/* //priceの記述 */

/*デスクトップ*/
@media all and (min-width: 992px) and (max-width: 1199px) {}

/*中デバイス*/
@media all and (min-width: 768px) and (max-width: 991px) {}

/*小デバイス*/
@media all and (min-width: 576px) and (max-width: 767px) {}

@media all and (max-width: 400px) {}

/*iPhone5:SE*/
@media all and (max-width: 320px) {}