body.wrapper-opencampus .wrapper {
    width: 100%;
    max-width: 1440px;
}


/* 🫛入力フォームタイトル🫛 */

.form_section-wrap {
    width: 55%;
    margin: 0 auto;
    margin-top: 300px;
}


.form_title {
    margin-top: 158px;
}

.form_white_title {
    text-align: center;
    margin: 0 auto;
    font-size: 36px;
    font-weight: bold;
    color: #333;
    display: block;
    max-width: 466px;
    line-height: 1;
}

@media (max-width:1000px) {

    .form_section-wrap {
        width: 75%;
        margin-top: 200px;
    }
}

@media (max-width:767px) {

    .form_section-wrap {
        width: 90%;
        margin-top: 150px;
    }

    .form_white_title {
        font-size: 23px;
        max-width: 300px;
        line-height: 1;
    }
}

.form-container {
    background: white;
    padding-top: 72px;
    border-radius: 10px;
    /*width: 50%;
    min-width: 800px;*/
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    .form-container {
        background: white;
        padding: 50px 0;
    }
}

.form_item {
    display: flex;
    flex-direction: column;
    color: #333;
    font-size: 20px;
    font-weight: 400;
    align-items: flex-start;
    width: 100%;
}

@media (max-width: 1024px) {
    .form_item {
        align-items: center;
    }
}

.form_item label {
    margin-top: 25px;
    font-weight: 400;
    font-size: 20px;
    color: #333;
    align-self: flex-start;
}

@media (max-width: 600px) {
    .form_item label {
        margin-top: 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .note_small {
        font-size: 12px;
    }
}

.school-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

select.participation-date,
select.current-grade {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%23000000"><path fill-rule="evenodd" d="M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 011.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    appearance: none;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    max-width: 795px;
    height: 44px;
    padding: 10px;
    margin-top: 10px;
    border: none;
    background-color: #EAF8FB;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    box-sizing: border-box;
}

@media (max-width: 767px) {

    select,
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 600px;
    }
}

@media (max-width: 600px) {

    select,
    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 350px;
        margin-top: 0px;
    }
}

.remarks {
    width: 100%;
    max-width: 795px;
    height: 103px;
    padding: 10px;
    margin-top: 5px;
    border: none;
    background-color: #EAF8FB;
    border-radius: 0;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .remarks {
        width: 600px;
    }
}

@media (max-width: 600px) {
    .remarks {
        width: 350px;
    }
}

.checkbox-label {
    display: flex;
    align-items: center;
    margin-top: 60px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    width: 90%;
    padding: 60px 0;
    box-sizing: border-box;
    justify-content: center;
}

@media (max-width: 600px) {
    .checkbox-label {
        padding: 0px 0;
        justify-content: left;
    }
}

.checkbox-label input[type="checkbox"] {
    width: 26px;
    height: 26px;
    margin-right: 10px;
    cursor: pointer;
    background-color: #EAF8FB;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    display: inline-block;
    vertical-align: middle;
}

.checkbox-label input[type="checkbox"]:checked::before {
    content: '\2713';
    display: inline-block;
    color: #333;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    width: 26px;
    height: 26px;
}

.button {

    width: 565px;
    height: 102px;
    background-color: #DBF12F;
    border: none;
    border-radius: 40px;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    color: #333;
    box-sizing: border-box;
    align-self: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

@media (max-width: 767px) {
    .button {
        margin-top: 50px;
        align-self: baseline;
    }
}

@media (max-width: 600px) {
    .button {
        margin-top: 30px;
        width: 350px;
        height: 60px;
        font-size: 18px;
        align-self: baseline;
    }
}

.button:hover {
    background-color: #E69645;
}

/* 🫛ここからコンタクト🫛 */
.cta-section {
    background-color: #2EBBD3;
    color: white;
    padding: 79px 70px 69px 70px;
    border-radius: 20px;
    width: 100%;
    max-width: 1040px;
    margin: 180px auto;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .cta-section {
        margin: 50px auto;
    }
}

.cta-message {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 92px;
}

@media (max-width: 600px) {
    .cta-message {
        font-size: 25px;
        margin-bottom: 50px;
    }
}

@media (max-width: 455px) {
    .cta-message {
        font-size: 20px;
        margin-bottom: 50px;
    }
}

.cta-options {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
    box-sizing: border-box;
}

.cta-box01 {
    background-color: white;
    color: #333;
    border-radius: 100px;
    padding: 20px;
    width: 200px;
    height: 200px;
}

.cta-box02 {
    background-color: #FFF;
    border-radius: 40px;
    height: 200px;
    color: #333;
    padding: 20px;
}

.cta-icon {
    margin-bottom: 10px;
}

.phone-box {
    width: 400px;
}

.cta-line-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.cta-mail-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.cta-tel-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

@media (max-width: 600px) {
    .cta-tel-title {
        font-size: 20px;
        margin-bottom: 0px;
    }
}

@media (max-width: 455px) {
    .cta-tel-title {
        font-size: 15px;
    }
}

.cta-tel-number {
    font-size: 40px;
    font-weight: bold;
    margin-top: 22px;
    border-radius: 10px;
    color: #333;
}

@media (max-width: 600px) {
    .cta-tel-number {
        font-size: 30px;
    }
}

@media (max-width: px) {
    .cta-tel-number {
        font-size: 25px;
    }
}

.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #E69645;
}

/* 🫛ここまでコンタクト🫛 */